Re: [JBoss-user] JMS Queue Question

2003-05-27 Thread Ed Brown
Yes. Quoting David Ward <[EMAIL PROTECTED]>: > Can anyone please help me with this? > > Thanks again, > David > > > Mensaje citado por David Ward <[EMAIL PROTECTED]>: > > > Hi, all - got a general JMS question I hope someone could help me with. > > > > It has to do with the QueueSession.cre

[JBoss-user] RE: [JBoss-user] Re: [JBoss-user] J2EE en espaƱa

2003-05-27 Thread Marcos Oliva
Jorge, Creo que es una fantastica idea, vivo aqui en USA pero creo que no hay Todavia una lista de J2EE en espaniol. Si te puedo ayudar en algo solamente mandame un email Marcos Oliva -Original Message- From: David Ward [mailto:[EMAIL PROTECTED] Sent: Tuesday, May 27, 2003 6:41 AM To

RE: [JBoss-user] Startup dependency on data source

2003-05-27 Thread Schnitzer, Jeff
Thanks for the help all - placing the SAR inside the EAR (instead of the other way around) worked perfectly. BTW, it wasn't necessary to list the module in the application.xml, just the jboss-app.xml. Thanks! Jeff Schnitzer [EMAIL PROTECTED] > -Original Message- > From: Alarik Myrin [ma

[JBoss-user] Re: Re: Form-based security problems in JBoss 3.0.7 / Tomcat4.1.12

2003-05-27 Thread Spencer
Strange, cause I have been using the JAAS jars as provided under the JBoss distribution WITHOUT giving thought to whether it was a Sun implementation or not. So under JBoss-3.0.3 it was "jaas.jar", and under JBoss-3.0.7 it is "jboss-jaas.jar". So it really doesn't explain why it didn't work befor

Re: [JBoss-user] JSP compilation requires $JAVA_HOME/lib/tools.jaron your JBOSS_CLASSPATH

2003-05-27 Thread Guy Rouillier
Scott M Stark wrote: This is an invalid warning due to the fact that the check used by Jetty to determine if the javac compiler is visable does not apply to the 1.4.2 tools.jar. Thanks, Scott. Scott Stark Chief Technology Officer JBoss Group, LLC -

RE: Re[3]: [JBoss-user] JBoss separate Tomcat and JAAS

2003-05-27 Thread Ken Yee
--- On Tue 05/27, Miroslav Nachev < [EMAIL PROTECTED] > wrote: > If the application is developed to serve more than one organization You have a custom login page with a bit more info: the org. Because of this, your user's login validation info is actually composed of 3 pieces of info: username

Re: [JBoss-user] Auth.conf

2003-05-27 Thread Scott M Stark
SRP is not a standalone login module. It requires configuration of the SRPService as described in the admin/devel docs. See the security unit tests for an example. Scott Stark Chief Technology Officer JBoss Group, LLC - Original Message -

[JBoss-user] error writing a document to a local file

2003-05-27 Thread Gordon
Hi. I have a problem writing a SVG document to a local directory My code works in a normal java class but when i use it in an ejb, i get an error. The svg file is created in the local drive but the content is not written to it.My code and the error is below. (am using jdk 1.3.1 & jboss 2.4.1) Any

Re: [JBoss-user] Re: Form-based security problems in JBoss 3.0.7 / Tomcat 4.1.12

2003-05-27 Thread Scott M Stark
No, what changed is that we quit patching the Sun supplied jaas.jar to work correctly with the thread context class loader when loading login modules. If you are using the Sun jaas.jar instead of the jboss-jaas.jar then you would have to use the ProxyLoginModule to load your login module.

RE: [JBoss-user] EJBQL order by

2003-05-27 Thread Jeremy Boynes
It is supported in JBoss-QL to you need to define the query in jbosscmp-jdbc.xml Jeremy > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] Behalf Of Jorge Garcia > Perales > Sent: Tuesday, May 27, 2003 9:20 AM > To: Lista de Jboss > Cc: Pedro Barreiros > Subject: [

Re: [JBoss-user] EJBQL order by

2003-05-27 Thread Marek Lange
Jorge Garcia Perales wrote: Hi, I'm implementing an entity bean under jboss 3.2.1 and I have a great problem. I'm mounting an EJBQL for find some information and the jboss gives me an error that "ORDER BY" is incorrect. Reading in the web I've found that EJB 2.0 Especification don'

[JBoss-user] Auth.conf

2003-05-27 Thread Maiquel Sampaio de Melo
My application crashed with these exceptions: ERROR [main] (SRPLoginModule.java:391) - Failed to lookup(SRPServerInterface)javax.naming.NameNotFoundException: SRPServerInterface not bound at org.jnp.server.NamingServer.getBinding(NamingServer.java:495) at org.jnp.server.NamingServer

RE: [JBoss-user] EJBQL order by

2003-05-27 Thread Rupp,Heiko
Hi, > Do you know if jboss implements EJB 2.1? or How to Not JBoss 3. Afaik, that is planned for JBoss 4. > order an EJBQL query? you can do it with JBossQL, which is a superset of EJB-QL. Or sort the retrieved Collection "by hand" Heiko -- Bancotec GmbH EMail: [EMAIL PROTECTED]

Re: [JBoss-user] JMS Queue Question

2003-05-27 Thread David Ward
Can anyone please help me with this? Thanks again, David Mensaje citado por David Ward <[EMAIL PROTECTED]>: > Hi, all - got a general JMS question I hope someone could help me with. > > It has to do with the QueueSession.createReceiver(Queue,String) method. > The > second parameter defines a

[JBoss-user] EJBQL order by

2003-05-27 Thread Jorge Garcia Perales
Hi, I'm implementing an entity bean under jboss 3.2.1 and I have a great problem. I'm mounting an EJBQL for find some information and the jboss gives me an error that "ORDER BY" is incorrect. Reading in the web I've found that EJB 2.0 Especification don't implements "ORDER BY". "O

[JBoss-user] Re: Form-based security problems in JBoss 3.0.7 / Tomcat 4.1.12

2003-05-27 Thread Spencer
It seems that one of the changes from 3.0.3 to 3.0.7 was that the AbstractServerLoginModule was removed from JBoss's class path. Using ProxyLoginModule with my custom login module worked like it was supposed to. Spencer On Tue, 27 May 2003 07:16:59 -0700 Spencer <[EMAIL PROTECTED]> wrote: > I w