summaryrefslogtreecommitdiff
path: root/www/ruby-actionwebservice
AgeCommit message (Collapse)AuthorFilesLines
2007-02-18Update ruby-actionwebservice to 1.2.2.minskim3-11/+17
Changes: * Depend on Action Pack 1.13.2.
2007-01-28Update ruby-actionwebservice to 1.2.1, required by rails-1.2.1.minskim2-9/+9
Changes since 1.1.6: * Removed invocation of deprecated before_action and around_action filter methods. Corresponding before_invocation and after_invocation methods should be used instead. * Provide access to the underlying SOAP driver. * ActionWebService WSDL generation ignores HTTP_X_FORWARDED_HOST * Tighten rescue clauses. * Fixed XMLRPC multicall when one of the called methods returns a struct object. * Fix invoke_layered since api_method didn't declare :expects.
2006-10-09Update ruby-actionwebservice to 1.1.6.minskim3-11/+19
Changes since 0.9.1: * Do not convert driver options to strings (#4499) * Make ActiveWebService::Struct type reloadable * Fix scaffolding action when one of the members of a structural type has date or time type * Remove extra index hash when generating scaffold html for parameters of structural type #4374 [joe@mjg2.com] * Fix Scaffold Fails with Struct as a Parameter #4363 [joe@mjg2.com] * Fix soap type registration of multidimensional arrays (#4232) * Fix that marshaler couldn't handle ActiveRecord models defined in a different namespace (#2392). * Fix that marshaler couldn't handle structs with members of ActiveRecord type (#1889). * Fix that marshaler couldn't handle nil values for inner structs (#3576). * Fix that changes to ActiveWebService::API::Base required restarting of the server (#2390). * Fix scaffolding for signatures with :date, :time and :base64 types (#3321, #2769, #2078). * Fix for incorrect casting of TrueClass/FalseClass instances (#2633, #3421). * Fix for incompatibility problems with SOAP4R 1.5.5 (#2553) [Kent Sibilev] * Update from LGPL to MIT license as per Minero Aoki's permission. [Marcel Molina Jr.] * Rename Version constant to VERSION. #2802 [Marcel Molina Jr.] * Fix that XML-RPC date/time values did not have well-defined behaviour (#2516, #2534). This fix has one caveat, in that we can't support pre-1970 dates from XML-RPC clients.
2006-01-03Stop handling DIST_SUBDIR default for Ruby based packages.taca1-4/+4
Second, update distinfo and/or stop using USE_RUBY_DIST_SUBDIR in Makefiles.
2005-11-03Update www/ruby-actionwebservice package to 0.9.1.taca3-10/+10
*0.9.1* (October 19th, 2005) * Upgraded to Action Pack 1.10.1 and Active Record 1.12.1 *0.9.0* (October 16th, 2005) * Fix invalid XML request generation bug in test_invoke [Ken Barker] * Add XML-RPC 'system.multicall' support #1941 [jbonnar] * Fix duplicate XSD entries for custom types shared across delegated/layered services #1729 [Tyler Kovacs] * Allow multiple invocations in the same test method #1720 [dkhawk] * Added ActionWebService::API::Base.soap_client and ActionWebService::API::Base.xmlrpc_client helper methods to create the internal clients for an API, useful for testing from ./script/console * ActionWebService now always returns UTF-8 responses.
2005-09-04Update ruby-actionwebservice package to 0.8.1taca3-27/+16
*0.8.1* (11 July, 2005) * Fix scaffolding for Action Pack controller changes *0.8.0* (6 July, 2005) * Fix WSDL generation by aliasing #inherited instead of trying to overwrite it, or the WSDL action may end up not being defined in the controller * Add ActionController::Base.wsdl_namespace option, to allow overriding of the namespace used in generated WSDL and SOAP messages. This is equivalent to the [WebService(Namespace = "Value")] attribute in .NET. * Add workaround for Ruby 1.8.3's SOAP4R changing the return value of SOAP::Mapping::Registry#find_mapped_soap_class #1414 [Shugo Maeda] * Fix moduled controller URLs in WSDL, and add unit test to verify the generated URL #1428 * Fix scaffolding template paths, it was broken on Win32 * Fix that functional testing of :layered controllers failed when using the SOAP protocol * Allow invocation filters in :direct controllers as well, as they have access to more information regarding the web service request than ActionPack filters * Add support for a :base64 signature type #1272 [Shugo Maeda] * Fix that boolean fields were not rendered correctly in scaffolding * Fix that scaffolding was not working for :delegated dispatching * Add support for structured types as input parameters to scaffolding, this should let one test the blogging APIs using scaffolding as well * Fix that generated WSDL was not using relative_url_root for base URI #1210 [Shugo Maeda] * Use UTF-8 encoding by default for SOAP responses, but if an encoding is supplied by caller, use that for the response #1211 [Shugo Maeda, NAKAMURA Hiroshi] * If the WSDL was retrieved over HTTPS, use HTTPS URLs in the WSDL too * Fix that casting change in 0.7.0 would convert nil values to the default value for the type instead of leaving it as nil *0.7.1* (20th April, 2005) * Depend on Active Record 1.10.1 and Action Pack 1.8.1 *0.7.0* (19th April, 2005) * When casting structured types, don't try to send obj.name= unless obj responds to it, causes casting to be less likely to fail for XML-RPC * Add scaffolding via ActionController::Base.web_service_scaffold for quick testing using a web browser * ActionWebService::API::Base#api_methods now returns a hash containing ActionWebService::API::Method objects instead of hashes. However, ActionWebService::API::Method defines a #[]() backwards compatibility method so any existing code utilizing this will still work. * The :layered dispatching mode can now be used with SOAP as well, allowing you to support SOAP and XML-RPC clients for APIs like the metaWeblog API * Remove ActiveRecordSoapMarshallable workaround, see #912 for details * Generalize casting code to be used by both SOAP and XML-RPC (previously, it was only XML-RPC) * Ensure return value is properly cast as well, fixes XML-RPC interoperability with Ecto and possibly other clients * Include backtraces in 500 error responses for failed request parsing, and remove "rescue nil" statements obscuring real errors for XML-RPC * Perform casting of struct members even if the structure is already of the correct type, so that the type we specify for the struct member is always the type of the value seen by the API implementation
2005-04-10Import ruby-actionwebservice.minskim4-0/+107
Simple support for publishing Web Service APIs for Rails applications. Supports SOAP and XML-RPC, as well as generating WSDL for SOAP bindings.