Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have written a service using Axis2. Now I wish to consume it using a browser based client written in JavaScript.

Would appreciate if some one could give any pointers on this.

Thanks

share|improve this question
1  
No answers? cmmon' guys!! – AJ. Sep 23 '09 at 15:45

2 Answers

up vote 1 down vote accepted

There are several options when deploying an Axis2 service, ranging from the webservice style (ex: RPC), encoding, transport (tcp/http), handlers, attachments, WS-Security, etc. which makes it hard or impossible to implement a fully compliant Axis2 client.

I would strongly recommend you publish your services enabling the REST api and consume the services via REST. Here's the link to the docs: http://ws.apache.org/axis2/1_5/rest-ws.html

If you want to take the hard route and parse soap messages, I would recommend that you write your client using GWT and expose some services using GWT exporter

share|improve this answer

There is a way to generate a JavaScript client for exposed web service using CXF. Read the blog post below which explains steps to create JavaScript client.

http://xebee.xebia.in/2012/02/24/JavaScript-client-for-web-service-using-cxf/

share|improve this answer
You shouldn't just give a link to another site as an answer, since the site may go out of date in the future. Instead, click the "edit" link on this answer and include the essential parts of the solution from that page here. See: meta.stackoverflow.com/q/8259 – Peter O. Oct 27 '12 at 5:52

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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