[JBoss-user] app not deploying correctly

2001-06-29 Thread G.L. Grobe
After following the directions on 'How-to package and deploy an EAR file on JBoss/Tomcat' (http://www.jboss.org/documentation/HTML/ch11.html#howtotomcat) and a few other modifications, I finally got my J2EE App deployed and loading correctly within JBoss2.2.2-Tomcat3.2.2. I'm certain my ear archiv

[JBoss-user] When should CMP be used?

2001-06-29 Thread Jim
A very good question that arose from the "Servlets vs. EJB" thread is this: When should CMP be used? For example: What is CMP best suited for? Is it only advantageous when designing the DB from scratch? Is an effective schema possible if CMP doesn't directly support any mapping except the follow

[JBoss-user] NullPointer Exception while adding

2001-06-29 Thread Devraj Mukherjee
Hello All, Problem Scenario: I have created an entity bean which is called UserBean along with its Remote and Home interfaces, I have also created a Session Bean which is called UserManagerBean which is supposed to let me add, remove, modify users. Next I created a JavaBean to support my JSP

[JBoss-user] Accessing JBoss naming InitialContext through JSP with JBoss +Embedded Tomcat

2001-06-29 Thread Carlos Ferrão
Hi all, On jars deployed in Jboss container they all assume the InitialContext configured in jndi.properties file. However, through every JSP file that uses my EJBs (Jboss with embedded Tomcat), I need to tell the InitialContext as follows: java.util.Properties prop = new java.util.Prope

[JBoss-user] ejb-jar.xml bug

2001-06-29 Thread G.L. Grobe
Is it a known fact that ejb-jar.xml cannot include newlines within the tags like:                           This is a very long line so i put it on it's own line cause it's looks cleaner                 com.same.here.because.path.structure.is.very.long.to.MyClass        

Re: [JBoss-user] entity beans name = database tables name??

2001-06-29 Thread Allen fogleson
actually CMP beans do not have to be named the same as the table, but you would need a jaws.xml to override it if it wasnt. Al - Original Message - From: Carlos Ferrão <[EMAIL PROTECTED]> To: jboss ml <[EMAIL PROTECTED]> Sent: Friday, June 29, 2001 8:53 PM Subject: [JBoss-user] entity be

Re: [JBoss-user] entity beans name = database tables name??

2001-06-29 Thread danch
Carlos Ferrão wrote: > Hi List, > > Thank you for your help with my problem with tables. I changed the entity > bean name to "auth" and it is working. I didn't know that the name of entity > beans needed to be the same as my tables in my database. They don't _need_ to. That's just

[JBoss-user] entity beans name = database tables name??

2001-06-29 Thread Carlos Ferrão
Hi List, Thank you for your help with my problem with tables. I changed the entity bean name to "auth" and it is working. I didn't know that the name of entity beans needed to be the same as my tables in my database. I was accessing my db with the following code in my session bea

Re: [JBoss-user] Number 2 on source forge,

2001-06-29 Thread Fredrik Ålund
Ok :-) > oh come on guys! let's push it a bit shall we? we must be number one, > > marcf > > _ > Marc Fleury, Ph.D > [EMAIL PROTECTED] > _ > > > ___ > JBoss-user mailing list > [EMAIL PROTECTED] > http://lists.sour

RE: [JBoss-user] Beans Referencing

2001-06-29 Thread Devraj Mukherjee
Thanks Andreas, <% page import="" %> works but when I use xml styled tags such as does not work. Well the important thing is I got it working. Thank you all. Devraj At 03:24 PM 6/28/2001 +0200, you wrote: >Have You included the import statement in Your JSP? > ><%@ page import="com.freeforum

Re: [JBoss-user] Possible naming bug JBoss 2.2.2 with Tomcat 3.2.2

2001-06-29 Thread danch
J. King wrote: > True, there is an tag in web.xml which should bind a name to a > value for "/ejb/catalog/CatalogDAOClass" which should in turn, I assume, be > accessible from the servlet using > "java:comp/env/ejb/catalog/CatalogDAOClass". > > I don't think, however, that JBoss 2.2.2 binds s f

RE: [JBoss-user] Possible naming bug JBoss 2.2.2 with Tomcat 3.2.2

2001-06-29 Thread J. King
True, there is an tag in web.xml which should bind a name to a value for "/ejb/catalog/CatalogDAOClass" which should in turn, I assume, be accessible from the servlet using "java:comp/env/ejb/catalog/CatalogDAOClass". I don't think, however, that JBoss 2.2.2 binds s from web.xml into the jndi t

Re: [JBoss-user] cgi

2001-06-29 Thread Julian Gosnell
Jetty comes with a CGI Servlet. Jules Richard Bottoms wrote: > Just came across something interesting in WebLogic's docs: > > > CGIServlet > /cgi-bin/* > > > Is there support for CGI's available or planned for jboss-tomcat? > > r.b. > > ___ > JBoss

Re: [JBoss-user] Possible naming bug JBoss 2.2.2 with Tomcat 3.2.2

2001-06-29 Thread danch (Dan Christopherson)
J. King wrote: > > > The puzzling question remains, how is it that this works on J2EE RI and not > JBoss? Moreover, how would I make this variable available in JNDI to both > callers? > > j. There should be a resource ref for it in the web.xml descriptor for the war file. That's how you ma

[JBoss-user] how to secure ejbs when authentication happens on remote tomcat

2001-06-29 Thread Ed Mahoney
I had no problem getting security to work on an ejb application where everything happens in one container (thanks, Scott, for a great tutorial), but I'm not sure what to do when the user is authenticated on a servlet container running remotely and calling into jboss on a different machine over RMI

Re: [JBoss-user] servlets vs. EJB

2001-06-29 Thread Allen fogleson
lol. I agree. developers of course would be perfectly happy if everything was in a single table, with everything set to allow nulls :) And im not sure the native vs ODBC ever got solved. native is still faster, but hey anything beats punch cards... Don't want to count the times I had to redo somet

[JBoss-user] Possible naming bug JBoss 2.2.2 with Tomcat 3.2.2

2001-06-29 Thread J. King
I posted an earlier message regarding using the Java Pet Store 1.1.2 with JBoss 2.2.2/Tomcat3.2.2 regarding some naming weirdness. I now think I have a bug in Pestore 1.1.2 or it could be JBoss/Tomcat. Somebody tell me. After the tables have been successfully populated, subsequent attempts to a

Re: [JBoss-user] RE: servlets vs. EJB

2001-06-29 Thread Benjamin Wong
>Two problems with using a pure "Servlet to database" >architecture is with synchonization and massive database >hits. For smaller apps, this is probably fine, but for >larger ones you can run into problems with improper >record locking and poor database performance Hmmm...I am curious. What doe

Re: [JBoss-user] servlets vs. EJB

2001-06-29 Thread Fred Loney
Actually, I agree. In fact, my experience is that clients tend to have such a complicated data model that is hard to do anything with any technology. The unstated premise of a CMP vs. JDBC comparison is that CMP is an option. There are good reasons why CMP might not be an option, in which case

Re: [JBoss-user] cgi

2001-06-29 Thread Allen fogleson
the thing to remember here is that weblogic is several containers... its an EJB container, a servlet/jsp container and it also does HTML. (and jsp, and such) OTOH jboss doesnt concern itself with any of the web containers. it is, for the most part and to newbies can be viewed mostly as, an EJB co

RE: [JBoss-user] RE: servlets vs. EJB

2001-06-29 Thread Frank Thiemonge (NBK)
I think you may be comparing apples and oranges a little bit here. Two problems with using a pure "Servlet to database" architecture is with synchonization and massive database hits. For smaller apps, this is probably fine, but for larger ones you can run into problems with improper record lockin

Re: [JBoss-user] Undeployment problem (still)

2001-06-29 Thread danch (Dan Christopherson)
Jonas Bergström wrote: >>Since you have a reference to objects that have a reference to the old >>versions of the classes, the old versions of the classes can't be >>discarded. >> > I don't quite understand. Method invocations through the remote references > goes through the container, right, and

Re: [JBoss-user] servlets vs. EJB

2001-06-29 Thread Allen fogleson
yes, but using the 1 entity bean = 1 database table is not in general in my experience the best architecture in the world. entity beans are designed to represent business entities, and such entities are rarely modeled in one database table. Take the classic and ubiquitous example of a customer. Ev

RE: [JBoss-user] tomcat site traffic logging

2001-06-29 Thread Richard Bottoms
>In fact, I thought it was in response to you I attached a link to an older >message on how to integrate JBoss/Tomcat & Apache. > >http://www.mail-archive.com/jboss-user@lists.sourceforge.net/msg06241.html > >Alex Thanks. I was sure I'd read a number of posts that said in effect jboss-tomcat-apa

Re: [JBoss-user] tomcat site traffic logging

2001-06-29 Thread danch (Dan Christopherson)
Richard Bottoms wrote: >>This is one of the reasons to run TomCat through Apache. >> >>-- >>Richard Kasperowski (mailto:[EMAIL PROTECTED]) >> > > > True, but that's not possible with the jboss-tomcat integrated package. Yes it is. You have to have a static configuration on the apache side,

RE: [JBoss-user] tomcat site traffic logging

2001-06-29 Thread Alex Radka
>True, but that's not possible with the jboss-tomcat integrated package. >Here's a thought, what about running jboss-jetty in conjunction with >apache-tomcat. Huh, I'm running jboss-tomcat though Apache with SSL. Only downer is you have to reboot apache when you restart Tomcat/JBoss. In fact I

Re: [JBoss-user] cgi

2001-06-29 Thread Richard Bottoms
At 12:31 PM 6/29/01 -0500, you wrote: >That's really a question for the Tomcat list. It would certainly be >possible to build a servlet that runs a CGI script, Yes, it sounds like the WebLogic setup is closer to the jboss-tomcat-apache grail that gets asked about from time to time. r.b. __

RE: [JBoss-user] Undeployment problem (still)

2001-06-29 Thread Jonas Bergström
> Since you have a reference to objects that have a reference to the old > versions of the classes, the old versions of the classes can't be > discarded. I don't quite understand. Method invocations through the remote references goes through the container, right, and I thought the container would

[JBoss-user] Jboss CD Example - 'pload: can't read file ` cds.txt error

2001-06-29 Thread Sigurður Reynisson
Hi y'all! I'm running the run_upload.sh script on a Linux box. The table is created in my database (SapDB) but all I get is: 'pload: can't read file ` cds.txt oh, I've also set the primary key manually on the CDBEAN table and I'm using the latest scripts from the JBoss mailing list. Anyone sol

RE: [JBoss-user] RE: SQLException: Unable to load a ResultSet column into a variable of type 'char'

2001-06-29 Thread Dain Sundstrom
Pelle, I ran into this yesterday. The problem is Jaws doesn't understand how to handle cmp fields of type char. Jaws has a list of primative types and associated methods in java.lang.ResultSet that return the primative type. If you take a look at ResultSet, you will notice that there are no met

RE: [JBoss-user] RE: SQLException: Unable to load a ResultSet column into a variable of type 'char'

2001-06-29 Thread Dain Sundstrom
Oh ya, the reason you only see this with data directly loaded in to the db, is because you have are using the default, Commit Option A. Commit Option A assumes that the application is the sole user of the database, and therefore caches the data. You need to set commit option to B or C in the jbo

[JBoss-user] RE: servlets vs. EJB

2001-06-29 Thread Mantri, Mr. Ramesh
All, That is an interesting question. I prefer to use a mix of both. In my opinion, servlets are easier to develop than EJB. But then I am almost a newbie and could well be wrong. There is an important problem with EJB, I think. It seems to require a wide range of ports to be available for communi

Re: [JBoss-user] tomcat site traffic logging

2001-06-29 Thread Richard Bottoms
>This is one of the reasons to run TomCat through Apache. > >-- >Richard Kasperowski (mailto:[EMAIL PROTECTED]) True, but that's not possible with the jboss-tomcat integrated package. Here's a thought, what about running jboss-jetty in conjunction with apache-tomcat. Any plusses/minuses to tha

Re: [JBoss-user] Security in Jboss ( JaasSecurityManager ) - question to developers. Maybe RFE

2001-06-29 Thread Scott M Stark
The only issue with this is that the JaasSecurityManager is not considered a public API for which compatability between releases is a consideration. Your subclass of JaasSecurityManager may not work in latter releases. The public API for use with JaasSecurityManager is simply the JAAS login module

Re: [JBoss-user] cgi

2001-06-29 Thread danch (Dan Christopherson)
That's really a question for the Tomcat list. It would certainly be possible to build a servlet that runs a CGI script, but from my experience execing from Java can be a bit dodgy when it comes to error conditions. Not to mention being the worst way possible to do dynamic web content (flog you

[JBoss-user] cgi

2001-06-29 Thread Richard Bottoms
Just came across something interesting in WebLogic's docs: CGIServlet /cgi-bin/* Is there support for CGI's available or planned for jboss-tomcat? r.b. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/j

Re: [JBoss-user] tomcat site traffic logging

2001-06-29 Thread Richard Kasperowski
Richard Bottoms wrote: > Any one set up Apache like logging for tomecat? If JBoss-tomcat is going to > see significant us as part of a site content delivery engine we'll need to > be able to capture the same log info Apache does. Both for troubleshooting > purposes and to monitor site traffic.

Re: [JBoss-user] Security in Jboss ( JaasSecurityManager ) - question to developers. Maybe RFE

2001-06-29 Thread Konstantin Priblouda
--- Scott M Stark <[EMAIL PROTECTED]> wrote: > What your doing is correct, that is just a bug in > the handling of the null > credential. I have fixed this in main. > > In 2.4 there is an ability to set the principal of > an unauthenticated user, > but you cannot assign roles to it. It is not fo

RE: [JBoss-user] Strange Behavior When DataSource goes down.

2001-06-29 Thread Kaseman, Mark T
Number 2 is a big issue for me and OS/390 DB2. DB2 has an idle thread time out parameter, that causes the datasource to become unusable once DB2 kills the inactive connection/thread. I then must reboot JBOSS. Orion server recovers the connection with no problem. -Original Message- From: d

Re: [JBoss-user] Security in JBoss

2001-06-29 Thread Konstantin Priblouda
I am attempting to implement security features in JBoss.  I am reading through the documentation available online in Chapter 9.  However, I think I am more confused than when I started.  Is there a better source online that explains this?  I have even looked at the stuff on Sun.  Thank you for yo

Re: [JBoss-user] JBoss 2.2.2 EJB 2.0 style CMP???

2001-06-29 Thread danch (Dan Christopherson)
2.0 CMP will be in JBoss 3.0 Perry Q Hertler wrote: > Does JBoss 2.2.2 support abstract accessors methods > as defined in the EJB 2.0 spec? I looked, > unsuccessfully, for documentation concerning this > matter. > > Thanks, > Perry > > __ > Do Y

[JBoss-user] JBoss 2.2.2 EJB 2.0 style CMP???

2001-06-29 Thread Perry Q Hertler
Does JBoss 2.2.2 support abstract accessors methods as defined in the EJB 2.0 spec? I looked, unsuccessfully, for documentation concerning this matter. Thanks, Perry __ Do You Yahoo!? Get personalized email addresses from Yahoo! Mail http://person

RE: [JBoss-user] Couple of quick newbie questions.

2001-06-29 Thread Jord Sonneveld
Title: RE: [JBoss-user] Couple of quick newbie questions. > [Verifier] > Bean   : Topic > Method : public abstract void removeSubTopic(Alias) > Section: 9.2.7 > Warning: The method arguments in the remote interface must be of valid > types for RMI/IIOP. Is the class of the argument s

Re: [JBoss-user] JMS RMI Security

2001-06-29 Thread danch (Dan Christopherson)
Either put the jars in the 'client' directory in your classpath (you probably already have jnp-client.jar at least - there's also jbossmq-client.jar, which the class that isn't found should be in) or you can try to simply install an RMI security manager that will allow class downloading. -dan

Re: [JBoss-user] table already exists - help needed

2001-06-29 Thread danch (Dan Christopherson)
Carlos Ferrão wrote: > Hello list, > > I get the following message whenever I deploy my beans: > > [Container factory] Deploying authBean > [Container factory] Deploying authenticatorBean > [JAWS] Table 'authBean' already exists This isn't a problem. By default JAWS creates the table

Re: [JBoss-user] Strange Behavior When DataSource goes down.

2001-06-29 Thread danch (Dan Christopherson)
Ferguson, Doug wrote: > I believe that in my first email I mentioned that I have db failover > coded into my bean.. That means I am not screwed if a db goes down > unless jboss screws up.. Which is what is exactly happening. Not Good. > > You mentioned waiting on a long query to execute but this

Re: [JBoss-user] Strange Behavior When DataSource goes down.

2001-06-29 Thread danch (Dan Christopherson)
In this case, no query has been executed. What I'd change: 1. In the pools, object factory create methods should throw an exception when they can't create an object - this way we can tell pool exhaustion from inability to create a pooled resource. 2. The pools should have an ability to test con

[JBoss-user] SOAP & EJB

2001-06-29 Thread Paul Tamas
Hi all, I have the following directory structure : C:\test_ejb META-INF ejb-jar.xml DeploymentDescriptor.xml okiok fp ejb {java source & class files here} C:\test_client_soa

Re: [JBoss-user] ear deployment

2001-06-29 Thread danch (Dan Christopherson)
samuel rouiller wrote: > Hi, > > after having read the Jboss manual > (http://www.jboss.org/documentation/HTML/ch11s77.html), I though it was > possible to deploy an ear containing: > - a ejb-jar archive > - a war archive > - a application.xml > where the JSP and servlets of the web application

Re: [JBoss-user] servlets vs. EJB

2001-06-29 Thread Grim Shieldsson
--- Fred Loney <[EMAIL PROTECTED]> wrote: > Somebody wrote: > > > I think the EJB-arch would be more scalable than just using > JSP/Servlet. But > > on the other hand it is much simpler & easier to get things going > with > > JSP/Servlet/JDBC. > > I find it puzzling that the trade-off is often c

Re: [JBoss-user] Undeployment problem (still)

2001-06-29 Thread danch (Dan Christopherson)
Since you have a reference to objects that have a reference to the old versions of the classes, the old versions of the classes can't be discarded. Have you tried this with a full .ear deployment? (from below I assume that you're deploying the servlet and EJBs separately) .ear deployment shou

[JBoss-user] Number 2 on source forge,

2001-06-29 Thread marc fleury
oh come on guys! let's push it a bit shall we? we must be number one, marcf _ Marc Fleury, Ph.D [EMAIL PROTECTED] _ ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user

Re: [JBoss-user] Security in JBoss

2001-06-29 Thread Fred Loney
As a preface to Scott's excellent jboss chapter, a good introductory EJB security article can be found at: http://www.research.ibm.com/journal/sj/401/koved.html Scott M Stark wrote: > http://www.jboss.org/documentation/HTML/ch11s83.html > > - Original Message - > From: "Scott Keane"

Re: [JBoss-user] servlets vs. EJB

2001-06-29 Thread Fred Loney
Somebody wrote: > I think the EJB-arch would be more scalable than just using JSP/Servlet. But > on the other hand it is much simpler & easier to get things going with > JSP/Servlet/JDBC. I find it puzzling that the trade-off is often cast as EJB = scalable vs. JDBC = simple. Maybe it's me, but

Re: [JBoss-user] Couple of quick newbie questions.

2001-06-29 Thread danch (Dan Christopherson)
Kevin O'Neill wrote: > Two: > > I have a small client application (running in a separate VM) > > When I run it I get the following error, which I'm sure is either > related to the above or sue to the security manager, I'm just a little > stuck on how to solve it. > > ERROR - javax.naming.Commu

RE: [JBoss-user] CMP entity bean "load balancig"

2001-06-29 Thread David Jencks
Hi, Roman, re the firebird jca-jdbc driver, Help would be appreciated. Do you want to work on the driver generally or mostly on the event notification? The driver is in cvs at firebird.sourceforge.net under client-java. I'm checking in my latest changes, which can build a rar that deploys in

[JBoss-user] ear deployment

2001-06-29 Thread samuel rouiller
Hi, after having read the Jboss manual (http://www.jboss.org/documentation/HTML/ch11s77.html), I though it was possible to deploy an ear containing: - a ejb-jar archive - a war archive - a application.xml where the JSP and servlets of the web application can use the EJB's of the ejb-jar archive w

[JBoss-user] JMS RMI Security

2001-06-29 Thread Chris Jones
Dear Folks: Sorry for the incomplete previous posting. Control V in outlook apparently sends the document. At any rate, I'm a JMS newbie so forgive my denseness. > > > When I try to lookup the "TopicConnectionFactory", (see code fragment > below), I get the following error > Any ideas as

[JBoss-user] communication between to two EJB (deployed in two jboss Server)

2001-06-29 Thread JBoss
Hi Friends,   how to call bean to bean where each bean deployed in different jboss server running in separate machines,   Caller BEan (Stateless Session Bean)-Properties p=new Properties();p.put(Context.INITIAL_CONTEXT_FACTORY,"org.jnp.interfaces.NamingContextFactory");p.put(Conte

RE: [JBoss-user] ant tutorial for jboss

2001-06-29 Thread Ryan Wu
Looking at the ant/docs, you will find your answer. It is not that tough. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of marc fleury Sent: Tuesday, June 26, 2001 3:09 AM To: [EMAIL PROTECTED] Subject: RE: [JBoss-user] ant tutorial for jboss |Can some

[JBoss-user] JMS RMI Security

2001-06-29 Thread Chris Jones
When I try to lookup the "TopicConnectionFactory", (see code fragment below), I get the following error: Chris Jones Chief Architect Supply Chain Business Aspen Technology 19204 North Creek Parkway Bothell, WA 98011 425-492-2239 425-492-2100 (fax) [EMAIL PROTECTED]

Re: Solved!(was: RE: [JBoss-user] JBoss/Tomcat and Apache Soap setup)

2001-06-29 Thread David Green
Quite literally, with the newest version of Apache SOAP, and the newest version of JBoss/Tomcat - _all_ you have to do is take soap.war from the SOAP distribution and drop it in jboss/deploy/ - that's it. No copying soap.jar, no changing classpaths, no editing startup scripts or configuration file

Re: [JBoss-user] JBoss/Tomcat and Apache Soap setup

2001-06-29 Thread David Green
I have downloaded the JBoss/Tomcat bundle, dropped soap.war from the newest Apache SOAP distributions into jboss/deploy/, and SOAP setup is complete. Just launch JBoss with run_with_tomcat.sh. Pretty incredible. Can be accessed through your browser at http://hostname:8080/soap/ - Just be careful

Re: [JBoss-user] Couple of quick newbie questions.

2001-06-29 Thread David Green
The Alias class needs to be Serializable. removeSubTopic(Alias) in the remote interface must be declared to throw a RemoteException, just like all of the other methods in the remote interface. David Green On Fri, 29 Jun 2001, Kevin O'Neill wrote: > I've got a couple of quick what I'm sure are ne

[JBoss-user] jndi properties

2001-06-29 Thread Tbone
I'am trying to run an EJB client but i get an NoInitialContextException,...root exception is: ClassNotFoundException (I include all the jars in the client and the lib dirs )   Are this the correct jnidi properties ?   Properties props = new Properties()

Re: [JBoss-user] jBoss 2.2.2 does not set the encoding format for IE5.5

2001-06-29 Thread VASQUEZ_JASON
Penn, The meta-tag is only interpreted by the client, so I'm not sure why IE isn't doing the right thing. A better approach is to use the HTTP headers, which are processed by the server, and should be more consistent with clients over all: <%@ page contentType="text/html ; charset=big5"%> -Jas

Solved!(was: RE: [JBoss-user] JBoss/Tomcat and Apache Soap setup)

2001-06-29 Thread Bruce Scharlau
>Nick, and Timo, thanks for your help. I went back to basics and double (quadruple at least really ;-) ) checked the Apache-soap install guide. And went carefully over the classpaths and where things were, to see that I hadn't inadverntently moved something out of the classpath. Here's what

[JBoss-user] Multiple instantiation of MDBs

2001-06-29 Thread Ferreira, William
How can I take advanatge of the fact that a container will instantiate multiple instances of a MDB to process JMS messages concurrently, without destroying the order in which messages should be processed ? For example, suppose I define a MDB which processes messages published on a single topic,

Re: [JBoss-user] jBoss 2.2.2 does not set the encoding format for IE5.5

2001-06-29 Thread David Ward
Penn, Try adding: <%@ page contentType="text/html; charset=Big5" %> as the *very first line* of your jsp. What is the ISO code for Big5? (You might want to use that instead, though not related to your problem) Hope this helps, David -- Penn wrote: > Hi, > > I found out that jBoss 2.2.2 w

RE: [JBoss-user] jBoss 2.2.2 does not set the encoding format for IE5.5

2001-06-29 Thread Schouten, Andreas
For shure that's not a jBoss problem. Responsible for the HTML page and the http headers are only tomcat. But indeed this looks stange. It looks as an IE problem, because the dependency on the file extention. Compare the HTML source generated by tomcat 3.2.1 and tomcat 3.2.2. Which difference is

[JBoss-user] Message "ThreadPool: Pool exhausted with 100 threads"

2001-06-29 Thread gilles coutellier (DSI Noisiel)
Hello, I'm running tests under jboss 2.2.2 + tomcat 3.2.2 under linux (sun jdk 1.3). for 50 users no problems, but when i run 100 users, i get the message "ThreadPool: Pool exhausted with 100 threads" under jboss console. Could someone help me about this message ? Is this a tomcat or a jboss mess

Re: [JBoss-user] best web server and servlet container with JBoss

2001-06-29 Thread Kemp Randy-W18971
Simon: Yes it would be nice to integrate Resin and Jboss in the same VM. Randy From: "Simon Tang" <[EMAIL PROTECTED]> To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] best web server and servlet container with JBoss Date: Fri, 29 Jun 2001 04:08:41 - Reply-To: [EMAIL PROTECTED] Apache+jboss

RE: [JBoss-user] JBoss/Tomcat and Apache Soap setup

2001-06-29 Thread Bruce Scharlau
At 03:07 PM 6/29/2001 +0300, you wrote: >I maybe fooling around here, but I noticed that you have soap.jar still >in Jboss' classpath.. > >As you run the ServiceManagerClient from the console. what is the >classpath? ..or does the ServiceManagerClient throw these exceptions or >JBoss/Tomcat? > >b

RE: [JBoss-user] JBoss/Tomcat and Apache Soap setup

2001-06-29 Thread Nick Taylor
i run the combined tomcat/jboss in a single vm so don't have to start tomcat explicity through tomcat.bat, its started by jboss for me. looking at your trace it appears that servlet.jar isn't being picked up...is it in your tomcat/lib dir? your error 500 is being thrown in the tomcat container s

[JBoss-user] jBoss 2.2.2 does not set the encoding format for IE5.5

2001-06-29 Thread Penn
Hi, I found out that jBoss 2.2.2 with Tomcat3.2.2 have problem on setting IE's encoding format i have a jsp file that set the meta tag when i load the jsp, the encoding format of IE was not set to Big5 if i change the file extension from .jsp to .html the encoding format of IE will change to

RE: [JBoss-user] JBoss-MBean-client to an entity-bean.

2001-06-29 Thread Sternagel Annegret (PN-SYS/DAS)
Put the primary-key class and the interface classes of the entitybean into a jar in jboss\lib\ext. Maybe there is a better solution ... ?? Ciao Annegret > -Original Message- > From: Tore B. Pedersen [SMTP:[EMAIL PROTECTED]] > Sent: Freitag, 29. Juni 2001 11:11 > To: '[EMAIL PROTECTED]'

Re: [JBoss-user] Problems connection to Microsoft SQL Server 7.0SQLServerPool whe n running JBoss2.2.1-Tomcat3.2.1 integration...

2001-06-29 Thread Timo Kauppinen
Have you defined your datasource in both configurations (ie default AND tomcat)? There are two config files in jboss-tomcat -bundle. On Fri, 29 Jun 2001, Cecilie Aulesjord wrote: > Hi. > > I have installed the integrated "JBoss-2.2.1_Tomcat-3.2.1" version on > win2000 and I run Jdk1.3.0_02.

RE: [JBoss-user] JBoss/Tomcat and Apache Soap setup

2001-06-29 Thread Timo Kauppinen
I maybe fooling around here, but I noticed that you have soap.jar still in Jboss' classpath.. As you run the ServiceManagerClient from the console. what is the classpath? ..or does the ServiceManagerClient throw these exceptions or JBoss/Tomcat? btw:have you tried the .war in jboss/deploy dire

[JBoss-user] Undeployment problem (still)

2001-06-29 Thread Jonas Bergström
Hi folks, I posted a message a couple of months ago about hot undeployment. I reveived two answers, neither work, so I'm trying again... My servlet (Tomcat in-process) has a reference to an EJB. After hot undeploying the EJB, the servlet is still able to invoke methods on the EJB. Why? The tmp-

RE: [JBoss-user] Confused with JAAS! Please help

2001-06-29 Thread Schouten, Andreas
It seems, that the data related to users and roles is cached by the SecurityManager. (I added users with a third party tool but could login with this accounts only after restarting jBoss.) Can somebody explain if and how to caus the security manager rereading the data from the database? Then a be

[JBoss-user] Problems connection to Microsoft SQL Server 7.0 SQLServerPool when running JBoss2.2.1-Tomcat3.2.1 integration...

2001-06-29 Thread Cecilie Aulesjord
Hi. I have installed the integrated "JBoss-2.2.1_Tomcat-3.2.1" version on win2000 and I run Jdk1.3.0_02. I can connect to SQLServerPool without problems if I start the standard JBoss-script(JBOSS_HOME/bin/run.bat). But if I try to start the JBoss-Tomcat-script(run_with_tomcat.bat) I can't connect

RE: [JBoss-user] JBoss/Tomcat and Apache Soap setup

2001-06-29 Thread Bruce Scharlau
At 11:01 AM 6/29/2001 +0100, you wrote: >you can do it this way but for each soap service deployed, the deployment >descriptor needs to be reloaded each time jboss is restarted (if you are >using the rpcrouter). if you deploy soap.war in tomcat/webapps, the dd has >to be loaded only once (or when

[JBoss-user] Confused with JAAS! Please help

2001-06-29 Thread Shotton Mark MMUk
Hello I'm running JBoss 2.2.1-Tomcat 3.2.1 with InstantDB. The Tomcat JDBCRealm and JBoss DatabaseServerLoginModule point to the same database tables (Users and Roles) for JAAS authentication. While my enterprise application is running, I add new users to the Users and Roles tables from a session

[JBoss-user] RE: SQLException: Unable to load a ResultSet column into a variable of type 'char'

2001-06-29 Thread Pelle Poluha
I get the exception when JBoss has created the rows too. But if I do a create just before reading (in this case with findAll), it works. Maybe the data is cached somewhere so that JBoss doesn't have to load the data from the db. But when I restart my client and tries to get the data (with findAll)

RE: [JBoss-user] JBoss/Tomcat and Apache Soap setup

2001-06-29 Thread Bruce Scharlau
At 10:37 AM 6/29/2001 +0100, you wrote: >I run the jboss2.2.2/tomcat3.2.2 single vm combo with soap 2.2 and the >xerces parser. My classpath to start jboss/tomcat is: >CLASSPATH=;run.jar;d:\jdk\lib\tools.jar;..\lib\xerces.jar >The soap rpcrouter is deployed by dropping soap.war in the tomcat webap

[JBoss-user] tomcat site traffic logging

2001-06-29 Thread Richard Bottoms
Any one set up Apache like logging for tomecat? If JBoss-tomcat is going to see significant us as part of a site content delivery engine we'll need to be able to capture the same log info Apache does. Both for troubleshooting purposes and to monitor site traffic. r.b. ___

RE: [JBoss-user] JBoss/Tomcat and Apache Soap setup

2001-06-29 Thread Nick Taylor
you can do it this way but for each soap service deployed, the deployment descriptor needs to be reloaded each time jboss is restarted (if you are using the rpcrouter). if you deploy soap.war in tomcat/webapps, the dd has to be loaded only once (or when the service spec has changed). this is secon

RE: [JBoss-user] JBoss/Tomcat and Apache Soap setup

2001-06-29 Thread Nick Taylor
I run the jboss2.2.2/tomcat3.2.2 single vm combo with soap 2.2 and the xerces parser. My classpath to start jboss/tomcat is: CLASSPATH=;run.jar;d:\jdk\lib\tools.jar;..\lib\xerces.jar The soap rpcrouter is deployed by dropping soap.war in the tomcat webapps dir. nick > -Original Message-

Re: [JBoss-user] JBoss/Tomcat and Apache Soap setup

2001-06-29 Thread Timo Kauppinen
Have you tried the soap.war package? Just put the soap.war from soap-2.2.zip/gzip into jboss' deploy directory.. and hope for the best. At least it worked for me without any diffculties and I got it up and running... haven't deployed anything or tested it properly yet, though... Timo On Fri, 2

[JBoss-user] Problem with JNDI In example Cabin

2001-06-29 Thread David Tsai
Dear  all:    I  have a question about JNDI , In the example about Interest , i run it very fine ,but when i  run another example Cabin(come from Richard Monson-Haefel), it seems have problem with jndi, after i  deploy  cabin.jar and travelagent.jar  to jboss ,it's jndi shows as below: list

Re: [JBoss-user] JBoss Verifier

2001-06-29 Thread Allen fogleson
if you havent modified your jboss much the directory for deployment is deploy, and the files are deployed from there to ../tmp/deploy/Default Al - Original Message - From: sheena sid <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Friday, June 29, 2001 2:48 AM Subject: [JBoss-user] JBo

[JBoss-user] JBoss-MBean-client to an entity-bean.

2001-06-29 Thread Tore B. Pedersen
We are have problems writing a client which calls some entity-ejb in JBoss. When running as a normal client it runs OK, but we want this client to be started when JBoss starts. Thus, we created it as a MBean-service. But now it fails with a classnotfoundexception on the primarykey-class. Here i

Re: [JBoss-user] best web server and servlet container with JBoss

2001-06-29 Thread Julian Gosnell
If you trawl back through the archive of this list (hanging off www.jboss.org) you will find at least one thread comparing jboss-tomcat with jboss-jetty. Jules (unbiased jboss-jetty maintainer) --- Simon Tang <[EMAIL PROTECTED]> wrote: > Apache+jboss+tomcat is ok, but you might want to > check

[JBoss-user] JbossMQ

2001-06-29 Thread Kathir
Hi, Have anyone used the JbossMQ administered object like SpyConnectionFactory? Are there any code samples using the said objects? Could anyone help me out? Thanks in advance, -Kathir. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sour

[JBoss-user] JBoss/Tomcat and Apache Soap setup

2001-06-29 Thread Bruce Scharlau
Hi all, I'm setting up Soap 2-2 to work with JBoss2.2.2/Tomcat 3.2.2 and having a hell of a time with the classpath setting in JBoss. There were a few cryptic comments in the archives, but no clear answer as to what worked. I've changed the run.bat file in JBoss to from the default crimson.jar

[JBoss-user] SQLException: Unable to load a ResultSet column into a variable of type 'char'

2001-06-29 Thread Pelle Poluha
Hello! I get this strange error. It only happens when I have manually loaded the db (MySql) with 'insert into project values(...)', not when I let Jboss create the rows. Any ideas? Regards, Pelle Poluha (using JBoss 2.2.2 on Win2K, JDK 1.3.1, MySQL) [Project] TRANSACTION ROLLBACK EXCEPTION:Loa

[JBoss-user] serialized sessions

2001-06-29 Thread Schouten, Andreas
Hallo, should the .ser files in \db\sessions been deleted when the bean is activated or removed? The beans are stored as attributes of HTTPSession. When this servlet session is timed out the beans are removed. The System.out from jBoss looks like [DataInterface] StatefulSessionBean.ejbCreate(

[JBoss-user] JbossMQ

2001-06-29 Thread Kathir
Hi, What is the administred objects of JbossMQ? Where can i find the docs and sample programs using JbossMQ JMS provider? Could anyone help me out. Thanks in advance. -Kathir. ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.n

Re: [JBoss-user] why?

2001-06-29 Thread Roy Yip
Hi! Create a directory "jbossmq" under %JBOSS_HOME%/db/ and that should work. Sky Yin wrote: > > hi > I know it's no problem to start jboss with sun's jdk1.3.0, but when I switch to >jdk1.3.1 I encounter the following error > but still go on starting: > > .. > [JBossMQ] Starting > [JBossMQ] C

Re: [JBoss-user] ONLINE FORUMS

2001-06-29 Thread Guy Rouillier
I like the idea. Can we take this opportunity to introduce topic-oriented forums? jboss-user-security, jboss-user-db, etc? - Original Message - From: "marc fleury" <[EMAIL PROTECTED]> To: "Jboss-User@Lists. Sourceforge. Net" <[EMAIL PROTECTED]>; "Jboss-Development@Lists. Sourceforge. Ne

  1   2   >