Web service call help

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… :frowning:
Can anyone please tell me the right way in which I should pass the
meetingID parameter…
Thank You…