But the service written in .NET can't recognize my username and password??? The SOAPEnvelope I sent: <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SOAP-ENV:Header> <ns1:Authentication xmlns:ns1="Data"> <UserName>username</UserName> <Password>password</Password> </ns1:Authentication> </SOAP-ENV:Header> <SOAP-ENV:Body> <DataProcessed xmlns="Data"/> </SOAP-ENV:Body> </SOAP-ENV:Envelope>
The SOAPEnvelope expected: <?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/"> <soap:Header> <Authentication xmlns="Data"> <UserName>string</UserName> <Password>string</Password> </Authentication> </soap:Header> <soap:Body> <DataProcessed xmlns="Data" /> </soap:Body> </soap:Envelope> HELP!!! At 11:56 AM 6/7/2002 -0400, you wrote: >Try this method: > user.setObjectValue( "Enter any String" ); > >This creates a tag like the following: > <USER>Enter any Sting</USER> > > >best regards >Matthias Wimmer > >
