Re: [JBoss-user] Dumb newbie confusion over web.xml

2001-03-29 Thread Scott M Stark
jakarta-3.2.1 is a 2.2 servlet engine. The web.dtd file that ships with it is the 2.2 DTD as it is missing 2.3 elements like: filter, filter-mapping, listener, and resource-env-ref. Both 2.2 and 2.3 use a web.xml descriptor to describe the web application so you need to use it. - Original Me

Re: [JBoss-user] Tomcat + Apache using mod_jk

2001-03-29 Thread jBoss Monkey
Eventually, I was able to  integrate Apache with  jBoss/Tomcat(embeded), with manually created mod_jk conf file. The only thing i wondered, that I had to use JkMount directive even for j_security_check, which was supposed to be understood by apache by default to access secure application. Thanks

Re: [JBoss-user] SQL Server Drivers

2001-03-29 Thread Dewayne McNair
It's not open source, but, we're using i-net Opta 2000... we're very pleased with it.  Pricing is very reasonable.   http://www.inetsoftware.de/Default.htm   -- Dewayne - Original Message - From: Rama Rao To: [EMAIL PROTECTED] Sent: Friday, March 30, 2001 12:09

[JBoss-user] Dumb newbie confusion over web.xml

2001-03-29 Thread Keith Thomas
Hi,   Apologies for having such a basic problem but I've got myself kinda confused.   I have some idea that under Servlets 2.3 web.xml has most of the elements required to support J2EE 1.3. The web.dtd files I've found within the JBoss/Tomcat download I made earlier in the week seem to have

[JBoss-user] JBoss@Oreilly conference.

2001-03-29 Thread Peter Antman
Hi, so the last day of the Oreilly Java Enterprise Conference has past. Yes, I was there, and I really heard a LOT of people talking about, mention, referencing, planing to test JBoss. Thats nice, but a shame that no one from the JBoss team showed up, instead the open source part of the conferenc

Re: [JBoss-user] Non-XA data source setup

2001-03-29 Thread David Jencks
Hi, What in more detail are you trying to do? What is your datasource connected to? Why are you setting autocommit true? If you are trying to pool non-XA connections, you might try using a org.opentools.minerva.jdbc.JDBCPoolDatasource. A brief look makes me think it provides a Datasource fron

RE: [JBoss-user] SQL Server Drivers

2001-03-29 Thread Scott Warren
Title: RE: [JBoss-user] SQL Server Drivers There is a FreeTDs driver which is open source. I am unaware of others, but I would love to know of any more .. ? I have NOT tested this for use by Jboss. But it may be suitable. Let us know how you go. http://www.freetds.org/ Also check the M

[JBoss-user] MULTIPLE DATABASE

2001-03-29 Thread Lac Sanh La
Hi All, Is anyone know how to configure JBOSS-TOMCAT to deploy multiple sites on one server? Please, let me know. Thanks Lac La mailto:[EMAIL PROTECTED] Business Manager Software Tel: (03) 9813 3022 ___ JBoss-user mailing list [EMAIL PROTECTED] ht

[JBoss-user] Problem while executing Procedure

2001-03-29 Thread Chidambara, Vinoth (CTS)
Title: Problem while executing Procedure Hai, Am using JBoss2.1, WindowsNT 4.0, Sybase SQL Server I am getting JDBC connection like this javax.naming.Context ctx = new javax.naming.InitialContext(); javax.sql.DataSource ds = (javax.sql.DataSource)ctx.lookup("java:/TryDB"); con=ds.get

RE: [JBoss-user] JBoss questions...

2001-03-29 Thread David Jencks
Hi, I have no direct experience with a real XA driver, but I have been studying the JCA code in jbosscx, set up my Firebird server to work with blackbox adapter, and written another resource adapter. My conclusion from reading the code is that... 2pc is different from distributed transaction man

[JBoss-user] SQL Server Drivers

2001-03-29 Thread Rama Rao
Hi,What is the driver you are using for SQL Server 2000.From which company? How much does it cost?Can we get any open source  SQL Server driver .TIARegardsRama Rao

RE: [JBoss-user] Postgres datasource causes JBoss init to stop...

2001-03-29 Thread Jim Archer
Prehaps because that was an issue between the PostgreSQL JDBC driver and Postgres. The -i causes Postgres to accept connections via sockets, which is the only way the JDBC driver can talk to it. The JDBC driver may not report this well enough for jBoss to interprate or, if it does, its a datab

Re: [JBoss-user] MessageDrivenBean transactions

2001-03-29 Thread Peter Antman
Hi, yes in principal it work, buty I have to admit I have not tested with setRollback only, but throwing an EJBException roll the transaction back. But basically all ways you are allowed to use to mark the current transaction for rollback should work. On Thu, 29 Mar 2001, Todd Huss wrote: > I'm

Re: [JBoss-user] MS SQL7 JDBC-ODBC parameters

2001-03-29 Thread Peter Routtier-Wone
ODBC is evil. There is more than one free pure Java JDBC driver for TDS (the M$ and Sybase protocol). Search the net for TDS near JDBC. - Original Message - From: Steve Shier To: '[EMAIL PROTECTED]' Sent: Tuesday, March 27, 2001 8:05 PM Subject: [JBoss-user] MS SQL7 JDBC-ODBC parameters

RE: [JBoss-user] I need ammo

2001-03-29 Thread Jim Archer
I'll suggest another reason to use jBoss right now. With an inexpensive add-in (check out http://www.mvcsoft.com), you can start codeing in EJB 2.0 PFD. Yes, the spec will change before it is final, but most of it won't change. EJB 2.0 greatly enhances the portability of your application over

[JBoss-user] Subscribe

2001-03-29 Thread Chidambara, Vinoth (CTS)
Title: Subscribe With Regards, Vinoth.C This e-mail and any files transmitted with it are for the sole use of the intended recipient(s) and may contain confidential and privileged information. If you are not the intended recipient, please contact the sender by reply e-mail and destroy

Re: [JBoss-user] Client in JRE1.2.2 -> jBoss 2.1 in JRE1.3?

2001-03-29 Thread Rama Rao
Hi, Add the property java.vm.version=1.2 in jboss.properties. I think this works. bye rama rao - Original Message - From: jK.MkIII <[EMAIL PROTECTED]> To: jBoss-user <[EMAIL PROTECTED]> Sent: Wednesday, March 28, 2001 6:17 PM Subject: [JBoss-user] Client in JRE1.2.2 -> jBoss 2.1 in J

[JBoss-user] Non-XA data source setup

2001-03-29 Thread Tim Taylor
I need to get a non-XA data source set up for use outside containers. It looks like there is a JDBCDataSourceLoader service similar to XADataSourceLoader. However, the JDBCDataSourceLoader doesn't work when configured with the same parameters as the XADataSourceLoader. Does anyone have an ex

[JBoss-user] CMP Interbase problem

2001-03-29 Thread John Dubchak
Hi, I am using Interbase 6.0 on Linux with jboss-tomcat-2.1-beta. I have created a schema and a CMP entity bean, along with the required XML files for deployment. Deployment works fine, but when I access the bean with a client I am getting the following exception: interbase.interclient.Colu

RE: [JBoss-user] Postgres datasource causes JBoss init to stop...

2001-03-29 Thread Carey Nation
I got it to work. You have to start postmaster with a -i. That makes it run over the network. I figured this out by writing a 10 line program to connect. It threw a very nice exception that told me what was wrong. Wonder why JBoss didn't do that? -Original Message- From: [EMAIL PROTEC

[JBoss-user] instantdb deadlock

2001-03-29 Thread Dominik Baranowski
FYI: I've encounted a deadlock while performing concurrent access to instantDB this is fixed in version 3.26 which can be downloaded from the enhydra site. -dom ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/

RE: [JBoss-user] Postgres datasource causes JBoss init to stop...

2001-03-29 Thread Carey Nation
I hope so too. What does your URL for the database look like? I'm trying to write a little test program to connect to postgres outside of jboss. Thanks! Carey -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of SASAGAWA Takashi Sent: Thursday, March 29, 2

Re: [JBoss-user] Postgres datasource causes JBoss init to stop...

2001-03-29 Thread SASAGAWA Takashi
Hi, I have set up JBoss 2-1 with Tocat a couple of days ago. I have the same problem as yours. I just forgot to place postgres JDBC driver in the right place. $JBOSS_HOME/lib/ext JBoss works really great. I love it. Hope you can work it out. Thanks, WiseKnot Ltd. http://www.wiseknot.co.jp Tak

[JBoss-user] Minerva and prepared statement cache size

2001-03-29 Thread Tim Taylor
Is there a way to set the statement cache size so that all pooled connections use that size? If you just set the size on one connection using org.opentools.minerva.jdbc.xa.wrapper.XAClientConnection.setPSCacheSize(int) it only sets the cache size for that one connection. The very next conne

RE: [JBoss-user] JBoss questions...

2001-03-29 Thread Crothers.Dean
Filip, thanks for the explanation, even though its not what I wanted to hear!! So I guess the issue now is when will JBoss support distributed transactions - does anybody know??? thanks again, Dean -Original Message- From: Filip Hanik [mailto:[EMAIL PROTECTED]] Sent: Thursday, March

Re: [JBoss-user] I need ammo.

2001-03-29 Thread Peter Routtier-Wone
You're a pearl, Bill. This is exactly the sort of stuff I need for the promo material I'm preparing - unsolicited from-the-trenches testimonial. It may help to point out to your employers that they have no guarantees from the other container providers, and that JBoss gives them the ability to re

Re: [JBoss-user] JBoss 2.0 documentation PDF?

2001-03-29 Thread Vladimir Blagojevic
Hey thanks, The problem with the whole pdf thingy is that fo->pdf translation is such a new technology. FOP engine from Apache is growing nicely. The main problem we are experiencing is automatic table layout. I suppose that by the time we get our doco nicely organized , those folks from Apache

[JBoss-user] Basic jsp --> ejb example for Jboss?

2001-03-29 Thread Jason Wells
Hello, I'm new to the EJB world and I'm trying to find a "hello world" level explanation/tutorial that walks through creating a very basic web application (using Jboss) that accesses EJB services from within a JSP or servlet. When I looked through the online Jboss docs, I found a tutorial which

RE: [JBoss-user] JBoss questions...

2001-03-29 Thread Filip Hanik
> You mentioned that 'true 2 phase commit' is not implemented in JBoss? The > logging of the JBoss console at startup outputs: > > [SQLServerPool] Starting > [SQLServerPool] XA Connection pool SQLServerPool bound to > java:/SQLServerPool > [SQLServerPool] Started Well. that is the jdbc driver tha

RE: [JBoss-user] I need ammo

2001-03-29 Thread MicaCooper
Forget the dodos with no backbone who'll advise going with big names. Its a wonder they aren't using Microsoft. Use jBoss in your test environment and on your developers boxes. When you understand it, and its running smoothly, put it in production. If you have problems, then you can purchase a na

RE: [JBoss-user] JBoss questions...

2001-03-29 Thread Crothers.Dean
Filip, thanks for your reply. You mentioned that 'true 2 phase commit' is not implemented in JBoss? The logging of the JBoss console at startup outputs: [SQLServerPool] Starting [SQLServerPool] XA Connection pool SQLServerPool bound to java:/SQLServerPool [SQLServerPool] Started where 'SQLServ

RE: [JBoss-user] I need ammo

2001-03-29 Thread Frank Thiemonge (NBK)
(as there have already been sufficient responses, this is mainly for the archives...) I cannot say that we are in production yet, but I can say that we will be in the next few months using Jboss on a Win2000/SQL Server 2000/Apache/Tomcat type configuration. We will expect to have an average of 30

RE: [JBoss-user] Postgres datasource causes JBoss init to stop...

2001-03-29 Thread Carey Nation
Ok, I did that, and the result is the same. but now, I can provide actual details... 1. Here's where it stops... ty.SubjectSecurityProxyFactory@4695a6 [JAAS Security Manager] Started [JDBC provider] Starting [JDBC provider] Started [postgres] Starting [postgres] XA Connection pool postgres bound

RE: [JBoss-user] so I've created an MBean...how to I access it?

2001-03-29 Thread Liu, Kenneth Albert (Kenneth)** CTR **
Maybe I'm not being too clear. All I want to do is call a method on the MBean from my code running in JBoss, not manage the MBean. Ken > -Original Message- > From: Filip Hanik [mailto:[EMAIL PROTECTED]] > Sent: Thursday, March 29, 2001 7:05 PM > To: [EMAIL PROTECTED] > Subject: RE: [JBo

[JBoss-user] JSP customisation on a jboss-tomcat configuration

2001-03-29 Thread Anne Waller
Hi, please bear with me regarding this issue. I wish to raise a question regarding the customisation of JSP's. We have previously used Orion but we would like to give our customers a choice in web servers. In the case of Orion it was possible to do a hot-deployment of a JSP, our application i

RE: [JBoss-user] so I've created an MBean...how to I access it?

2001-03-29 Thread Filip Hanik
couldn't you use the HTTP connector (MBean) that comes with the reference implementation, this lets you manage your bean through a browser? Filip ~ Namaste - I bow to the divine in you ~ Filip Hanik Software Architect [EMAIL PROTECTED] www.filip.net > -Original Message- > From: [EMAIL P

[JBoss-user] so I've created an MBean...how to I access it?

2001-03-29 Thread Liu, Kenneth Albert (Kenneth)** CTR **
So I created a ServiceMBean for my system, and now I am ready to create a client to it. This particular MBean initializes and starts an engine that I am using and holds on to the instance of it. I would now like to access this instance. What I've done is created a getInstance() on the MBean's i

RE: [JBoss-user] Error w/jboss-tomcat-2.1-beta.zip (March-26-2001)

2001-03-29 Thread Micheal J
Sounds like you have a SAX1 parser in your CLASSPATH that's getting loaded instead. Micheal > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of Dorothy > Gantenbein > Sent: 29 March 2001 20:57 > On my Windows 2000 machine, I get an immediate error >

Re: [JBoss-user] I need ammo.

2001-03-29 Thread Bill Burke
IMHO, I think going the JBoss/OpenSource route has very huge advantages in the long run. Other than the obvious, (you can fix bugs you find, add any feature you want), the EJB Container becomes less mysterious and magical, and more predictable and understandable. Since we've been using JBoss

RE: [JBoss-user] for weblogic JDBC Type 4 Drivers

2001-03-29 Thread Micheal J
I've forwarded it to Kunle. BTW, how did you resolve the problems with the Atinav drivers?. I looked at the post but couldn't see any reason for the error and since I don't have/use the Atinav drivers... Did you resolve the issue?. Any pearls of wisdom that you can pass on to others in the commun

RE: [JBoss-user] JBoss questions...

2001-03-29 Thread Filip Hanik
> 1) when using BMP how do you return a database connection to the pool when > your finished with it? Connection.close(); > > 2) can JBoss perform distributed transactions with SQL Server? If so, is > there any information showing how to do this with BMP? > nope, true 2 phase commit is not impl

RE: [JBoss-user] I need ammo.

2001-03-29 Thread marc fleury
|Are you sure JBoss is the way to go? Don't get me wrong, I love JBoss and |I will actually have a site going live in the next few months that will be |running on JBoss. However, if you sell your management types on JBoss, and |then experience any difficulties, especially with the lack of "offic

[JBoss-user] I need ammo

2001-03-29 Thread Bill Burke
All, I need help. I really need some references on who is using JBoss in production and to what scale. I'm meeting resistence on adopting JBoss at my company and really need this information to convince the nervous, uninformed, upper-upper management(CIO types) that this is the way to go

Re: [JBoss-user] Error w/jboss-tomcat-2.1-beta.zip (March-26-2001)

2001-03-29 Thread Dan Christopherson
Do you have another XML parser in your classpath? On Thu, 29 Mar 2001, Dorothy Gantenbein wrote: > Hi - > > I just downloaded jboss-tomcat-2.1-beta.zip from the > web site and unzipped it. > > On my Windows 2000 machine, I get an immediate error > when I try to use run.bat. The error appears

[JBoss-user] JBoss questions...

2001-03-29 Thread Crothers.Dean
Hi, I've looked on the website and thru the archives, but couldnt find answers to the following questions. But first some background, we plan to use JBoss 2.1 on Win2000 with multiple SQL Server databases (potentially on different boxes). 1) when using BMP how do you return a database connecti

RE: [JBoss-user] embedding JBoss into another application

2001-03-29 Thread Filip Hanik
take a look at OpenJoda from mycomponents.com it aint pretty, but they did it :) Filip ~ Namaste - I bow to the divine in you ~ Filip Hanik Software Architect [EMAIL PROTECTED] www.filip.net > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of chad t

Re: [JBoss-user] Tomcat + Apache using mod_jk

2001-03-29 Thread Scott M Stark
I read the question as "when I use tomcat embeded in JBoss I don't see the mod_jk.conf-auto created ..." with a subsequent question as to how to use Apache. I was just commenting on why there would not be a mod_jk.conf-auto created. - Original Message - From: "Dan Christopherson" <[EMAIL

[JBoss-user] how to access my own file in META-INF?

2001-03-29 Thread Donald Ball
heya. i'd like to put a configuration file for my beans in the META-INF directory of my bean jar. how would i go about accessing that resource in jboss? (normally i'd use Class.getResource("/META-INF/foo.xml") but i don't know that's safe in an EJB/JBoss environment) - donald __

Re: [JBoss-user] I need ammo.

2001-03-29 Thread Peter_Cetinski
Are you sure JBoss is the way to go? Don't get me wrong, I love JBoss and I will actually have a site going live in the next few months that will be running on JBoss. However, if you sell your management types on JBoss, and then experience any difficulties, especially with the lack of "official

[JBoss-user] embedding JBoss into another application

2001-03-29 Thread chad t
Is there any documentation about how to embed JBoss into another Java application? I would like to get a general idea about how this is done and invite anyone that has already addressed this issue to comment. __ Do You Yahoo!? Get email at your own

RE: [JBoss-user] [off-topic] Grafittix beta

2001-03-29 Thread marc fleury
we did "write doco get paid" we will do "write code get paid" the general idea is that we are seeing a flurry (no pun intended) of plugins being developed. They are not "core" stuff but "add-ons". JBoss is a tremendous distribution channel, also its STRENGTH is the fact that it is free. We wil

Re: [JBoss-user] [off-topic] Grafittix beta

2001-03-29 Thread Zaphod
this sounds interesting. please let me know when you have more details on it. - zaphod - Original Message - From: "marc fleury" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 29, 2001 3:48 PM Subject: RE: [JBoss-user] [off-topic] Grafittix beta > Ok, > > we are serio

[JBoss-user] I need ammo.

2001-03-29 Thread Bill Burke
All, I need help. I really need some references on who is using JBoss in production and to what scale. I'm meeting resistence on adopting JBoss at my company and really need this information to convince the nervous, uninformed, upper-upper management(CIO types) that this is the way to go

Re: [JBoss-user] Error w/jboss-tomcat-2.1-beta.zip (March-26-2001)

2001-03-29 Thread Scott M Stark
This is happening when you are running run.bat from within the C:\tmp\jboss-tomcat-2.1-beta\jboss-2.1\bin directory? It works fine for me on W2K with the Sun VM. Either your not in the bin directory so the relative path element ../lib/crimson.jar is not correct or your VM doesn't like the classpat

Re: [JBoss-user] Tomcat + Apache using mod_jk

2001-03-29 Thread Dan Christopherson
The question was on using Apache to front end Tomcat+JBoss On Thu, 29 Mar 2001, Scott M Stark wrote: > If your not using Apache why would it be used? > > - Original Message - > From: "Dan Christopherson" <[EMAIL PROTECTED]> > To: <[EMAIL PROTECTED]> > Sent: Thursday, March 29, 2001 7:3

[JBoss-user] for weblogic JDBC Type 4 Drivers

2001-03-29 Thread Brenton House
I'm not sure what the process is to add this to the How To Page at: http://jboss.org/documentation/mssql.htm but here is the for weblogic JDBC Type 4 Drivers. Enjoy! Brenton House Driver: weblogic.j

[JBoss-user] JMX Managed EJB's

2001-03-29 Thread John_Kidd
Is there a way to setup JBoss so I can managed individual EJB's? John ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

RE: [JBoss-user] EJB concurrency

2001-03-29 Thread Trawick, James
anyone care to field this one? chris -Original Message- From: Trawick, James [mailto:[EMAIL PROTECTED]] Sent: Friday, March 23, 2001 2:34 PM To: '[EMAIL PROTECTED]' Subject: RE: [JBoss-user] EJB concurrency we are having this discussion because i presented a JMS/messagebean scenario th

[JBoss-user] Transaction Isolation Level

2001-03-29 Thread Kevin Meldorf (NBK)
How are Transaction Isolation Levels handled in jboss? Weblogic seems to use a proprietary method in their weblogic-ejb-jar file. If jboss does have a control over Transaction Isolation Levels, where and how do you declare them. Thanks, Kevin Kevin Meldorf Systems Analyst WorldTravel BTI 400 Sk

[JBoss-user] Custom MBeans

2001-03-29 Thread James Kiryakoza
Title: Glacier I created a custom MBean to set up my Log4J configuration. The bean works fine, but when I try to pass it a parameter by including a reference to it in the Jboss.jcml file, the jcml file is always overwritten and my entry is deleted. Does anyone have any ideas as to why this i

[JBoss-user] Error w/jboss-tomcat-2.1-beta.zip (March-26-2001)

2001-03-29 Thread Dorothy Gantenbein
Hi - I just downloaded jboss-tomcat-2.1-beta.zip from the web site and unzipped it. On my Windows 2000 machine, I get an immediate error when I try to use run.bat. The error appears to be in Sax. Has anyone else experienced this problem? Thanks... Dorothy

Re: [JBoss-user] Tomcat + Apache using mod_jk

2001-03-29 Thread Scott M Stark
If your not using Apache why would it be used? - Original Message - From: "Dan Christopherson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 29, 2001 7:32 AM Subject: Re: [JBoss-user] Tomcat + Apache using mod_jk > Why wouldn't the mod_jk apache module be used? > >

RE: [JBoss-user] [off-topic] Grafittix beta

2001-03-29 Thread marc fleury
Ok, we are seriously thinking about a "add-on" marketplace for JBoss, where we take a cut of sales to further the open source base. Your products would be very welcome in that program More on this soon, regards marc |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECT

Re: [JBoss-user] [off-topic] Grafittix beta

2001-03-29 Thread Zaphod
thank you Marc, I appreciate this. I just thought it might be a valueable addition for JBoss to have a graphical administation/builder tool. The question is: Can we contribute it (that is: open source it) or not. Frankly, we do not know yet. This was actually one of the reasons I posted the messa

Re: [JBoss-user] [off-topic] Grafittix beta

2001-03-29 Thread Zaphod
thank you Marc, I appreciate this. I think it might be a valueable addition for JBoss to have a graphical administation/builder tool. The question is: Can we contribute it (that is: open source it) or not. Frankly, we do not know yet. This was actually one of the reasons I posted the message. For

[JBoss-user] ejb access

2001-03-29 Thread J. G. Zambrano
Hello,   I need to access all the homes deployed in a JBoss container from a client without having the names by which they were bound into JNDI. Does someone know of a way to obtain the deployed ejb homes on the given server whereby a client obtains and traverses a JNDI initial context. I h

RE: [JBoss-user] Q: jBoss & Jetty Package

2001-03-29 Thread MArandjelovic
Will new jboss/jetty release be able to handle war files better? How does jboss/jetty (or jetty) handle standard war's (war, not ear)? I had a trivial deploy with tomcat (just copied war file into webapps and it worked), however I couldn't do that with jboss/jetty (or jetty standalone). We would

[JBoss-user] MessageDrivenBean transactions

2001-03-29 Thread Todd Huss
I'm using MessageDrivenBeans in JBoss with the transaction attribute required. I know that in Weblogic, when using container managed transactions with MDB's the receipt of the message is considered part of the transaction so that a ctx.setRollbackOnly() will be as if the message hasn't been delive

Re: [JBoss-user] Postgres datasource causes JBoss init to stop...

2001-03-29 Thread Dan Christopherson
Make sure that PostgreSQL's pg_hba.conf is set up to allow and authenticate accesses from the JBoss machine's IP address. On Thu, 29 Mar 2001, Carey Nation wrote: > Hi, > I'm trying to get jboss going with postgres. I have the latest version > of both. I've configured the stuff in the config fi

Re: [JBoss-user] security error while running interest client.

2001-03-29 Thread Dan Christopherson
you need jbosssx-client.jar in the client's classpath On Thu, 29 Mar 2001, Sundaram Ramasamy wrote: > Hi, > > Today I downloaded the jboss-2.1.zip. while try to run the interest client > program. Its giving the following error. The same program I was able to run > old version of jboss. > > >

Re: [JBoss-user] Q: jBoss & Jetty Package

2001-03-29 Thread Julian Gosnell
Looking at it as we speak... It's taking a while, beacause Jetty has a completely new JMX-ified wrapper. I am trying to figure out how to connect it to the JBoss JMX stuff. Jules "Day, Jem BGI WAC" wrote: > Guys, > > Do you intend to update the "jBoss & Jetty" combined distribution for 2.1

[JBoss-user] Have you seen this error message?

2001-03-29 Thread Raghuv
When I undeploy/deploy an EJB, I see the following message on the jboss console: [J2EE Deployer Default] exception while searching deployment: C:\jboss2.1\tmp\deploy\Default\MyTester.jar\deployment.cfg (The system cannot find the file specified) Just wondering why this is happening? BTW, everyt

RE: [JBoss-user] bug in the latest few versions of jBoss 2.1

2001-03-29 Thread Swami Iyer
I am using the jboss/tomcat combination and here it is. -Original Message- From: Patrick Buchinger [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 29, 2001 12:05 PM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] bug in the latest few versions of jBoss 2.1 > I just tried the tomcat-tes

[JBoss-user] Postgres datasource causes JBoss init to stop...

2001-03-29 Thread Carey Nation
Hi, I'm trying to get jboss going with postgres. I have the latest version of both. I've configured the stuff in the config files as shown in the docs. The jdbc driver loads, but when it gets to the bit about starting up the datasource, jboss freezes. It looks almost as if it's trying to time o

[JBoss-user] security error while running interest client.

2001-03-29 Thread Sundaram Ramasamy
Hi, Today I downloaded the jboss-2.1.zip. while try to run the interest client program. Its giving the following error. The same program I was able to run old version of jboss. Got context Got reference Exception in thread "main" java.lang.NoClassDefFoundError: org/jboss/security/Se curityAssoc

Re: [JBoss-user] bug in the latest few versions of jBoss 2.1

2001-03-29 Thread Patrick Buchinger
> Okay, the problem is in the context class loader. There is documentation on > Jboss 3rd party which describes the changes required in the server.xml. But > at the same time you have to not keep this following line in your > server.xml. > className="org.jboss.tomcat.ContextClassLoaderInterceptor

Re: [JBoss-user] This should be an easy one!!!

2001-03-29 Thread Guy Rouillier
Codepage. It identifies the character set used in the file. Don't know if it is optional or not. In the US, the value I see most frequently is UTF-8. - Original Message - From: "Greg Parker" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 29, 2001 11:28 AM Subject: [

RE: [JBoss-user] [off-topic] Grafittix beta

2001-03-29 Thread marc fleury
Ok, I have recieved many emails saying that this was uncalled for and that as a community we always welcome new additions to the framework. So please zaphod accept my apologies, and since I know folks react to what I say, apologies for flames from our developer base, and thanks for letting us kno

Re: [JBoss-user] bug in the latest few versions of jBoss 2.1

2001-03-29 Thread Dan Christopherson
Here's the message in the archives. http://www.geocrawler.com/lists/3/SourceForge/10767/125/5433593/ On Thu, 29 Mar 2001, Patrick Buchinger wrote: > hi dan! > > > A While back Ken Jenks posted a message on some changes you may need to > > make to application.xml to allow the servlet to see the

Re: [JBoss-user] Datasource configuration, how to do it really?

2001-03-29 Thread jK.MkIII
Micheal J wrote: > Perhaps if you post what you've actually tried and the error messages/logs > that resulted ? Heh.. stupid me! Document tells how to set those conneciton pools and even gives examples how to do it for different databases. But after these examples is text saying that all this is

Re: [JBoss-user] bug in the latest few versions of jBoss 2.1

2001-03-29 Thread Dan Christopherson
On Thu, 29 Mar 2001, Patrick Buchinger wrote: > Swami Iyer wrote: > > > Hi, > > I downloaded the Mar 26th zip file (JBOSS/TOMCAT) from JBOSS site and > > deployed our .ear file and it worked. > > > > I have no explanation as to why the .ear file you have work in earlier > > version and not the

Re: [JBoss-user] bug in the latest few versions of jBoss 2.1

2001-03-29 Thread Patrick Buchinger
> I just tried the tomcat-test.ear and it worked fine. I am using > JBOSS/TOMCAT/APACHE and if you want I can post my server.xml and jboss.conf > file > > Thanks, > Swami hi swami! yes, please send me those files. btw, are you using a "standalone" version of jBoss, or the jBoss/tomcat bundle?

Re: [JBoss-user] JBoss packaging

2001-03-29 Thread Blasius Lofi Dewanto
Hello, > I hope not. The topic is of value to many subscribers on this list too. I need a cc because at the moment I don't subscribe this mailing list ;-) So I know, if someone answers my question. > There is one ejb-jar.xml descriptor per deployment unit because that is how > the spec is defin

RE: [JBoss-user] bug in the latest few versions of jBoss 2.1

2001-03-29 Thread Swami Iyer
Okay, the problem is in the context class loader. There is documentation on Jboss 3rd party which describes the changes required in the server.xml. But at the same time you have to not keep this following line in your server.xml. Then it would work. The difference between the standalone and the

RE: [JBoss-user] iplanet

2001-03-29 Thread Sam
Title: RE: [JBoss-user] iplanet Just a warning if you plan on using Linux.  Since AOL/Netscape formed their alliance with Sun, iplanet has been systematically dropping Linux support on all product lines.  Notice that Directory Server 5.0beta does not have the Linux version. ;-) Sam -Ori

RE: [JBoss-user] bug in the latest few versions of jBoss 2.1

2001-03-29 Thread Swami Iyer
I just tried the tomcat-test.ear and it worked fine. I am using JBOSS/TOMCAT/APACHE and if you want I can post my server.xml and jboss.conf file Thanks, Swami -Original Message- From: Dan Christopherson [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 29, 2001 11:19 AM To: '[EMAIL PROTEC

Re: [JBoss-user] bug in the latest few versions of jBoss 2.1

2001-03-29 Thread Patrick Buchinger
hi dan! > A While back Ken Jenks posted a message on some changes you may need to > make to application.xml to allow the servlet to see the EJB classes. Have > you seen this and tried it? It seemed to work for the person he was > helping at the time. > i couldn't remember that i've seen this mes

[JBoss-user] This should be an easy one!!!

2001-03-29 Thread Greg Parker
Hello All ! ! ! In the ejb.jar file, the jboss user manual suggests this in the first line: I know what encoding is, but what does the Cp1252 represent and is it significant to Jboss? Is it optional? Thank you, GREG ___ JBoss-user mailing list [EM

Re: [JBoss-user] Help on entity

2001-03-29 Thread Guy Rouillier
Download jbosstest. - Original Message - From: "Mauro Delrio" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, March 29, 2001 7:38 AM Subject: [JBoss-user] Help on entity > where I can find a complete example of entity bean with ALL ejb-jar, > jboss etc etc etc > I've loo

Re: [JBoss-user] bug in the latest few versions of jBoss 2.1

2001-03-29 Thread Patrick Buchinger
Swami Iyer wrote: > Hi, > I downloaded the Mar 26th zip file (JBOSS/TOMCAT) from JBOSS site and > deployed our .ear file and it worked. > > I have no explanation as to why the .ear file you have work in earlier > version and not the new one. Can you check the Context class loaders in > server.xm

[JBoss-user] Case studies

2001-03-29 Thread marc fleury
Hello, for an online magazine we are interested in hearing about your real life scenarios with JBoss and EJB. If you have a moment take the time to write down a few paragraph relating your experience, the type of app, it's complexity, type of beans, number of beans, database size, transaction vo

RE: [JBoss-user] bug in the latest few versions of jBoss 2.1

2001-03-29 Thread Dan Christopherson
A While back Ken Jenks posted a message on some changes you may need to make to application.xml to allow the servlet to see the EJB classes. Have you seen this and tried it? It seemed to work for the person he was helping at the time. On Thu, 29 Mar 2001, Swami Iyer wrote: > Hi, > I downloaded t

[JBoss-user] JBoss 2.1 and Catalina-NullPointerException problem

2001-03-29 Thread Alvin Yap
I have a Jboss2.1 and Tomcat 4.0 (Catalina) on Linux 6.2 using JDK1.3 Does anybody have a fix to this problem. I have this app working on Jboss2.1 and Tomcat 3.2.1 [J2EE Deployer Default] Starting module bfrs_web.war [Auto deploy] java.lang.NullPointerException [Auto deploy] at org.jboss.contr

[JBoss-user] [off-topic] Grafittix beta

2001-03-29 Thread Zaphod
...sorry if this might be off-topic... who might be interested in UML and creating sofisticated jBoss web/WAP applications with little or no prgramming at all, please check out our home page at www.grafittix.com We are a small start-up company, and we greatly appreciate the feedback of the jBos

RE: [JBoss-user] ejbPassivate... Again...

2001-03-29 Thread marc fleury
standards setting should be able to handle this... marc |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of Bordet, |Simone |Sent: Thursday, March 29, 2001 6:29 AM |To: '[EMAIL PROTECTED]' |Subject: RE: [JBoss-user] ejbPassivate... Again... | | |Hey Fab

RE: [JBoss-user] [off-topic] Grafittix beta

2001-03-29 Thread marc fleury
|We are a small start-up company, and we greatly appreciate the feedback of |the jBoss |developer community. Of course you do! . Give us something we'll give you something free loaders marc |Comments, suggestions, critics, etc., but also any kind |of help/cooperation (programmers, busine

Re: [JBoss-user] Tomcat + Apache using mod_jk

2001-03-29 Thread Dan Christopherson
Why wouldn't the mod_jk apache module be used? On Thu, 29 Mar 2001, Scott M Stark wrote: > > This is the expected behavior because when tomcat run embeded the > mod_jk apache module is not used so there is no mod_jk.conf-auto created. > > - Original Message - > From: jBoss Monkey > To:

[JBoss-user] [off-topic] Grafittix beta

2001-03-29 Thread Zaphod
...sorry if this might be off-topic... who might be interested in UML and creating sofisticated jBoss web/WAP applications with little or no prgramming at all, please check out our home page at www.grafittix.com We are a small start-up company, and we greatly appreciate the feedback of the jBoss

RE: [JBoss-user] bug in the latest few versions of jBoss 2.1

2001-03-29 Thread Swami Iyer
Hi, I downloaded the Mar 26th zip file (JBOSS/TOMCAT) from JBOSS site and deployed our .ear file and it worked. I have no explanation as to why the .ear file you have work in earlier version and not the new one. Can you check the Context class loaders in server.xml in tomcat. THanks, Swami ---

RE: [JBoss-user] Tomcat + Apache using mod_jk

2001-03-29 Thread Swami Iyer
The way we did was we created our own equivalent mod_jk file which we included in the httpd.conf of apache. Whenever a new context root needs to be deployed we modified the equivalent mod_jk file to reflect the changes. Everything works like a charm. Thanks, Swami -Original Message- Fro

  1   2   >