Changeset 837
- Timestamp:
- Mar 12, 2010, 3:34:41 PM (15 years ago)
- Location:
- vanHelsing/trunk/src
- Files:
-
- 2 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
vanHelsing/trunk/src/VanHelsing.wsdl
r824 r837 15 15 <xsd:complexType name="resourceListType"> 16 16 <xsd:sequence> 17 <xsd:element name="resource List" type="tns:ResourceInfo" maxOccurs="unbounded" minOccurs="0"></xsd:element>17 <xsd:element name="resource" type="tns:ResourceInfo" maxOccurs="unbounded" minOccurs="0"></xsd:element> 18 18 </xsd:sequence> 19 19 </xsd:complexType> … … 44 44 <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> 45 45 <wsdl:operation name="listResources"> 46 <soap:operation soapAction="http:// www.dass-it.de/VanHelsing/NewOperation"/>46 <soap:operation soapAction="http://localhost:8080/"/> 47 47 <wsdl:input> 48 48 <soap:body use="literal"/> -
vanHelsing/trunk/src/VanHelsingServer.py
r836 r837 37 37 for rid,name in result: 38 38 39 resInf=response.new_resource List()39 resInf=response.new_resource() 40 40 resInf.set_element_director(resDirector) 41 41 resInf.set_element_resId(rid) … … 44 44 rList.append(resInf) 45 45 46 response.set_element_resource List(rList)46 response.set_element_resource(rList) 47 47 48 48 return request,response
Note:
See TracChangeset
for help on using the changeset viewer.