Changeset 1876
- 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)
- trunk/test/soap/auth/test_basic.rb (modified) (1 diff)
- trunk/test/soap/auth/test_digest.rb (modified) (1 diff)
- trunk/test/soap/test_cookie.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 trunk/test/soap/auth/test_basic.rb
r1869 r1876 10 10 11 11 12 class Test StreamHandler< Test::Unit::TestCase12 class TestBasic < Test::Unit::TestCase 13 13 Port = 17171 14 14 ProxyPort = 17172 trunk/test/soap/auth/test_digest.rb
r1869 r1876 10 10 11 11 12 class Test StreamHandler< Test::Unit::TestCase12 class TestDigest < Test::Unit::TestCase 13 13 Port = 17171 14 14 ProxyPort = 17172 trunk/test/soap/test_cookie.rb
r1870 r1876 32 32 @cookie_value = cookie 33 33 # do not save cookie value. 34 puts "new cookie value: #{@cookie_value}"35 34 end 36 35 end