I want to call rest
operation from jquery. I don't want to wait for the response, but instead,just confirm that it reached the server(status 202).
can I use [operationContarct(isOneWay="true"]
in my IService ?
Is it as simple as calling any $.ajax
to [operationContract([webInvoked(method="...")
?
Or do I need to apply further configurations... or maybe this kind of behavior is only suitable for request that are represented in soap messages.
What are my options (emphasis on performance: client/server)?