I'm trying to consume a SOAP web service and some of the complexType's in the WSDL aren't getting back to PHP will all the expected data. Here's one example:
DataSheetAttribute definition from WSDL (http://ws.spexlive.net/service/soap/inquire?appId=1&wsdl):
<s:complexType mixed="true" name="DataSheetAttribute">
<s:annotation>
<s...
I would like to send large files from the server to the client using MTOM and Spring WS. I realize that this isn't the best approach for this type of thing, but it's a requirement. I have MTOM set up and it works great for small files around 50mb. I am experiencing out of memory errors for larger files and by changing different heap spac...
Hi I am new to webservice in .net.
My questions is do we really require to have the SSL for accessing web methods visible to me.
and if require, where it should be on my side or on cliet side who is providing me webmethods?
Thanks
...
Hi,
I'm writing Qt client for ASP.NET web service with FORMS based authenitcation.
The service consists of 3 methods:
Login(user,pass)
Helloworld() - this method returns info oabout athenticated user.
Logout()
Every thing working fine on the dot.net client with CookieContainer.
The problem begins with HelloWorld() methods. it return...
I read that this should only happen if the SOAP server is not using HTTP protocol, but in my case it is.
My WSDL is below. But instead of calling my soapActions (which are parsed correctly by suds):
<wsdl:binding name="Authentication_x0020_ServiceSoap" type="tns:Authentication_x0020_ServiceSoap">
<soap:binding transport="http://s...
I have the following PHP example code:
$client = new SoapClient("http://example.com/example.wsdl");
$h = Array();
array_push($h, new SoapHeader("http://example2.com/example2/", "h", "v"));
$client->__setSoapHeaders($h);
$s = $client->__soapCall('Op', $data);
My question: what's the SOAPpy equivalent for the SoapHeader() and __setSoa...
I've started my degree project, a mobile application suitable for iPhone, Android and (in the near future) Symbian. The server architecture is the following:
web site (for "standard" users);
web service (for mobile connections), based on TomCat and Axis2;
mySQL DB to storage users data.
Surfing across the web, I've read a lot of disc...
I've got a simple class which returns results from select classes. The db user only has select privileges.
The class is made available through SOAP so 3rd parties can query the database to create reporting tools.
The problem is the PHP SoapClient throws a SoapFault exception when I try to select too many rows. On a table with about...
Hi,
I have a soap webservice written in RubyOnRails and a client written in Delphi. The client and server comunicate fine using Delphi 2006, but compiling with the newer Delphi 2009 causes the Rails server to "crash".
This is the request (generated by built in THTTPRIO):
<?xml version="1.0"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http:/...
Hi
Our application provides a SOAP API. Our wsdl starting lines are something like
<wsdl:definitions name='ControlDServices' ... xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' ...
This usually works OK, but a customer complained that when they try to use our SOAP API in NetBeans with the wsdl we provide they got this error:
Web S...
I want to make a client in C# in order to create Blog posts in Drupal, so the situation is the following. In Drupal i have Services module and soap_server both enabled and when i consume the wsdl file from http://example.com/services/soap?wsdl is recognizes it properly but i don't know what to do next... I'm stuck. The lack of documentat...
I'd like to build a simple test harness for the various web services consumed by my application that I can run in my staging or production environment to verify that the web services are working and see what data their web methods are returning.
Is there a way I can generate a SOAP request based on the WSDL provided by a web service at...
In a project I'm working with we're using external services exposed by SOAP. In the proxy classes to access these services generated by Visual Studio 2005, the member InnerChannel was exposed, but this is not the case with the proxy classes generated by Visual Studio 2008.
I'm trying to do this, but of course get an error because the me...
Many tools are available for web service designing, programming and testing, commercial and free. But what is available in the area of documentation? Are there tools which can parse a WSDL and then generate a 'human-readable' documentation in HTML (or PDF)?
...
greetings,
i have a simple question.
I have some page that i use for SAML Authority certificate.:
http://schemas.xmlsoap.org/ws/2005/02/trust/RST/Issue
the coleague of mine asked me why is this "dead link". Well, I told him that it is a soap protocol and it is not a good idea to communicate with the front end user using web browser. B...
I have a client application which queries a 3rd party web service. The webservice calls use SOAP which are defined by a WSDL document available on the remote server. I'm using .NET 2.0 to consume the WSDL file and then make my requests via the generated System.Web.Services.Protocols.SoapHttpClientProtocol object.
My question is: Is t...
I have a multi-step Wizard control in a content/master page that holds many form elements. On the Finish step I wanted to build a SOAP request from the element values and send it on the onLoad of the Complete step. This does not work because all steps are loaded on each post back and the client sits and spins until the XML comes back and...
I recently created a Java frontend for a PHP web-service which uses PHPs SoapServer.
My application is performing a long-running data synchronization and from what I know from PHP I prepared myself to get closed connections because of the max_execution_time limit.
But I never get any kind of error, as if the SoapServer instance is runn...
Hey y'all..
Is there a a quick way to validate SOAP messages? I have seen validator for JSON objects. Is there something like this for SOAP? I am recieveing a 'Bad Request: 400' error response with a AJAX post I am working on. I am not too familiar with SOAP as I typically just pass JSON. Can someone tell me what is wrong with my reques...
I'm writing a gSoap client application against a service that has both standard http and https versions. Everything I've written so far works fine with the http service, but when I switch over to the https service, suddenly I'm getting errors.
The only change I made to the code for https support was to add the following on startup:
s...