SOAP-based Web Service in Sencha - web-services

How should I call a SOAP based web service using Sencha?
I was able to call my service using JavaScriptSoapClient.

If you're using Ext JS, the SOAP proxy is probably what you want.
http://docs.sencha.com/ext-js/4-1/#!/api/Ext.data.soap.Proxy

Check this out on the Sencha Blog:
http://www.sencha.com/blog/taking-a-look-at-the-new-sencha-soap-data-proxy

Related

Testing Applications for use of Web Services

1) Is it possible using burp suite/ ZAP or any other web testing tools to find out
if an application is making calls to web services?
2) As SOAP web services reply in XML is it also possible to view the responses of
the HTML request to distinguish between use of REST web services?
Thanks
Yes, this is normally possible.
You need to configure the application to use the interactive proxy (Burp, Zap, etc.) as its proxy. Most applications will use your system proxy settings.
Once the proxy is configured, you can see a full history of HTTP interactions (in Burp: Proxy > HTTP History). This includes requests and responses, which will clearly indicate a SOAP or REST service.

How to pass collection<?> over JAX-WS web service

In my project I need to write a web service which will receive Collection<?> as a parameter.. I am using apache CXF.. After I have written the service method I am unable to test it using SOAP UI (It is not generating any request).. My question is - Is it possible to receive Collection<?> over web service? I need to receive Collection of any object type.. Please help..
You need to work directly with SOAP messages.

How to call ucf web service in node.js using SOAP

I'm new to web service.How can i call ucf web service in node.js using SOAP.
Check this, I think it will do what you need:
https://stackoverflow.com/a/8655534/1366519
Google and StackOverflow search boxes are useful if you type 'soap web services with node.js' or something like that.

how to invoke a web service in asp.net using SOAP

I have written a web service in asp.net 4.0. Now I need to invoke this web service using SOAP
protocol but not HTTP Post protocol. Can any one suggest to me how can I achieve this?
See http://social.msdn.microsoft.com/Forums/en-MY/asmxandxml/thread/5486c18a-a796-4f70-9e56-ccee572abcaf.
You have to use Windows Communication Foundation
See How to Consume a Web Service.

can i create java servlet as rest web service

Can I use Java Servlet as a Rest web service?
And how to request using curl to servlet?
thank
Sure you can use a (raw) servlet to create a REST service. But that is too much work knowing that there exists a standard API for this (JAX-RS JSR-311) and many frameworks implementing it :
http://www.jboss.org/resteasy
http://cxf.apache.org/docs/jax-rs.html
http://jersey.java.net/