|
From: rahed <ra...@gm...> - 2010-02-05 15:06:07
|
"Langston, James" <Jam...@co...> writes:
> Hi all,
>
> In creating my elements and sending them to the server, I get
> xsi:nil="true" put into the element, even though
> I have not put it there.
>
> $monitorOrder->add_elem(name=>'MonitorSite',
> attributes=>{
> 'siteId'=>"330"
> }) ;
>
> expecting
>
> <MonitorSite siteId="330"/>
>
> I get
>
> <MonitorSite xsi:nil="true" siteId="330"/>
>
Cannot you set autotype to 0 before sending the message to the server?
$client->autotype(0); should disable data autotyping.
--
Radek
|