From: Langston, J. <Jam...@co...> - 2010-02-05 16:26:38
|
Also, is there another way for me to look at what is getting sent to the server? I'm looking at the debug output. thanks, Jim ///////////////////////// Jim Langston Technical Consultant jam...@co... The contents of this e-mail are intended for the named addressee only. It contains information that may be confidential. Unless you are the named addressee or an authorized designee, you may not copy or use it, or disclose it to anyone else. If you received it in error please notify us immediately and then destroy it. From: rahed [mailto:ra...@gm...] Sent: Friday, February 05, 2010 10:06 AM To: Langston, James Cc: soa...@li... Subject: Re: [Soaplite-devel] xsi:nil ? "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 |