Calling and consuming a JBoss Web Service from JavaScript (AJAX)
Posted
by Andreas Grech
on Stack Overflow
See other posts from Stack Overflow
or by Andreas Grech
Published on 2010-05-08T14:41:33Z
Indexed on
2010/05/08
14:48 UTC
Read the original article
Hit count: 219
I am fiddling around with JBOSS's Web Services, and I have created the following:
http://127.0.0.1:8080/IM/TestService?wsdl
Now I need to access Web Methods from that Web Service from JavaScript.
Say I have a web method named foo
in TestService
, how do I make an ajax call to it?
I tried accessing the method via http://127.0.0.1:8080/IM/TestService/foo
, but I'm getting an HTTP Status 404.
© Stack Overflow or respective owner