Changeset 1876 for trunk/test/interopR2
- Timestamp:
- 07/04/07 23:13:44 (1 year ago)
- Files:
-
- trunk/test/interopR2/client.rb (modified) (3 diffs)
- trunk/test/interopR2/server.rb (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/test/interopR2/client.rb
r1603 r1876 6 6 require 'base' 7 7 require 'interopResultBase' 8 require 'xsd/xmlparser/rexmlparser' 8 9 #XSD::Charset.encoding = 'EUC' 9 10 … … 101 102 @@drv = RPC::Driver.new(location, namespace, soap_action) 102 103 @@drv.mapping_registry = SOAPBuildersInterop::MappingRegistry 103 @@drv.wiredump_dev = @@log 104 if $DEBUG 105 @@drv.wiredump_dev = STDOUT 106 else 107 @@drv.wiredump_dev = @@log 108 end 104 109 method_def(@@drv, soap_action) 105 110 end … … 1223 1228 1224 1229 if $0 == __FILE__ 1225 name = ARGV.shift || 'localhost' 1226 location = ARGV.shift || 'http://localhost:10080/' 1230 #name = ARGV.shift || 'localhost' 1231 #location = ARGV.shift || 'http://localhost:10080/' 1232 name = 'localhsot'; location = 'http://localhost:10080/' 1227 1233 SOAPBuildersTest.setup(name, location) 1228 1234 end trunk/test/interopR2/server.rb
r1520 r1876 9 9 require 'soap/rpc/standaloneServer' 10 10 require 'base' 11 require 'xsd/xmlparser/rexmlparser' 11 12 12 13 class InteropApp < SOAP::RPC::StandaloneServer