mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 637af54751
			
		
	
	
		637af54751
		
	
	
	
	
		
			
			win32 box. * lib/xsd/datatypes.rb(XSDFloat, XSDDouble): add +/- sign explicitly when stringified and embedded into XML instance. Ruby's sprintf may format -0.0 as "0.0" (no minus sign) depending on underlying C sprintf implementation. * test/xsd/test_xsd.rb, test/soap/test_basetype.rb: follow above change. * test/soap/calc/*: give httpd config param "CGIInterpreter". "/usr/bin/env ruby" thing does not work under non-Unix boxes. * ChangeLog: corrected wrong DoW of my log entries... git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@4643 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			13 lines
		
	
	
	
		
			264 B
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
	
		
			264 B
		
	
	
	
		
			Python
		
	
	
	
	
	
| require 'soap/rpc/cgistub'
 | |
| 
 | |
| class CalcServer < SOAP::RPC::CGIStub
 | |
|   def initialize(*arg)
 | |
|     super
 | |
| 
 | |
|     require 'calc'
 | |
|     servant = CalcService
 | |
|     add_servant(servant, 'http://tempuri.org/calcService')
 | |
|   end
 | |
| end
 | |
| 
 | |
| status = CalcServer.new('CalcServer', nil).start
 |