[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

questions from a java programmer

Fred McCann

3/22/2005 9:46:00 PM

I'm about to start a project which as usual is tight on time. I need to develop a collection of applications that are web based and provide an extensive amount of web services to C clients. I'd assumed that I'd write the webapps and middleware using Java. While I'm very comfortable with Java and many java frameworks, even with build tools, code generators, and frameworks, writing code in Java takes quite some time. I've just recently become aware of Ruby and it looks like a solid scripting language (I'd previously hit brick walls with PHP's object model that drove me to Java).

My questions are these:

1. Does Ruby have some sort of ORM that's comparable to the ease of use and efficiency of Hibernate?

2. How good is Ruby's support for SOAP webservices, specifically hosting web services that deal with complex types?

Any feedback is greatly appretiated.

- Fred


3 Answers

John Wilger

3/22/2005 9:50:00 PM

0

Check out the excellent web framework Ruby on Rails
(http://www.rubyo...). Sounds like it would be perfect for what
you are trying to achieve.


On Wed, 23 Mar 2005 06:46:26 +0900, Fred McCann
<fred@automaticrootbeer.com> wrote:
> I'm about to start a project which as usual is tight on time. I need to develop a collection of applications that are web based and provide an extensive amount of web services to C clients. I'd assumed that I'd write the webapps and middleware using Java. While I'm very comfortable with Java and many java frameworks, even with build tools, code generators, and frameworks, writing code in Java takes quite some time. I've just recently become aware of Ruby and it looks like a solid scripting language (I'd previously hit brick walls with PHP's object model that drove me to Java).
>
> My questions are these:
>
> 1. Does Ruby have some sort of ORM that's comparable to the ease of use and efficiency of Hibernate?
>
> 2. How good is Ruby's support for SOAP webservices, specifically hosting web services that deal with complex types?
>
> Any feedback is greatly appretiated.
>
> - Fred
>
>


--
Regards,
John Wilger

-----------
Alice came to a fork in the road. "Which road do I take?" she asked.
"Where do you want to go?" responded the Cheshire cat.
"I don't know," Alice answered.
"Then," said the cat, "it doesn't matter."
- Lewis Carrol, Alice in Wonderland


Patrick Hurley

3/22/2005 10:45:00 PM

0

Also check out the SOAP library (part of the standard libraries). Very
easy to use.


On Wed, 23 Mar 2005 06:46:26 +0900, Fred McCann
<fred@automaticrootbeer.com> wrote:
> I'm about to start a project which as usual is tight on time. I need to develop a collection of applications that are web based and provide an extensive amount of web services to C clients. I'd assumed that I'd write the webapps and middleware using Java. While I'm very comfortable with Java and many java frameworks, even with build tools, code generators, and frameworks, writing code in Java takes quite some time. I've just recently become aware of Ruby and it looks like a solid scripting language (I'd previously hit brick walls with PHP's object model that drove me to Java).
>
> My questions are these:
>
> 1. Does Ruby have some sort of ORM that's comparable to the ease of use and efficiency of Hibernate?
>
> 2. How good is Ruby's support for SOAP webservices, specifically hosting web services that deal with complex types?
>
> Any feedback is greatly appretiated.
>
> - Fred
>
>


James Britt

3/22/2005 10:58:00 PM

0

Patrick Hurley wrote:
> Also check out the SOAP library (part of the standard libraries). Very
> easy to use.

SOAP + Og/Nitro might serve you well.

http://www.rubygarden.com/index.cgi/Libraries/og_tut...
http://nitro.ruby...

James