Connecting to a axis web service

  • Thread starter Thread starter Jay
  • Start date Start date
J

Jay

Hi,
I am trying to connect to a java web service. I have a vb .net client
which uses the service. It was working ok few days ago. The web
service has been updated and i have been getting the following error.
I did update my wsdl but of no avail.

at
System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClientMessage
message, WebResponse response, Stream responseStream, Boolean
asyncCall) at
System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String
methodName, Object[] parameters) ...

Invalid user/password combination.java.lang.RuntimeException: Cannot
get a db connection


I tried to debug and got this msg
A first chance exception of type
'System.Web.Services.Protocols.SoapException' occurred in
system.web.services.dll
Additional information: Invalid user/password
combination.java.lang.RuntimeException: Cannot get a db connection

Any suggestions??
thanks
 
Hi,
I am trying to connect to a java web service. I have a vb .net client
which uses the service. It was working ok few days ago. The web
service has been updated and i have been getting the following error.
I did update my wsdl but of no avail.

at
System.Web.Services.Protocols.SoapHttpClientProtocol.ReadResponse(SoapClien­tMessage
message, WebResponse response, Stream responseStream, Boolean
asyncCall) at
System.Web.Services.Protocols.SoapHttpClientProtocol.Invoke(String
methodName, Object[] parameters) ...

Invalid user/password combination.java.lang.RuntimeException: Cannot
get a db connection

I tried to debug and got this msg
A first chance exception of type
'System.Web.Services.Protocols.SoapException' occurred in
system.web.services.dll
Additional information: Invalid user/password
combination.java.lang.RuntimeException: Cannot get a db connection

Any suggestions??
thanks

Jay, there error your getting is from the Java runtime - it's saying
it can't connect to the database. Now, the question is do you need to
pass credentials to the service? The only thing I can say is, the new
version requires credentials where the old one didn't, they
credentials you pass have changed, or there is a problem with the
"updated" java webservice :)

Just some thoughts.
 
Back
Top