Hi, I'm having a problem invoking a service deployed in apache server with tomcat 3.3 using GLUE 2-2 client.
The service name is notify(DirNotificationData data) where DirNotificationData is a user defined object. This service worked fine when using an apache soap client. Here is the request sent by the GLUE client: <?xml version="1.0" encoding="UTF-8"?> <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns5="http://www.themindelectric.com/package/emblaze/"> <soap:Body> <n:notify xmlns:n="urn:emblaze"> <arg0 href="#id0"/> </n:notify> <id0 id="id0" soapenc:root="0" xsi:type="ns5:DirNotificationData"> <sid xsi:type="xsd:int">1</sid> <entryType href="#id1"/> <eventType href="#id2"/> <entryId xsi:type="xsd:string">46</entryId> </id0> <id1 id="id1" soapenc:root="0" xsi:type="ns5:DIR_ENTRY_TYPE"> <m_iValue xsi:type="xsd:int">1</m_iValue> </id1> <id2 id="id2" soapenc:root="0" xsi:type="ns5:DIRECTORY_EVENT_TYPE"> <m_iValue xsi:type="xsd:int">1</m_iValue> </id2> </soap:Body> </soap:Envelope> Is that a problem between the implementation of apache soap and GLUE? thanks, Lior Weintraub.