[JBoss-user] Cookie Setting problem

2001-11-19 Thread debapriya . ghosh
Hi, I am using JBoss 2.4.2 + Tomcat 3.2.2 My problem is that the cookies are not getting created. I saw the server.xml of Tomcat. But am not able to locate the problem. Any pointers are appreciated. Regards Debapriya Ghosh begin:vcard n:Ghosh;Debapriya fn:Debapriya Ghosh version:2.1

RE: [JBoss-user] problem calling remote corba servers from an EJB... does jboss hack something with sun ORB ?

2001-11-19 Thread Coetmeur, Alain
-Message d'origine- De: Francisco Reverbel [mailto:[EMAIL PROTECTED]] JBoss does nothing with Sun's ORB. good news... 8) It seems that orb.string_to_object() cannot find the IIOP stub it needs to generate a CORBA object reference. It attempts to extract a codebase from

[JBoss-user] Interest problem

2001-11-19 Thread Haipeng Guo
Hi, there, When I compile interst-client, it gives the following error information: [java] javax.naming.NoInitialContextException: Cannot instantiate class: or g.jnp.interfaces.NamingContextFactory [Root exception is java.lang.ClassNotFound Exception:

[JBoss-user] Multiple data sources

2001-11-19 Thread Krzysztof Ogrodnik
Hi, In my next project I will have to analyze data from several databases and move it between them. I am responsible for creating enterprise component to do it. My question is: how to do it the best way? My solution is to use pure JDBC and access data from different databases using

[JBoss-user] Service bean

2001-11-19 Thread Krzysztof Ogrodnik
Hi, I am new to EJB and JBoss. Recently I have started a project which requires something like service bean. By this I mean: - bean starts when the server (application) starts (is deployed) - bean receives time notifications (I can specify the period) How to do it using JBoss? My solution is

[JBoss-user] JBoss and SwiftMQ

2001-11-19 Thread Luke Studley
Hi I'm interested in using SwiftMQ JMS system from within JBoss. Just wondering if anybody has already done this somewhere - and has any advice or would be willing to share any useful bits of code/config - before I start sweating through the documentation and implementing

Re: [JBoss-user] problem calling remote corba servers from an EJB... does jboss hack something with sun ORB ?

2001-11-19 Thread Jean-Christophe Pazzaglia
Salut ! Which version of JBOss are you using ? migrating from 2.2 to 3.0 I get into similar trouble, with the classpath (seems that jar in ext lib are no longuer part of the ejb class path) I solved it using a 'service' file containing : server classpath codebase=file:/home/classlib/

Re: [JBoss-user] Turning off log4j logging in JBOSS

2001-11-19 Thread Guy Rouillier
You can set the message logging level for an individual category or for the entire appender. I've used both options successfully by following the examples in log4j.properties. Post the name of your category, and the setting you are using in log4j.properties in your attempt to stop logging the

RE: [JBoss-user] problem calling remote corba servers from an EJB... does jboss hack something with sun ORB ?

2001-11-19 Thread Coetmeur, Alain
-Message d'origine- De: Jean-Christophe Pazzaglia [mailto:[EMAIL PROTECTED]] Date: lundi 19 novembre 2001 14:18 À: Coetmeur, Alain Cc: [EMAIL PROTECTED] Objet: Re: [JBoss-user] problem calling remote corba servers from an EJB... does jboss hack something with sun ORB ? Salut

[JBoss-user] JDBC Pool

2001-11-19 Thread Edson Carlos Ericksson Richter
what means numbers 0, 2 and 10in [jdbc/myConnection] Pool jdbc/myConnection [0/2/10] returned object org.jboss.pool.jdbc.xa.wrapper.XAConnectionImpl@7ec028 to the pool. log message? Thanks, Edson Richter BEGIN:VCARD VERSION:2.1 N:Richter;Edson;Carlos Ericksson FN:Edson Carlos

Re: [JBoss-user] JDBC Pool

2001-11-19 Thread David Jencks
On 2001.11.19 14:34:06 -0500 Edson Carlos Ericksson Richter wrote: what means numbers 0, 2 and 10 in [jdbc/myConnection] Pool jdbc/myConnection [0/2/10] returned object org.jboss.pool.jdbc.xa.wrapper.XAConnectionImpl@7ec028 to the pool. log message? In the pool, there are 0 free

Re: [JBoss-user] JDBC Pool - Getting in trouble

2001-11-19 Thread Edson Carlos Ericksson Richter
I'm getting in trouble with JDBC Pool. After all use of a connection, I close resultSet, I close the statement and then close Connection. After all closes I get returned object, except in one case. If anyone can analyse this code and give some idea, please do: public List getAll() throws

[JBoss-user] dynamic secure url-patterns for web tier

2001-11-19 Thread David Ward
Anybody know how to modify security-constraints for the web tier at runtime? I want to be able to add/remove url-patterns and auth-constraint'ed role-names without modifying web.xml, re-packaging and re-deploying. thanks, David ___ JBoss-user

Re: [JBoss-user] JDBC Pool - Getting in trouble

2001-11-19 Thread David Jencks
I don't see anything wrong with your code after a quick look. One possibility I think is that, assuming you are using a non-xa db driver, the connection will not be returned to the pool until the transaction is over, so the pool can always supply the same connection for all work in one

Re: [JBoss-user] dynamic secure url-patterns for web tier

2001-11-19 Thread Scott M Stark
There is no standard way to do this. You would have to use the API for your web container to achieve this, provided that the container supported modifications of this information post web application deployment. Scott Stark Chief Technology Officer JBoss Group, LLC

Re: [JBoss-user] dynamic secure url-patterns for web tier

2001-11-19 Thread Julian Gosnell
Try [EMAIL PROTECTED], if you use Jetty. Greg, who is best positioned to answer this is away 'til wednesday. Jules Scott M Stark wrote: There is no standard way to do this. You would have to use the API for your web container to achieve this, provided that the container supported

Re: [JBoss-user] xml type...

2001-11-19 Thread terry.bakker
Hi Sridevi, It sounds like you are putting the data into a VARCHAR2 column in the Oracle database which has a maximum size of 4k. You need to use a RAW or LONG RAW column type in the Oracle database table. Terry Sridevi Ravulapalli [EMAIL PROTECTED]@lists.sourceforge.net on 19/11/2001

Re: [JBoss-user] xml type...

2001-11-19 Thread Guy Rouillier
I haven't used this datatype, but I just took a quick look at the 9i docs, which say this XmlType is built on CLOB, which can have a size up to 4 GB. I'm suspecting that unless you specify otherwise, Oracle stores the CLOB in the same page as the rest of the columns, so you end up with page

Re: [JBoss-user] Service bean

2001-11-19 Thread Guy Rouillier
You don't say what your service does, so it is difficult to make an assessment. Have you looked at MBeans? They are specifically designed for implementing services that start up with JBoss and keep running the whole time. I just implemented my first one, and it was pretty easy. - Original

Re: [JBoss-user] Interest problem

2001-11-19 Thread Guy Rouillier
That class is in client/jnp-client.jar. - Original Message - From: Haipeng Guo [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 19, 2001 4:13 AM Subject: [JBoss-user] Interest problem Hi, there, When I compile interst-client, it gives the following error

Re: [JBoss-user] Interest problem

2001-11-19 Thread Haipeng Guo
Hi, there, Thank you very much for your reply! But I think I've already added that jar file into my CLASSPATH, Is there any other possible reason? FYI, my CLASSPATH is defined as follows, nanyan~% echo $CLASSPATH .:/projects/nanyan/ejb.jar:/projects/nanyan/jakarta-ant-1.4/lib/ant.jar:/project