soapserver Questions
4
Solved
I am currently working on Spring soap server project. I started off with the Getting Started guide from Spring here http://spring.io/guides/gs/producing-web-service/ to build a basic SOAP service.
...
Headquarters asked 19/1, 2015 at 20:8
1
Does anyone have any clue as to how I can add an attribute to a SoapVar object? It seems like it would be simple, but I can't get it to take/work.
I've looked at the PHP docs and at the following s...
Fultz asked 28/8, 2011 at 20:56
2
Solved
I'm preparing the SOAP server and generating my WSDL using the follow code:
//(... Controller action code ...)
if (key_exists('wsdl', $params)) {
$autodiscover = new AutoDiscover();
$autodiscove...
Jimerson asked 25/6, 2013 at 21:8
5
Solved
using this code I make soap requests
$client = new SoapClient('http://example.com/soap/wsdl');
try {
$result = $client->myMethod();
} catch (Exception $e) {
echo $e->getMessage();
}
Som...
Coquille asked 23/5, 2015 at 8:38
3
Solved
This may come across as a terribly lazy question, but I assure you it is not. I have tried for days to get this working but I just cannot.
I have been given a WSDL file and I need to create a SOAP...
Posticous asked 24/1, 2012 at 15:34
4
So the error is:
PHP Fatal error: Procedure 'sup:set_availability' not present in XMLSoapServer.php
I am receiving this error on my development environment (MAMP).
This is caused by an invalid X...
Gibbie asked 30/4, 2014 at 20:12
1
Solved
I'm trying to implement a SOAP server using Zend Framework 2 in PHP5.5. I've come as far as this:
library.php
<?php
namespace Library;
class IncrementedInt
{
/**
* @var integer
**/
public...
Caliginous asked 18/9, 2013 at 9:22
1
Solved
I am setting up a SOAP webservice which takes XML input and has to return custom XML output.
All this is defined in a WSDL. I apply soapServer for this (until someone says it has bugs preventing me...
Spunk asked 4/10, 2012 at 22:3
0
I am using the WSDL document automatically generated by Visual Studio 2010 (ie. from the "HelloWorld" application that is created when you create a new web service application in Visual Studio.) Bu...
Whorled asked 18/11, 2011 at 20:41
1
© 2022 - 2024 — McMap. All rights reserved.