-
Hi pigreco314,
I appreciate all of your help, but it looks like it's still not serializing properly. Here's what the new code generates:
<?xml version="1.0" encoding="utf-8"?>
<SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema"...
2009-06-08 21:55:59 UTC in NuSOAP - SOAP Toolkit for PHP
-
Thanks for this code, but it looks like it's still not forming the request correctly.
I ran a packet sniffer, and here's what a working request(from a .NET client I wrote) looks like:
<s:Envelope xmlns:s="http://schemas.xmlsoap.org/soap/envelope/">
<s:Body>
<QuickSend xmlns="http://BlueSkyFactory.Publicaster7.Public.API">
<SendData...
2009-06-05 14:07:04 UTC in NuSOAP - SOAP Toolkit for PHP
-
Hi,
It's a .NET WCF service, here's the method prototype:
bool QuickSend(QuickSendData SendData);
And the QuickSendData class:
[DataContract(Namespace = "http://BlueSkyFactory.Publicaster7.Public.API"), Serializable]
public class QuickSendData
{
[DataMember]
public DataSet Recipients { get; set; }
[DataMember]
public string RecipientsData { get; set;...
2009-06-04 21:17:37 UTC in NuSOAP - SOAP Toolkit for PHP
-
Hi Sergio,
It looks like it's only happening on the QuickSend method call. I suspect it has to do with how the data is serialized.
Thanks,
Ilija.
2009-06-04 20:54:08 UTC in NuSOAP - SOAP Toolkit for PHP
-
Any takers?.
2009-05-29 20:01:16 UTC in NuSOAP - SOAP Toolkit for PHP
-
Hey guys,
I was hoping you could help me with a problem I haven't been able to fix. I am trying to use nusoap to make a call to a WCF service. I keep getting the "HTTP Error: socket read of headers timed out" error though.
Here's the code:
<?php
require_once('nusoap/nusoap.php');
set_time_limit(600);
$accountID = '<removed>';
$password = '<removed>';.
2009-05-14 21:46:48 UTC in NuSOAP - SOAP Toolkit for PHP