Paul Phillips wrote:
I'm trying to call a function on my axis server that I have changed today to accept two parameters, whereas before it accepted none. However, upon rebuilding and deploying it I keep getting the error:

edit: The function I'm trying to call has this signature:


public java.lang.String getAllArchiveDetails(int in0, java.lang.String in1) throws java.rmi.RemoteException {

and in ArchiveSoapBindingStub.java on line 158 (where it fails) there is this:

java.lang.Object _resp = _call.invoke(new java.lang.Object[] {new java.lang.Integer(in0), in1});


could there be a problem with one having "int" and the other "Integer"?
It's definatly a problem with just this function as other functions from the same class work. =\


~PP

Reply via email to