Could some one show me an simple example of using the Aegis binding. First here is an example of what my services expects, and below that is what my client sends.
This is what my server understands: <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <soap:Body> <userInfo xmlns="http://tempuri.org"> <in0> <fileType xmlns="http://model.tempuri.org"></fileType> <fileSet xmlns="http://model.tempuri.org"></fileSet> </in0> </userInfo> </soap:Body> </soap:Envelope> But this is what my client sends: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:cor="http://tempuri.org/FileService" xmlns:mod="http://model.tempuri.org/"> <soapenv:Header/> <soapenv:Body> <cor:userInfoRequestElement> <mod:fileSet>?</mod:fileSet> <mod:fileType>?</mod:fileType> </cor:userInfoRequestElement> </soapenv:Body> </soapenv:Envelope> Is it possible to use aegis to bind that request from the client to this method: public UserInfoResponse userInfo(UserInfoRequest parameters) throws MyFault; If someone could give me an example I would be very happy. Cheers, Tero --------------------------------------------------------------------- To unsubscribe from this list please visit: http://xircles.codehaus.org/manage_email
