nusoap

Switching from NuSoap to PHP5 Soap - need a jumpstart

Here's the call I'm trying to make: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt; <soap:Header xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"&gt; <urn:SessionHeader xmlns:urn="http://www.mywebservice.com/webservices/SoapService" xmlns="http://www.mywebservice.com/webservices/SoapService" xmlns:so...

Losing language character with nusoap

Hi, I cant successfuly save data received with nusoap server with right coding. Language characters (Czech) are always replaced with question mark. Iam using PHP 5.3 and nusoap 0.9.5. I tried replacing every ISO-8859-1 with UTF-8 in nusoap source code but I cant make this work. Any advices would be much aprriciated. ...

Download mysql Table with php nusoap

I want to export/download a table from a mysql database to a txt or csv file like the way you can in phpmyadmin. The table can be anywhere from 100 - 90k entries and the mysql query will take place on a php page. ...

PHP Server was unable to process request.

This is my coding can any one help: <?php class clsWSSEAuth { private $Username; private $Password; private $Meruser; private $Merpass; function __construct($username, $password) { $this->Username=$username; $this->Password=$password; //$this->Merhcan...

SOAP authentication with PHP

I need to connect to a web service that requires authentication credentials in the form of a plain text user name and password. I have a basic understanding of SOAP and have managed to connect to other open web services that do not require a username or password using NuSOAP. The following was sent to me: <?php // Set up security opti...

Help with Exchance 2010 EWS (API) and/or PHP's NuSOAP library?

Just to be clear before continuing: using PHP's built-in SOAP class is unfortunately not an option here (production server's PHP is not built with it, and won't be). I'm trying to use EWS to allow me to authenticate users for a completely external server application. LDAP authentication has been disallowed. I have verified my EWS wsdl...

NuSOAP / fsockopen error - Couldn't open socket connection to server , Error (13): Permission denied

I have a php application using NuSOAP on a RHEL5/CentOS dedicated system. I'm runing into the following error: 2010-10-21 06:23:43.374471 soap_transport_http: entered send() with data of length: 1693 2010-10-21 06:23:43.374510 soap_transport_http: connect connection_timeout 0, response_timeout 30, scheme http, host www.mysite.com, port...

Nusoap simpletype enumeration

I have a enumeration class and I want to set valuse from this in a function. But I`m not abel to do this. It allways picks the fist in line, her it is Customer. $server->wsdl->addSimpleType( 'AddressType', 'xsd:string', 'SimpleType', 'struct', array( 'Customer', 'Order', 'Delivery', 'In...

Querying on Leads Status in SugarCRM Using NuSOAP

I'm trying to get back an entry list of leads by status. The query I'm using is "leads.status = 'New'" however when I try this in php, I get back leads of other statuses as well. function get_leads_over_x_days($session_id, $days) { $daysAgo = date("m/d/Y", strtotime($days . ' days ago')); $where = "leads.status=...