Re: [JBoss-user] dbase is acting way to slow

2001-07-26 Thread G.L. Grobe
The pings report back fine to localhost and cassia (the node w/ jboss and my enterprise app), acais is just my context name to the webapp. Everything on my network is normal in this respect. I think the problem still lies somewheres in my configuration of the DataSource's. - Original Message

RE: [JBoss-user] SAP resource Adapter

2001-07-26 Thread van Husen, Thomas
hi paul, i doubt whether the resource connector architecture already works for SAP or whether we will see some spectacular things on this in the near future. We just connect through standard bapi technology to r/3. It works. Problem however is the availability of a bapi. In case you need to acce

[JBoss-user] using PortableRemoteObject.narrow

2001-07-26 Thread Toby Hede
I keep seeing code samples that use the followng syntaxt: Object ref = ctx.lookup(EJBHome.JNDI_NAME); EJBHome home = (EJBHome) PortableRemoteObject.narrow(ref, EJBHome.class); I also see other samples that use the following: EJBHome home Object ref = (EJBHome) ctx.lookup(EJBHome.JNDI_N

Re: [JBoss-user] Custom Finders

2001-07-26 Thread laurent . broudoux
Hello, Here's an example of a custom finder method (designed to run for MySql). My entity bean has got 2 fields (among others) that are the project key (f_ad) and the document type key (f_ae). This finder returns all the documents for a project having a specific type. (a document can be linked

[JBoss-user] Why can we deploy contents to Tomcat via jboss ?

2001-07-26 Thread Keiichiro Katayama
This is katayama. Hello! I'm using JBoss-2.2.2 + Tomcat-3.2.2. I only deploy EAR files into jboss/deploy directory , so contents can be deployed to Tomcat. Usual standalone Tomcat uses $TOMCAT_HOME/webapps directory for deployment , and Tomcat needs restart of himself for hotdeploymen

RE: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread Dan - Blue Lotus Software
IIRC, you can give width suggestions to tables, which in turn causes Netscape to render the tables without having to load the entire table first. IE and Mozilla both have the ability to resize a table after it has been drawn. They use this to render a table when only part of the table has been do

Re: [JBoss-user] Classpaths

2001-07-26 Thread Alice Ad
thanks for the reply. yea, i was putting a lot of things in my classpath and when i cleaned it up jboss ran fine. but now (im running client on the same host) i have to add classpaths for the client to pickup initial context etc. so this time i again added all jboss/client/*.jar on my classpath. i

RE: [JBoss-user] dbase is acting way to slow

2001-07-26 Thread Sacha Labourey
Hello, This is most probably out of topic but, what happens if you try to ping these hosts: localhost, acais, cassia (with these exact spelling and by not using their IP addresses.) Just to check that you do not have a resolver issue (as you say that your lookups are also slow). Cheers,

[JBoss-user] dbase is acting way to slow

2001-07-26 Thread G.L. Grobe
Some new information.   My problem has been that my dbase queries are extremely slow, but they work. A query through 10 records in a table w/ only 5 fields (extremely simple sql stuff) takes 10-20 seconds. The lookup()'s to the datasource are also slow. Upon run_with_tomcat.sh, I see the fol

Re: [JBoss-user] java.io.NotSerializableException need help

2001-07-26 Thread Dmitri Colebatch
Does com.arcsight.vssreport.VssReportItem implement java.io.Serializable? It needs to. cheesr dim On Thu, 26 Jul 2001, yan fan wrote: > I am runing jboss&tomcat , with servlet , BMP, and > when I try to get a ArrayList(which inside is the > VssReportItem object hold some properties) in BMP, I

[JBoss-user] java.io.NotSerializableException need help

2001-07-26 Thread yan fan
I am runing jboss&tomcat , with servlet , BMP, and when I try to get a ArrayList(which inside is the VssReportItem object hold some properties) in BMP, I get the exception :(please give me some hints, Thx a lot) [VssReportB] java.io.NotSerializableException: com.arcsight.vssreport.VssReportItem [

Re: [JBoss-user] Re: Jetty: NotSerializableException invoking EJB from servlet

2001-07-26 Thread Scott M Stark
That is correct. The request would never be used by an unmarshalled object. There is another problem with the current security integration so I need to change this anyway. - Original Message - From: "Toby Allsopp" <[EMAIL PROTECTED]> To: "JBoss-User" <[EMAIL PROTECTED]> Sent: Thursday, J

[JBoss-user] Re: Jetty: NotSerializableException invoking EJB from servlet

2001-07-26 Thread Toby Allsopp
On Fri, Jul 27, 2001 at 02:45:10PM +1200, Toby Allsopp wrote: > I'm trying to create a stateless session bean from a servlet running > in Jetty using JBoss-2.4.0BETA_Jetty-3.1.RC5-1. (Sun JDK 1.3.0 on > RedHat Linux 6.2). > > The create() call on the home object throws an > UndeclaredThrowableEx

Re: [JBoss-user] Jetty: NotSerializableException invoking EJB from servlet

2001-07-26 Thread Scott M Stark
It could be due to how the Jetty-JBoss security interceptor is implemented. Jules saw this once but could not reproduce it so I did not look further into it. Are you seeing this consistently? If so, what is the full stack trace. - Original Message - From: "Toby Allsopp" <[EMAIL PROTECTED

[JBoss-user] Custom Finders

2001-07-26 Thread Devraj Mukherjee
I am looking for an example where someone has used a custom finder. Can any one of you give me snippets of your jaws.xml file to demonstrate the use of custom finders. thanks devraj ___ JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourcef

Re: [JBoss-user] Force create of table after manual drop?

2001-07-26 Thread David M. Karr
> "Nicolai" == Nicolai P Guba writes: Nicolai> On 25 Jul 2001 22:28:54 -0700, David M. Karr wrote: >> In JBoss 2.2.2, using MySQL, I had a sample application, and it had created a >> table. I manually dropped the table, now I'm trying to figure out how to get >> JBoss to fig

[JBoss-user] Jetty: NotSerializableException invoking EJB from servlet

2001-07-26 Thread Toby Allsopp
I'm trying to create a stateless session bean from a servlet running in Jetty using JBoss-2.4.0BETA_Jetty-3.1.RC5-1. (Sun JDK 1.3.0 on RedHat Linux 6.2). The create() call on the home object throws an UndeclaredThrowableException with the following printStackTrace: java.lang.reflect.UndeclaredT

Re: [JBoss-user] Force create of table after manual drop?

2001-07-26 Thread David M. Karr
> "Dragos" == Dragos Haiduc <[EMAIL PROTECTED]> writes: David> David M. Karr wrote: David> In JBoss 2.2.2, using MySQL, I had a sample application, and it had created a David> table. I manually dropped the table, now I'm trying to figure out how to get David> JBoss to figu

Re: [JBoss-user] can you explain these verification errors?

2001-07-26 Thread Mike Williams
>>> On 26 Jul 2001 18:11:57 +1000, >>> "Mike" == Mike Williams <[EMAIL PROTECTED]> wrote: Mike> JBoss is throwing up verification errors for my EJBs, but I'm not sure Mike> why. Mike> +--- PromotionBean --- Mike> | public void setAllProductFlag(java.lang.Boolean) Mike>

Re: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread Ole Husgaard
Hi, Juha-P Lindfors wrote: > At the same time I have another box next to me, on DSL, with Netscape > 4.61. Extremely slow. I tried Mozilla on the same box, it was faster, but > not even close to what I can do with IE5 and a sucky 56k line :) Netscape 4.61??? I use that, and cannot even see the

[JBoss-user] SAP resource Adapter

2001-07-26 Thread Paul McLachlan
Hi All, I need to connect JBoss to SAP(PM). So I need a Resource Adapter. There are a few companies listed at http://java.sun.com/j2ee/connector/products.html but if anyone has waded through the options I'd appreciate their help. Preferably one that simply fits into JBossCX that I can just down

Re: [JBoss-user] Classpaths

2001-07-26 Thread David Jencks
jboss as downloaded should start with empty classpath if you use run.sh/run.bat., or just run.jar if you want to start it some other way. Usually putting things in the classpath breaks something else later. The jmx framework adds everything in jboss's lib/ext to the internal classpath. Are you do

Re: [JBoss-user] Entity Bean Clustering

2001-07-26 Thread David Jencks
As I understand it there are 1.5 or 2 issues here: 1. When one server commits a change on an entity, other server's copies of that entity should be marked dirty. 2. When two servers try to update an entity "simultaneously" only one should succeed. If all synchronization is through the db, it wi

Re: [JBoss-user] can you explain these verification errors?

2001-07-26 Thread Mike Williams
Per> Mike, are com.cortexeb.util.exception.FieldNullException or Per> com.cortexeb.ejb.promo.IllegalPromotionStateException Per> RemoteExceptions? No, they aren't. However, they both extend from classes that aren't in the EJB jar-file. Could that be the source of the problem? FieldNul

Re: [JBoss-user] Which JBoss to use

2001-07-26 Thread Devraj Mukherjee
If you want trouble free installation then go for JBoss integrated with Tomcat. If you want to put a bit more effort into your installation download the normal distribution and integrate it with Tomcat on your machine. The documentation is available on www.jboss.org. Devraj At 17:06 26/07/01

Re: [JBoss-user] Building examples

2001-07-26 Thread Devraj Mukherjee
One to me it looks like you don't have j2ee.jar in your class path and even the standard libraries distributed with java. Devraj At 13:33 26/07/01 -0700, you wrote: >Hi, > >I have just downloaded and installed JBoss2.2.2 with tomcat on Window2000 >professional. > >I got the following error wh

Re: [JBoss-user] Classpaths

2001-07-26 Thread Devraj Mukherjee
From my experience, apart from the normal values in the classpath variable. You need to point the JBoss classpath to the packages where the JBoss server can find the remote and home interfaces for all classes, as this is require by your JSP, JavaBeans. Devraj At 15:21 26/07/01 -0700, you wro

[JBoss-user] JAWS Date datatype

2001-07-26 Thread Hajo Hindriks
Hi, I am trying to store a date value in a Interbase table. When using the default-mapping I get an exception and I observed in the logfile that jasw is trying to use an JAVA_OBJECT type instead of a date type. I changed the mapping (Interbase), instead of java.sql.date I wrote java.util.Date...

[JBoss-user] Classpaths

2001-07-26 Thread Alice Ad
Hi, Can anyone please tell me what classpaths to set for JBoss to start? Every time I do something new and try to start the server, some class files are not found and I have to spend quite a time to figure out what classpath to add. thanks a lot!

[JBoss-user] Which JBoss to use

2001-07-26 Thread s b
I want to use JBoss and am wondering which to use - JBoss or JBoss-Tomcat. I have Apache and Tomcat on Windows 98. Further, where is the documentation located? I am not able to get to is through the jboss.org site. Thanks. _ Get your

Re: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread Scott M Stark
I'm using IE over a cable modem and login/logout are consistently 60 seconds. Browsing is fast. I'm guessing there is some problem with reverse address resolution of the browser Host header for non-public hostnames/IPs. > A common problem with both browsers and both connections is the login and >

RE: [JBoss-user] Entity Bean Clustering

2001-07-26 Thread Ernest Chen
Title: Entity Bean Clustering My desired setup is to minimize database hits, option 'C' would hit the database each time makes the site not scalable, I want to take advantage of jBoss' caching.   Thanks!   Ernest -Original Message-From: Bill Burke [mailto:[EMAIL PROTECTED]]Sent:

RE: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread Juha-P Lindfors
Posted this to the forums about a week ago, in case it was missed, here's my feedback & findings: > Web forums are really not for everyone, > specifically in 56k land. Well I've had the privilege to compare the speeds of both 56k and DSL lines just today. (I've finally managed to get my DSL run

Re: [JBoss-user] is JBOSS JNDI brain-dead or ...

2001-07-26 Thread Scott M Stark
The testsuite uses both methods, so I don't see a problem. If you have a simple testcase that demonstrates a problem post a bug to sourceforge. - Original Message - From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 26, 2001 12:32 PM Subject: Re: [JBoss-user] is JBOSS

RE: [JBoss-user] Entity Bean Clustering

2001-07-26 Thread Bill Burke
Title: Entity Bean Clustering We run with multiple jboss servers and one database(Oracle) and do the following.   1. Run with Commit Option 'C' 2. For beans that absolutely need synchronization, use   Regards,   Bill -Original Message-From: [EMAIL PROTECTED] [mailto:[EMAIL

[JBoss-user] Building examples

2001-07-26 Thread Aravinda Ghosh Addala
Hi, I have just downloaded and installed JBoss2.2.2 with tomcat on Window2000 professional. I got the following error when I tried to compile examples using ant cmp-cd-compile. What have I missed? I am new to Jboss & EJB.. D:\apps\jboss\jboss\examples\build>ant cmp-cd-compile Buildfile: build.

Re: [JBoss-user] is JBOSS JNDI brain-dead or ...

2001-07-26 Thread danch (Dan Christopherson)
from 'testEnvEntries()': i = (Integer) initCtx.lookup("java:comp/env/Ints/i1"); System.out.println("Ints/i1 = "+i); [EMAIL PROTECTED] wrote: > > I think the point that Chris was trying to make was that the code: > > InitialContext ic = new InitialContext(); >

[JBoss-user] Entity Bean Clustering

2001-07-26 Thread Ernest Chen
Title: Entity Bean Clustering Since jBoss does not have Clustering capability for Entity Beans, I'd like to find a way to run jBoss on multiple servers and load balanced.  One additional server will host administration tools for updating objects.  However, since each jBoss instance have isolat

Re: [JBoss-user] Auto-increment(revisited)

2001-07-26 Thread Ivan Novick
In MySql I have do not user auto-increment but have my own auto-increment table.  That way when I create a new record i just check the table to get the primary key then increment it.   Ivan - Original Message - From: Hermann RANGAMANA To: [EMAIL PROTECTED] Sent: Thurs

Re: [JBoss-user] is JBOSS JNDI brain-dead or ...

2001-07-26 Thread R . Price
I think the point that Chris was trying to make was that the code:         InitialContext ic = new InitialContext();         String className = (String)ic.lookup("java:comp/env/subscriber/SubscriberDAOClass"); which works for other app servers, has to be translated into:         InitialContext

Re: [JBoss-user] is JBOSS JNDI brain-dead or ...

2001-07-26 Thread Scott M Stark
Must be you as the jbosstest suite includes a JNDI ENC test case that does exactly what your trying to do: package org.jboss.test.naming.ejb; public class TestENCBean implements SessionBean { public void setSessionContext(SessionContext sessionContext) throws EJBException {

[JBoss-user] is JBOSS JNDI brain-dead or ...

2001-07-26 Thread Chris Windsor
Is JBOSS' JNDI implementation brain-dead ... or am I missing something? I took an .ear file that runs happily in the j2ee-ri and deployed it to jboss. Unhappily, I've been bombarded with NamingExceptions. After many frustrated attempts to resolve them, I finally went to the InitialContext an

[JBoss-user] RE: Making InterestServlet work...

2001-07-26 Thread A.L.
Steven, I followed your instructions. But got the error which I have printed below. Nevertheless, I'm thinking that this may have to do with the interest.war file. Where should that be located? Thanks, -Amos lieberman Error: 500 Location: /interest/InterestServlet Internal Servlet Error:

Re: [JBoss-user] Auto Incrementing Primary Key with PostgreSQL and JBoss

2001-07-26 Thread David Jencks
I think ROWID in oracle is global abstract identifier for the row not necessarily sequential. Identity columns as I understand are autoincrementing, per table. The oracle equivalent would be using an insert trigger getting values from a sequence (a much better solution IMHO than identity columns

[JBoss-user] RE: Making InterestServlet work...

2001-07-26 Thread Steven Webster
Amos, |So must I create the servlet application myslef in | TOMCAT. Is the build file provided in the interest | example directory the one used for building the | servlet with ant? I have been trying to deploy the interest servlet example also today. I just managed to get it working - real

RE: [JBoss-user] Auto Incrementing Primary Key with PostgreSQL a nd JBoss

2001-07-26 Thread Maraya Michael
If you're using BMP, you can issue two SQL statements from within ejbCreate(). Make the first statement the INSERT statement and the second should be the SELECT last_insert_id(). I don't know how this would work for CMP, though. --- Michael R. Maraya > -- > From: Jean-

RE: [JBoss-user] INTEREST EXAMPLE

2001-07-26 Thread Martin Welch
Title: RE: [JBoss-user] INTEREST EXAMPLE >> I am assuming that you are familiar with the exampl. Yes. You could say that! It's driving me nuts trying to get this to work. >> So must I create the servlet application myslef in TOMCAT.  Yes. Or at least I did. >>Is the build file provid

RE: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread marc fleury
Ok apart from the rendering problems that are due to the design of the site pages, the real sticky issue seems to be the "identification" login in and out... it seems also that it could be linked to a DNS resolving problem? Matt, anything specific with these pages? marcf |-Original Messag

Re: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread David Jencks
Hi, Page return speed is ok for me, not great, however typing in reply/post box is incredibly slow in Mozilla on rh 7.1 linux. This must have something to do with the forum as e.g. the patch page on sourceforge is fine. david jencks On 2001.07.26 09:00:38 -0400 marc fleury wrote: > Ok, > > mo

[JBoss-user] JBoss/Castor classloading problem

2001-07-26 Thread Ijonas Kisselbach
Hi, I'm using JBoss & Castor at the Session Bean level. I have got the CastorRooms working properly and successfully extended some of the tests that come with the example code. Applying the same setup to my own code now, I run into the following class loading error: org.

RE: [JBoss-user] INTEREST EXAMPLE

2001-07-26 Thread A.L.
Martin, Thanks for your reply. I haven't experienced any problems, yet, but I'm not sure of what the process would be to implement the interest servlet. First off. i had made an assumption which may have slightly confused me. After building and deploying the interest example with ant, I

AW: [JBoss-user] Auto Incrementing Primary Key with PostgreSQL a nd JBoss

2001-07-26 Thread Jean-Noël Heyraud
i had the same pb on mySQL where you get the id after the insert (select last_insert_id() from MyTable), I tried to update the EJB Primary Key on the ejbPostCreate method (ejbCreate was generated by the container) but it was to late for the container (I got duplicateKeyException). any idea? Jean

RE: [JBoss-user] Auto Incrementing Primary Key with PostgreSQL and JBoss

2001-07-26 Thread Reynir Hübner
the equvaliant to @@identity in ORacle is called ROWID. It is propriatary for each db server. I dont know how it is in postgreSQL. -r -Original Message- From: Maraya Michael [mailto:[EMAIL PROTECTED]] Sent: Thursday, July 26, 2001 3:50 PM To: '[EMAIL PROTECTED]' Subject: RE: [JBoss-u

Re: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread Julian Gosnell
Agreed, I find the forums very fast, even across my feeble modem - it is netscape (4.77-ish) rendering that takes the time - it is so bad that I use Mozilla specifically to read the forums - it smokes my old netscape and everything now happens really fast. Jules --- Tim Yates <[EMAIL PROTECTED

[JBoss-user] Well, I've made it!

2001-07-26 Thread Martin Welch
Title: Well, I've made it! JBoss-2.4.0_Tomcat-3.2.2 Win2K I've finally got the CMP example to work using the jdbc-odbc bridge to an Access database and populated it via Upload.java. Couple of very minor points that relate to the sample code. First, the very first line of Upload.java nee

Re: [JBoss-user] Auto-increment(revisited) : read on jGuru.

2001-07-26 Thread Hermann RANGAMANA
i think it'd be auto-id itself   --hermann - Original Message - From: Frank Villarreal To: [EMAIL PROTECTED] Sent: Thursday, July 26, 2001 5:23 PM Subject: RE: [JBoss-user] Auto-increment(revisited) : read on jGuru. Assuming the auto-id is your primary key,

RE: [JBoss-user] Auto Incrementing Primary Key with PostgreSQL and JBoss

2001-07-26 Thread Maraya Michael
I don't use Postgres but on MS SQL Server, I call "SELECT @@IDENTITY" immediately after the insert statement. Perhaps this will lead you in the right direction. --- Michael R. Maraya > -- > From: Federico Vesco[SMTP:[EMAIL PROTECTED]] > Reply To: [EMAIL PROTECTED]

RE: [JBoss-user] INTEREST EXAMPLE

2001-07-26 Thread Martin Welch
Title: RE: [JBoss-user] INTEREST EXAMPLE What problems have you had? -Original Message- From: A.L. [mailto:[EMAIL PROTECTED]] Sent: 25 July 2001 23:21 To: [EMAIL PROTECTED] Subject: [JBoss-user] INTEREST EXAMPLE I am very new to JBOSS, and am having some trouble understanding how

RE: [JBoss-user] Auto-increment(revisited) : read on jGuru.

2001-07-26 Thread Frank Villarreal
Assuming the auto-id is your primary key, what would you use as the entity bean's primary key?   Frank T. Villarreal, Jr. Email [EMAIL PROTECTED] -Original Message-From: Hermann RANGAMANA [mailto:[EMAIL PROTECTED]]Sent: Thursday, July 26, 2001 9:32 AMTo: [EMAIL PROTECTED]Subje

[JBoss-user] Classpath and WEB-INF/lib

2001-07-26 Thread Tait, Allen
I am using Jboss2.2.1 with embedded Tomcat 3.2.1. Here is the question. My application is jarred up into a .war file and deployed under jboss_home/tmp/deploy/Default/... If I include the .jar files this app needs explicitly in the CLASSPATH, then there is an error in another pre-existing app d

Re: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread Tim Yates
Netscape does have _real_ problems rendering multiple tables, and tables with many rows/columns - Original Message - From: Victor Langelo <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 26, 2001 3:49 PM Subject: Re: [JBoss-user] Jive Forums speed feed-back wanted > Marc

RE: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread Alex . Devine
Yes, it seems that all security operations are really slow - not only do I get the same speed problem when hitting reply when not logged in, but actually logging in itself is also very slow for me (~15 seconds). Everything else is extremely fast. |+--

[JBoss-user] Auto Incrementing Primary Key with PostgreSQL and JBoss

2001-07-26 Thread Federico Vesco
Hi! I have the following problem. I create the following table (with PostgreSQL) : CREATE TABLE "project" ( "idproject" SERIAL, "projectName" varchar(64), "budget" int4, "start" date, "end" date, CONSTRAINT "project_pkey" PRIMARY KEY ("idproject") ); In this way the primary k

Re: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread Victor Langelo
Marc, I'm using Netscape Communicator 4.76 on a 330 MHz Window NT machine with a high speed connection. Every topic list page takes about 5-6 seconds to display. Even with only 15 topics in the list. Other pages take 2-3 seconds. I have tried with IE and the pages draw much faster. However, I use

[JBoss-user] Auto-increment(revisited) : read on jGuru.

2001-07-26 Thread Hermann RANGAMANA
Hi all,   while we all in this list have debated about the best way to have an Autoincrement-like feature in our EJB (using AutoNumber bean, using a singleton session bean to retrieve the newly created id in the db, etc.), i've just came through a text at jGuru - in FAQ section about EJB - ab

RE: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread marc fleury
could it be a browser issue??? hm that needs to be more clearly documented   threads having new messages since your last visit is simply implemented on the client by making the title include a number of posts as   my post [2]   this way the browser will interpret it as a new link and

Re: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread Tim Yates
I have to agree with this...clicking "reply" when you are not logged in takes ages to come up with a login screen...(about 20 seconds) IE 5.5 2 meg pipe > Hello, > > One slow case: > - when: a few seconds ago > - not yet logged > - selected a message ("Will JBoss support RMI-IOOP? ") > - hit ">>

[JBoss-user] Can't find TopicConnectionFactory

2001-07-26 Thread Stephen Grant
I'm getting this when trying to connect to JBossmq when trying to build the MessageDrivenBean example in the documentation: javax.naming.NameNotFoundException: TopicConnectionFactory not bound at org.jnp.server.NamingServer_Stub.lookup(Unknown Source) at org.jnp.interfaces.NamingC

RE: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread marc fleury
that sounds like a security issue, the security check might be very slow for non-logged in persons marcf |-Original Message- |From: [EMAIL PROTECTED] |[mailto:[EMAIL PROTECTED]]On Behalf Of Sacha |Labourey |Sent: Thursday, July 26, 2001 9:11 AM |To: [EMAIL PROTECTED] |Cc: Matt Tucker; [E

Re: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread jK.MkIII
Sacha Labourey wrote: Hello, One slow case:     - when: a few seconds ago     - not yet logged     - selected a message ("Will JBoss support RMI-IOOP? ")     - hit ">> Reply"     - and wait.     - wait...     - hit once again... idem...     - hit another button

[JBoss-user] Config of connection Pool for Postgres

2001-07-26 Thread Jaime Gomez
Hi people, i need to know how setup the max, min and increase of connection for postgres, i suposse that: the propertie "MaxSize" setup the max size of connection the propertie "MinSize" setup the min size of connection but i don't have idea about how setup the increase here send part of my se

RE: [JBoss-user] Starting JBoss in debug mode

2001-07-26 Thread Maraya Michael
Try this: java -classic -Dtomcat.home=$TOMCAT_HOME -Xdebug -Xnoagent -Djava.compiler=NONE -classpath $JBOSS_CLASSPATH -Xrunjdwp:transport=dt_socket,server=y,address=12999,suspend=n org.jboss.Main tomcat $@ Change the address value to the port you require.

AW: AW: [JBoss-user] how to configure jboss for mysql and tomcat

2001-07-26 Thread Scheil, Sven
i've ant 1.3 installed and using a build.xml file downloaded yesterday from the jboss docu pages. i don't know anything about ant, so any help would be appreciated. sven > -Ursprüngliche Nachricht- > Von: Nicolai P Guba [mailto:[EMAIL PROTECTED]] > Gesendet am: Donnerstag, 26. Juli 200

RE: [JBoss-user] how to configure jboss for mysql and tomcat

2001-07-26 Thread Alex Radka
>Do I understand you right: I have to delete my old Installation of Tomcat >and instead of this I have to Install Jboss with Tomcat integration . Then >do the integration of Apache and Jboss-Tomcat as if it were the standalone >version of tomcat i'm using. >And there is no way to use my old tomca

Re: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread jK.MkIII
Hi, I am on very big pipe and I noticed couple things.. With IE 6.00 everything is very fast (don't need any faster if want to see where I am clicking) With Netscape 4.75 things are worse. Everytime I go to thread (1-2 seconds), and then come back it takes several (~5) secods. But I don't mind be

Re: [JBoss-user] problem with oracle Clob column.

2001-07-26 Thread David Jencks
In addition, I suggest _NOT_ calling setAutocommit on connections obtained from the pool. For connections under transaction manager control, you _ALWAYS_ want autocommit false... or the transaction manager has nothing to manage. david jencks On 2001.07.26 08:16:35 -0400 [EMAIL PROTECTED] wrote:

Re: AW: [JBoss-user] how to configure jboss for mysql and tomcat

2001-07-26 Thread Nicolai P Guba
On 26 Jul 2001 13:40:56 +0200, Scheil, Sven wrote: > the jaws example works fine (after minor changes in the jaws.xml), but the > clients of the cd example don't work: > > compiling/running the client apps produces this error: > >ant cmp-cd-upload > ... > main:

RE: [JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread Sacha Labourey
Hello, One slow case: - when: a few seconds ago - not yet logged - selected a message ("Will JBoss support RMI-IOOP? ") - hit ">> Reply" - and wait. - wait... - hit once again... idem... - hit another button (">> login/register")

[JBoss-user] Jive Forums speed feed-back wanted

2001-07-26 Thread marc fleury
Ok, moving the forums is a necessity and will benefit the project in the long run. However before we do so I would like to get precise feedback on performance. It is not a machine problem as the load from the logs never goes above 0.1 and there on average 80%-90% cpu free. For me the stuff is b

[JBoss-user] Setting Max client connections in Jboss?

2001-07-26 Thread Rajesh Vilasrao Bhujbal
Apache web server supports process per connection for serving request where one process in the server is used to service one request. The parameter MaxClients specifies the maximum number of simultaneous requests that Apache can process. Do we have analogous in Jboss? I.e - .where do I

AW: AW: [JBoss-user] JBOSS-ZOAP: questions on its features

2001-07-26 Thread Jung , Dr. Christoph
If I interpret the recent undertakings towards rabbit hole right, Apache-SOAP is already used as a JMXAdaptor ... and JMX will be the bus to do application invocations, too. I´m just wondering how this is going to be integrated with application-specific transformation and mapping rules ... that

Re: [JBoss-user] problem with oracle Clob column.

2001-07-26 Thread jtoledo
It Works . thanks Tim and Radu-Gabriel for your very good response. - Original Message - From: "Tim Yates" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Thursday, July 26, 2001 12:33 PM Subject: Re: [JBoss-user] problem with oracle Clob column. I know I have to do this (with JBoss

AW: [JBoss-user] how to configure jboss for mysql and tomcat

2001-07-26 Thread Scheil, Sven
hello! > > >how to configure jboss for mysql > > Prety sure this is all in the doc somewhere so check there > for details but > he highlights are [...] sorry for that question. after reading in the documentation the part about the sense of jboss.jcml and jboss-auto.jcml a 2nd time i get it wo

[JBoss-user] InvocationTargetException in JAWS

2001-07-26 Thread Nicolai P Guba
Help please! I have a nasty problem with JAWS. We are doing some testing with JBoss and are importing data with 60,000 records. A bit later we connect a client (about 40,000 records imported at this stage) to display the full listing of the currently imported records. The log shows the followi

Re: [JBoss-user] Problem with connecting to an Oracle database

2001-07-26 Thread Tim Yates
have you tried: DataSource ds = (javax.sql.DataSource)initCtx.lookup("java:/OracleDB"); Tim. - Original Message - From: Eli Gjørven <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 23, 2001 11:00 AM Subject: [JBoss-user] Problem with connecting to an Oracle database > >

Re: [JBoss-user] problem with oracle Clob column.

2001-07-26 Thread Tim Yates
I know I have to do this (with JBoss 2.1...) public static OracleResultSet getOracleResultSet( ResultSet r ) { ResultSet rslt = ((org.jboss.minerva.jdbc.ResultSetInPool)r).getUnderlyingResultSet() ; return ((OracleResultSet)rslt) ; } I know that : org.jboss.minerva.jdbc.ResultSe

Re: AW: [JBoss-user] JBOSS-ZOAP: questions on its features

2001-07-26 Thread Max Krainov
Hello! Recently (26.07.2001 14:11) you wrote: JDC> please note that JBOSS-ZOAP is not longer supported ... Hm... And what is it substituted with? Apache SOAP or what? -- Max Krainov Alphanet International R. ___ JBoss-user mailing list [EMAIL PROTECT

Re: [JBoss-user] problem with oracle Clob column.

2001-07-26 Thread Radu-Gabriel Pantazi
Hi. The problem is that JBoss is using pool to store the result sets and wraps all result sets in this ResultSetInPool... That's when you are using Minerva only because Minerva does that actually this caching... The solution to this problem is the following : OracleResultSet oracleResultSet; i

[JBoss-user] Tibco Rendezvous

2001-07-26 Thread Guido . Kracke
Hi, I wrote an MBean (org.jboss.util.ServiceBMeanSupport) dedicated to accepting Tibco Rendezvous text messages and sending them to JMS. Outside of jBoss the bean works perfectly alright (The main method calls the startService method and blocks). It connects to the Rendezvous daemon within part

Re: [JBoss-user] Using OpenJMS as the JMS Provider

2001-07-26 Thread Peter Antman
On 26 Jul, Minh Yie wrote: > Hi List, > > I was wondering if someone has implemented openjms as > the jms provider for jboss? If so, could someone point > out where I can find it ? Apologies if this has > already been mentioned but I have searched the mailing > lists and could not find a refere

[JBoss-user] problem with oracle Clob column.

2001-07-26 Thread jtoledo
hello jboss users. I want to write inside a Clob column in a oracle database. And I have problems with it. My code is this: --- . . import oracle.sql.*; import oracle.jdbc.driver.*; . . con.setAutoCommit (false); Statement stmt = con.createStatement (); /

RE: RE: [JBoss-user] EJB as a CORBA client

2001-07-26 Thread Sternagel Annegret (PN-SYS/DAS)
Hi Marcelo, we are using sun jdk 1.3.0 and jboss 2.1 and the jacorb implementation. The problems with the CLASSPATH have been with the ORBACUS ORB and the workaround was to set the ORBACUS classes at the beginning of the CLASSPATH. Now with jacorb I have only the needed references for jboss (jbdc

Re: [JBoss-user] Force create of table after manual drop?

2001-07-26 Thread Nicolai P Guba
On 25 Jul 2001 22:28:54 -0700, David M. Karr wrote: > In JBoss 2.2.2, using MySQL, I had a sample application, and it had created a > table. I manually dropped the table, now I'm trying to figure out how to get > JBoss to figure out it needs to recreate the table. I've tried various things, > li

[JBoss-user] Starting JBoss in debug mode

2001-07-26 Thread Dragos Haiduc
Hi. Please, could anyone tell me what should i do in order to start JBoss in debug mode? I used -Xdebug option in the JBoss starting command, but obviously I am missing something here(like the port on which it will listen for remote debugging, maybe?!?). Thanx alot, Dragos ___

RE: [JBoss-user] can you explain these verification errors?

2001-07-26 Thread Per Lewau
On Thu, 26 Jul 2001, Paul Austin wrote: > Mike, > > If you look at PromotioBean it does not have the > java.rmi.RemoteException in the throws clause. And so it shouldn't have. As of EJB 1.1 the implementation of the business methods should not raise RemoteException. RemoteException is what th

[JBoss-user] Please help me

2001-07-26 Thread riyaz ahamed
Hai, I am very fond of JBOSS server ie the way it handes Ejb. Please help me I am getting this error when i deploy the Interest session bean in JBOSS. Please not this error comes when ever I deploy the bean [J2EE Deployer Default] Started [Auto deploy] Starting [Auto deploy] Watching D:\JBos

AW: [JBoss-user] JBOSS-ZOAP: questions on its features

2001-07-26 Thread Jung , Dr. Christoph
Hi Jm, please note that JBOSS-ZOAP is not longer supported ... -Ursprüngliche Nachricht- >Von: Jm Seigneur [mailto:[EMAIL PROTECTED]] >Gesendet: Donnerstag, 26. Juli 2001 09:47 >An: [EMAIL PROTECTED] >Betreff: [JBoss-user] JBOSS-ZOAP: questions on its features >Hello, >My question is

Re: [JBoss-user] (no subject)

2001-07-26 Thread Per Lewau
On Wed, 25 Jul 2001, Daniel Haynes wrote: > Hi, > > This may be a dumb question as I am kind of new to JBoss. > The verifier can't seem to find a class used within an EJB, despite the fact > that the ejb jar does contain this class. The jar is sitting in the deploy > directory, and is packaged

RE: [JBoss-user] can you explain these verification errors?

2001-07-26 Thread Paul Austin
Title: RE: [JBoss-user] can you explain these verification errors? Mike, If you look at PromotioBean it does not have the java.rmi.RemoteException in the throws clause. Paul -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Mike Williams Sent:

[JBoss-user] Using OpenJMS as the JMS Provider

2001-07-26 Thread Minh Yie
Hi List, I was wondering if someone has implemented openjms as the jms provider for jboss? If so, could someone point out where I can find it ? Apologies if this has already been mentioned but I have searched the mailing lists and could not find a reference to this. Thanks in advance, Minh Ka

  1   2   >