Simple Object Access Protocol (SOAP) is a protocol specification for exchanging structured information in the implementation of Web Services.
0
votes
0answers
5 views
Error deserializing a php soap webservice with a .NET WCF Client
I am having an issue in deserializing the soap XML from a php web service
The XML that is coming back from the web service has a tag <item xsi:type="xsd:">
Basically its saying ...
3
votes
0answers
12 views
How to Create a SOAP Web Service in a Symfony2?
i am newbie to symfony2 and i need to create a web services with symfony2 i have read the official article in the example it creates a instance of SoapServer with a parameter routing a .wsdl file. i ...
0
votes
0answers
9 views
getting id of a one module into another in sugarcrm
What I want?
I want Id of a one module into another module.
description:-
I have created two module 1. Invoice 2. payment. between this two module there is a one to many relationship.
Now I am ...
0
votes
0answers
12 views
Issue with SOAP call throwing a SOAPExceptionImpl: Unable to read response: null error
I am running into a problem using javax.xml.soap API with Java 1.7 and cannot figure out the source of the issue.
Caused by: com.sun.xml.internal.messaging.saaj.SOAPExceptionImpl: Unable to read ...
0
votes
0answers
9 views
API Throttling Best Pratices
I have a SOAP api that I would like to throttle access to on a User basis after "x" many calls have been received in "y" amount of time.
After searching around, the #1 consideration (obviously) is to ...
0
votes
0answers
30 views
using crontab to call a webmethod every week? [duplicate]
I am new to crontab and I wanted to know how I could call a web method every week using crontab.
I have a webmethod in java and I created a wsdl for these webmethods and now I am able to test this ...
0
votes
1answer
19 views
Custom SOAP Headers in C#
I am trying to convert a Java Web Service client to C#. I have add a custom SoapHeader class to generate the necessary headers for authentication, but they are not being correctly formatted. I am ...
0
votes
0answers
19 views
WCF Security Header Issue Seemingly Environment-Dependent
I have a WCF service which is configured to perform custom authentication through a basicHttpsBinding. The authentication process works fine on my development computer (Windows 7, IIS 7.5), but when ...
0
votes
2answers
16 views
using crontab to call a webmethod?
I am new to crontab and I wanted to know how I could call a web method every week using crontab.
I have a webmethod in java and I created a wsdl for these webmethods and now I am able to test this ...
0
votes
0answers
12 views
How to pass WSDL functions in this PHP program using SOAP?
I understand that I need to pass the parameters of the function as the index of an array. I also understand that the values of the parameter are the corresponding values of that index of the array. ...
0
votes
0answers
7 views
Map type in SOAP Service
I'm trying to consume a web service in Python using suds that contains a reference to Map type from the namespace http://xml.apache.org/xml-soap. I'm guessing that this is some non standard type that ...
0
votes
0answers
9 views
Internet Explorer SOAP XML request
I'm developing a web app that shows points on map (via openlayers.org .js plugin) according to xml file. I tested it on local .xml file and I was reading it like this:
function importXML(xmlfile) {
...
0
votes
0answers
13 views
How to create a SOAP message from a saved xml file
I have saved a Soap xml file (MySoap.xml) in the following format
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
...
-1
votes
0answers
11 views
SoapFault Exception android
I am getting
SoapFault - faultcode: 'soap:Server' faultstring: 'System.Web.Services.Protocols.SoapException: Server was unable to process request. ---> System.NotSupportedException: The given ...
0
votes
1answer
20 views
Works in .NET, don't work in PHP? SOAP
i have a SOAP client in PHP that is not working. The server developer handled me a working .NET example. I paste here both. Am i missing something?
Regards
PHP CODE
$res = new cResult;
...