I'm in the very peculiar position of trying to access a SOAP service whose answers are wrapped in HTML. This is a bug with the service provider ( SourceForge ) , acknowledged for seven months, with no ETA so far. Nitty-gritty details.
If I can intercept the actual response before passing it on to Axis, I would be able to strip the HTML ...
I have a generally straight forward web service that I've written (converting code to ZF from a Java implementation of the same service and trying to maintain the same wsdl structure as much as possible). The service loads a PHP class, rather than individual functions. The PHP class contains three different functions within it.
Everyth...
I've been debugging some Soap requests we are making between two servers on the same VLAN. The app on one server is written in PHP, the app on the other is written in Java. I can control and make changes to the PHP code, but I can't affect the Java server. The PHP app forms the XML using the DOMDocument objects, then sends the request us...
Hi,
We have a contractor doing an Iphone native app in objective-c. They need to call some of our web services to get data. Is there some kind of proxy generator for obj-c that will create native objects that call web services? C#/.NET has this built in--you just add a service reference in visual studio or you use a command line tool...
Anyone have any idea what this error means? SECU1026: Security provisioning error
And how to resolve it?
...
I am trying to run an embedded Jetty and would like to expose a soap webservice. The project is loaded as a WAR generated by netbeans. The webservice is generated from a WSDL. What is the simplest way to add SOAP support to embedded Jetty
...
I found you can generate this in SOAP in php:
<foo bar="blah">12345</foo>
With this:
array("foo" => array("_" => 12345, "bar" => "blah"));
However, the underscore method does not seem to work when the value is not a number and string, but instead embedded xml code. How would you do this for instance?
<foo bar="blah">
<aaa a="...
I'm starting out with iPhone development and am struggling to find tutorials on handling service calls whether via SOAP or REST etc. As I understand it the SDK can't handle SOAP so is it best to look into REST?
...
The SOAP specs are confusing, numerous, and available in multiple versions, and my soap library's WSDL generator is buggy. What's the correct WSDL for an array of integers? Could it be:
<element name="ArrayOfIntegers">
<complexType base="SOAP-ENC:Array">
<element name="integer" type="xsd:integer" maxOccurs="unbounded"/>
</comple...
I'm trying to log raw SOAP messages being sent and recieved. I have a SoapExtension, everything's generally working fine, but there's a problem, though. We're using WS-DeathStars' encryption and message signing, so what gets logged is an encrypted SOAP message. What I need is to find a way to insert my SoapExtension right after message d...
I see APIs such as PayPal, etc. offering to call their services using NVP or SOAP/WSDL. When using a .NET environment (3.5) using traditional web services (no WCF) which is better and why? I know WSDL lets you drop in the API URL and it generates the wrappers for you. So then why do companies even offer NVP?
...
I am trying to send more info in each message from the client (Mobile Device) to my service. In my research I am finding about interceptors and custom wcf headers.
Now I am starting to see stuff about custom SOAP headers.
What is the difference?
...
hello,
i am using axis (version 1 JAX-RPC) within tomcat5.X. i generated using eclipse-axis integration my wsdl file and it is ok. now i want to customize the SOAP Response by not returning one of my class fields. (lets say i have 2 fields\datamembers in class but i want to return just 1 in XML SOAP answer)
i know that by removing the Se...
Does anyone know about a good SUDS tutorial. I am trying to run tests on WSDL files and I am having trouble finding any imformation on how to do this. Is SUDS much different to SOAPy and would anyone recommend it to run smoke tests on functions stored in WSDL files.
I have read that SOAPAy is no longer supported in Python 2.6+. Is this ...
Hello,
I am using SUDS (Like SOAP) to test WSDL files. The methods contain types that are linked to further functions. I am not sure how to access the variables stored in the types that are displayed. Some sample code is below:
from suds.client import Client
client=Client('http://eample.wsdl')
print client
response is:
Ports (1):
...
Hi,
I've written a java application with a soap interface. When I call a method on this interface with certain parameters, the parameters I receive in the method are all empty/NULL except the first one.
What could be the reason for this behavior?
A tcpdump shows that the whole soap request with the correct parameter values is received ...
I have a PHP SOAP server (using nuSOAP) that I consume with a C#-based application.
When the C# application submits a request, the strings are UTF-8 encoded. I verified using a network sniffer that the byte sequences are valid UTF-8. However, when PHP gets then and I post them to the database or send them by email, it appears to be pr...
I'm working with a third-party vendor who unfortunately requires that we set up a SOAP server to handle requests from them. I'm having some trouble finding the best way to go about this. One limitation I'm imposing is that it runs as a mod_perl2 handler. After some searching I've found that the best way may be to use XML::Compile and ...
I try to implement simple SOAP server on ASP.NET and simple client on php and get the problem with response and request format.
My server is very simple, take one string and return another:
[WebMethod]
public string HelloWorld(string Additional) {
return "Hello " + Additional;
}
I expect, that php client is such simple:
$client =...
Confluence soap api defines two methods with the same name but different parameters:
Page getPage(String token, long pageId) - returns a single Page (according to the documentation the second parameter is String, but in WSDL it is long)
Page getPage(String token, String spaceKey, String pageTitle) - returns a single Page
I would need...