hi. I need to call a web service whose wsdl is as=> <xs:element name="getRecordedMeetingsList"> <xs:complexType> <xs:sequence> <xs:element minOccurs="0" name="iMeetingId" type="xs:int"/> </xs:sequence> </xs:complexType> </xs:element> <xs:element name="getRecordedMeetingsListResponse"> <xs:complexType> <xs:sequence> <xs:element maxOccurs="unbounded" minOccurs="0" name="return" nillable="true" type="ns0:RecordedMeeting"/> </xs:sequence> </xs:complexType> </xs:element>
I'm calling the "getRecordedMeetingsList" function as.. result = obj2.getRecordedMeetingsList(120) where 120 is the meetingID. But..its not accepting this input parameter and giving me an INVALID MEETINGID error.. while the meetingid 120 is a valid id..!!!! When I check what SOAP request is actually passed..I found that no meetingID was passed at all... :( Can anyone please tell me the right way in which I should pass the meetingID parameter... Thank You.. -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

