Skip to content

Commit

Permalink
Application => Devel::Logger
Browse files Browse the repository at this point in the history
  • Loading branch information
nahi committed Jan 25, 2002
1 parent 5fa7f81 commit d39e1d4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion lib/soap/driver.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
require 'soap/streamHandler'
require 'soap/charset'

require 'application'
require 'devel/logger'


module SOAP
Expand Down
2 changes: 1 addition & 1 deletion lib/soap/processor.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ def unmarshal( stream, opt = {} )
end
module_function :unmarshal

def setDefaultParser( opt )
def setDefaultParser( opt = {} )
DefaultParser[ 0 ] = loadParser( opt )
end
module_function :setDefaultParser
Expand Down
2 changes: 1 addition & 1 deletion lib/soap/server.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
# Ruby bundled library

# Redist library
require 'application'
require 'devel/logger'

module SOAP

Expand Down
4 changes: 2 additions & 2 deletions lib/soap/streamHandler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ class StreamHandler
public

RUBY_VERSION_STRING = "ruby #{ RUBY_VERSION } (#{ RUBY_RELEASE_DATE }) [#{ RUBY_PLATFORM }]"
%q$Id: streamHandler.rb,v 1.17 2001/12/07 09:06:23 nakahiro Exp $ =~ /: (\S+),v (\S+)/
%q$Id: streamHandler.rb,v 1.18 2002/01/25 14:52:46 nakahiro Exp $ =~ /: (\S+),v (\S+)/
RCS_FILE, RCS_REVISION = $1, $2

class ConnectionData
Expand Down Expand Up @@ -133,7 +133,7 @@ def sendPOST( soapString, soapAction, charset )
res = @client.request( 'POST', @server, soapString, extra )
rescue
@client.reset( @server )
raise PostUnavailableError.new( "Timeout." )
raise
end
dumpDev << "\n\n" if dumpDev

Expand Down

0 comments on commit d39e1d4

Please sign in to comment.