Simple Object Access Protocol (SOAP) is a protocol specification for exchanging structured information in the implementation of Web Services.

learn more… | top users | synonyms

0
votes
1answer
27 views

PHP Communicator SOAP api SDK

This is part of a SDK for interacting with Communicator's SOAP api. The aim is that the user will not have to interact with SOAP (some people complain about it). Please note that the wired ...
0
votes
0answers
15 views

Mapping fields and data from PDF to SOAP with hashMaps

I have a PDF form which I scrape the data from each field and value and store it in a hashmap. I need to map this data to different field names before inserting it into a SOAP message. The PDF has ...
1
vote
0answers
39 views

Simple API testing framework for testing of SOAP xml requests

I have a need to try to automate the testing of a large Web Service with an XML API interface. The framework takes the form of a Mavenised Java project. The usual maxims apply: must be highly ...
0
votes
0answers
77 views

Javascript / Promises

I'm working on converting a simple Python script into nodejs 4.4.5 with es6 features like Promises. The original Python script did the following: Contact a 3rd party SOAP service Attempt to retrieve ...
3
votes
2answers
166 views

SOAP request in a while loop

I am developing a service where the user need to sign the seller agreement with Mobile BankID (Swedish e-sign service). To make this work I need to make SOAP request to get the progress status of the ...
3
votes
2answers
2k 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
3k 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 ...
8
votes
3answers
10k views

Dispatching SOAP function calls

I'm receiving a certain string value over the network and I need to call a function based on that value. So this is more or less what I have at the moment: ...
1
vote
1answer
323 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
439 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 & ...