joseye1
05-17-2010, 05:22 PM
Hi,
I tried to get a SOAP service through <soap> tag, but receive the following error:
"Org.xml.sax.SAXException: SimpleDeserializer Encountered a child element, Which Is Not Expected, Was it something in trying to deserialize"
I do not understand that can happen, thanks for the help. The Code is:
<canvas debug="true" height="530">
<include href="rpc/rpc.lzx" />
<debug x="15" y="15" width="415" height="500"/>
<soap name="bugService" wsdl="http://www.openmeetings.de/openmeetings/services/UserService?wsdl">
<handler name="onload">
Debug.debug('WSDL at %w', this.wsdl);
Debug.debug('proxy:');
Debug.inspect(this.proxy);
</handler>
<handler name="onerror" args="error">
Debug.debug('error: %w', error);
</handler>
<remotecall funcname="getSession"></remotecall>
</soap>
<button text="GetSession">
<handler name="onclick">
parent.bugService.getSession.invoke();
</handler>
</button>
</canvas>
I tried to get a SOAP service through <soap> tag, but receive the following error:
"Org.xml.sax.SAXException: SimpleDeserializer Encountered a child element, Which Is Not Expected, Was it something in trying to deserialize"
I do not understand that can happen, thanks for the help. The Code is:
<canvas debug="true" height="530">
<include href="rpc/rpc.lzx" />
<debug x="15" y="15" width="415" height="500"/>
<soap name="bugService" wsdl="http://www.openmeetings.de/openmeetings/services/UserService?wsdl">
<handler name="onload">
Debug.debug('WSDL at %w', this.wsdl);
Debug.debug('proxy:');
Debug.inspect(this.proxy);
</handler>
<handler name="onerror" args="error">
Debug.debug('error: %w', error);
</handler>
<remotecall funcname="getSession"></remotecall>
</soap>
<button text="GetSession">
<handler name="onclick">
parent.bugService.getSession.invoke();
</handler>
</button>
</canvas>