how to determine is a soap web service is up or down and how
If an application relies heavily on SOAP Web Services to pull data and construct pages based on this data it receives, how is the best way to determine and handle it if the soap web service is not...
View ArticleConvert/Use API written for C#/Java with PHP
I have access to an API that I would like to use, but it only has documentation in C#/Java. I know neither of these languages and would love to use the API in PHP. I do have access to the API’s WSDL...
View ArticlejQuery plugin with multiple functions
I currently have a web based application which strictly relies on a 3rd party soap server to supply the site with information. This application has little to no javascript, a few elements pulled from...
View ArticleConvert/Use API written for C#/Java with PHP
I have access to an API that I would like to use, but it only has documentation in C#/Java. I know neither of these languages and would love to use the API in PHP. I do have access to the API’s WSDL...
View ArticleZend soap autodiscovery and nillable=“true” in generated WSD
i’m using Zend soap autodiscovery to generate a WSDL file for my web server. The problem is that every element of every complexType defaults to nillable=”true”. How do i declare elements as required? I...
View ArticlePHP SoapServer always calls the same function despite callin
My SOAP server is (intended to be) setup with three operations: login, logout, and version.The login function’s code is currently “faking” it at the moment, accepting two parameters, a username and...
View ArticlePHP SOAP returning SOAP Fault: Server was unable to process
I am having difficulty in getting a SOAP request working properly , which requires XML string as input.It’s throwing “SOAP Fault: Server was unable to process request. —> Value cannot be null....
View ArticleVery weird SoapClient problem
try { $client = new \SoapClient($wsdlUrl, array( ‘cache_wsdl’ => 0, ‘exceptions’ => true, ‘trace’ => true)); $client->getPage($parameter); } catch(\Exception $e) { die(“exception”); }Okay...
View ArticleReturning a Dictionary object with PHP & SOAP
I’m writing a SOAP API in PHP and I’m stuck. I’m trying to return a Dictionary object with this format:Key: #Value: Id: # Title: some title Text: blahI’ve been looking through the WSDL and XSD files of...
View ArticleImplementing a WCF (compliant) service in languages other th
We have a WCF web service built to WSDL and XSD specifications which assumes ‘Windows Centric’ thinking. Is it possible to implement the same functionality in other languages eg PHP or Java?I’ve found...
View Article