Re: [JBoss-user] configuring Log4J

2001-08-01 Thread Toby Hede
that's an excellent point. thanks scott - Original Message - From: "Scott M Stark" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 01, 2001 5:13 PM Subject: Re: [JBoss-user] configuring Log4J Yes it is possible. How do you think a file based JDBC database like cl

[JBoss-user] BMP-XML example

2001-08-01 Thread Tejovikas Suravajjala
Guys, Could someone please direct me to an example ejb-jar.xml for a BMP. Thanks, --Tejo. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] User Transaction support for JBoss?

2001-08-01 Thread Ole Husgaard
Hi, Jaime Gomez wrote: > I need know if Jboss support UserTransaction. I can use commit and > rollback in my client of the same form that use in JOnas JBoss supports UserTransaction: - For BMT beans in the server, as per tha spec. - For stand-alone clients in other VMs, possibly on other machi

[JBoss-user] Class-Path setting in War-file MANIFEST doesn't work for JSPs

2001-08-01 Thread Mike Williams
I'm having problems making my EJB Home/Remote interfaces available to my web-application. Following the instructions in the manual (http://www.jboss.org/documentation/HTML/ch11s55.html), I've created an EAR file with the following layout: META-INF/ META-INF/MANIFEST.MF META-INF/appl

[JBoss-user] freezing problem details

2001-08-01 Thread Boris Garbuzov
I noticed that in both versions with and without Tomcat JBoss often hangs after returning from ejbCreate() and ejbStore() methods and in the middle of ejb-jar's redeployment. The latter makes me doubt that it is due to my application’s deadlock. Earlier I saw others discussing similar problem. How

[JBoss-user] freezing problem details

2001-08-01 Thread Boris Garbuzov
I noticed that in both versions with and without Tomcat JBoss often hangs after returning from ejbCreate() and ejbStore() methods and in the middle of ejb-jar's redeployment. The latter makes me doubt that it is due to my application’s deadlock. Earlier I saw others discussing similar problem. How

Re: [JBoss-user] Problem with Custom MBeans

2001-08-01 Thread David Jencks
I haven't looked hard at your trace however you should not be putting anything in jboss.conf, just jboss.jcml. (at least with 2.2 and later) david jencks On 2001.08.01 11:30:52 -0400 Andrew Bredon wrote: > Hi All, > > I have used an example someone posted earlier (sorry lost the post) and > hav

[JBoss-user] implementing jboss with OpenJMS

2001-08-01 Thread Victor Hadianto
Hello, Has anyone succeeded in implementing OpenJMS with JBoss to handle its message driven bean? Is there any pitfall, caution that I need to know? Regards, Victor ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/lis

[JBoss-user] my client deadlock or jboss+tomcat hangs?

2001-08-01 Thread Boris Garbuzov
I am not sure if I could produce deadlock. I have no explicit usage of threads. May be resource sharing? If I connect to the same database from admin application? Or if I keep home object in a static field? What is a usual cause of it? --- I am still suffering from jboss-tomcat freezin

[JBoss-user] help w/ db resource and session bean config

2001-08-01 Thread G.L. Grobe
   Can someone look at this jboss.xml to see if it looks right. Specifically, if the session bean is mapped properly w/ the dbase resource.   Any help much appreciated. ---      jdbc/PostgresqlDB javax.sql.DataSource java:/access             

RE: [JBoss-user] Jetty support for JSP 1.2 and servlets 2.3

2001-08-01 Thread toby cabot
Actually, they do. The first link answers your first question directly, and the second link contains a pointer to the Jetty mailing list, which is probably a better place to ask questions about Jetty than the JBoss mailing list. > these links don't tell me much. > > -Original Message- >

Re: [JBoss-user] Jetty support for JSP 1.2 and servlets 2.3

2001-08-01 Thread Julian Gosnell
I'm crossposting this for you to jetty-discuss - you're more likely to find what you need there. Off the top of my head - without conferring - JSDK 2.3 - No - you'll need to wait for Jetty 4 (I'm open to correction here - Greg???). As for JSP 1.2, If the corresponding Jasper  release will run in

Re: [JBoss-user] Session Bean could not passivate Exception

2001-08-01 Thread David Jencks
Judging from the stack trace, you have an instance variable holding a Connection. Connections aren't serializalbe, thus the error on passivation. Don't have a instance variable for your connection: just get it, use it, and close it within one method call. david jencks On 2001.07.31 19:09:55 -04

[JBoss-user] User Transaction support for JBoss?

2001-08-01 Thread Jaime Gomez
I need know if Jboss support UserTransaction. I can use commit and rollback in my client of the same form that use in JOnas Sal. Jaime ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] Binary objects and CMP

2001-08-01 Thread David Jencks
On the database side, I think you will have to experiment and see what works for your database. You may have to fiddle with the jaws type mapping. My impression is that different databases deal with blobs of binary data in vastly different ways, despite the sql "standard" and jdbc. I can't see

[JBoss-user] Problems Accessing a DataSource INDIRECTLY from an Entity Bean.

2001-08-01 Thread Larry Kim
Hi I understand that a javax.sql.DataSource cannot be looked up directly from a client, rather, the client must look up a bean and invoke a method on it which accesses the underlying DataSource. fine. I ran into a problem when INDIRECTLY looking up a DataSource from an EJB. I was using a docum

Re: [JBoss-user] class not found exception while using /jboss cxt

2001-08-01 Thread Stephen J . Thompson
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 This looks as if it could be due the the jdk version you are using. Did you recompile jboss under 1.4? Regards, Stephen. On Wednesday 01 Aug 2001 6:10 am, you wrote: > using jboss.2.4.0 > win-2000 > jdk1.4 > > i have changed jboss.jcml to use emb

Re: [JBoss-user] MBean NameAlreadyBoundException

2001-08-01 Thread David Jencks
Hi, Thanks for the info. The mbeans for key generation are certainly fine, the security related one I don't know enough about to comment on, however I don't think you need the bean with the jndi name of the datasource. I apologize for not being able to give you the exact syntax, but (normally)

RE: [JBoss-user] Jetty support for JSP 1.2 and servlets 2.3

2001-08-01 Thread Patrick Munis
Title: RE: [JBoss-user] Jetty support for JSP 1.2 and servlets 2.3 these links don't tell me much. -Original Message- From: toby cabot [mailto:[EMAIL PROTECTED]] Sent: Wednesday, August 01, 2001 2:53 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] Jetty support for JSP 1.2 an

Re: [JBoss-user] Jetty support for JSP 1.2 and servlets 2.3

2001-08-01 Thread toby cabot
> Does Jetty currently support JSP 1.2 and servlets 2.3? If not, when > will it be. http://jetty.mortbay.com/ http://sourceforge.net/projects/jetty/ ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

[JBoss-user] SOS! How can I disable the session bean passivation in configure?

2001-08-01 Thread yan fan
Can guru tell me how can I disable the session bean passivation. Noticed that if I use below will get null point exception : TB No Passivation Configuration RB

Re: [JBoss-user] Integration with Catalina/Tomcat 4?

2001-08-01 Thread toby cabot
> When will Jboss be integrated with Catalina/Tomcat 4? > thanks > Patrick Patrick, It's pretty funny, I was wondering the same thing myself. I asked on the forums this morning and was told that one of the developers would re-open the catalina integration next week. In the mean time there's s

[JBoss-user] is freezing problem with Tomcat solved?

2001-08-01 Thread Boris Garbuzov
Your case may be a little different, Mike, because with me it hangs not on deployment but in the middle of serving remote methods. Seems, when storing. - Subject: Re: [JBoss-user] is hanging problem with Tomcat solved? From: Mike Williams <[EMAIL PROTECTED]> I was having a

Re: Re: [JBoss-user] JBoss and JDO

2001-08-01 Thread Alex . Devine
We are using SQLServer 7.0, will likely switch to SQLServer 2000 in production. Alex |+--> || "C Murphy @ Intechtual" | || >---

[JBoss-user] Problem with JSP invocation deployed in an EAR

2001-08-01 Thread TonyCadogan
Hi, I've built an ear file for an application name "BuildXML" containing a .war file. The war file contains home.htm jsp/sample6.jsp web.xml The deployment appears ok, I invoke the home.htm which contains the line Download When download is pressed I get a File not found error. What piece o

[JBoss-user] How can I disable the session bean passivation?

2001-08-01 Thread nong le
Can guru tell me how can I disable the session bean passivation. Noticed that if I use below will get null point exception : TB No Passivation Configuration RB

[JBoss-user] Problem with Custom MBeans

2001-08-01 Thread Andrew Bredon
Hi All, I have used an example someone posted earlier (sorry lost the post) and have added the code into jboss.conf and code into jboss.jcml and created the Foo.java & FooMBean.java files (both compile no probs) but I get the following exception on startup. The mlet and mbean are both at the b

[JBoss-user] Jetty support for JSP 1.2 and servlets 2.3

2001-08-01 Thread Patrick Munis
Title: Jetty support for JSP 1.2 and servlets 2.3 Does Jetty currently support JSP 1.2 and servlets 2.3? If not, when will it be. thanks Patrick

RE: Re: [JBoss-user] JBoss and JDO

2001-08-01 Thread Alex Radka
I'm using it with MySql different Alex -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of C Murphy @ Intechtual Sent: Wednesday, August 01, 2001 10:47 AM To: [EMAIL PROTECTED] Subject: Re: Re: [JBoss-user] JBoss and JDO If I may ask, what RDB are you usin

[JBoss-user] Integration with Catalina/Tomcat 4?

2001-08-01 Thread Patrick Munis
Title: Integration with Catalina/Tomcat 4? When will Jboss be integrated with Catalina/Tomcat 4? thanks Patrick

[JBoss-user] class not found exception while using /jboss cxt

2001-08-01 Thread kvrprasad
using jboss.2.4.0 win-2000 jdk1.4 i have changed jboss.jcml to use embedded tomcat; have set CLASSPATH= and copied tools.jar to tomcat/lib jboss starts ok; servlets jsp examples run ok. using "http://localhost/jboss and clinking on one the tests gives the following class not found exceptio

RE: [JBoss-user] JBOSS INTEREST EXAMPLE

2001-08-01 Thread A.L.
I noticed that the interestservlet.class file also happens to be in : C:\work\example\examples\build-examples\interest\classes\org\jboss\docs\interest --- Martin Welch <[EMAIL PROTECTED]> wrote: > Where is your InterestServlet.class file? > > -Original Message- > From: A.L. [mailto:[EM

RE: [JBoss-user] JBOSS INTEREST EXAMPLE

2001-08-01 Thread A.L.
The immediate naswer to you question is: The interestservlet.class file was created in: C:\work\example\examples\build-examples\interest\WEB-INF\classes\org\jboss\docs\interest Here is some more background info... When I downloaded the files for the interest example I put them all into the follo

Re: Re: [JBoss-user] JBoss and JDO

2001-08-01 Thread C Murphy @ Intechtual
If I may ask, what RDB are you using behind Castor's JDO implementation on your project? Thanks Chris Murphy On Tue, 31 Jul 2001 21:18:11 -0500, [EMAIL PROTECTED] wrote: > > I wholeheartedly agree with this article. I am on a project where we > originally were using entity beans, but we switch

RE: [JBoss-user] URGENT - problem on startup

2001-08-01 Thread Schouten, Andreas
Hi Alex, we removed the dtd entries from the XML files and the parser works fine without validationg the dtd. Andreas > -Original Message- > From: Alex Radka [SMTP:[EMAIL PROTECTED]] > Sent: 01 August 2001 16:09 > To: [EMAIL PROTECTED] > Subject: RE: [JBoss-user] URGENT - problem

Re: [JBoss-user] Deployment Descriptor - Working on a tool at the moment

2001-08-01 Thread Wei-ju Wu
This was my first intention when I started development. If it is desired I will contribute it. Wei-ju - Original Message - From: "Patrick Smith" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 01, 2001 3:43 PM Subject: Re: [JBoss-user] Deployment Descriptor - Working

RE: [JBoss-user] URGENT - problem on startup

2001-08-01 Thread Alex Radka
Sorry. It was the famous web-app_2_2.dtd problem. As of this writing java.sun.com is down (or at least I can't get to it). That's twice in the last 6 months, that you can't find the file. You would think it would be higher availability. Luckily I have a copy and can link locally. Alex -

Re: [JBoss-user] HELP! EJB 1.1 specification compliance

2001-08-01 Thread Daniel CAUNE
Mmmh... I spoke too quiclky... In fact that doesn't work! On Wednesday 01 August 2001 15:32, you wrote: > OK, it works fine now! > > Thanks a lot! > > > Daniel > > On Tuesday 31 July 2001 17:54, you wrote: > > Daniel, > > > > try chaging the Application to > > Container in the ejb-jar.xml. Also

Re: [JBoss-user] Deployment Descriptor - Working on a tool at the moment

2001-08-01 Thread Patrick Smith
any chance that you'll contribute it to the JBoss cvs ? maybe it'll make itself into the binary at some point. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] HELP! EJB 1.1 specification compliance

2001-08-01 Thread Daniel CAUNE
OK, it works fine now! Thanks a lot! Daniel On Tuesday 31 July 2001 17:54, you wrote: > Daniel, > > try chaging the Application to > Container in the ejb-jar.xml. Also in the jboss.xml > the tag is not required. > > Paul > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMA

[JBoss-user] URGENT - problem on startup

2001-08-01 Thread Alex Radka
Went to restart JBoss, shutdown fine but on startup it hangs when trying to add the first Context and then gives a null pointer exception. What's happening? [Auto deploy] Starting [Auto deploy] Watching /opt/JBoss-2.2.2_Tomcat-3.2.2/jboss/deploy [Auto deploy] Auto deploy of file:/opt/JBoss-2

RE: [JBoss-user] JBOss Site down ???

2001-08-01 Thread James Magee
yea Naresh, I got the same problem, however I done a google search for Jboss and "JAAS Based Security in JBoss" is the second item listed, this will get yea in to the site. -Original Message- From: Naresh Sharma [mailto:[EMAIL PROTECTED]] Sent: 02 August 2001 00:35 To: Jboss User Subject:

[JBoss-user] Writing custom SQL in CMP Bean

2001-08-01 Thread Nicolai P Guba
Is it possible to write some custom SQL for a CMP Bean? Something along the lines of: public void setCompanyStakeholders (ArrayList a, long firstIdBlockNum) throws RemoteException { final String query = "INSERT INTO Stakeholder (id

RE: [JBoss-user] Classpath in Manifest file

2001-08-01 Thread Sternagel Annegret (PN-SYS/DAS)
If you put the home and remote interfaces of the beans into a jar into jboss\lib\ext directory, you do not need to put hem into searchBean.jar (and neither the new beanjar itself). Annegret > -Original Message- > From: Rajesh Vilasrao Bhujbal [SMTP:[EMAIL PROTECTED]] > Sent: Mittwoch, 1.

[JBoss-user] JBOss Site down ???

2001-08-01 Thread Naresh Sharma
Hello Everybody, any problem with JBoss site(www.jboss.org). it gives this message. HTTP ERROR: 404 Not Found Could not find resource for / RequestURI=/ Naresh _ Do You Yahoo!? Get your free @yahoo.com address at http://mail.yahoo.com

Re: [JBoss-user] Unable to deregister with Transaction Manager

2001-08-01 Thread Hermann RANGAMANA
Hi Frederico, I've faced exactly the same problem few days ago. I used BMP with postgreSQL and jBoss on win2k. I was about to going insane before finding the solution It is generally due to improperly unclosed connection. For example, if you have code like this : Connection conn = dataSour

Re: [JBoss-user] configuring Log4J

2001-08-01 Thread sheena sid
Thx for the replybut I'm new to Log4J and totally in the dark here. Could you tell me which are the properties that I need to change? Can I then just execute as normal and presume the logging automatically takes place at runtime? So where do I see the results etc? Thanks again, Sheena. > --

RE: [JBoss-user] JBoss and JDO

2001-08-01 Thread Vincent Harcq
Hi, AFAIK, Sap announces the support of JCA through InQMy Resource Adapter. Nothing about JDO. I still don't see JDO as widely accepted and avoid to use it. Are you talking about this product ? Else can you point me which one ? I have looking for such a SAP RA for some time now and was always a

RE: [JBoss-user] JBOSS INTEREST EXAMPLE

2001-08-01 Thread Martin Welch
Title: RE: [JBoss-user] JBOSS INTEREST EXAMPLE Where is your InterestServlet.class file? -Original Message- From: A.L. [mailto:[EMAIL PROTECTED]] Sent: 31 July 2001 17:20 To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] JBOSS INTEREST EXAMPLE I have finally tried to restart the who

[JBoss-user] Classpath in Manifest file

2001-08-01 Thread Rajesh Vilasrao Bhujbal
Hi, I had created application which lists home and remote interface class of all deployed beans in Jboss. I had had used session bean named searchBean  for this purpose. searchBean lists beans starting with JNDI name "interest/ ".   it gives correct result only if I add home and remotes

[JBoss-user] jbosspool usage with Castor and MySQL?

2001-08-01 Thread fabio rojas
I'm trying to use jbosspool as a standalone jdbc connection pool provider for Castor (castor.exolab.org) using a MySQL database. i modified my castor database.xml as follows: JDBCPoolDataSource (is for non-transactional pools). Should i be using XAPoolDataSource in orde

RE: [JBoss-user] What means javax.naming.CommunicationException?

2001-08-01 Thread Sternagel Annegret (PN-SYS/DAS)
That means, that the class in the clients classpath is not the same version as the class in jboss classpath. Make sure that the jboss-jars in the client classpath are from the jboss version you are running. Annegret > -Original Message- > From: Andrew [SMTP:[EMAIL PROTECTED]] > Sent: Die