Displaying 20 results from an estimated 9000 matches similar to: "Directory for ActionWebService classes?"
2006 Mar 28
11
ActionWebService date casting error
I have defined a web service to return information from a database as follows.
class BackendApi < ActionWebService::API::Base
  api_method :find_all_vobs,
             :returns => [[:int]]
  api_method :find_vob_by_id,
             :expects => [:int],
             :returns => [Vob]
class BackendController < ApplicationController
  wsdl_service_name ''Backend''
 
2006 Aug 16
7
ActionWebService: XMLRPC Server Multicall possible?
Hi all,
I have a question concerning ActionWebService XMLRPC servers: Is it  
possible to send multicall requests to the Web service? I tried to  
use multicall and get the error message:
no such method ''system.multicall'' on API [MyAPI]
In Changeset 2021 there is the following commit message:
add ''system.multicall'' support to XML-RPC. boxcarred methods must  
2006 Apr 11
9
Rails failure after upgrade to 1.1.2
Greetings,
I tried upgrading Rails to 1.1.2 and now nothing is really working. In
connection to the Rails upgrade I upgraded my Ruby version to 1.9.0. I
also upgraded all my gem installs.
Since my old rails apps stopped working I tried generating a fresh one
, alas with the same result. Below I included the full trace when
trying to reach the app. Line 3 in application.rb is :
class
2006 Apr 14
8
Error with Web Service tests after upgrading to Rails 1.1.2
Hello.
I hope this is the right place to describe my problem ?
After upgrading to Rails version 1.1.2 from rails version 1.0.0, Web 
Service functional tests seem broken.
I upgraded rails (as the root user / administrator) with:
# gem update rails --include-dependencies
then I upgraded my application (as myself) with:
? rake rails:update
% rake rails:update:configs
After these steps,
2005 Dec 30
4
soap4r 1.5.5 seems to break actionWebService tests
Hi,
I just upgraded to soap4r 1.5.5, and now all my Rails Functional tests
for the action_web_services fail as follows, any ideas what I did wrong?
Thanks
    TypeError: can''t modify frozen object
    /usr/local/lib/ruby/1.8/xsd/qname.rb:78:in `name=''
    /usr/local/lib/ruby/1.8/soap/rpc/element.rb:118:in `set_param''
   
2006 Mar 22
14
currency conversion webservice in a rails app?
Hi,
I''m interested in using a currency conversion web service in my rails
app. Does anyone have a free service that they use and like? I found
this one
http://www.webservicex.net/WS/WSDetails.aspx?CATID=2&WSID=10
I''ve tried to make a simple, plain Ruby script to connect to this and
get a conversion rate without success.
How do I integrate a webservice into my rails app? I
2006 Jul 28
3
ActionWebService Struct member name including ''-''
Hi
I am tryng to mirror a locked away, secure web service for testing 
purposes and am almost there. Hoever as part of the definition for the 
structure of the call to the webservice, I have this struct.
class MyCall < ActionWebService::Struct
    member :username, :string
    member :password, :string
    member :"remote-ip", :string
end
However this does not work... Should
2006 May 24
2
array parameters in web services
I''m working in a web service, actually, I have:
class UnifiedLoginApi < ActionWebService::API::Base
  class CLL_Metadata < ActionWebService::Struct
    member :key,               :string
    member :type,              :string
    member :value,             :string
    member :webapplication_id, :string
    member :user_tenfold_id,   :string
    member :login_username,    :string
2006 Jul 31
5
ActionWebService API
Hi *,
I need to pass a hash to a webservice, so I defined my API with:
   api_method :search,
     :expects => [{
       :tags => :string,
       :assignment => :string,
       :resource => :string,
       :lesson_plan => :string,
       :subject => :string,
       :all_types => :string
     }], :returns => [[Resource]]
when I try to test the webservice with scaffold the
2005 Dec 30
5
AWS api_method :returns not accepting ActiveRecord::Base
I''m trying to use the feature of AWS where it will take an object derived
from ActiveRecord::Base instead of an AWS::Struct object.  Whenever I try
it, though, I get the craziest error:
NoMethodError: You have a nil object when you didn''t expect it!
The error occured while evaluating nil.new
    /usr/lib/.../actionwebservice/lib/action_web_service/casting.rb:105:in
2006 Apr 07
2
ActionWebService and namespaces
Hi all,
I''ve tried to search the mailing list, web, etc. and haven''t found 
anything that seems to answer my question.
I have a WSDL for a web service written in Java, and I''m trying to 
consume it in ruby using ActionWebService.  I''ve created my API and some 
struct classes.  I''ve found the :namespace option to 
ActionWebService::Client::Soap.new, but
2006 Apr 21
8
web services and dealing with before_filter
Hi all,
I''ve got a Rails app with a ApplicationController that looks like this:
class ApplicationController < ActionController::Base
    before_filter :authorize, :except => :login
    def authorize
       unless session[:user]
          flash[:notice] = "Please log in"
          session[:jumpto] = request.parameters
          redirect_to :controller =>
2006 Mar 07
17
Handling Erros from AWDWR
I''m getting to the point now where I really need to start trapping the
errors.
So from my AWDWR book, I added the following directly from the book into
application.rb...
  def rescue_action_in_public(exception)
    case exception
      when ActiveRecord::RecordNotFound, ActionController::UnknownAction
        render(:file   => "#{RAILS_ROOT}/public/404.html",
              
2006 Apr 10
2
using web service for authenitcation
I am writting a web service for authenitcation of users and was using 
web_service_scaffold :invoke for testing it out...and was able to consume it 
using .NET. But my question is, whats the simplest method using which i can 
use the same web service in the current Web App. I mean, not from an external 
application or something but from the current web apps itself.
I found one method in AWDR, and
2006 Dec 01
3
Sessions in Layered Dispatching
Can you use sessions in layered dispatching? I used them in direct
dispatching without any problems, but switching to layered throws an
error (saying session doesn''t exist).
Sorry if this is a double post, Google Groups isn''t posting my message
for some reason.
-- 
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
 You received this
2006 Mar 07
6
fcgi dispatcher crashing
I''m trying to set deploy an app on apache2 with the fcgid module, but can''t
seem to get anywhere.
Things work fine with cgi, but when i switch to fcgi, i''m stuck with a ''503:
Service Temporarily Unavailable''. There''s no error being logged anywhere,
afaik.
Trying to run dispatch.fcgi from the shell doesn''t work either. It bombs
out,
2006 Apr 10
1
ActionWebService PDF...
Hello all - I''ve been lurking around the forums for awhile now and just 
wanted to say that everyone here does a great job of helping each other 
out...I think it goes a long way in helping even more people adopt Ruby 
(and Rails)
I just wanted to let everyone know that I''m working on an online booklet 
(PDF only) for O''Reilly that covers "Web Services with Ruby on
2006 Jul 12
11
ruby-debug 0.1.3
Hello Everyone,
I''m pleasant to announce the release of ruby-debug 0.1.3.
If you think that ruby-breakpoint is too limited for your needs and
debug.rb brings your application to its knees, you might find
this small extension useful.
INSTALL
It''s a usual procedure:
$ gem install ruby-debug
DOCS
This library has almost identical interface with the standard debug.rblibrary.
2006 Sep 09
3
Per field analyzer
Is there a way to add per-field analyzer? I can''t seem to find a way to do that.
Thanks
-- 
Kent
---
http://www.datanoise.com
2006 Jul 25
3
about ERB sample
Hi list:
  I run the ri''s ERB doc 1st sample
1.    require ''erb''
  2.    x = 42
  3.    template = ERB.new <<-EOF
  4.    The value of x is: 
  5.    EOF
  6.    puts template.result(binding)
 
  the doc say it will print 
   "The value of x is: 42"
 
  but my irb print "nil" and there is a 
"=> #<ERB:0x2970b24