Are there any credit card payment classes/modules out there for Rails? It might be handy to have a suite of these for the major payment gateways, so that users could easily plug them in to their application. Thanks, Joe
On Wed, Dec 15, 2004 at 01:18:38PM -0800, Joe Van Dyk wrote:> Are there any credit card payment classes/modules out there for Rails? > > It might be handy to have a suite of these for the major payment > gateways, so that users could easily plug them in to their > application.The argument I''ve heard against inclusion of something like this into rails is that it is part of the domain model and should stay out of the framework. Eventually I hope to see an easy way for people to provide all sorts of "plugin" that can easily be inserted to a given rails project. There are several people working on e-commerce things with rails. Some if not most of this work is not freely available but perhaps some people would be interested in sharing. marcel -- Marcel Molina Jr. <marcel-WRrfy3IlpWYdnm+yROfE0A@public.gmane.org>
On Wed, 15 Dec 2004 16:31:06 -0500, Marcel Molina Jr. <marcel-WRrfy3IlpWYdnm+yROfE0A@public.gmane.org> wrote:> On Wed, Dec 15, 2004 at 01:18:38PM -0800, Joe Van Dyk wrote: > > Are there any credit card payment classes/modules out there for Rails? > > > > It might be handy to have a suite of these for the major payment > > gateways, so that users could easily plug them in to their > > application. > > The argument I''ve heard against inclusion of something like this into > rails is that it is part of the domain model and should stay out of the > framework. Eventually I hope to see an easy way for people to provide all > sorts of "plugin" that can easily be inserted to a given rails project. > > There are several people working on e-commerce things with rails. Some > if not most of this work is not freely available but perhaps some people > would be interested in sharing. > > marcelYes, I agree this shouldn''t be a part of Rails. Perhaps I should''ve asked on comp.lang.ruby, since it would probably be a more general "Ruby" question than anything else.
A shipping gateway would also be great (FEDEX, UPS, DHL and USPS at least). Joe Van Dyk wrote:> On Wed, 15 Dec 2004 16:31:06 -0500, Marcel Molina Jr. <marcel-WRrfy3IlpWYdnm+yROfE0A@public.gmane.org> wrote: > >>On Wed, Dec 15, 2004 at 01:18:38PM -0800, Joe Van Dyk wrote: >> >>>Are there any credit card payment classes/modules out there for Rails? >>> >>>It might be handy to have a suite of these for the major payment >>>gateways, so that users could easily plug them in to their >>>application. >> >>The argument I''ve heard against inclusion of something like this into >>rails is that it is part of the domain model and should stay out of the >>framework. Eventually I hope to see an easy way for people to provide all >>sorts of "plugin" that can easily be inserted to a given rails project. >> >>There are several people working on e-commerce things with rails. Some >>if not most of this work is not freely available but perhaps some people >>would be interested in sharing. >> >>marcel > > > Yes, I agree this shouldn''t be a part of Rails. Perhaps I should''ve > asked on comp.lang.ruby, since it would probably be a more general > "Ruby" question than anything else. > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
> Yes, I agree this shouldn''t be a part of Rails. Perhaps I should''ve > asked on comp.lang.ruby, since it would probably be a more general > "Ruby" question than anything else.I don''t think the responder was suggesting that you shouldn''t post the question here. I think this is a perfectly natural place to ask questions like this--asking a question about what support is available for Rails applications IS a Rails question and is of general interest to this list. Maybe in the future there''ll be more specialized lists, but for now, this is it... Bob
> Are there any credit card payment classes/modules out there for Rails?Actually, I was just talking with Tobias about this on IRC the other day. I''ve been meaning to generalize the payment gateway stuff I use for Basecamp which integrates with Authorize.net. Tobias is about to start integration work with another merchant for his snowboard shop, so it''s obvious that we should figure something out. I think a generalized framework for processing credit cards would make a great service extension, like Action Mailer. So the question is, what should it be called :)? Action Commerce Action Billing ...or perhaps we should get a new word instead of Action for these service layer types. -- David Heinemeier Hansson, http://www.basecamphq.com/ -- Web-based Project Management http://www.rubyonrails.org/ -- Web-application framework for Ruby http://macromates.com/ -- TextMate: Code and markup editor (OS X) http://www.loudthinking.com/ -- Broadcasting Brain
I''ve done UPS shipping modules using their XML services and PHP. It''s not hard. I suppose the rest work in similar ways. I''ll look into it later and see if I can start working on a "Ruby Shipping Class" that can bring together Fedex, UPS, USPS and DHL. Joe Van Dyk wrote:> I agree! > > This couldn''t be that hard to make though... right? I''ve never made > one before, but I''d imagine that it''s just a matter of wrapping some > stuff around some XML/Soap calls or whatever their web services use > nowadays. > > > On Wed, 15 Dec 2004 16:46:28 -0500, Luis G. Gómez <lgomez@vfxnetwork.com> wrote: > >>A shipping gateway would also be great (FEDEX, UPS, DHL and USPS at least). >> >>Joe Van Dyk wrote: >> >>>On Wed, 15 Dec 2004 16:31:06 -0500, Marcel Molina Jr. <marcel@vernix.org> wrote: >>> >>> >>>>On Wed, Dec 15, 2004 at 01:18:38PM -0800, Joe Van Dyk wrote: >>>> >>>> >>>>>Are there any credit card payment classes/modules out there for Rails? >>>>> >>>>>It might be handy to have a suite of these for the major payment >>>>>gateways, so that users could easily plug them in to their >>>>>application. >>>> >>>>The argument I''ve heard against inclusion of something like this into >>>>rails is that it is part of the domain model and should stay out of the >>>>framework. Eventually I hope to see an easy way for people to provide all >>>>sorts of "plugin" that can easily be inserted to a given rails project. >>>> >>>>There are several people working on e-commerce things with rails. Some >>>>if not most of this work is not freely available but perhaps some people >>>>would be interested in sharing. >>>> >>>>marcel >>> >>> >>>Yes, I agree this shouldn''t be a part of Rails. Perhaps I should''ve >>>asked on comp.lang.ruby, since it would probably be a more general >>>"Ruby" question than anything else. >>>_______________________________________________ >>>Rails mailing list >>>Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>>http://lists.rubyonrails.org/mailman/listinfo/rails >>> >> >
I''d say "Action Billing" as "Action Commerce" involves more than just the billing part... :) David Heinemeier Hansson wrote:>> Are there any credit card payment classes/modules out there for Rails? > > > Actually, I was just talking with Tobias about this on IRC the other > day. I''ve been meaning to generalize the payment gateway stuff I use for > Basecamp which integrates with Authorize.net. Tobias is about to start > integration work with another merchant for his snowboard shop, so it''s > obvious that we should figure something out. > > I think a generalized framework for processing credit cards would make a > great service extension, like Action Mailer. So the question is, what > should it be called :)? > > Action Commerce > Action Billing > > ...or perhaps we should get a new word instead of Action for these > service layer types. > -- > David Heinemeier Hansson, > http://www.basecamphq.com/ -- Web-based Project Management > http://www.rubyonrails.org/ -- Web-application framework for Ruby > http://macromates.com/ -- TextMate: Code and markup editor (OS X) > http://www.loudthinking.com/ -- Broadcasting Brain > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >
David Heinemeier Hansson wrote:>> Are there any credit card payment classes/modules out there for Rails? > > > Actually, I was just talking with Tobias about this on IRC the other > day. I''ve been meaning to generalize the payment gateway stuff I use for > Basecamp which integrates with Authorize.net. Tobias is about to start > integration work with another merchant for his snowboard shop, so it''s > obvious that we should figure something out. > > I think a generalized framework for processing credit cards would make a > great service extension, like Action Mailer. So the question is, what > should it be called :)? > > Action Commerce > Action Billing > > ...or perhaps we should get a new word instead of Action for these > service layer types. > -- > David Heinemeier Hansson, > http://www.basecamphq.com/ -- Web-based Project Management > http://www.rubyonrails.org/ -- Web-application framework for Ruby > http://macromates.com/ -- TextMate: Code and markup editor (OS X) > http://www.loudthinking.com/ -- Broadcasting Brain > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails > >ServiceBilling ServiceCommerce
An excellent idea. Currency conversion would be handy also ( xmethods.net have a web service ). How about "Transaction"? On Dec 16, 2004, at 01:02 AM, David Heinemeier Hansson wrote:> Actually, I was just talking with Tobias about this on IRC the other > day. I''ve been meaning to generalize the payment gateway stuff I use > for Basecamp which integrates with Authorize.net. Tobias is about to > start integration work with another merchant for his snowboard shop, so > it''s obvious that we should figure something out. > > I think a generalized framework for processing credit cards would make > a great service extension, like Action Mailer. So the question is, what > should it be called :)? > > Action Commerce > Action Billing > > ...or perhaps we should get a new word instead of Action for these > service layer types.
Very nice! This should be part of such a framework. On Thu, 30 Dec 2004 21:37:39 +0000, tim <rails-ohDbp2uGwXChp1a5+8o6XA@public.gmane.org> wrote:> An excellent idea. Currency conversion would be handy also ( > xmethods.net have a web service ). > > How about "Transaction"? > > On Dec 16, 2004, at 01:02 AM, David Heinemeier Hansson wrote: > > > Actually, I was just talking with Tobias about this on IRC the other > > day. I''ve been meaning to generalize the payment gateway stuff I use > > for Basecamp which integrates with Authorize.net. Tobias is about to > > start integration work with another merchant for his snowboard shop, so > > it''s obvious that we should figure something out. > > > > I think a generalized framework for processing credit cards would make > > a great service extension, like Action Mailer. So the question is, what > > should it be called :)? > > > > Action Commerce > > Action Billing > > > > ...or perhaps we should get a new word instead of Action for these > > service layer types. > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Tobi http://blog.leetsoft.com
I hope you people aren''t talking about including this in Rails itself. It really doesn''t sound like something that belongs in a web application framework itself. Perhaps a seperate gem and initializing it all (thus copying needed things (minimal, because it would use the gem) when it''s requested from the generator? tim wrote:> An excellent idea. Currency conversion would be handy also ( > xmethods.net have a web service ). > > How about "Transaction"? > > > On Dec 16, 2004, at 01:02 AM, David Heinemeier Hansson wrote: > >> Actually, I was just talking with Tobias about this on IRC the other >> day. I''ve been meaning to generalize the payment gateway stuff I use >> for Basecamp which integrates with Authorize.net. Tobias is about to >> start integration work with another merchant for his snowboard shop, so >> it''s obvious that we should figure something out. >> >> I think a generalized framework for processing credit cards would make >> a great service extension, like Action Mailer. So the question is, what >> should it be called :)? >> >> Action Commerce >> Action Billing >> >> ...or perhaps we should get a new word instead of Action for these >> service layer types.-- Marten Veldthuis
I agree with Marten here, this should not be included in the default Rails distribution. Maybe as an add-on. Vincent. On Fri, 31 Dec 2004 00:31:02 +0100, Marten Veldthuis <marten-bhBtkFhEHeMTIWBel16Y73nhMCiq3JZZ@public.gmane.org> wrote:> I hope you people aren''t talking about including this in Rails itself. > It really doesn''t sound like something that belongs in a web application > framework itself. Perhaps a seperate gem and initializing it all (thus > copying needed things (minimal, because it would use the gem) when it''s > requested from the generator? > > tim wrote: > > An excellent idea. Currency conversion would be handy also ( > > xmethods.net have a web service ). > > > > How about "Transaction"? > > > > > > On Dec 16, 2004, at 01:02 AM, David Heinemeier Hansson wrote: > > > >> Actually, I was just talking with Tobias about this on IRC the other > >> day. I''ve been meaning to generalize the payment gateway stuff I use > >> for Basecamp which integrates with Authorize.net. Tobias is about to > >> start integration work with another merchant for his snowboard shop, so > >> it''s obvious that we should figure something out. > >> > >> I think a generalized framework for processing credit cards would make > >> a great service extension, like Action Mailer. So the question is, what > >> should it be called :)? > >> > >> Action Commerce > >> Action Billing > >> > >> ...or perhaps we should get a new word instead of Action for these > >> service layer types. > > -- > Marten Veldthuis > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Vincent Foley-Bourgon Blog: http://www.livejournal.com/~gnuvince World.run while (6 * 9 == 42)
Certainly an add on. This stuff is way too special for rails. On Thu, 30 Dec 2004 23:00:31 -0500, Vincent Foley <vfoley-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> I agree with Marten here, this should not be included in the default > Rails distribution. Maybe as an add-on. > > Vincent. > > On Fri, 31 Dec 2004 00:31:02 +0100, Marten Veldthuis > <marten-bhBtkFhEHeMTIWBel16Y73nhMCiq3JZZ@public.gmane.org> wrote: > > I hope you people aren''t talking about including this in Rails itself. > > It really doesn''t sound like something that belongs in a web application > > framework itself. Perhaps a seperate gem and initializing it all (thus > > copying needed things (minimal, because it would use the gem) when it''s > > requested from the generator? > > > > tim wrote: > > > An excellent idea. Currency conversion would be handy also ( > > > xmethods.net have a web service ). > > > > > > How about "Transaction"? > > > > > > > > > On Dec 16, 2004, at 01:02 AM, David Heinemeier Hansson wrote: > > > > > >> Actually, I was just talking with Tobias about this on IRC the other > > >> day. I''ve been meaning to generalize the payment gateway stuff I use > > >> for Basecamp which integrates with Authorize.net. Tobias is about to > > >> start integration work with another merchant for his snowboard shop, so > > >> it''s obvious that we should figure something out. > > >> > > >> I think a generalized framework for processing credit cards would make > > >> a great service extension, like Action Mailer. So the question is, what > > >> should it be called :)? > > >> > > >> Action Commerce > > >> Action Billing > > >> > > >> ...or perhaps we should get a new word instead of Action for these > > >> service layer types. > > > > -- > > Marten Veldthuis > > > > _______________________________________________ > > Rails mailing list > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > -- > Vincent Foley-Bourgon > Blog: http://www.livejournal.com/~gnuvince > World.run while (6 * 9 == 42) > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Tobi http://blog.leetsoft.com
DHH''s previous email on the subject said: "I think a generalized framework for processing credit cards would make a great service extension, like Action Mailer. So the question is, what should it be called :)?" So it''d be a seperate package, but installed by default? How does that sound? I personally like the sound of it, whether it''s a gem or built in to rails doesn''t bother me. On Thu, 30 Dec 2004 23:14:06 -0500, Tobias Luetke <tobias.luetke-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Certainly an add on. > This stuff is way too special for rails. > > > On Thu, 30 Dec 2004 23:00:31 -0500, Vincent Foley <vfoley-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > I agree with Marten here, this should not be included in the default > > Rails distribution. Maybe as an add-on. > > > > Vincent. > > > > On Fri, 31 Dec 2004 00:31:02 +0100, Marten Veldthuis > > <marten-bhBtkFhEHeMTIWBel16Y73nhMCiq3JZZ@public.gmane.org> wrote: > > > I hope you people aren''t talking about including this in Rails itself. > > > It really doesn''t sound like something that belongs in a web application > > > framework itself. Perhaps a seperate gem and initializing it all (thus > > > copying needed things (minimal, because it would use the gem) when it''s > > > requested from the generator? > > > > > > tim wrote: > > > > An excellent idea. Currency conversion would be handy also ( > > > > xmethods.net have a web service ). > > > > > > > > How about "Transaction"? > > > > > > > > > > > > On Dec 16, 2004, at 01:02 AM, David Heinemeier Hansson wrote: > > > > > > > >> Actually, I was just talking with Tobias about this on IRC the other > > > >> day. I''ve been meaning to generalize the payment gateway stuff I use > > > >> for Basecamp which integrates with Authorize.net. Tobias is about to > > > >> start integration work with another merchant for his snowboard shop, so > > > >> it''s obvious that we should figure something out. > > > >> > > > >> I think a generalized framework for processing credit cards would make > > > >> a great service extension, like Action Mailer. So the question is, what > > > >> should it be called :)? > > > >> > > > >> Action Commerce > > > >> Action Billing > > > >> > > > >> ...or perhaps we should get a new word instead of Action for these > > > >> service layer types. > > > > > > -- > > > Marten Veldthuis > > > > > > _______________________________________________ > > > Rails mailing list > > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > > > > > > -- > > Vincent Foley-Bourgon > > Blog: http://www.livejournal.com/~gnuvince > > World.run while (6 * 9 == 42) > > _______________________________________________ > > Rails mailing list > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > http://lists.rubyonrails.org/mailman/listinfo/rails > > > > -- > Tobi > http://blog.leetsoft.com > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Cheers Koz
-----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Dec 30, 2004, at 8:29 PM, Michael Koziarski wrote:> DHH''s previous email on the subject said: > > "I think a generalized framework for processing credit cards would make > a great service extension, like Action Mailer. So the question is, what > should it be called :)?" >I hereby nominate "Action Merchant" - Jason -----BEGIN PGP SIGNATURE----- Version: PGP 8.1 iQA/AwUBQdTrvlUyB+ajXkCLEQKqiQCg/djOHfKTphI5Nmjlx/vroIfLoJAAn0ZZ vfuv9r5OeFxz8gsV1tYu67B0 =Yox7 -----END PGP SIGNATURE-----
DHH also suggested "Action Billing" and "Action Commerce". I vote for "Action Billing". It, IMO, more appropriately describes its purpose. Jason Hoffman wrote:> -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Dec 30, 2004, at 8:29 PM, Michael Koziarski wrote: > > >>DHH''s previous email on the subject said: >> >>"I think a generalized framework for processing credit cards would make >>a great service extension, like Action Mailer. So the question is, what >>should it be called :)?" >> > > > I hereby nominate "Action Merchant" > > - Jason > > -----BEGIN PGP SIGNATURE----- > Version: PGP 8.1 > > iQA/AwUBQdTrvlUyB+ajXkCLEQKqiQCg/djOHfKTphI5Nmjlx/vroIfLoJAAn0ZZ > vfuv9r5OeFxz8gsV1tYu67B0 > =Yox7 > -----END PGP SIGNATURE----- > > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails
I think I prefer Merchant, sounds more expensive :). Billing sounds good too. Either way, something to handle that kind of thing out of the box would be fantastic. On Fri, 31 Dec 2004 02:24:30 -0400, "Luis G. Gómez" <lgomez-walYqSS8HwPCENZMoErytg@public.gmane.org> wrote:> DHH also suggested "Action Billing" and "Action Commerce". > > I vote for "Action Billing". It, IMO, more appropriately describes its > purpose. > > Jason Hoffman wrote: > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA1 > > > > On Dec 30, 2004, at 8:29 PM, Michael Koziarski wrote: > > > > > >>DHH''s previous email on the subject said: > >> > >>"I think a generalized framework for processing credit cards would make > >>a great service extension, like Action Mailer. So the question is, what > >>should it be called :)?" > >> > > > > > > I hereby nominate "Action Merchant" > > > > - Jason > > > > -----BEGIN PGP SIGNATURE----- > > Version: PGP 8.1 > > > > iQA/AwUBQdTrvlUyB+ajXkCLEQKqiQCg/djOHfKTphI5Nmjlx/vroIfLoJAAn0ZZ > > vfuv9r5OeFxz8gsV1tYu67B0 > > =Yox7 > > -----END PGP SIGNATURE----- > > > > _______________________________________________ > > Rails mailing list > > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > > http://lists.rubyonrails.org/mailman/listinfo/rails > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Cheers Koz
Jason Hoffman wrote:> I hereby nominate "Action Merchant"I like "Action Charge!", picturing frenzied surfers shopping at their computers in their pajamas, metaphorically charging into your virtual store so they can charge things to their credit cards. I mean, it''s action, and it''s charge! Meh. Then again, I guess that would sort of exclude the possibilities of things like e-checks or other forms of non-charging payments. Action Merchant has a nice dignified ring to it. It''s got my vote. ML
How about just including a CreditCard or BankAccount aggregate class for activerecord which serves as the interface for a particular merchant account vendor extension. More basic than sending the data is collecting it from the users and validating the number. I have an aggregate I use for users to select the day of the week they want a particular notification sent, which is stored in the database as a string of numbers (0-6, compatable with date/format.rb), and the class includes some things to generate forms. Very useful since its not something that the database knows about. A basic collection of these re-usable aggregate classes would be a good thing to include with the framework. Another might be Address, as demonstrated in the documentation, which could verify/standardize the address with the usps web service (or your national postal authority). That would make a more valuable contribution to the framework than access to a particular merchant account vendor. I don''t do billing, but I do collect credit card and billing information for a supplier. What about an image blob aggregate, for storing image data in the database, doing conversions, outputting http headers etc. Would anybody use such a thing? I would probably just use the filesystem, but I''ve heard of people storing images in the database. Some default column names, similar to created_on, would work for these, ie. img_*, credit_card_number, credit_card_expiration, routing_number. -Jeff Michael Koziarski wrote:>I think I prefer Merchant, sounds more expensive :). Billing sounds good too. > >Either way, something to handle that kind of thing out of the box >would be fantastic. > > >On Fri, 31 Dec 2004 02:24:30 -0400, "Luis G. Gómez" ><lgomez-walYqSS8HwPCENZMoErytg@public.gmane.org> wrote: > > >>DHH also suggested "Action Billing" and "Action Commerce". >> >>I vote for "Action Billing". It, IMO, more appropriately describes its >>purpose. >> >>Jason Hoffman wrote: >> >> >>>-----BEGIN PGP SIGNED MESSAGE----- >>>Hash: SHA1 >>> >>>On Dec 30, 2004, at 8:29 PM, Michael Koziarski wrote: >>> >>> >>> >>> >>>>DHH''s previous email on the subject said: >>>> >>>>"I think a generalized framework for processing credit cards would make >>>>a great service extension, like Action Mailer. So the question is, what >>>>should it be called :)?" >>>> >>>> >>>> >>>I hereby nominate "Action Merchant" >>> >>> - Jason >>> >>>-----BEGIN PGP SIGNATURE----- >>>Version: PGP 8.1 >>> >>>iQA/AwUBQdTrvlUyB+ajXkCLEQKqiQCg/djOHfKTphI5Nmjlx/vroIfLoJAAn0ZZ >>>vfuv9r5OeFxz8gsV1tYu67B0 >>>=Yox7 >>>-----END PGP SIGNATURE----- >>> >>>_______________________________________________ >>>Rails mailing list >>>Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>>http://lists.rubyonrails.org/mailman/listinfo/rails >>> >>> >>_______________________________________________ >>Rails mailing list >>Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org >>http://lists.rubyonrails.org/mailman/listinfo/rails >> >> >> > > > >
On Friday 31 Dec 2004 3:07 am, tim wrote:> An excellent idea. Currency conversion would be handy also ( > xmethods.net have a web service ).AFAIK there were some plans of having SOAP and XML RPC eXtensions for Rails. -- Best Regards, Warren Brian Noronha. GNU (http://www.gnu.org.in)
Hehe i talk too much ;) Lets call it a nice to have and not a plan... On Sun, 2 Jan 2005 08:55:29 +0530, Warren Brian Noronha <warren-0jIIvIziipmf0DUV/oxz1A@public.gmane.org> wrote:> On Friday 31 Dec 2004 3:07 am, tim wrote: > > An excellent idea. Currency conversion would be handy also ( > > xmethods.net have a web service ). > > AFAIK there were some plans of having SOAP and XML RPC eXtensions for Rails. > > -- > Best Regards, > Warren Brian Noronha. > GNU (http://www.gnu.org.in) > _______________________________________________ > Rails mailing list > Rails-1W37MKcQCpIf0INCOvqR/iCwEArCW2h5@public.gmane.org > http://lists.rubyonrails.org/mailman/listinfo/rails >-- Tobi http://blog.leetsoft.com