Welcome to the "trac"-ing site of soap4r!
[soap4r] [httpclient] [openpgp4u] [pkcs1] [logger] [csv] [vtr]

Changeset 1968

Show
Ignore:
Timestamp:
09/16/07 10:48:49 (10 months ago)
Author:
nahi
Message:
  • reduce ignorable test warnings.
Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/test/soap/auth/test_basic.rb

    r1963 r1968  
    1616  def setup 
    1717    @logger = Logger.new(STDERR) 
    18     @logger.level = Logger::Severity::ERROR 
     18    @logger.level = Logger::Severity::FATAL 
    1919    @url = "http://localhost:#{Port}/" 
    2020    @proxyurl = "http://localhost:#{ProxyPort}/" 
     
    4242    htpasswd_userdb = WEBrick::HTTPAuth::Htpasswd.new(htpasswd) 
    4343    @basic_auth = WEBrick::HTTPAuth::BasicAuth.new( 
     44      :Logger => @logger, 
    4445      :Realm => 'auth', 
    4546      :UserDB => htpasswd_userdb 
  • trunk/test/soap/auth/test_digest.rb

    r1963 r1968  
    1616  def setup 
    1717    @logger = Logger.new(STDERR) 
    18     @logger.level = Logger::Severity::ERROR 
     18    @logger.level = Logger::Severity::FATAL 
    1919    @url = "http://localhost:#{Port}/" 
    2020    @proxyurl = "http://localhost:#{ProxyPort}/" 
     
    4242    htdigest_userdb = WEBrick::HTTPAuth::Htdigest.new(htdigest) 
    4343    @digest_auth = WEBrick::HTTPAuth::DigestAuth.new( 
     44      :Logger => @logger, 
    4445      :Algorithm => 'MD5', 
    4546      :Realm => 'auth', 
  • trunk/test/soap/test_streamhandler.rb

    r1963 r1968  
    1616  def setup 
    1717    @logger = Logger.new(STDERR) 
    18     @logger.level = Logger::Severity::ERROR 
     18    @logger.level = Logger::Severity::FATAL 
    1919    @url = "http://localhost:#{Port}/" 
    2020    @proxyurl = "http://localhost:#{ProxyPort}/" 
     
    4646    htpasswd_userdb = WEBrick::HTTPAuth::Htpasswd.new(htpasswd) 
    4747    @basic_auth = WEBrick::HTTPAuth::BasicAuth.new( 
     48      :Logger => @logger, 
    4849      :Realm => 'auth', 
    4950      :UserDB => htpasswd_userdb 
  • trunk/test/wsdl/multiplefault.wsdl

    r1520 r1968  
    1313    <xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" 
    1414        targetNamespace="urn:jp.gr.jin.rrr.example.datatypes"> 
     15      <xsd:element name="AuthenticationError" type="tns:AuthenticationError" /> 
    1516      <xsd:complexType name="AuthenticationError"> 
    1617        <all> 
     
    3132  <message name="outputmsg"/> 
    3233  <message name="faultmsg1" > 
    33     <part name="exception" type="typens:AuthenticationError" /> 
     34    <part name="exception" element="typens:AuthenticationError" /> 
    3435  </message> 
    3536  <message name="faultmsg2" > 
    36     <part name="exception" type="typens:AuthorizationError" /> 
     37    <part name="exception" element="typens:AuthorizationError" /> 
    3738  </message> 
    3839 
     
    4142      <input message="tns:inputmsg"/> 
    4243      <output message="tns:outputmsg"/> 
    43       <fault message="tns:faultmsg1"/> 
    44       <fault message="tns:faultmsg2"/> 
     44      <fault name="faultmsg1" message="tns:faultmsg1"/> 
     45      <fault name="faultmsg2" message="tns:faultmsg2"/> 
    4546    </operation> 
    4647  </portType> 
     
    5859            encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/> 
    5960      </output> 
     61      <fault name="faultmsg1"> 
     62        <soap:fault name="faultmsg1" use="literal"/> 
     63      </fault> 
     64      <fault name="faultmsg2"> 
     65        <soap:fault name="faultmsg2" use="literal"/> 
     66      </fault> 
    6067    </operation> 
    6168  </binding>