Broken WSDL, but why?
I have started to rely on the XML schema validation that is embedded in JDeveloper and forgot some of the basic check I was doing manually prior to that.
To help improving on error reporting, so that we can make file easier for developers of Web Services, I'll try to compile a list of broken WSDLs, so that we can use them when looking for negative test scenario.
Here is the first one: http://www.rajkovic.org/ws/wsdl/bads/annotatedBank.wsdl. You can try it, see what error you get and if it make any sense to you. Post a comment with the error you find in this WSDL :-)
Have Fun !!!
To help improving on error reporting, so that we can make file easier for developers of Web Services, I'll try to compile a list of broken WSDLs, so that we can use them when looking for negative test scenario.
Here is the first one: http://www.rajkovic.org/ws/wsdl/bads/annotatedBank.wsdl. You can try it, see what error you get and if it make any sense to you. Post a comment with the error you find in this WSDL :-)
Have Fun !!!
Comments
Shouldn't these names be in standard Java notation, hence: createAccount?
public interface BankServiceImpl extends java.rmi.Remote {
public java.lang.String createAccount(java.lang.String accountName, float initBalance) throws notes.proxy.AccountException, java.rmi.RemoteException;
...