soap

How to choose between different Ports in a SOAP WSDL in PHP?

The Amazon AWS SQS WSDL (at https://sqs.us-east-1.amazonaws.com/doc/2009-02-01/QueueService.wsdl) lists multiple "ports" with different "addresses" (near the bottom of the file), which specify the HTTP and HTTPS addresses for the service. Using the PHP SOAP object: $aws_ns = 'http://security.amazonaws.com/doc/2007-01-01/'; $sc = new So...

Connect to Unknown SOAP Web Service

Hello all I would like to build an app in C# that connects to an Apache AXIS web service and performs the following operations via SOAP. Login in to the server. POST string data to server Receive and display server response Here's the tough part. I do not have access to the server, nor do I know where the .JWS file is located on th...

SOAP error, what does this mean?

I'm writing a program in Flex 3 that uses a webservice written in VB to access my company's SQL servers. After compiling the code the first thing the program does is go out to the servers and grab a bunch of data. Most times (not every time) I get this error during one of my webservice calls: [RPC Fault faultString="SOAP Response c...

Soap Envelope through WCF netTcp Binding

Hi :) 1) I've noticed that the netTCP binding uses SOAP as the envelope, which I think then it uses SOAP as a message protocol. How could I create my own SOAP message, send it through the netTCP and the other side understand it? 2)Today, our application creates the SOAP envelope from scratch putting the proper namespaces and body eleme...

MS Access and SOAP, XMLRPC etc

I have been searching high and low on Google and finding very little information on using Web services with MS Access 2007. I'm sure this is possible somehow but I can't find any relevant information. Any ideas? ...

Extracting Cache Process information via SOAP in 2008.2

What is the best way to configure Intersystems Cache 2008.2 so that the Web Service interface could be utilized to export a table consisting of the process information? ...

How to get a SOAP fault message to be WS-I compliance

I have this message <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"&gt; <soapenv:Body> <soapenv:Fault> <faultcode>soapenv:Server</faultcode> <faultstring>LOGIN-ERR:Incorrect password - user could not be logged in.</faultstring> </soapenv:Fault> </soapenv:Body> </soa...

Compose Soap Request in Java

Dear all, I have a wsdl file and a detailed document about all the elements in every request and response from a web-service provider. My job is to compose around 40 requests and parse corresponding responses. More specifically, our platform submits the requests and gets responses from the service, so for me, as an application develop...

http status from gsoap header

does anybody knows how to retrieve the http status in gSoap? I have "HTTP/1.1 202 ACCEPTED..." and I want to print the 202 somehow. ...

help convert this SOAP request to Report Builder 2.0 query for XML data source

I have a complex parameter to a web method in my .NET web service, and I want to query that web method with Report Builder 2.0 using SOAP. With soapUI, I get the following SOAP request for that web method: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:qcr="MyNamespace"> <soapenv:Header/> <soape...

Is there a better way of manipulating SOAP messages than Jaxws SOAP Handler Interceptor before the message gets to the container?

I am currently using the jaxws and apache CXF framework to create webservices using the top down approach. I am using the SOAP interceptors to add remove SOAP header elements, using SAAJ, before the message gets to the container, and the container maps the SOAP action too the java method. I am doing this to create Security Token Serv...

Soap Response Namespace issue

Hi, I have created simple soap server using php, The WSDL used is at : http://fromyourdesign.com/webapp/wsdl/fromyourdesign.wsdl Response i m getting has a miss matched namespace for the Login response tag: <?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="...

How to get the mime data from the DataHandler

I send a soap message using MTOM by Axis2, and i monitor the soap get the message below: --MIMEBoundaryurn_uuid_5C5747FDE5329B8CEB1280130156514 Content-Type: application/xop+xml; charset=UTF-8; type="text/xml" Content-Transfer-Encoding: binary Content-ID: <0.urn:uuid:[email protected]> <?xml version='1.0' e...

How to exchange data between Objective-C and PHP

I am playing around with Objective-C and have been looking for a good how-to example to exchange data it and PHP. JSON? SOAP? If anyone knows of a well written example I could hack at, I would appreciate it. ...

Issues installing PHP on an Apache server

Hi, I am trying to install PHP locally so I can run PHP files. The problem is that I am not able to install it properly although I am trying to follow the instructions. So I am following the instructions provided in this site for example: http://www.sitepoint.com/blogs/2009/04/13/how-to-install-php-on-windows/ and I can't find the file...

Consuming SOAP web service in ASP.NET

I have a SOAP WSDL (found here: https://portal.bsh-partner.com/picenter/server/a2a/) and I am trying to consume the web services. var soapEnvelope = string.Empty; soapEnvelope = "<?xml version=\"1.0\" encoding=\"utf-8\"?>"; soapEnvelope += "<soapenv:Envelope xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" xmln...

How can I send ArrayList over Web Service?

Subject is my real question but i wonder that another issue about web services. What is the key points of web services to return something? Serializable (Because everything converts to XML before adding them to SOAP Message) ? (What should i do for generic class) ?? (How can i put everything (which are serializable classes) to one ret...

PHP SOAP / Understanding WSDL

Figured it out, see Update below. I'm trying to work with a particular web service via PHP (tried both the native and Zend SOAP clients) and it only returns a failure status. I suspect that it has something to do with the multiple beans in the retrieveMemberInfo method call (authBean, memberInfoBean). Could someone take a look at the...

How to reduce bytes number in SOAP response?

Hello, is there a way to reduce the number of bytes sent to the network from a SOAP response? I use nuSoap in PHP and would like to avoid xsi:type="xsd:string", xsi:type="xsd:int" in every node. Is there a way to do it? Thanks in advance c. ...

Java read in SOAP mesage using xpath

I have the following soap message: <?xml version="1.0" encoding="UTF-8"?> <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:wsu="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-utility-1.0.xsd"&gt;&lt;soap:Header&gt;&lt;wsse:Security env:mustUnderstand="1" xmlns:wsse="http://docs.oasis-open.o...