Hi, In Axis, I have just realized that the wsdl files (found using Tomcat Web Application Manager) automatically generated by my application contained: ==================== .... <wsdl:messagename="NEMOmodifica_nemonicoRequest"> <wsdl:part name="in0" type="xsd:string" /> <wsdl:part name="in1" type="xsd:string" /> </wsdl:message> ... ===========================
Now, I would like to have the parameter names instead of in0 and in1 like I have defined it in the routine: public ObjResultadoBasico NEMOmodifica_nemonico(String p_nemonico_old, String p_nemonico_new)
Is there a way I could do it automatically? I mean, how can I generate wsdl with meaningful parameter names instead of in0,in1...?
I think there might be a way of doing it. I think that the people working previously on this project managed to do it.... but there were using specific tools/builder. I am not using anything. I compile using a self-written script.. it might be the problem, I don't know!