Hello All,
 
I have a webservice  method that needs to take a java class as input. I am using AXIS for SOAP and tomcat for my container.
 
Here is the signature of my webservice method "public Integer createProject(Object o)". I want to later cast the object o into some other object that the service is expecting as input from the client.
 
Question : What is the XML Parameter type corresponding to java object in the method "addParameter". Eg:. for integer we will use XSD_INTEGER ( see below)
call.addParameter("op1", XMLType.XSD_INTEGER, ParameterMode.IN);.
 
What should it be for java object ?
 
Thanks !

Reply via email to