Re: [JBoss-user] simple config for 2 session beans to postgres db, please (tc3.2.2+jb2.2.2)

2001-06-18 Thread Guy Rouillier
Note sure why you don't like the answers you found in the archives, but here is the same answer again. This example uses Oracle - substitute your DBMS of choice. Given a reference like this in your code: Connection connection = ((DataSource)new InitialContext().lookup("java:comp/env/jd

[JBoss-user] Errors Deploying CMP example from RMH book

2001-06-18 Thread Hiep Luong
I just got started with jboss and trying examples from the RMH Enterprise JavaBeans book. I get a boat load of errors when I deploy the cabinbean example with JBOSS using Oracle 8i. When first deployed the bean Jboss was set with Hypersonic as the datasource(DefaultDS). I next switched to Oracl

Re: [JBoss-user] does jboss support this?

2001-06-18 Thread Guy Rouillier
What do you mean by "and this client is an separate application"? JBoss DataSource's are meant to be used only from within the JVM under which JBoss is running. It most definitely will NOT work if you try to access this connection from Java code running on a different JVM. See very many mess

[JBoss-user] MLET absolute path and MalformedObjectNameException

2001-06-18 Thread Jakob Braeuchi
when i try to set an absolute logging path, i get the following exception: javax.management.MalformedObjectNameException: ObjectName: Invalid value -> d:/java/jboss/log/ i changed the logging path from ../../log/ to d:/java/jboss/log/ thanks jakob

[JBoss-user] Clustering, where do we stand now?

2001-06-18 Thread ZHU Jia
Hi there, I know there is JBossHA, but is anybody using it in a Production environment? And what's the experience? How about the clustering support in the JBoss 3.x release, what clustering features are supposed to be included(load balancing, fail over...)? I also have a general question on clust

Re: [JBoss-user] How to specify relationships between CMP EJBs?

2001-06-18 Thread Fred Loney
Do you find the M-H pattern worthwhile in practice? More often than not, the presentation layer initiates the Bar access with respect to a non-EJB form bean or data object rather than the EJB itself, if for no other reason than to avoid network round trips (cf. http://theserverside.com/patterns

Re: [JBoss-user] JBoss hosting

2001-06-18 Thread Emmanuel Charpentier
I'm not sure at all, about 10~20 visitors a day, but it could grow quickly. In any case, if it's a disturbance I have no trouble uninstalling it. If the load or the cpu are too high, removal is definitely the best remedy :-) Contact me directly at [EMAIL PROTECTED] if you are willing

[JBoss-user] Re: jboss and O-R mapping tools (plug)

2001-06-18 Thread Kenneth Bowen
> Send JBoss-user mailing list submissions to > [EMAIL PROTECTED] > ... > or will we have to buy, (gulp) CocoBase O/R mapping product? (Seems to > be the only one that supports jBoss). Why wouldn't Toplink work with Jboss? I work for Tricoron Networks, and our O <> R mapping product (PRO

Re: [JBoss-user] Jaws.xml DTD

2001-06-18 Thread Keerthi P
It's here.. http://www.jboss.org/doco_files/jaws.dtd __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail - only $35 a year! http://personal.mail.yahoo.com/ ___ JBoss-user mailing list [E

Fwd: Re: [JBoss-user] inconsistent (but frequent) InitialContext.lookup() problems

2001-06-18 Thread Greg Merrill
I was able to solve my problem by upping the max # of tcp connections allowed, as suggested. (Thanks for the diagnosis & recommendation, Scott.) Here's a URL describing how to do this, in case anyone else is interested. http://www.proxyplus.cz/faq/articles/EN/art10002.htm I'm still concerned, th

Re: [JBoss-user] JBoss hosting

2001-06-18 Thread Peter Routtier-Wone
How much traffic are you expecting? I could host this if it's not too high. - Original Message - From: "marc fleury" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 19, 2001 3:21 AM Subject: RE: [JBoss-user] JBoss hosting > Yes I recommend wantjava.com, it will cost you t

Re: [JBoss-user] Unique constraint problem

2001-06-18 Thread David Jencks
Hi, Could you show the code in which you expect to catch the sqlexception? Does everything work if you drop the unique constraint? thanks david jencks On 2001.06.18 18:50:33 -0400 Bob Mancarella wrote: > I am using Interbase with a BMP bean. If I have a column with a unique > constraint and atte

RE: [JBoss-user] How to specify relationships between CMP EJBs?

2001-06-18 Thread Paul McLachlan
Title: RE: [JBoss-user] How to specify relationships between CMP EJBs? I was just about to ask if this is going to be implemented in 3.0? or will we have to buy, (gulp) CocoBase O/R mapping product? (Seems to be the only one that supports jBoss). What about synching 2 object caches. Is th

[JBoss-user] Postgres Datasource problems

2001-06-18 Thread Russell Chan
Hi there, I'm hoping someone can help me track down my Posgresql datasource problems: The error is occuring trying to create the table for my CMP EJB automatically, and it seems to be indicating that the postgres data object catalog is unavailable. Here's the stack trace: [LeaseoutDS] Pool Leas

[JBoss-user] jboss/tomcat + cocoon

2001-06-18 Thread joey castillo
hi there, is there a "how-to" re:cocoon 1.8.2 integration with jboss-tomcat? i had cocoon running on tomcat3.2.2. but was not successful with jboss-tomcat. thanks, joey castillo __ Do You Yahoo!? Spot the hottest trends in music, movies, and more

RE: RE: [JBoss-user] standalone J2EE java client

2001-06-18 Thread Tahir Awan
Your guess seems right. Sorry for earlier confusion as there was no mention of j2ee-clients as per spec/dtd. Tahir > -Original Message- > From: Victor Lan [mailto:[EMAIL PROTECTED]] > Sent: Monday, June 18, 2001 7:12 PM > To: [EMAIL PROTECTED] > Subject: Re: RE: [JBoss-user] standalone J

[JBoss-user] JAAS/Caching?

2001-06-18 Thread Han-Shen Yuan
Title: JAAS/Caching? Is there anyway we can change the configuration of the caching policy when using JAAS based security in JBoss?  It seems to default to a 30 minute policy?

Re: [JBoss-user] How to specify relationships between CMP EJBs?

2001-06-18 Thread Adam Young
The M-H book also suggests that you not expos the remote interface to your entity beans. I think I tend to agree with this: Only the Session beans should be visiblie to the outside world, and the entity beans should just be the persistance mechanism. However, since JBoss does not require yo

Re: [JBoss-user] How to specify relationships between CMP EJBs?

2001-06-18 Thread Adam Young
The Monson-Haefel book suggests using the foreign keys as properties of the beans, and then have accessors that get the related objects. if foo ... int getBarId() void setBarId(int id) Bar getBar(); .. and then in the FooBean: private Bar bar; public Bar getBar(){ if (null == bar){ foo =

[JBoss-user] Sorry, wrong place: Was FYI: search in jboss-user is broken

2001-06-18 Thread Alexander Kogan
Oops, Sorry. Searched in wrong place. But anyway, I think the links in the bottom of each message must be updated. Someone can get confused as me. sorry again. Alexander Kogan wrote: > > Hello, > > sorry for putting it to the jboss list, but > it seems that jboss-user list @ lists.sourceforg

[JBoss-user] FYI: search in jboss-user is broken

2001-06-18 Thread Alexander Kogan
Hello, sorry for putting it to the jboss list, but it seems that jboss-user list @ lists.sourceforge.net is broken: >Your search for > > htsearch detected an error. Please report this to the returned matches > webmaster of this site. The error message is: > > Unable to read configuration

Re: [JBoss-user] How to specify relationships between CMP EJBs?

2001-06-18 Thread Kar YEOW
The relationship stuff is in EJB2.0 and it is still in DRAFT. It is not yet supported in JBOSS. Kar - Original Message - From: "Richard Kasperowski" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 19, 2001 7:34 AM Subject: [JBoss-user] How to specify relationships between

Re: RE: [JBoss-user] standalone J2EE java client

2001-06-18 Thread Victor Lan
Hi Chris, I believe what you and Tahir described is simply a fat client, not a J2EE client, the most important difference being that the latter has access to the java:comp/ namespace. The application-client.xml file can be thought of as a deployment descriptor for the J2EE client, wherein re

[JBoss-user] Problem when restart JBoss !!

2001-06-18 Thread David Cao
Hi guys, I am running Jbos2.2+tomcat on Win2000, and I got very strange problem, after I stop the server, and start it (after a break), it give me problems when deploy ( the existing) application, the error message is: [Container factory] java.rmi.ServerException: Could not bind either home or i

[JBoss-user] Unique constraint problem

2001-06-18 Thread Bob Mancarella
I am using Interbase with a BMP bean. If I have a column with a uniqueconstraint and attempt to add another row with the same value I don't get aSQLException. JBoss seems to throw some internal errors which I am unable tocatch. The output is below.   Has anyone had any luck with unique con

Re: [JBoss-user] ClassCastException when getting Home Interface from within Servlet (Jetty)

2001-06-18 Thread Julian Gosnell
Matt , I'm afraid I'm going to have to ask you to try running this up in the latest JBoss-TomCat. So much ServletContainer integration code has now become shared that I would be surprised if it didn't share exactly the same problem. If you find that it does then you will substantially increase t

Re: [JBoss-user] jetty vs tomcat

2001-06-18 Thread Julian Gosnell
Thanks Guys, It was getting a bit lonely out there .!! Jules Torsten Terp wrote: > > > > > > Oh, come on! If you wanna be flamed, you can't go and _qualify_ your > > > assertions ('no ... evidence ...' '... MAY ...') 8^}) > > > > We have run our test scripts against our app running unde

Re: [JBoss-user] jetty vs tomcat

2001-06-18 Thread Julian Gosnell
"danch (Dan Christopherson)" wrote: Don't believe my bare-faced and self-proclaimed bigotry - suck it and see - then tell us all how it tasted. Jules > Julian Gosnell wrote: > > > Firstly - I am the JBoss-Jetty maintainer and my mate > > Greg is Jetty's author - so take everything I say with

[JBoss-user] Repost:Fw: byte[] fields with oracle blob problem

2001-06-18 Thread Kar YEOW
I didn't get any responses on the previous post and I have tried JAWS mailing list and still no response. I do suspect there is a bug or a config problem somewhere.  Anyone? Kar   - Original Message - From: Kar YEOW To: [EMAIL PROTECTED] Sent: Monday, June 18, 2001 9:09 AM Subject

Re: [JBoss-user] newbie stuff >> jboss vs. simple classes

2001-06-18 Thread Allen fogleson
take a look at the J2EE blueprints on java.sun.com thats a good start. Although i disagree with their implementation of Data Access Objects, It is a good start on EJB.   you should never be just dropping classes around. A good design phase up front will save you a lot of issues later, su

Re: [JBoss-user] is there a t3:// for JBoss

2001-06-18 Thread Allen fogleson
t3 is the weblogic specific wire protocol. switch to straight RMI. Even better, if you are using the JBoss/tomcat or JBoss/jetty package you dont even need to populate your initialcontext call. Im not a big fan of that method anyway, since you end up tying your app to a single container... al --

Re: [JBoss-user] is there a t3:// for JBoss

2001-06-18 Thread Allen fogleson
or jnp... heh. I always forget that one. - Original Message - From: Scott M Stark <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 18, 2001 3:41 PM Subject: Re: [JBoss-user] is there a t3:// for JBoss > jnp://localhost:1099 > > - Original Message - > From: "Sc

Re: [JBoss-user] does jboss.jcml have a DTD ?

2001-06-18 Thread Mike Hoolehan
I don't think I've ever come across one, but here's my best guess by looking at org.jboss.configuration.ConfigurationService, which parses jboss.jcml. Someone's going to have to check me on the and bits, I had no idea those were valid parts of jboss.jcml, but they seem to be parsed. I didn't a

[JBoss-user] How to specify relationships between CMP EJBs?

2001-06-18 Thread Richard Kasperowski
I'm trying to understand how container managed persistence make this happen. I have two EJBs like so: - public interface Foo extends EJBObject { Long getId() throws RemoteException; void setId(Long param) throws RemoteException; String getName() throws RemoteException; v

Re: [JBoss-user] Want to see the SQL DDL generated by JBoss

2001-06-18 Thread danch (Dan Christopherson)
Richard Kasperowski wrote: > Thanks, that's what I wanted. > > Others should note that the SQL stuff is logged in "server.log", and > doesn't show up in stdout. > That's a difference in logging threshold levels between the two - the file based log has DEBUG threshold and the stdout has INFO

[JBoss-user] Jaws.xml DTD

2001-06-18 Thread Da-Ming Duan
Can somebody tell me where to find the Jaws.xml DTD? Thanks Da-Ming ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] Want to see the SQL DDL generated by JBoss

2001-06-18 Thread Richard Kasperowski
Thanks, that's what I wanted. Others should note that the SQL stuff is logged in "server.log", and doesn't show up in stdout. -- Richard Kasperowski (mailto:[EMAIL PROTECTED]) Tel: 617-576-1552, Fax: 617-576-2441 http://www.altisimo.com/ danch (Dan Christopherson) wrote: > You should be ab

[JBoss-user] newbie stuff >> jboss vs. simple classes

2001-06-18 Thread Gabriel Mihalache
Hi! I'm developing a simple site using Tomcat with JSP and Servlets. JSP uses JavaBeans wrote as classes, put in the WEB-INF folder.   Why and where should a j2ee sollution be used instead of just droping classes around? I've just downloaded jboss because I want to know more about beans. Any

[JBoss-user] Problem running the Upload client for CDbean example

2001-06-18 Thread DurhamJG
Hi, Thanks for fixing the links to the Documentation zip files. I have the CD bean deployed and I am trying to run the Upload client, but I am getting the following error on the client side (I am running this in JBuilder) --- OK Upload: javax.naming.NoInitialContextException: Canno

Re: [JBoss-user] Sybase Datasource problem

2001-06-18 Thread Jason Wells
John, You didn't give out your JdbcProvider section, so i'm not sure what JDBC driver you're using. I've had good luck with the Sybase JConnect JDBC drivers. If you're using that, this is what the relevant sections of jboss.jcml looks like for my configuration: org.hsql.jdbcDriver,com.s

Re: [JBoss-user] Want to see the SQL DDL generated by JBoss

2001-06-18 Thread danch (Dan Christopherson)
You should be able to see this if you put 'true' in jaws.xml or standardjaws.xml. This will come out at DEBUG level, though, so make sure that you have one of your logs (log4j.properties in recent versions, the logger MBean setups in jboss.conf in older) set to output DEBUG level and above. R

RE: [JBoss-user] jetty vs tomcat

2001-06-18 Thread Torsten Terp
> > > > Oh, come on! If you wanna be flamed, you can't go and _qualify_ your > > assertions ('no ... evidence ...' '... MAY ...') 8^}) > > We have run our test scripts against our app running under both jBoss/Jetty > and jBoss/Tomcat. We have yet to take actual measurements, but watching the >

[JBoss-user] Ann: Super gets Kaleidoscopes and SuperEnvironment!

2001-06-18 Thread Wei Jiang
Super gets Kaleidoscopes and SuperEnvironment! Announcement: Super 1.4 - an EJB/J2EE monitoring tool with SuperPeekPoke SuperLogging SuperStress SuperEnvironment It is free for open source J2ee/Ejb servers (JOnAS, J2EE-RI and jBoss). It is free for evaluation (no expiration date). Y

[JBoss-user] Ann: open source GlobalEnvironment

2001-06-18 Thread Wei Jiang
GlobalEnvironment is a family of utility classes. It consists of: GlobalDouble, GlobalHashtable, GlobalLong, GlobalObject, GlobalProperties. This family provides globally shared key-value pairs. These pairs are available for different: Java threads, JVMs, EJBs (Enterprise Java Beans),

Re: [JBoss-user] is there a t3:// for JBoss

2001-06-18 Thread Scott M Stark
jnp://localhost:1099 - Original Message - From: "Scott Bermon" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 18, 2001 12:17 PM Subject: [JBoss-user] is there a t3:// for JBoss > We are porting an application to JBoss from Weblogic. > > When we connect to the Weblogic

Re: [JBoss-user] EJB and JBoss security

2001-06-18 Thread Scott M Stark
See the JAAS tutorial: http://www.jboss.org/documentation/HTML/ch11s83.html - Original Message - From: "Nick Taylor" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 18, 2001 4:36 AM Subject: [JBoss-user] EJB and JBoss security > I am trying to get to grips with security

Re: [JBoss-user] HELP - jboss and interbase

2001-06-18 Thread Toby Allsopp
On Mon, Jun 18, 2001 at 05:36:59PM +0200, [EMAIL PROTECTED] wrote: > Hi, > > I've found the problem with your bean, but before some InteBase history. > [good info snipped] > > So, how does it relates to your situation? > > You open the connection (and implicitly start the transaction) in the

[JBoss-user] does jboss.jcml have a DTD ?

2001-06-18 Thread Patrick Smtih
I am trying to modify the port settings for JBoss/Tomcat on the fly in case any ports are in use at the time of installation. I am hoping that there is a DTD available for jboss.jcml as it is a well formed xml file. Any idea if there is one and where I could get a hold of it ? thanks, Patrick Smi

[JBoss-user] is there a t3:// for JBoss

2001-06-18 Thread Scott Bermon
We are porting an application to JBoss from Weblogic. When we connect to the Weblogic server the, PROVIDER_URL was t3://localhost:7001. What is the equivalent in JBoss? Where is this set? Thanks -Scott ___ JBoss-user mailing list [EMAIL PROTECTED]

Re: [JBoss-user] jetty vs tomcat

2001-06-18 Thread Jim Archer
--On Monday, June 18, 2001 12:26 PM -0500 "danch (Dan Christopherson)" <[EMAIL PROTECTED]> wrote: >> >> 5. I believe, although I have no substantiating >> evidence, that using Jetty MAY give you a higher >> throughput. This is due to it's emphasis on simplicity >> and lightweightedness. I am

Re: [JBoss-user] too much logging!

2001-06-18 Thread David Ward
Not from our code... any other ideas anyone? -- Jeffrey Thomas Liu wrote: > Are you sure it's not debugging code? > > Jeff Liu ([EMAIL PROTECTED]) > > ___ > JBoss-user mailing list > [EMAIL PROTECTED] > http://lists.sourceforge.net/lists/listinfo/j

Re: [JBoss-user] :-) EJB2.0 RunAs

2001-06-18 Thread Scott M Stark
- Original Message - From: "Lewis Henderson" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, June 17, 2001 2:56 AM Subject: RE: [JBoss-user] :-) EJB2.0 RunAs > Scott, > > Why do you have anything to add to the jboss-web.xml? > > Surely the only entry that needs adding is th

Re: [JBoss-user] XML and XSL hell

2001-06-18 Thread Scott M Stark
This hell is due to the packaging of the xml components by the various parsers, and xml based derivatives. Everyone tends to bundle the core xml classes in one jar and incompatabilities arise. No one bundles the core java.* packages in their code. The fact that the xml based products bundle the co

Re: [JBoss-user] Why the redundancy in DataSource mbean tag?

2001-06-18 Thread Scott M Stark
One is an attribute of the MBean ObjectName that can be used as a query key when searching for the MBean, the other is an attribute of the MBean. - Original Message - From: "Ferguson, Doug" <[EMAIL PROTECTED]> To: "JBoss User (E-mail)" <[EMAIL PROTECTED]> Sent: Saturday, June 16, 2001 3:

Re: [JBoss-user] Benchmark????

2001-06-18 Thread Vinay Menon
Do you have a rough idea as to how the application is laid out and whether it is going to be IO bound or CPU bound and stuff? Emerson wrote: > > probably it will be deployed on HP-UX machines... > certainly big ones > > At 11:44 17/06/01 +0100, you wrote: > >Hello Emerson, > >I have

RE: [JBoss-user] JBoss hosting

2001-06-18 Thread John Menke
I also have JBoss working at AOIndustries. john > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]]On Behalf Of epeterson > Sent: Monday, June 18, 2001 1:22 PM > To: [EMAIL PROTECTED]; [EMAIL PROTECTED] > Cc: AO Industries, Inc. Support > Subject: Re: [JBoss-user]

Re: [JBoss-user] How to inegrate JBoss with other databases

2001-06-18 Thread toby cabot
> Please give me the steps to follow i.e files to change or edit > for > integrating JBoss2.2.2 with some other database(other than > Hssql)like Mysql or Oracle. http://www.jboss.org/documentation/HTML/ch03.html ___ JBoss-user mailing list [EMAI

Re: [JBoss-user] JBoss hosting

2001-06-18 Thread epeterson
Manu, My company, Ardec Corporation, uses aoindustries.com to do this. It is not part of their standard service yet, but we are working with them to make it so. Erik - Original Message - From: "Emmanuel Charpentier" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 18, 2001

[JBoss-user] Persistant Timer Service using a DBStorage

2001-06-18 Thread Burkhard Vogel
Hi, hmm, this is going to get a bit lengthy. What I did so far. I implemented my own timer service extending the javax.management.timer class, to intercept timer addNotification calls and store these in a database before handing them to the Timer (super-)class. If JBoss somehow fails I restore all

Re: [JBoss-user] jetty vs tomcat

2001-06-18 Thread danch (Dan Christopherson)
Julian Gosnell wrote: > Firstly - I am the JBoss-Jetty maintainer and my mate > Greg is Jetty's author - so take everything I say with > a pinch of salt. > > 1. Jetty serves both static and dynamic content via > the same infrastructure. AFAIK you need Tomcat AND > Apache in order to otherwise a

[JBoss-user] Sybase Datasource problem

2001-06-18 Thread John DeStefano
Hi, I'm having a problem with creating a Sybase connection pool. I'm using JBoss 2.2.2 and JDK1.3.1. The startup output looks like this: [JNDIView] Starting [JNDIView] Started [Transaction manager] Starting [Transaction manager] Started [JAAS Security Manager] Starting [JAAS Security Manager] J

RE: [JBoss-user] JBoss hosting

2001-06-18 Thread marc fleury
Yes I recommend wantjava.com, it will cost you though... marcf |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of Mike Davis |Sent: Monday, June 18, 2001 1:03 PM |To: [EMAIL PROTECTED] |Subject: RE: [JBoss-user] JBoss hosting | | |www.wantjava.com | |I d

Re: [JBoss-user] too much logging!

2001-06-18 Thread Jeffrey Thomas Liu
Are you sure it's not debugging code? Jeff Liu ([EMAIL PROTECTED]) ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] jetty vs tomcat

2001-06-18 Thread Julian Gosnell
Firstly - I am the JBoss-Jetty maintainer and my mate Greg is Jetty's author - so take everything I say with a pinch of salt. If you stick to JSDK 2.2 and JSP 1.1 you _SHOULD_ (please let me know if you don't) find that the WAR part of your EARs deploys and runs fine in either web-container. This

Re: [JBoss-user] How to inegrate JBoss with other databases

2001-06-18 Thread danch (Dan Christopherson)
start here: http://www.jboss.org/documentation/HTML/ch03.html A warning: don't add a JdbcProvider section to jboss.jcml; add your driver to the list in the current one. chitrapandian wrote: > Hi, > > Please give me the steps to follow i.e files to change or edit > for > integrating JBoss

Re: [JBoss-user] JMS Hung

2001-06-18 Thread pra
On 18 Jun, Robert Yen wrote: > Hi All, > > The platform is Sun SPARC with Solaris 2.7, JBoss 2.2.1. > When I turned on "java.naming.provider.url=localhost" in jndi.properties, > the jboss startup hung at - > "[JBossMQ] Starting". It works fine if I turn it off and using a > environment file (sy

RE: [JBoss-user] JBoss hosting

2001-06-18 Thread Mike Davis
www.wantjava.com I don't think the site mentions it, but if you contact them I think they actually do host it. They run Oracle and MySql, but ask them about PostgresSQL, I think they'll do about anything you want them to. They are the ones who host jboss.org and servlets.com Mike Davis -Or

Re: [JBoss-user] xalan 'n' stuff

2001-06-18 Thread Fred Loney
This, however, begs the question of how to deploy a web app into an arbitrary container and guarantee expected classpath resolution. Is it sufficient to package every auxiliary jar in the war lib directory? I have my doubts that this yields a deterministic servlet class resolution order. I fain

[JBoss-user] How to inegrate JBoss with other databases

2001-06-18 Thread chitrapandian
Hi, Please give me the steps to follow i.e files to change or edit for integrating JBoss2.2.2 with some other database(other than Hssql)like Mysql or Oracle. Thanks , Chithu N ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge

FW: [JBoss-user] No Descriptive Deployment of Datasources.

2001-06-18 Thread Ferguson, Doug
I am reposting Does anybody know of a way to map DS jndi names at deploytime that will bind the name to the global namespace? See the post below. d. -Original Message- From: Ferguson, Doug [mailto:[EMAIL PROTECTED]] Sent: Saturday, June 16, 2001 5:22 PM To: JBoss User (E-mail) Subj

Re: [JBoss-user] JMS and MessageDrivenBean

2001-06-18 Thread pra
On 18 Jun, Griffin, Michael wrote: > This makes sense to me, but I can't seem to get it working. > > How do I use the JMS Connector? > > I created a resource reference in ejb-jar.xml, and linked the reference to > QueueConnectionFactory in jboss.xml. The bean obtains the > QueueConnectionFac

RE: [JBoss-user] Oracle connection failure

2001-06-18 Thread Reynir Hübner
I guess there is something wrong with your JDBC connection URL. the most common error is haveing the wrong Instancename (the last part of the URL). Note : it´s not the databaseName (as documented somewhere). This is what I have in my Jboss.jcml and it´s enough to have this running :

Re: [JBoss-user] Deploying .ear

2001-06-18 Thread Fred Loney
Sounds like a problem with the application.xml ear deployment descriptor. It should resemble the following: myapp my.war /myapp my.jar The ejb module declaration puts my.jar in the web app's classpath. [EMAIL PROTECTED] wrote: > Hi a

[JBoss-user] RE: In-browser Java applet client to jBoss?

2001-06-18 Thread Hutson, Philip
I am using an applet as a client to a jboss server. The client foot print size can actually be fairly small for jboss. The jar file (ejipt_client.jar) for connecting to jboss is 82k (well within dialup size). My total client size is 3megs (it has a very elaborate GUI) which is fine because my user

RE: [JBoss-user] JBoss hosting

2001-06-18 Thread Bowo M Oenar
Try www.webappcabaret.com, they say they will put JBOSS on their hosting service. Regards, Bowo M. Oenar -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Emmanuel Charpentier Sent: Monday, June 18, 2001 10:53 PM To: [EMAIL PROTECTED] Subject: [JBoss-user

Re: [JBoss-user] JDBC prob.

2001-06-18 Thread danch (Dan Christopherson)
Paul Ryan wrote: > Hi, > > We would like to test our J2EE app. on a JBoss-Tomcat platform. We have > a mixture of servlets and EJB's and I have used the deployment tool to > generate a jboss.xml file. When this is packaged in our ear file the > deployment seems to go ok and I can see the file

Re: [JBoss-user] quick tutorial

2001-06-18 Thread adam
We actually found the same problem in our company's application. Is this something that should be changed in Jasper? danch wrote: > I believe that the ClassNotFound exceptions are limited to when Jasper > (the Tomcat JSP engine) calls out to javac to compile the JSP - when > the code actual

Re: [JBoss-user] My Jdbc pool doesn't work,help!

2001-06-18 Thread Dexter Legaspi
if your "client" is not within the JBoss container, DataSource lookup will fail. --- Guy Rouillier <[EMAIL PROTECTED]> wrote: > Please read the docs and/or search the archives. > There are very many > message covering required configuration for working > with Oracle (I've posted > them myself a

Re: [JBoss-user] JDBC prob.

2001-06-18 Thread Paul Ryan
Paul Ryan wrote: > Hi, > > We would like to test our J2EE app. on a JBoss-Tomcat platform. We > have a mixture of servlets and EJB's and I have used the deployment > tool to generate a jboss.xml file. When this is packaged in our ear > file the deployment seems to go ok and I can see the file

[JBoss-user] Best security for JBoss2.2.1?

2001-06-18 Thread Matt Vincent
  I got JAAS in JBoss-2.2.2_Tomcat-3.2.2 to work (thanks to an excellent tutorial on jboss.org!!) and it is works FLAWLESSLY!  However, I then discovered what others have found out:  that the basic "interest" example ejb will not work, because "interest/Interest" is not bound (I checked in

[JBoss-user] JBossCX tutorial

2001-06-18 Thread Daryl Beattie
Dear JBoss Users, Hey, I hate to be a pain, but is there a tutorial for how to use JBossCX? If so, where can I find it? If not, uh.. nevermind. Also, I seem to be having trouble learning about the Java Connector architecture in general. Is there a better place to learn about it be

[JBoss-user] JMS Hung

2001-06-18 Thread Robert Yen
Hi All, The platform is Sun SPARC with Solaris 2.7, JBoss 2.2.1. When I turned on "java.naming.provider.url=localhost" in jndi.properties, the jboss startup hung at - "[JBossMQ] Starting". It works fine if I turn it off and using a environment file (system property) setting. Can anybody help m

[JBoss-user] JDBC prob.

2001-06-18 Thread Paul Ryan
Hi, We would like to test our J2EE app. on a JBoss-Tomcat platform. We have a mixture of servlets and EJB's and I have used the deployment tool to generate a jboss.xml file. When this is packaged in our ear file the deployment seems to go ok and I can see the file being exploded and the web c

RE: [JBoss-user] In-browser Java applet client to jBoss?

2001-06-18 Thread RRokytskyy
Hi, Here's my ideas to the last issue: > 4. Is this just a bad idea in general, and should a > rich-client applet > be communicating via HTTP and a Servlet (and perhaps XML or SOAP), as > opposed to RMI directly? If you use standard RMI, you expose your, probably sensible, data to the packe

Re: [JBoss-user] too much logging!

2001-06-18 Thread David Ward
I haven't seen an answer to this yet; please help! -- David Ward wrote: > I've successfully hooked up Apache to the JBoss/Tomcat bundled version > using mod_jk ajpv13. My JkLogLevel is set to error, and I haven't > changed any debug flags in tomcat's server.xml. How come, then, do I > all

Re: [JBoss-user] standalone J2EE java client

2001-06-18 Thread danch (Dan Christopherson)
Kimpton,C (Chris) wrote: > Hi, > > I am not sure to what facility you are referring - are you looking to run > the client in the same VM as the JBoss server? In which case, you can do > this - but obviously only one client can do this, the other clients will > presumably want to talk to the sam

[JBoss-user] Oracle connection failure

2001-06-18 Thread Chong Joon lee
Hi all, I am working with JBoss version 2.2.1 and I am trying to connect to the Oracle database. I have configured the jboss.jcml file as well as the jboss.conf file however, it is causing the following error. [OracleDS] Starting [OracleDS] XA Connection pool OracleDS bound to java:/OracleDS [O

Re: [JBoss-user] how to access MS Access via CMP in jboss

2001-06-18 Thread Burkhard Vogel
To ensure the things said before: You should change the mbean name= AND the PoolName-tag consistantly. The pool is bound to the name specified in PoolName and can be explored by JNDIView under the mbean name tag. Burkhard - Original Message - From: "danch" <[EMAIL PROTECTED]> To: <[EMAIL P

Re: [JBoss-user] HOW TO DISABLE ENTITY-BEAN CACHING?

2001-06-18 Thread Burkhard Vogel
Use 1. - Original Message - From: "Frank Villarreal" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 15, 2001 4:52 PM Subject: RE: [JBoss-user] HOW TO DISABLE ENTITY-BEAN CACHING? > K.V. Vinay Menon [mailto:[EMAIL PROTECTED]] wrote : > > For what its worth did you try chan

[JBoss-user] JBoss hosting

2001-06-18 Thread Emmanuel Charpentier
Hello everybody I'm looking for server space, free or cheap, where I could install a demo of a project based on JBoss and PostgreSQL (could be tweaked to work with another db). The project is called VeniVidiVoti, you can find a description of it (static pages copied from a running V

RE: [JBoss-user] standalone J2EE java client

2001-06-18 Thread Kimpton,C (Chris)
Hi, I am not sure to what facility you are referring - are you looking to run the client in the same VM as the JBoss server? In which case, you can do this - but obviously only one client can do this, the other clients will presumably want to talk to the same JBoss VM? Or is it a single user ki

RE: [JBoss-user] HELP - jboss and interbase

2001-06-18 Thread RRokytskyy
Hi, I've found the problem with your bean, but before some InteBase history. InterBase uses the optimistic concurency control. To avoid locking on _reads_, it uses very interesting approach: records are not updated directly, rather they are versioned using the transaction id (maybe this is not s

[JBoss-user] In-browser Java applet client to jBoss?

2001-06-18 Thread Bryan Field-Elliot
The strategy of building an EJB client out of a Java applet which uses RMI to communicate directly with an EJB server is (IMHO) technically elegant, but not very popular. I am wondering if people have tried it with jBoss with success and with stories to tell? This is in a Joe-Public-Internet-

RE: [JBoss-user] standalone J2EE java client

2001-06-18 Thread Keith Kee
Hi Chris, I also like to use the ejb-ref specified in the application-client.xml, and the container security. The J2EE reference implementation, weblogic and iplanet have this facility, so that the fat client can be run in an application container. I wonder if JBoss has such a thing as well. T

RE: [JBoss-user] JMS and MessageDrivenBean

2001-06-18 Thread Griffin, Michael
This makes sense to me, but I can't seem to get it working. How do I use the JMS Connector? I created a resource reference in ejb-jar.xml, and linked the reference to QueueConnectionFactory in jboss.xml. The bean obtains the QueueConnectionFactory using java:comp/env/jms/Qcf. The send on th

Re: [JBoss-user] Updated JBoss/Jetty bundle

2001-06-18 Thread Daren R. Sefcik
Humm..yeah..not sure why but Netscape seemed to have a problem overwriting the original file. I deleted the original and then re-downloaded..seems fine now. thanks, Daren On Fri, 15 Jun 2001, Scott M Stark wrote: > Don't know what is going on. I just downloaded it and retried it on my RedHat7.

Re: [JBoss-user] The sample Interest bean can't be depoyed After some changes to jboss.jcml

2001-06-18 Thread danch (Dan Christopherson)
xiaohong wrote: > Hello > > I'm new user of JBoss, here is my problem, can anyone help me out? thanks. > > > Buf after I add the following lines to $JBOSS_HOME/etc/default/jboss.jcml to > add data sources to mySQL. >

[JBoss-user] jetty vs tomcat

2001-06-18 Thread Sky Yin
hi :^) I am a new comer to JBoss. I notice that JBoss releases with alternative two servlet/jsp engine: jetty and tomcat. Can anyone make a comparation between them? How can I choose from? regards ___ JBoss-user mailing list [EMAIL PROTECTED] http://

Re: [JBoss-user] Manual suggestions

2001-06-18 Thread Allen fogleson
there is a servlet... helloServlet mapped to /hello Al - Original Message - From: Saint-Martin Cecile <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, June 18, 2001 10:19 AM Subject: RE: [JBoss-user] Manual suggestions I read your mail after sending mine, so sorry. Your exampl

RE: [JBoss-user] standalone J2EE java client

2001-06-18 Thread Tahir Awan
sure, jboss does support standalone java clients. Below is a sample batch file I normally use to run my test client. (I have jboss.properties file in the same folder as this batch file with naming properties setup). java -classpath .; c:\jboss-2.2.2_tomcat-3.2.2\jboss\client\jboss-client.j

  1   2   >