Hi,
Are there any special requirements in terms of declared and runtime exceptions for the services that are remotely exposed using HttpInvoker.
For example (abbreviated):
Class below throws declared exception, and runtime exception.Code:public class AcountService implements AccountService ... public void setAccountNumber( String AccountNumber ) throws AccountNumberNotValid{ ... somewhere in the code runtime NumberFormatException is thrown } }
My expectation is that client will have to handle an exception, right?
How about runtime exceptions. How are these received on the client?


Reply With Quote