Working with soap and xml in Extjs - extjs

I need to hit soap webservice, with soap xml request and headers, and get the response in xml in ExtJS.
Kindly share any easy working examples you have

The sencha docs on ajax request is probably your best starting point.
You can create an ajax request and set whatever headers you need.

Related

Mulesoft dynamic http routing based on the input

I am new to mulesoft 4.4, I can to send http request to url xyz with one http_request_configuration, but I need to select application url dynamically based on the users input payload (kind of http routing with different host), I don't know how to achieve this in mulesoft. Do I need to crate multiple http_request_configuration for this?
Kind regards
J Babu
You can set the URL at the HTTP Request operation level. For example using a variable:
<http:request method="GET" doc:name="Request" url="#[vars.myUrl]"/>
Note that you should not try to use the URL to add query parameters. Use the HTTP Request query params feature for that.

Node-Red flow deploy using http request

I am referring this example https://github.com/watson-developer-cloud/node-red-labs/tree/master/starter-kits/ok_watson and could successfully deploy it in Node-Red. But in this sample the input is Inject based. Is there a way of deploying this same example onto a page using HTTP request or maybe Websocket? I figured we can use http request and response for that, but how should the template code look like if i need microphone and audio out in my http webpage. Thanks in advance.
Yes it is. The flows require a text input, which could easily come from a HTTP form. So add a HTTP Input, HTTP Response and Template with a form, and you should have your text input.

Get request to Json does it need jsonp

I am using Angular v1.2.15 to GET a URL to retrieve JSON results.
I need to send a custom AUTHENTICATION Header with the request.
the url will send back Json.
So far I can only get both $resource and $http to even send the request
if I use JSONP type of request. However when I do this it does not send
my CUSTOM HEADER. Can I retrieve JSON content using a normal GET request?
The problem was the Ripple Emulator for Cordova apps was running the proxy on a different port. The the emulator was actually not allowing the http request.

CakePHP sending POST data

Inside my CakePHP 2.4 application I need to send POST headers inside my response.
It seems like Cakeresponse can send headers with the response:
http://book.cakephp.org/2.0/en/controllers/request-response.html#cakeresponse
Is there a similar way to put POST data inside response ?
Sending POST data without a form is mentioned here:
Sending POST data without form
and here
POST without Form Method (PHP)
But an AJAX solution is not suitable for me. I solved problem with sending data with headers. I created my own headers, added them to current headers and send data.

how to build a SOAP request in libcurl using C

i am new to libcurl and i want to create a SOAP request and send to web service. Can anyone send me some example or tutorial to read.
thanks in advance
See here, scroll down to the SOAP example by vivtek.

Resources