From ec03a601811587dd4265667aadd50c101c23b116 Mon Sep 17 00:00:00 2001 From: Leon Breedt Date: Fri, 18 Feb 2005 23:55:29 +0000 Subject: rename entire package to Action Web Service git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@672 5ecf4fe2-1ee6-0310-87b1-e25e094e27de --- actionwebservice/test/protocol_soap_test.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'actionwebservice/test/protocol_soap_test.rb') diff --git a/actionwebservice/test/protocol_soap_test.rb b/actionwebservice/test/protocol_soap_test.rb index 164d06bbd6..1130dff3a7 100644 --- a/actionwebservice/test/protocol_soap_test.rb +++ b/actionwebservice/test/protocol_soap_test.rb @@ -1,7 +1,7 @@ require File.dirname(__FILE__) + '/abstract_soap' module ProtocolSoapTest - class Person < ActionService::Struct + class Person < ActionWebService::Struct member :id, Integer member :names, [String] member :lastname, String @@ -12,7 +12,7 @@ module ProtocolSoapTest end end - class API < ActionService::API::Base + class API < ActionWebService::API::Base api_method :argument_passing, :expects => [{:int=>:int}, {:string=>:string}, {:array=>[:int]}], :returns => [:bool] api_method :array_returner, :returns => [[:int]] api_method :nil_returner @@ -22,7 +22,7 @@ module ProtocolSoapTest default_api_method :default end - class Service < ActionService::Base + class Service < ActionWebService::Base web_service_api API attr :int @@ -73,10 +73,10 @@ module ProtocolSoapTest end class AbstractContainer - include ActionService::API - include ActionService::Container - include ActionService::Protocol::Registry - include ActionService::Protocol::Soap + include ActionWebService::API + include ActionWebService::Container + include ActionWebService::Protocol::Registry + include ActionWebService::Protocol::Soap wsdl_service_name 'Test' -- cgit v1.2.3