Changeset 1603 for trunk/test/interopR2
- Timestamp:
- 08/01/05 23:27:11 (3 years ago)
- Files:
-
- trunk/test/interopR2/SOAPBuildersInterop_R2GrB.wsdl (modified) (1 diff)
- trunk/test/interopR2/client.rb (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/test/interopR2/SOAPBuildersInterop_R2GrB.wsdl
r1575 r1603 13 13 <port name="InteropTestSoapPort" 14 14 binding="tns:InteropTestSoapBindingB"> 15 <soap:address 16 location="http://www.jin.gr.jp/~nahi/Ruby/SOAP4R/SOAPBuildersInterop/"/> 15 <soap:address location="http://dev.ctor.org/soapsrv"/> 17 16 </port> 18 17 </service> trunk/test/interopR2/client.rb
r1597 r1603 82 82 setup_log(name) 83 83 setup_drv(location) 84 setup_result_drv(name, location)85 84 end 86 85 87 86 def teardown 88 submit_test_result89 87 end 90 88 … … 117 115 XSD::QName.new(InterfaceNS, name), soap_action, name, params) 118 116 end 119 end120 121 def setup_result_drv(name, location)122 @@result_drv = RPC::Driver.new(SOAPBuildersInteropResult::Server,123 SOAPBuildersInteropResult::InterfaceNS)124 SOAPBuildersInteropResult::Methods.each do |method, *params|125 @@result_drv.add_method(method, params)126 end127 128 client = SOAPBuildersInteropResult::Endpoint.new129 client.processorName = 'SOAP4R'130 client.processorVersion = '1.4'131 client.uri = '210.233.24.119:*'132 client.wsdl = 'Not used.'133 134 server = SOAPBuildersInteropResult::Endpoint.new135 server.endpointName = name136 server.uri = location137 server.wsdl = 'Not used.'138 139 @@test_result = SOAPBuildersInteropResult::InteropResults.new(140 client, server)141 end142 143 def submit_test_result144 load 'soap/XMLSchemaDatatypes.rb'145 @@result_drv.addResults(@@test_result)146 117 end 147 118 end