Simple Object Access Protocol (SOAP) is a protocol specification for exchanging structured information in the implementation of Web Services.
3
votes
2answers
941 views
Implementing WCF method that supports either string or object as a method parameter
I have the following contract in a WCF-based web service:
public List<string> GetAllPossibleQueryEngineHostNames(Instance instance);
Obviously, I can call ...
8
votes
1answer
2k views
Web service proxy that switches endpoint URLs in the event of a TimeoutException
I am creating a service (FaultTolerantCommunication) that wraps a call to a (web) service. Its responsibility is to switch the endpoint URL in the event of a ...
1
vote
1answer
258 views
OO PHP, requesting a look if good practice
I'm starting with OOP for php, i get the idea, but don't have someone physical near me to fallback on so I'm hoping i can do that here.
The following works but i would like to know if it's good ...
0
votes
1answer
402 views
What is this simple SOAP client missing? [closed]
I used Service Reference > Add > Advanced > Web Reference to add a reference and wrote this very simple SOAP client to test out the service:
...
7
votes
2answers
2k views
How to increase download speed using the following method?
I have written an Android application which downloads pdf files through web service. I am using kSoap2 android library to parse the response of web service which basically contains file name & ...