I want to know how to call a java webservice on html page without using javascript ?
Thanks
I want to know how to call a java webservice on html page without
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
To call a web service you need to make an HTTP request.
If the service accepts input formatted as
application/x-www-form-urlencodeddata, and returns something that can be rendered in a human readable form by browsers, you can use a<form>(although this does mean leaving the page or using frames).Otherwise you need to use a programming language.
JavaScript is the standard method for doing this in a webpage, but since you reject that in the question, I’ll list some of the (less well supported) alternatives.
The options that require plugins are not supported on all platforms. You can certainly kiss goodbye to iOS for any of them.
I’d strongly recommend ditching the “no JavaScript” requirement though.