Share all details related to your problem, including any error messages you may have received.
I have a strange one here. We have been noticing that when we try to log some variables in the Web Services Before Operation rule, the logger statement is simply ignored. We have seen this in numerous rules in various scenarios.
The first and the third logger statement do print the listed values to the log file. However, the middle logger doesn’t print ANYTHING. The string value of “requestEndPoint” is not logged and neither is the method call of requestEndPoint.getBody().
We have seen this behavior when trying to log other methods such as .toXml().
What are we doing wrong here? It’s like strings will print if they are not included with a variable, but as soon as a variable is included, the logger just ignores the call to log the data.
Have you tried removing the requestEndpoint.getBody()?
Also, if removal of the above attributes works then try just printing requestEndpoint to isolate the cause.
try to print only the requestEndPoint or the headers of this obj. If you havent a body in your configured operation, is normal that you cant see anything in before rule.
The only two lines that print AT ALL are the “test” and “***********” statements. The two lines that start with “REP” and “requestEndPoint” don’t print ANYTHING - not even the string values, let alone the variables in the statement.
Any other ideas? This should be pretty basic stuff; printing variables.
@vic_rinkenberger this is wired and not supposed to happens but okay, let’s do another thing…
Could you please instead of using logger just use System.out.println and check the webserver logs for the same statments let us know if they are appearing or not.
System.out.println does not print anything for any of the lines, not even the ones that are working with logger.debug(). Very strange.
I do see that tomcat logs its startup in the tomcat logs (which is where System.out.println would print to), but System.out.println doesn’t print anything for me.
Super strange and weirdo, but lets do one more thing please, could you please creat new application (as a dummy test) and create a new rule with the same logs, and check then let us know…
I am using the same “Before Operation” rule on my app for both the Create Operation and the Add Entitlement Operation. For the Create Operation, it prints things just fine. For the Add Entitlement Operation, it does the behavior that I have described, where it just simply ignores the logging statements that have the built-in variables mentioned in them.
We have seen this behavior on other apps, so I don’t think a new app will make a difference. I’m just finally reporting the behavior because it is slowing down development.
I find that dump/logging the entire beanshell namespace for beanshell rules helps troubleshooting, by exposing all the available arguments/variables at rule execution time: