Hello people,
I'm working in the development of a middleware system using tuxedo, and I want to expose an asynchronous Web Service using Salt.
As long as I could find in documentation, I need only set the service type in my .mif file to oneway. Doing this I could check that the WSDL shows it as one way Soap WS.
But unfortunately when I make a call to the service, Salt forwards the request to my application, but does not responds to the client HTTP request immediately with something like HTTP 202 or 200. Instead it keeps the connection opened until the end of all processing in my system.
In my tests I stopped the processing using a breakpoint in my application, and did the request using SoapUI. Doing this SoapUI keeps wating for response and sniffing the network wiresharks does not show any response also.
For salt to work Asynchronously, should I do anything else besides setting servicetype to oneway in the .mif file. ?