aboutsummaryrefslogtreecommitdiffstats
path: root/actionwebservice/test/protocol_soap_test.rb
diff options
context:
space:
mode:
authorLeon Breedt <bitserf@gmail.com>2005-02-18 23:55:29 +0000
committerLeon Breedt <bitserf@gmail.com>2005-02-18 23:55:29 +0000
commitec03a601811587dd4265667aadd50c101c23b116 (patch)
treeb040f5f1488267b35bc0110efe029a789c3a350b /actionwebservice/test/protocol_soap_test.rb
parent5760a6cb3e3f3ce3b41c25023f3fbb875590c5bc (diff)
downloadrails-ec03a601811587dd4265667aadd50c101c23b116.tar.gz
rails-ec03a601811587dd4265667aadd50c101c23b116.tar.bz2
rails-ec03a601811587dd4265667aadd50c101c23b116.zip
rename entire package to Action Web Service
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@672 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionwebservice/test/protocol_soap_test.rb')
-rw-r--r--actionwebservice/test/protocol_soap_test.rb14
1 files changed, 7 insertions, 7 deletions
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'