soap

Error in PHP soap client to .NET soap Server

PHP soap client in attempting to interact with a .NET soap server results in the following error: [soap:Receiver] Server was unable to process request. ---> Invalid length for a Base-64 char array. $credentials = array( 'RequestorUID'=> 'xxxx', 'RequestorPassword'=> 'xxxx' ); $param = array('pmPropertyManagerID'=>'xxxx'); $clien...

build html table with jQuery xml response

Hello, I'm attempting to iterate through a response from a jQuery Ajax request (returned as XML). With that response, I'm building an HTML table with 3 columns (capable of an unlimited number of rows). Once the 4th XML node/ "company" is found, it should start a new row in the table. Any help with the JS to determine when the new row ...

How can I create and process SOAP requests in Delphi without HTTP?

Is there a recommended way / a tutorial which shows how to create and process plain SOAP request with Delphi without THTTPRio, for example, if I want to implement SOAP over JMS, SOAP over AMQP or SOAP over SMTP? Simplified code examples: // create a SOAP request (client side) RequestXML := Service.Add(Arg1, Arg2); This code would gen...

SOAP over Stomp

Is there any possibility to transport SOAP messages over Stomp(Streaming Text Oriented Protocol) protocol? If yes, what are the implementations? ...

Compression and encryption SOAP - ASP.NET web service

Hi everybody. I need advice. I zip and crypt SOAP message on web service and client side. Client is winforms app. If I only crypt SOAP message, it works good. If I only zip SOAP message it also works good. I use SOAP extension on crypt and zip SOAP. I use AES - Advanced Encryption Standard - Rijndael and on compresion I use Sharp...

What are some different frameworks which can be used for SOAP

Besides the following link, which is pro Spring, are there any other resources which show pros and cons of different Frameworks that can be used to implement SOAP in java http://blog.arendsen.net/wp-content/TheSpringExperienceSpringWebServices.pdf Also, I read the following on [Axis Wiki] Q: What is Apache Axis? What's its relati...

Mocking Web Service Response | Bundle couple of them in a web app

I am working in an enterprise project and my team is responsible for creating front end of the application and there is another team developing webservices and has provided WSDL for all the services that will be available as part of this project. In development phase our local dev environment will point to one of the development box of t...

How do I save updates in a GridView control in VB to an existing XML document?

I have an existing xml document with music playlist information, which is read into a GridView control in Visual Basic. I am now wanting to save any updates in the GridView to that xml document. How can I do this? Private Sub cboUsers_SelectedIndexChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cboUsers.Selec...

TouchJSON and SOAP

How can i make a SOAP call using TouchJson? it just work fine with REST call. ...

Getting parameter names from SOAP request with PHP SOAP extension?

Given that the following client.php creates this request XML: <?xml version="1.0" encoding="UTF-8"?> <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:ns1="http://soap.dev/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas....

View raw XML request

I am very new to WCF and SOAP messaging but I have managed to put together a reasonably good client which I am using to download news stories from a media organisation. I have generated proxy classes which obviously abstract a lot away and mean that I am basically just creating objects, calling methods and iterating through results. My ...

Soap request for GetListItems webservices for iphone development

Hello I am developing an iphone application for soap request for sharePoint i.e GetListItems web services. But I am getting different types of exceptions and i am very new to iphone and also soap request .. Error is :-- "Guid should contain 32 digits with 4 dashes (xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx)." And my xml code is :-- NSSt...

zf 1.9.6 zend_soap: Function ("doString") is not a valid method for this service

Hello. I'm trying to work with Zend_Soap using zend framework 1.9.6 and php 5.3.1. soap.php (wsdl generator) <?php require_once('Zend/Soap/Server.php'); require_once('Zend/Soap/AutoDiscover.php'); require_once('Soaping.php'); $_WSDL_URI="http://server/soap/soap.php?wsdl"; if(isset($_GET['wsdl'])) { hadleWSD...

SugarCRM web service create note problem

Hi, i am trying to create a note with SugarCRM's web service (using SOAP) but all i get is an Uncaught SoapFault exception: [Client] looks like we got no XML document error. My code is as simple as that: $note = $client->set_entry($session_id, 'Notes', array( array('name'=>'name', 'value'=>'Test Note From website'), ...

cakephp webservice

I have problem in creating web-service using cakephp . this what i do to create this web-service . I use NuSOAP - Web Services Toolkit for PHP for this. I create a controller called WsController and import the library on it. class WsController extends AppController{ var $uses = array(); function info() { $this->layout= null; ...

Does SOAP have "remote objects"?

SOAP is continuing to confuse me. In RMI, there are remote objects, which live on the remote server. You can pass them around, but this will just create stubs locally. The stubs delegate all method calls over the wire. This is quite different from pure data objects, which are serialized and sent as a copy. Are there remote objects in ...

Building large MTOM/XOP messages with JAX-WS

Hi, I have a question about using MTOM/XOP with JAX-WS. I'm writing a web service which sends large amounts of binary data. The client requests a number of files and the server returns the files in the response. I'm able to get it to build the response correctly so that it correctly implements XOP, but I run into memory-related issues...

how to stop downloading of wsdl?

hi all, i have tested and implemented a simple web service for user login process in PHP using SOAP in my intranet its working fine,the same implement in online server when i tried to access wsdl file it downloaded instead of displaying it's content and also when using the soap client it displays wsdl parsing error. so kindly give your ...

How do I extend a wsimport-generated exception annotated with WebFault?

I'm building a web service in Java from an existing WSDL. The wsimport tool has generated all the Java classes bound to the elements in the service's schema. In particular, the fault declaration yields the following class: @javax.xml.ws.WebFault(name = "Fault", targetNamespace = "http://my.company.com/service-1") public class ServiceFau...

SOAP services calls from IIS 5.1 (XP) timing out.

We have an ASP.NET web application running in IIS that uses the SoapHttpClientProtocol class to make SOAP calls. In the last few days several XP machines have started to report timeout errors when making SOAP services calls. Stack Trace from a test app: System.Net.WebException: The operation has timed out at System.Web.Services.Prot...