Questions tagged [soapserver]

154 questions
2
votes
1 answer

Parsing SOAP response via WSDL/SoapServer

I need to accept an unmodifiable SOAP message that includes some data. It is posted to my WSDL file and then PHP SoapServer. How can I extract specific data (wrapped in an xml key) in the message via my wsdl or php? Data flow (actions are arrows,…
werdnanoslen
  • 102
  • 4
  • 7
  • 22
1
vote
1 answer

Returning an array of string from PHP SoapServer

I am trying to build a soap service in PHP. The WSDL that I am using for the webservice was autogenerated by Visual Studio 2010 (I just used Visual Studio to create the WSDL, the actual server is being built in PHP with SoapServer). The requests to…
BruceHill
  • 6,954
  • 8
  • 62
  • 114
1
vote
1 answer

PHP SoapServer: doesn't resolve XML (WSDL file) - no XML file - with "?wsdl" on URL

I'm having problems with my Soap Server implemented on PHP on my production server (remote one). I've implemented a simple Soap Server (native PHP class) with just on function on WSDL mode. So my code looks like: ini_set("soap.wsdl_cache_enabled",…
Lightworker
  • 593
  • 1
  • 5
  • 18
1
vote
1 answer

XML tags match but namespaces differ

I am trying to setup a Soap connection between a server in php and a client in C. My server is using a working wsdl file and a class to add these methods. I can confirm with Wireshark that my client request is well received and correctly…
Bazil
  • 11
  • 2
1
vote
0 answers

add SoapHeader after SetClass in SoapServer in PHP

i have a class that set in $obj->setClass() to handle requests in SoapServer . but now i need to set some soapHeader inside that class. How i can set SoapHeader inside that class or access the SoapServer Object ? server.php $svr = new…
1
vote
1 answer

How do i set username and password in a soap server?

I need to add credentias for my soap server, but i don't have much experience in this. What i have to use for add the user and password?
1
vote
1 answer

WebModule in Delphi SOAP Application Server

Given that the each request message spawns a separate thread, and separate instances of the Web module and its contents are created dynamically for each thread, I added a FDConnection and FDQuery to the webmodule so that I can send a personnel…
Mohamad
  • 1,089
  • 4
  • 19
  • 37
1
vote
1 answer

How to integrate WCF and SOAP to existing server-client application?

I am new to server-client applications. I am trying to build a prototype where a Java server communicates with a .net WPF client over http. The server and client currently communicate over a third-party messaging system(Tibco). I have done a bit of…
user811165
  • 63
  • 1
  • 2
  • 8
1
vote
1 answer

PHP SoapServer Connection Authentication implementation

Searched Google and cannot seem to find a definite solution to this... I am implementing a PHP SOAP Server to handle requests from a particular user of our systems. I need it to authenticate the connecting user not only during EVERY request via…
Rimer
  • 2,054
  • 6
  • 28
  • 43
1
vote
1 answer

PHP - SOAP-ENV:ClientBad Request after SoapServer->Handle() - Help

I got a PHP web service that had been running great for a long time, but somewhere a long the way it some how stopped working, and I just can't get it to work again. I got some php page in which all I do is define a class with functions, and in the…
Dror
  • 2,548
  • 4
  • 33
  • 51
1
vote
0 answers

How to create dynamic function and call that static

how to create a dynamic function with php and call that static? I create new soap server and register methods via an array. (too many methods) for example I create a function called me dynamically but this function only work if call that using…
Hamid
  • 378
  • 3
  • 8
1
vote
2 answers

SOAP PHP server-side debugging

I was landed a project to debug a PHP SOAP server (SoapServer) written by an unknown party. It is being used by a c# SOAP client, which I don't have access to the source code to (in other words, I cannot use __getLastResponse to see what it gets). I…
user670102
  • 31
  • 1
  • 1
  • 3
1
vote
0 answers

How to parse SOAP XML offline?

I need to parse a SOAP request offline. All I need is to get the method_name of the request and the arguments to pass them to a controller without having generated any soap response to the request. I have 2 ways: 1) create an XML reader for SOAP…
Max Cuttins
  • 614
  • 2
  • 6
  • 20
1
vote
0 answers

Get soapenv:Header section in server side

For authentication, I need to get parameters of soap header when clients call me. I googled couple of hours but nothing found. class myClass { function syncRelation($params) { Functions::logging($params); } $server = new…
Mohsen Zia
  • 442
  • 4
  • 16