vote up 0 vote down star

Hi

I am developing java web services (JAX-WS) to insert data into mysql DB and retrieve it. This web service has two methods i.e. fetchFromDB and insertIntoDB. Services seems to be running fine when I test them using netbeans IDE.

Address: /CalculatorWSService
WSDL:    /CalculatorWSService?wsdl

but when I try to access it using AJAX's xmlHttpRequest object by providing url http://localhost:8080/CalculatorApp/CalculatorWSService. It is not able to access it. I have developed C# web services and It has been so easy to access them with a url but java web services don't seem to follow that.

My question is

What url to use to access the web service operations in AJAX? (Do I need to use '?wsdl' in the url? Is there a javascript ajax library to easily access JAX-WS web services? Apache Axis web services are a better choice over JAX-WS? Please help me, Thanks, Jay

flag

40% accept rate
Is the AJAX's xmlHttpRequest issued from the same machine the web service is deployed on? (you ARE using localhost in your WS url) – Ryan Fernandes Aug 3 at 8:52

1 Answer

vote up 0 vote down

From the client's perspective, I wasn't expecting significant differences between Axis and JAX-WS. Everything the client needs should be in the WSDL.

One thing that sometimes happens is that the URL used when developing a WebService references the develpoment host and port (and maybe even the ContextRoot) When deployed to a particular server any of those could be changed. Ideally a new WSDL could be created with new "binding" information.

My first step would be to point a browser directly at the Web Service you want to invoke. In my environments that returns a nice "Hi this is a Web Service" kind of message. If you get 401 not found errors then you just need to study exactly how the web service was deployed. Was a different port or context root specified?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.