I have been using tcpdump to grab the packets. I can tell that the SOAP Envelope being generated contains an empty parameter list. Per my first post, the SOAP envelope being generated looks like the following (less formatting):
<?xml version="1.0" encoding="utf-8"?> <SOAP-ENV:Envelope xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"> <SOAP-ENV:Body> <ns0:sendStrings xmlns:ns0="http://server.webservices.tutorials.wakaleo.com/" /> </SOAP-ENV:Body> </SOAP-ENV:Envelope> When I run a Java client against the webservice, the following SOAP envelope is generated: <?xml version="1.0" ?> <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:ns1="http://server.webservices.tutorials.wakaleo.com/"> <soapenv:Header xmlns:wsa="http://www.w3.org/2005/08/addressing"> <wsa:To>http://localhost:8080/stockquotes/stock_quote</wsa:To> <wsa:MessageID>eec5d28d-a25d-47de-bbf1-9d03c1a52e80</wsa:MessageID> <wsa:ReplyTo> <wsa:Address>http://www.w3.org/2005/08/addressing/anonymous</wsa:Address> </wsa:ReplyTo> <wsa:Action>http://server.webservices.tutorials.wakaleo.com/StockQuote/sendStringsRequest</wsa:Action> </soapenv:Header> <soapenv:Body> <ns1:sendStrings> <arg0>one</arg0> <arg0>two</arg0> <arg0>three</arg0> </ns1:sendStrings> </soapenv:Body> </soapenv:Envelope> Although the above client uses WSA, it shouldn't be required. I just want to see Flex at least attempt to pass an array of parameters. Perhaps this has something to do with Document/Literal non-wrapped? Thanks. --Kaleb --- In [email protected], "Renaun Erickson" <[EMAIL PROTECTED]> wrote: > > Get a HTTP traffic sniffer like ServiceCapture and see how the request > is going out. It looks to be an issue on the WebService side or you > are making a call to an invalid WSDL or WebService file. > > You need to look into the WebService side of things. > > Renaun > > -- Flexcoders Mailing List FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com Yahoo! Groups Links <*> To visit your group on the web, go to: http://groups.yahoo.com/group/flexcoders/ <*> To unsubscribe from this group, send an email to: [EMAIL PROTECTED] <*> Your use of Yahoo! Groups is subject to: http://docs.yahoo.com/info/terms/

