[lnkForumImage]
TotalShareware - Download Free Software

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


 

Forums >

comp.lang.ruby

Problem creating war file with warbler

Thomas Kellerer

3/25/2008 4:02:00 PM

Hi,

we are trying to move from the (deprecated) goldspike rails plugin to the new warbler gem to create a war file from our RoR application, but I cannot get the war file to run.

Everything seems to be OK, all needed gems (especially ruby-net-ldap) are packaged in the right places.

Tomcat and the application startup fine, I can access my login screen.
Authentication is done agains a LDAP server but when my app tries to contact the LDAP server, it throws an error:

"no such file to load -- net/ldap"

but the gem is part of the war file and is located in the same place as all the other gems (rails, jdbc-adapter etc)

I'm using JRuby 1.1RC2 and warbler 0.9.4

I wouldn't be that confused if it failed to load /any/ gem, but it seems to be limited to the ldap gem as the rails gems and the activerecord-jdbc-adapter are loaded fine (and are working)

Any ideas? What am I missing here?

Any help is greatly appreciated

Thanks in advance
Thomas
8 Answers

Dick Davies

3/25/2008 4:11:00 PM

0

net/ldap is native code, so you can't run that on jruby yet.
My guess is you'd need to call out to JNDI if you wanted to talk to
LDAP on JRuby.

On Tue, Mar 25, 2008 at 4:04 PM, Thomas Kellerer
<YQDHXVLMUBXG@spammotel.com> wrote:

> "no such file to load -- net/ldap"

--
Rasputnik :: Jack of All Trades - Master of Nuns
http://number9.helloope...

Thomas Kellerer

3/25/2008 4:29:00 PM

0

Dick Davies, 25.03.2008 17:11:
> net/ldap is native code, so you can't run that on jruby yet.
> My guess is you'd need to call out to JNDI if you wanted to talk to
> LDAP on JRuby.
>
> On Tue, Mar 25, 2008 at 4:04 PM, Thomas Kellerer
> <YQDHXVLMUBXG@spammotel.com> wrote:
>
>> "no such file to load -- net/ldap"
>
jruby-ldap-net is running fine from within NetBeans with JRuby 1.1 and it's running fine when beeing packed with the old goldspike plugin....

Thomas

Nick Sieger

3/25/2008 5:34:00 PM

0

On Tue, Mar 25, 2008 at 11:30 AM, Thomas Kellerer
<YQDHXVLMUBXG@spammotel.com> wrote:
> Dick Davies, 25.03.2008 17:11:
>
> > net/ldap is native code, so you can't run that on jruby yet.
> > My guess is you'd need to call out to JNDI if you wanted to talk to
> > LDAP on JRuby.
> >
> > On Tue, Mar 25, 2008 at 4:04 PM, Thomas Kellerer
> > <YQDHXVLMUBXG@spammotel.com> wrote:
> >
> >> "no such file to load -- net/ldap"
> >
> jruby-ldap-net is running fine from within NetBeans with JRuby 1.1 and it's running fine when beeing packed with the old goldspike plugin....

Are you using jruby-ldap or ruby-net-ldap?
(http://ola-bini.blogspot.com/2007/10/announcing-jrub...)

There was a bug w/ gems that had native components that was fixed in
Warbler 0.9.4. Maybe you could try that.

/Nick

Thomas Kellerer

3/26/2008 7:29:00 AM

0

Nick Sieger, 25.03.2008 18:33:
> On Tue, Mar 25, 2008 at 11:30 AM, Thomas Kellerer
> <YQDHXVLMUBXG@spammotel.com> wrote:
>> Dick Davies, 25.03.2008 17:11:
>>
>>> net/ldap is native code, so you can't run that on jruby yet.
>> > My guess is you'd need to call out to JNDI if you wanted to talk to
>> > LDAP on JRuby.
>> >
>> > On Tue, Mar 25, 2008 at 4:04 PM, Thomas Kellerer
>> > <YQDHXVLMUBXG@spammotel.com> wrote:
>> >
>> >> "no such file to load -- net/ldap"
>> >
>> jruby-ldap-net is running fine from within NetBeans with JRuby 1.1 and it's running fine when beeing packed with the old goldspike plugin....
>
> Are you using jruby-ldap or ruby-net-ldap?
> (http://ola-bini.blogspot.com/2007/10/announcing-jrub...)
>
> There was a bug w/ gems that had native components that was fixed in
> Warbler 0.9.4. Maybe you could try that.
>
> /Nick
>
Hi Nick, thanks for your answer.

Sorry for the confusion, I'm using ruby-net-ldap (no J involved here)

I tried Warbler 0.9.4 and Warbler 0.9.5 none of them worked.

Thomas

Thomas Kellerer

3/26/2008 9:27:00 AM

0

Thomas Kellerer, 25.03.2008 17:02:
> Hi,
>
> we are trying to move from the (deprecated) goldspike rails plugin to
> the new warbler gem to create a war file from our RoR application, but I
> cannot get the war file to run.
>
> Everything seems to be OK, all needed gems (especially ruby-net-ldap)
> are packaged in the right places.
>
> Tomcat and the application startup fine, I can access my login screen.
> Authentication is done agains a LDAP server but when my app tries to
> contact the LDAP server, it throws an error:
>
> "no such file to load -- net/ldap"
>
> but the gem is part of the war file and is located in the same place as
> all the other gems (rails, jdbc-adapter etc)
>
Follow-up:

I found this piece of code on the JRuby Wiki pages to detect all needed gems:

BUILD_GEMS = %w(warbler rake rcov)
for gem in Gem.loaded_specs.values
next if BUILD_GEMS.include?(gem.name)
config.gems[gem.name] = gem.version.version
end

interesting enough this does not include ruby-net-ldap as well.

So what's so special about this gem?

(Btw: I have tried using jruby-ldap as well, but that broke our code)

Thomas

Thomas Kellerer

3/26/2008 3:10:00 PM

0

Thomas Kellerer, 25.03.2008 17:02:
> we are trying to move from the (deprecated) goldspike rails plugin to
> the new warbler gem to create a war file from our RoR application, but I
> cannot get the war file to run.
>
> Everything seems to be OK, all needed gems (especially ruby-net-ldap)
> are packaged in the right places.
>
> Tomcat and the application startup fine, I can access my login screen.
> Authentication is done agains a LDAP server but when my app tries to
> contact the LDAP server, it throws an error:
>
> "no such file to load -- net/ldap"
>
> I'm using JRuby 1.1RC2 and warbler 0.9.4
>
I was finally able to get this to run:

I upgraded to JRuby 1.1RC3 (for running "warble") and replaced the jruby-complete-1.1RC2.jar and goldspike-1.5.jar in the Warbler's lib directory with jruby-complete-1.1RC3.jar and goldspike-1.6.jar.

Now everythings seems to be working fine.

Thomas

Charles Oliver Nutter

4/3/2008 10:51:00 AM

0

Thomas Kellerer wrote:
> Hi Nick, thanks for your answer.
>
> Sorry for the confusion, I'm using ruby-net-ldap (no J involved here)
>
> I tried Warbler 0.9.4 and Warbler 0.9.5 none of them worked.

Could you file a bug about this, ideally with a reproducible test case
or app?

http://jira.codehaus.org/br...

It would also help if you could hunt us down on the mailing list or on
FreeNode IRC in #jruby...we're standing by to help with this sort of thing.

- Charlie

Charles Oliver Nutter

4/3/2008 10:52:00 AM

0

Thomas Kellerer wrote:
> I was finally able to get this to run:
>
> I upgraded to JRuby 1.1RC3 (for running "warble") and replaced the
> jruby-complete-1.1RC2.jar and goldspike-1.5.jar in the Warbler's lib
> directory with jruby-complete-1.1RC3.jar and goldspike-1.6.jar.

Oops, I saw this too late...glad to hear you got it working :)

- Charlie