Questions tagged [soapserver]

154 questions
0
votes
0 answers

Get "Method Not Allowed" error calling Django SOAP web server

I have written a SOAP web server with Django using this tutorial; I used the exact code disscussed in the tutorial and its linked tutorials. This is my urls.py BTW: from django.conf.urls import url from django.contrib import admin from views import…
Zeinab Abbasimazar
  • 9,835
  • 23
  • 82
  • 131
0
votes
1 answer

phpClient returning nesting XML

I have returning data from webservice with soap like this :
Tejo
  • 1
0
votes
1 answer

build WSDL file for hello world soapServer

I am having trouble creating a WSDL file for my hellowold PHP soapserver. Server code: name, XSD_STRING, null, null, 'content' ); $finalresponse [] = new SoapVar…
Jay42
  • 417
  • 1
  • 11
  • 24
0
votes
1 answer

Soap server Symfony how to set response

I am trying to implement a very simple soap call in Symfony3. It works perfectly but it return nothing. In my controller I just call it like this public function indexAction() { $server = new…
Etienne
  • 408
  • 2
  • 9
  • 28
0
votes
0 answers

php SoapServer empty response with large data

I'm struggling with a crazy behaviuor: I want to send a response with SoapServer, but when the data gets too large i get an empty Response (tested with soapUI) Response From Server: HTTP/1.1 200 OK Content-Type: text/xml;…
mech
  • 617
  • 6
  • 16
0
votes
2 answers

Adding HTTP Headers on SoapServer Response

Is there a way to add an HTTP Header in a response of a SoapServer. For example: I want the response of my SoapServer to add "Location", "http://localhost" HTTP/1.1 307 Temporary Redirect Location: http://localhost Content-Type: text/xml;…
Red
  • 65
  • 9
0
votes
1 answer

Why is my mock Soap Server only returning empty string?

This is a follow up in regards to my question about removing the expect headers. I have a mock soap server imitating the external endpoint. It was set up by using the default SoapServer of php: $server = new…
k0pernikus
  • 60,309
  • 67
  • 216
  • 347
0
votes
1 answer

Salesforce Outgoing message: SOAP response was a nack

I am integrating with an in-house system. I have set up an outgoing message on one object and my web service is seeing the message every time I update a record. My service is sending an true response, but the outgoing message delivery status is…
Andrew Vickers
  • 2,504
  • 2
  • 10
  • 16
0
votes
2 answers

PHP SOAP client and SOAP server errors

I have a web server which is acting as a SOAP client to communicate with a third party SOAP server. My client is implemented in PHP using php::soapclient. What is the best way to verify the SOAP server is functioning so I can provide the client…
Chris
  • 11,780
  • 13
  • 48
  • 70
0
votes
0 answers

Stop PHP SoapServer from stopping execution on soapfault?

I just started creating a soap service and at the end of the request of I need to be able to log the request and response. ob_start(); try { $soapServer = new SoapServer(Smiggly::getSetting("network.soap.WSDLUrl")); …
Computer User
  • 546
  • 9
  • 15
0
votes
1 answer

ispConfig soap client functions of billing module does not exist

I am very new to ISPConfig and php soap technology. I downloaded the example script from http://www.ispconfig.org/page/en/addons/billing-module.html but when I am trying to add_invoice it's telling billing_invoice_add function I am getting…
Dinesh Patra
  • 1,125
  • 12
  • 23
0
votes
2 answers

Auto load paramaters in SOAPUI

When using soapui , sometime it autoloads parameters of soapserver when not passing any variable to soapserver. The parameters will be displayed in left window I've created a soapserver in PHP, it runs well, but I can not make soapui load my…
Tran Huynh
  • 41
  • 3
0
votes
1 answer

Multidimensional associative array as response in NuSOAP

I have some problems with response in SOAP. In general I can not undertand how to get response as multidimensional associative array for my SOAP-client. I used NuSOAP v 1.123 library. So I have that code in…
L6go1as
  • 39
  • 9
0
votes
1 answer

PHP SOAP server is sending back a partial response

I've written a SOAP service so my Silverlight application can add entires into my database. The server is written in PHP, and in order to test everything, I've written a PHP client. My client seems to be sending its request correctly. This is what…
Quentamia
  • 3,244
  • 3
  • 33
  • 42
0
votes
1 answer

symfony2 SoapServer EntityManager injection in service

I've got a problem with the native php SoapServer in symfony2. The SoapServer uses a "UserService" Service-Class in symfony2, which should be instantiated with the symfony2 EntityManager injected so that I can get access to my "UserRepository". To…