Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]
Show
Ignore:
Timestamp:
07/04/07 23:13:44 (1 year ago)
Author:
nahi
Message:
  • tests updated; testcase name collision, interop test config, etc.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/test/interopR2/client.rb

    r1603 r1876  
    66require 'base' 
    77require 'interopResultBase' 
     8require 'xsd/xmlparser/rexmlparser' 
    89#XSD::Charset.encoding = 'EUC' 
    910 
     
    101102      @@drv = RPC::Driver.new(location, namespace, soap_action) 
    102103      @@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 
    104109      method_def(@@drv, soap_action) 
    105110    end 
     
    12231228 
    12241229if $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/' 
    12271233  SOAPBuildersTest.setup(name, location) 
    12281234end 
  • trunk/test/interopR2/server.rb

    r1520 r1876  
    99require 'soap/rpc/standaloneServer' 
    1010require 'base' 
     11require 'xsd/xmlparser/rexmlparser' 
    1112 
    1213class InteropApp < SOAP::RPC::StandaloneServer