difference between web services clients results in one error in one success I have web service I build using JAXWS 2.2 on
tomcat , based on wsdl .
Based on this wsdl I created client that works great .
But when I getting web services from external client im getting errors on server , I sniffed the network , and I saw there are differences But I don’t know how critical they are mostly namespaces , as I see from sniffin the external request I see they used AXIS to build the client .
For the tomcat exception im getting , I know according to the logs on the server side it gets to the service but fails in one of the stubs methods Here is my client service that works:
and now this is the request from external client that doesn't work:
the exception im getting from the tomcat looks like this :
and the tomcat returns : HTTP/1.1 500 Internal Server Error
i notice that in the header some parameters are missing between them but after reading some info i don't thing its the reason. beacose the request do get to the service in tomcat
here is where i thing im getting the exception , i can't debug only scatter logs here is how my service class looks like :
i notice that in the header the some parameters are missing between them but after reading some info i don't thing its the reason. beacose the request do get to the service in tomcat
here is where i thing im getting the exception , i can't debug only scatter logs here is how my service class looks like :
i know that the NP_MESSAGE is null but why i can see it get data when it comes from the client
Thanks