[JBoss-user] jboss-app DTD

2003-01-29 Thread Burkhard Vogel
Hi, I have an application consiting out of tenorso jars and two sars. There is only one way to get them deployed correctly, as in a special order. I would like to set the whole lot up in an ear and use tha jboss-app.xml to define dependencies. Unfortunately I cannot seem to find the DTD nor any

Re: [JBoss-user] (OT): MS SQL Server JDBC Driver

2003-01-20 Thread Burkhard Vogel
Hi, we both use Sprinta2000 and the original (free) JDBC Driver from Micro$oft. (Sorry no URL for sprinta at hand, but it can easily be googled and the link for the M$ dirver was last time I checked

Re: [JBoss-user] how to produce pdf files like jboss gettingstarted guide?

2002-11-29 Thread Burkhard Vogel
Hi, got one more (and thats in Java...): iText from Bruno Lowagie (who actually has been on this list some time). Grab it from www.lowagie.com/text (AFAIK). Regards, Burkhard - Original Message - From: Marius Kotsbak [EMAIL PROTECTED] To: Jboss-user [EMAIL PROTECTED] Sent: Thursday,

Re: [JBoss-user] about catalina starting in JBoss

2002-09-13 Thread Burkhard Vogel
Hi, there is simply nothing deployed to the root context. Deploy yourstuff.war and access it at localhost:8080/yourstuff/ hth, Burkhard - Original Message - From: song chen [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, September 12, 2002 3:35 AM Subject: [JBoss-user] about

Re: [JBoss-user] CMT -- Connection issue Jboss 3.0

2002-08-27 Thread Burkhard Vogel
Hi, can you show some code, what exactly you are doing in and around db=dobj.getDatabase()!!! I get the feeling you are doing something teribly wrong here. Noone so far has ever talked about Database objects... Regards, Burkhard - Original Message - From: Arijit Ghosh [EMAIL PROTECTED]

Re: [JBoss-user] BMT/CMT Re : Connection Pooling Jboss 3.0

2002-08-21 Thread Burkhard Vogel
- Argentina --- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Burkhard Vogel Sent: Friday, August 16, 2002 4:14 PM To: Arijit Ghosh; JBoss-User Subject: [JBoss-user] Re

Re: [JBoss-user] Re: Connection pooling Jboss 3.0

2002-08-18 Thread Burkhard Vogel
Aires - Argentina --- -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]]On Behalf Of Burkhard Vogel Sent: Friday, August 16, 2002 4:14 PM To: Arijit Ghosh; JBoss-User Subject: [JBoss-user] Re: Connection

[JBoss-user] Re: Connection pooling Jboss 3.0

2002-08-16 Thread Burkhard Vogel
Hi, Sure you need a con.close()!!! This will only return the con to the pool. (And finish the transaction...) Or what is db.close() supposed to mean? hth, Burkhard P.S. Do NOT contact me directly I will answer in the mailinglist only! B. - Original Message - From: Arijit Ghosh [EMAIL

Re: [JBoss-user] JBoss 2.4.x+Tomcat 4.0.x, Oracle 9i: Connection pool exhaustion

2002-08-16 Thread Burkhard Vogel
Hi, generally exhausted connection pools are a sign for unclosed connections. We once had a very hard time to track down where they got lost, but after remodeling so every connection/preparedStatment/resultSet is closed in a finally block we hadn't had any further problems. It's 99% application

Re: [JBoss-user] configuring ip address in jboss3.0.1-jetty

2002-08-15 Thread Burkhard Vogel
Hi, in sf.net??? obviously?? It was release two or three days ago. hth, Burkhard - Original Message - From: Emerson Cargnin - SICREDI Serviços [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 15, 2002 8:41 AM Subject: Re: [JBoss-user] configuring ip address in

Re: [JBoss-user] Connection Pooling Jboss 3.0

2002-08-14 Thread Burkhard Vogel
Hi, this usually happens if you don't properly close your connections. suggested is to use a try { } catch() {} finally { if( rs != null ) rs.close(); if ( prepStmt != null ) prepStmt.close(); if(con != null) con.close(); } hth, Burkhard - Original Message - From: Arijit Ghosh [EMAIL

[JBoss-user] JBossTest

2002-08-14 Thread Burkhard Vogel
Hi, will there be a JBossTest 3.0 release? Regards, Burkhard --- This sf.net email is sponsored by: Dice - The leading online job board for high-tech professionals. Search and apply for tech jobs today!

Re: Jetty versus Tomcat (Re: [JBoss-user] JBoss 3.0.1 + Tomcat Release?)

2002-08-13 Thread Burkhard Vogel
Hi, which is better: coffee or tea? Acapulco or Cancun? AFAIK there never has been a real breakdown on which works better, finally both use Jasper as JSP-Engine, so thats were all boils down the same, and the rest deffinatly is application dependent. Make your choice... Jetty is better integrated

Re: [JBoss-user] Help me ClassNotFoundException: org.jboss.proxy.ClientContainer

2002-08-10 Thread Burkhard Vogel
Hi, you DON'T need any client libs in the server classpath - they are for clients! When exactly happens this error, what platform, what JDK? Better use JBoss 3.0.1 distro. Regards, Burkhard - Original Message - From: Niket Anand [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August

Re: [JBoss-user] SAR deployement

2002-08-10 Thread Burkhard Vogel
Hmmm, For a start put the mysql jar from the META-INF dir to the root dir of the sar... Otherwise make sure that the sat deploys correctly and start with a simplistic test case to check whether the datasource is working properly. Go ahead from there... hth, Burkhard - Original Message -

Re: [JBoss-user] Mapping Configuration Error

2002-08-10 Thread Burkhard Vogel
Hi, the latter... NOTHING of either webapps or server.xml is used. hth, Burkhard - Original Message - From: scott ditzenberger [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, August 10, 2002 2:33 AM Subject: Re: [JBoss-user] Mapping Configuration Error That's much better.

Re: [JBoss-user] ClusteredHttpSession Question

2002-08-10 Thread Burkhard Vogel
Hi, by taking down do you mean Ctrl-C the one instance? There has been an issue which caused the un- and re-deployment o fwars if one server is shutdown gracefully. Try hard killing (kill -KILL pid). But only a guess... Regards, Burkhard - Original Message - From: Greg Turner [EMAIL

Re: [JBoss-user] Did login-config.xml changed in 3.0.1 version????

2002-08-10 Thread Burkhard Vogel
Hi, but this is actually an issue... As to deploy security domains (e.g. for databases), there needs to be entry in login-config.xml. As I tried to figure out a setup for hosting purpose, where users may deploy apps and servers in their own deploy dir. I'm facing problems how to handle changes to

Re: [JBoss-user] Undeclared Throwable Exception

2002-08-08 Thread Burkhard Vogel
Hi, just to clarify - you are on JDK 1.4.x? Does this happen on JDK 1.3.x as well? Regards, Burkhard - Original Message - From: Arijit Ghosh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 08, 2002 11:07 PM Subject: [JBoss-user] Undeclared Throwable Exception Hi,

Re: [JBoss-user] MSSQLDS and JBoss 3.0

2002-08-08 Thread Burkhard Vogel
Hi, the java:/ context in only visible within the same JVM. You will not be able to lookup datasources from a client and you are better not meant to do this. hth, Burkhard - Original Message - From: Jamie Burns [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, August 08, 2002 4:15

Re: [JBoss-user] SAR file with DB, EAR and MBean

2002-08-02 Thread Burkhard Vogel
Hi, if you are on JDK 1.4.x the PortableRemoteObject.narrow() is causing the exception as it seems to have a bug. hth, Burkhard - Original Message - From: David Jencks [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, August 02, 2002 6:58 AM Subject: Re: [JBoss-user] SAR file with DB,

Re: [JBoss-user] RE: Database queries

2002-07-31 Thread Burkhard Vogel
Hi, we came accross a comarable issue and stuffed all queries into a dbtable. Using CMP for this and using the driver meta-data to track down the manufacture left use with a simpe call of getQuery(String UniqueQueryName) which retrieved any apropriate querystring. Just a thought. Burkhard -

Re: [JBoss-user] Unpack WAR option w/ Tomcat

2002-07-30 Thread Burkhard Vogel
Yep, this has been around a thousand times... The easiest way is to simply extract your war into the server/default/deploy/ dir. If you made changes simply touch the deployment descriptor and JBoss will redeploy hth, Burkhard - Original Message - From: Brian Topping [EMAIL PROTECTED] To:

[JBoss-user] Tx Error: XAER_NOTA

2002-07-27 Thread Burkhard Vogel
Hi, we are having a problem with a really old application we had to switch databases. It runs on JBoss 2.2.2 (whooo) and does its job perfectly. However a change of DB from M$ SQL to Oracle suddendly produces errors like these: 26.07.2002 00.37 [Timer] XAException: tx=XidImpl [FormatId=257,

Re: [JBoss-user] CD collection example: failed to load jboss.xml.

2002-07-06 Thread Burkhard Vogel
Hi, as of JBoss 3. empty tags are treated as empty = null... remove the two empty configuration-name/configuration-name tags and you should be happy... hth, Burkhard - Original Message - From: Pablo Pita Leira [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, July 06,

Re: [JBoss-user] jboss / javaservice / NT 4.0

2002-07-05 Thread Burkhard Vogel
Hi, I'm using javants.exe works a treat... I use this as JBoss_Tomcat.properties: application.parameters=tomcat jvm.parameters=-Djavax.xml.parsers.DocumentBuilderFactory=org.apache.crimson .jaxp.DocumentBuilderFactoryImpl -Djavax.xml.parsers.SAXParserFactory=org.ap

Re: [JBoss-user] Generic settings question

2002-07-05 Thread Burkhard Vogel
Hi, stop the hassle and go for the DB right away, there are two included in the JBoss distro: InstantDB and Hypersonic. You will save double work, at get a solution which will be portable on any App-Server... regards, Burkhard - Original Message - From: LaBanca, Rick [EMAIL PROTECTED] To:

Re: [JBoss-user] Setting up an MSSQL datasource on JBoss3

2002-07-05 Thread Burkhard Vogel
Hi, AFAIK this is the way to do it, creating a lib/ext and tempering with startup scripts seems more prole ;-) than that. Especially in clustered environments you'll most likely run into problems not using the deploy approach. As for the setup problem - can you check wether there is a MSSQLDS

Re: [JBoss-user] help

2002-07-04 Thread Burkhard Vogel
Hi, on default there is no root context deployed check the startup log for deployed applications and test with these. hth, Burkhard - Original Message - From: Paul Hsu [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, July 02, 2002 8:49 PM Subject: [JBoss-user] help Hi, I have a

Re: [JBoss-user] is coding a bean truly independent from deployment?

2002-07-02 Thread Burkhard Vogel
Hi, AFAIK there is no such thing as a bean deployer as a person with decisions to make. You on your own decide witch transactions etc you want by generating the ejb-jar.xml. The only deployer I know is a software tool for lame app-servers without a nifty super-easy drag'n'drop hotdeploy easeofuse

Re: [JBoss-user] ClassCastException

2002-07-02 Thread Burkhard Vogel
than wihtin JBoss. I've never found a solution. frank -Original Message- From: Burkhard Vogel [mailto:[EMAIL PROTECTED]] Sent: Monday, July 01, 2002 9:37 AM To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] ClassCastException Hi, I'm guessing you are on JDK 1.4 and you hit a JDK

Re: [JBoss-user] ClassCastException

2002-07-01 Thread Burkhard Vogel
Hi, I'm guessing you are on JDK 1.4 and you hit a JDK bug. Try usersys = (UserSysMatch) key; hth, Burkhard - Original Message - From: Conover, Ryan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, July 01, 2002 8:51 AM Subject: [JBoss-user] ClassCastException I am using

Re: [JBoss-user] How to specify database name in jboss.jcml file

2002-06-27 Thread Burkhard Vogel
Hi, furthermore you really should map then your DBPool to a resource in jboss.xml: resource-managers resource-manager res-class=org.jboss.ejb.deployment.JDBCResource res-namejdbc/whateverresourcename/res-name res-jndi-namejava:/usersDB/res-jndi-name

Re: [JBoss-user] sun JDBC Driver doesn't support finder methods.

2002-06-27 Thread Burkhard Vogel
Hi, as far as I understand the mail, he uses M$ SQL Server 2000, mySQL came in for verifying issues, but for the M$ SQL: NEVER EVER touch the sun JDBC-ODBC bridge if you can avoid it: http://msdn.microsoft.com/downloads/default.asp?URL=/downloads/sample.asp?ur

Re: [JBoss-user] Configuring Database name in Jboss-2.4.4

2002-06-27 Thread Burkhard Vogel
Hi, see jaws.xml section of the free volunteer docs... Regards, Burkhard - Original Message - From: Tejeshwar [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 27, 2002 9:29 AM Subject: [JBoss-user] Configuring Database name in Jboss-2.4.4 Hi I had configured MS Sql Server

Re: [JBoss-user] Forums Question

2002-06-20 Thread Burkhard Vogel
Hi, I won't EVER use the forums, as here in Ecuador online time is payed in gold. I'm still waiting for the nntp support to be fixed... Then this mailinglist may finally die! Regards, Burkhard - Original Message - From: Qingxian Wang [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday,

Re: [JBoss-user] Finding DataSource using jboss.xml aliasing

2002-06-18 Thread Burkhard Vogel
Hi, try using the admin on your server:8082 to check wether your resource mapping really worked, under naming look for JNDI-View hth, Burkhard - Original Message - From: Emerson Cargnin - MSA [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, June 17, 2002 2:05 PM Subject: Re:

Re: [JBoss-user] Auto increment primary key

2002-06-18 Thread Burkhard Vogel
Hi, you will need BMP and it will in no way be portable to other databases. Regards, Burkhard - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, June 18, 2002 10:06 AM Subject: Re: [JBoss-user] Auto increment primary key Check chapter 5 on EJB Design

Re: [JBoss-user] JBoss crash upon j_security_check. Please HELP!

2002-06-16 Thread Burkhard Vogel
Hi, runs fine with me, which version are you on? Regards Burkhard - Original Message - From: Shamis, Leonid [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 12, 2002 9:29 PM Subject: [JBoss-user] JBoss crash upon j_security_check. Please HELP! Hello, I experience the

Re: [JBoss-user] Re: users.properties

2002-06-16 Thread Burkhard Vogel
Hi, would you mind to share your solution so others with comparable problems can use the mail-archieve to fix their issues? Regards, Burkhard - Original Message - From: Chan Chee Siong [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 12, 2002 1:10 AM Subject: Re: [JBoss-user]

Re: [JBoss-user] Deploying web component

2002-06-16 Thread Burkhard Vogel
Hi, well there is some good and some bad about everything First you CANNOT use anything from the JBoss/Tomcat stack without deploying it, which - as you correctly pointed out - could be a war as wall as a ear or even a directory structure resembling a war or ear (e.g. /deploy/mywar.war/

Re: [JBoss-user] EJB finder with order by and empty where clause generates incorrect SQL

2002-06-16 Thread Burkhard Vogel
Hi, AFAIK, a query/query means query = empty (!=null) try findernamefindByAll/nameordername/order/finder hth Burkhard - Original Message - From: Peter Doornbosch [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 13, 2002 3:54 AM Subject: [JBoss-user] EJB finder with order by

Re: [JBoss-user] DB2 (jdbc driver/server) connection lost client IP after some time

2002-06-16 Thread Burkhard Vogel
Hi, this usually occurs if a connection was closed from the DB2 side due to a timeout. Try setting the connection timeout in your pool definition below the one from your DB2 database. Regards, Burkhard - Original Message - From: Claudio Miranda [EMAIL PROTECTED] To: [EMAIL PROTECTED]

Re: [JBoss-user] JBoss 2.4.4-Tomcat 4.0.1, MySQL, EJB Questions

2002-06-16 Thread Burkhard Vogel
- Original Message - From: silyeek Tan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Saturday, June 15, 2002 1:24 AM Subject: [JBoss-user] JBoss 2.4.4-Tomcat 4.0.1, MySQL, EJB Questions 1) may i know is there any GUI deploy tool attach with JBoss 2.4.4 - Tomcat 4.0.1 bundle? If not,

Re: [JBoss-user] 3.0 a moving target?

2002-06-14 Thread Burkhard Vogel
Hi, JDBC-access has changed, see the provided examples. As for portableremoteobject.narrow: if you are on JDK 1.4, this is a known sun bug. Regards, Burkhard - Original Message - From: Eric Kaplan [EMAIL PROTECTED] To: Jboss-User [EMAIL PROTECTED] Sent: Friday, June 14, 2002 10:22 AM

Re: [JBoss-user] Deploying a JSP on Jboss 2.4.4./Tomcat 4.0 and Apache

2002-06-12 Thread Burkhard Vogel
Hi, surely you need to. Anything that should run on the integrated JBoss/Tomcat stack needs to be packed as war (or in a dir-structure named foo.war/) and as any war it needs a WEB-INF/web.xml (and sometimes also a jboss-web.xml). The tomcat/webapps-dir is NOT used at all. Regards, Burkhard -

Re: [JBoss-user] How to run Tomact in JBoss.4.4.4

2002-06-11 Thread Burkhard Vogel
Hi, I guess there are perfect reasons to run any version of JBoss - no reason to push anyone into using anything. As for your question: You start JBoss with integrated Tomcat by the run_with_tomcat script from $JBOSS_HOME/bin the onfiguration of the server stack is picked from the /conf/tomcat

Re: Re[2]: [JBoss-user] CD Subscription Update

2002-06-11 Thread Burkhard Vogel
Nope - Xdoclet Regards, Burkhard - Original Message - From: Brendan Lawlor [EMAIL PROTECTED] To: Alex Loubyansky [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, June 11, 2002 4:33 AM Subject: RE: Re[2]: [JBoss-user] CD Subscription Update Goodness! I didn't even know it was

Re: [JBoss-user] Apache Tomcat/4.0 - Http Status 404

2002-06-09 Thread Burkhard Vogel
Hi, its recommended to use apache for static content and redirect jsp to be handled by tomcat, otherwise you may use a directory called yourwebappname.war/ below which you can put content and all you need to do is to touch the WEB_INF/web.xml for your changes to take effect. And - yes - you have

Re: [JBoss-user] org.jboss.util.NestedSQLException: failed to register driver

2002-06-09 Thread Burkhard Vogel
Hi, I'd suggest you put your driver jar into $JBOSS_HOME/lib/ext. Regards, Burkhard - Original Message - From: Jim [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, June 06, 2002 1:38 PM Subject: [JBoss-user] org.jboss.util.NestedSQLException: failed to register driver I have one

Re: [JBoss-user] Apache Tomcat/4.0 - Http Status 404

2002-06-09 Thread Burkhard Vogel
Hi, seeing the number of times this comes up, this should really go into the QuickStartGuide (if its not in there, haven't read...). So a RTFM should do with this type of questions one for all (Or should it be RTFQSG?) Regards, Burkhard - Original Message - From: David Jencks [EMAIL

Re: [JBoss-user] Connection waiting...

2002-06-07 Thread Burkhard Vogel
Hi, Give us some stack/log... Regards, Burkhard - Original Message - From: Oskars kutns [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, June 07, 2002 9:06 AM Subject: [JBoss-user] Connection waiting... Hi There is one problem with my JBoss running on Windows 2000: After some

Re: [JBoss-user] How to shutdown JNT nt service gracefully?

2002-06-06 Thread Burkhard Vogel
Jep, use org.jboss.Shutdown (please verify spelling...) Regards, Burkhard - Original Message - From: Steve Knight [EMAIL PROTECTED] To: jboss List [EMAIL PROTECTED] Sent: Wednesday, June 05, 2002 10:02 AM Subject: [JBoss-user] How to shutdown JNT nt service gracefully? Hello, I am using

Re: [JBoss-user] Running two instances of JBoss-2.4.4_Tomcat-4.0.1 on the same box

2002-06-06 Thread Burkhard Vogel
Hi, there is a hint in the free-docs on the web. This port is the RMI port, which can be set in the naming section of jboss.jcml: mbean code=org.jboss.naming.NamingService name=DefaultDomain:service=Naming attribute name=Port11099/attribute attribute name=RmiPort1/attribute

Re: [JBoss-user] Apache Tomcat/4.0.3 - HTTP Status 500 - No Context configured to process this request

2002-06-06 Thread Burkhard Vogel
Hi, very simply there is nothing bound to the root context. As default there is (AFAIK) only something at /jboss/ , but to make sure check the server.log which gives anything deploy as web-application. hth, Burkhard - Original Message - From: Fred Burke [EMAIL PROTECTED] To: [EMAIL

Re: [JBoss-user] Four more to go ... @ JDJ Best App Server

2002-06-06 Thread Burkhard Vogel
Hi, even more I wonder why JBoss wasn't nomineed for Categories like Most inventive java product which it definitively is... Ever noticed that there is an Oracle product in EVERY fucking category??? I get the slight impression that Oracle has some money in this poll. BTW, voted 4 times...

Re: [JBoss-user] JBoss 3.0 directory structure

2002-06-06 Thread Burkhard Vogel
Hi, it depends on the server start command you use. You can add a --configuration conf-dir-that-will-be-used as run.sh/bat parameter. Per default the default conf is used. hth Burkhard - Original Message - From: Ryan Marsh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, June 05,

Re: [JBoss-user] JMX R/I Agent View

2002-06-06 Thread Burkhard Vogel
Hi, in 2.4.3 there was a beanpoolmonitor thingy (can't remember exactly) which gave you the state of the ejb-pools through a external program from the admin section (but neither do I know whether it still exists, nor how it exactly worked, but it wasn't hard to figure out). As for the database

Re: [JBoss-user] How to configure

2002-06-04 Thread Burkhard Vogel
Hi, RTFM... 1. Drop MySQL Driver into lib/ext 2. Add the org.gjt.mm.mysql.Driver to the mbean code=org.jboss.jdbc.JdbcProvider name=DefaultDomain:service=JdbcProvider sectiion of jboss.jcml (the one in the conf you are using conf/default if you just issue a run or conf/jetty or conf/tomcat if

Re: [JBoss-user] JBoss 3.0.0 Release Available

2002-05-31 Thread Burkhard Vogel
Now that's good news, but shouldn't there be some more emotion envolved? Like popping open some champagne bottles, having thick cigars and weeks of hols on the Bahamas??? Anyway, congratulations and lets see the first success stories ... we have 50 JBoss machines clustered serving zillions of

Re: [JBoss-user] best way to access db

2002-05-28 Thread Burkhard Vogel
Hi, the key part you should have a look at is the jboss-pool. It provides connection pooling of database connections, which are costy to instanciate at first, the reuse and the caching of stored procedures makes (at least where I use this) my applications significantly faster. If you need MANY

Re: [JBoss-user] The method return values in the home interface must be of valid t ypes for RMI/IIOP

2002-05-24 Thread Burkhard Vogel
Well, are you using primitives in OrgMgr? It seems that anything in your interfaces of OrgMgr is not a valid RMI/IIOP type. Regards, Burkhard - Original Message - From: Mahesh Agarwal [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Wednesday, May 22, 2002 3:09 PM

Re: [JBoss-user] XML Object persistence

2002-05-21 Thread Burkhard Vogel
Hi, I guess you are using CMP, and moreover I guess you are on JBoss3... (Your OS and JDK I can't really guess). So what you can do is modify the JDBC-mapping to store your java.lang.Object/String/whatever to a specific database type (Is there a xml-type in Oracle??) On the other hand, if you are

Re: [JBoss-user] jboss 3 unpacked webapps

2002-05-21 Thread Burkhard Vogel
Hi, I guess this has been on this list 1000 times... create a directory named $JBOSS_HOME/server/default/deploy/your-application.ear and lay out your application as it would in the ear... Regards, Burkhard - Original Message - From: jelmer [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent:

Re: [JBoss-user] Application EJB to JBoss in SourceForge

2002-05-16 Thread Burkhard Vogel
its called xdoclet: www.sf.net/projects/xdoclet Regards, Burkhard - Original Message - From: jaime1 [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 16, 2002 9:23 AM Subject: [JBoss-user] Application EJB to JBoss in SourceForge People Recently anybody commented about an

Re: [JBoss-user] how to run JSPs in JBoss

2002-05-14 Thread Burkhard Vogel
Hi, Use any of the available embedded versions of JBoss (2.4.5+Tomcat, 2.4.5+Jetty, 3.0(which uses Jetty), 3.0+Tomcat), start them with the run_with_xxx.sh/bat script from the bin dir. Drop your web application in the deploy dir, access your app at http://localhost:8080/your-war--name-here/ or

Re: [JBoss-user] how to run JSPs in JBoss

2002-05-14 Thread Burkhard Vogel
to code jsp pages. Regards, Burkhard - Original Message - From: Yelamanchilli RamaKishore [EMAIL PROTECTED] To: Burkhard Vogel [EMAIL PROTECTED] Cc: [EMAIL PROTECTED] Sent: Tuesday, May 14, 2002 1:26 PM Subject: Re: [JBoss-user] how to run JSPs in JBoss Thanks for the response. I still don't

Re: [JBoss-user] reading a file inside an EJB

2002-05-12 Thread Burkhard Vogel
Hi, I know this is messy but I ended up substituting the blablalba DTD part with the contents of the DTD. That is, I read the DTD, Read the XML did the substitution and parsed the lot. Regards, Burkhard code fragment: start = _XML.indexOf(SYSTEM); end =

Re: [JBoss-user] JBoss 3.0 Branch 3_0 cvs HEAD not building

2002-05-10 Thread Burkhard Vogel
Hi (taking the developers from the list...), looks like you are missing the jmx runtime jar. Mine is called jmxri.jar. Try finding it... Regards, Burkhard - Original Message - From: Stephen Davidson [EMAIL PROTECTED] To: [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Friday, May 10, 2002

Re: [JBoss-user] Exclusive locking of CMP in JBoss 3?

2002-05-06 Thread Burkhard Vogel
Hi, see http://www.jboss.org/online-manual/HTML/ch07s16.html Regards, Burkhard - Original Message - From: James Higginbotham [EMAIL PROTECTED] To: Burkhard Vogel [EMAIL PROTECTED]; [EMAIL PROTECTED] Sent: Monday, May 06, 2002 8:41 AM Subject: RE: [JBoss-user] Exclusive locking of CMP

Re: [JBoss-user] Exclusive locking of CMP in JBoss 3?

2002-05-05 Thread Burkhard Vogel
Hi, there used to be a locking as part of the container configuartion, which menas you have to define your own container configuration, which you than can assign to your bean in the jboss.xml. Look for the line: locking-policyorg.jboss.ejb.plugins.lock.QueuedPessimisticEJBLock/locking -policy

Re: [JBoss-user] MBean Timer method; boolean isActive()

2002-05-03 Thread Burkhard Vogel
Hi, better still return a java.lang.Boolean which is an Object type and should work. Regards, Burkhard - Original Message - From: Paul McLachlan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 02, 2002 10:37 PM Subject: [JBoss-user] MBean Timer method; boolean isActive() Hi

Re: [JBoss-user] Jboss Manual from Flashline

2002-05-03 Thread Burkhard Vogel
Hi, the docs are for 2.4.4 and mostly valid for 2.4.5 (AFAIK). There is nothing so far for the 3.0.0 version, as there is much development going on and they will start writing as soon as 3.0 has reached somthing like stablity. (again AFAIK). Regards, Burkhard - Original Message - From:

Re: [JBoss-user] stopping jboss 3.0

2002-05-03 Thread Burkhard Vogel
Hi, you could also use the server:8082 agent and use the domain shutdown to kill the server. Regards, Burkhard - Original Message - From: Kaveh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, May 02, 2002 4:17 PM Subject: [JBoss-user] stopping jboss 3.0 What is the proper way

Re: [JBoss-user] EJB references problem

2002-04-25 Thread Burkhard Vogel
So where can you find your bean if you take a look at JNDI-view on your-server:8082 ? Regards, Burkhard - Original Message - From: Pavel Kolesnikov [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, April 25, 2002 12:37 PM Subject: [JBoss-user] EJB references problem Hello,

Re: [JBoss-user] Still Can't Create a Bean

2002-04-20 Thread Burkhard Vogel
So, restart from scratch... First, you did not change any container configuration - this is distro config? Second, your beans properly show up in JNDI-View? Third,you have transaction-typeContainer/transaction-type in your ejb-jar.xml? Fourth, you are definately missing a commit. You

Re: [JBoss-user] Entity Bean Test Failure

2002-04-17 Thread Burkhard Vogel
Hi. Try Required so the container does a commit after execution of ejbCreate() - This should put the data in the DB. Regards, Burkhard - Original Message - From: Peter Shillan [EMAIL PROTECTED] To: [EMAIL PROTECTED] Cc: Burkhard Vogel [EMAIL PROTECTED] Sent: Wednesday, April 17, 2002 10

Re: [JBoss-user] JNP Timeout?

2002-04-11 Thread Burkhard Vogel
Hi, sounds perfectly reasonably to me. Go ahead, and if there is folk interested in this kinda behavior file it as patch on sourceforge.net. BUT, why the trouble? if you use JBoss3 you'll get failover support for free - just cluster your two servers and you are done. If you need further

Re: [JBoss-user] Jaws -- How can I force Jaws to generate SQL which is SELECT * FROM TEST WHERE name = '%NAME%' ??

2002-04-07 Thread Burkhard Vogel
Hi, I allways thought the finder namefindByNameLike/name queryname LIKE '%{0}%'/query /finder should do it. What is the SQL generated? or is there a stack-trace? Regards, Burkhard - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, April 05, 2002

Re: [JBoss-user] Use of removeNotification in Timer MBean

2002-03-15 Thread Burkhard Vogel
Works for me, bur better try setting: public void stopService() { _lServer.invoke( _lTimer.getObjectName(), removeNotification, new Object[]{ _efdCleanupTimer }, new String[]{

Re: [JBoss-user] Very newbie question

2002-03-14 Thread Burkhard Vogel
AFAIK only serializable Burkhard - Original Message - From: Loïc Lefèvre [EMAIL PROTECTED] To: JBoss User Mailing List [EMAIL PROTECTED] Sent: Thursday, March 14, 2002 9:35 AM Subject: [JBoss-user] Very newbie question Hi everybody, I just would like to know what are the conditions for

Re: [JBoss-user] Development Mailing List

2002-03-13 Thread Burkhard Vogel
Hi, there always has been some info g´regarding debugging in an IDE like JBuilder on the web-site. And you can grab the code through CVS (using the tag of your binary). Then I guess (as I read in one or two postings there is autogenerated code) you need to build the binaries with the provided

Re: [JBoss-user] Configuring JBoss 2.4 with MS SQL Server?

2002-03-13 Thread Burkhard Vogel
Hi, do not use the M$ DataSourceClass, as it does not work in this context. Use attribute name=DataSourceClassorg.jboss.pool.jdbc.xa.wrapper.XADataSourceImpl/attr ibute which works fine for me. Regards, B.Vogel - Original Message - From: JD Brennan [EMAIL PROTECTED] To: JBoss Users

Re: [JBoss-user] Training in France: FORGET IT (En francais only)

2002-03-06 Thread Burkhard Vogel
So... relocate to the middle of these Countries - Danmark... Have fun, try the yoghurt, its great... Burkhard - Original Message - From: marc fleury [EMAIL PROTECTED] To: Jboss-Development@Lists. Sourceforge. Net [EMAIL PROTECTED] Cc: Jboss-User@Lists. Sourceforge. Net [EMAIL PROTECTED]

[JBoss-user] Digital unterschriebene E-Mail von FreeMail / Digitally signed email from FreeMail

2001-08-06 Thread Burkhard . Vogel
(english version see below) Sie erhalten in den naechsten Minuten eine digital unterschriebene E-Mail von einem Freemail-Anwender. Damit Ihr E-Mail-Programm den Ausweis ueberpruefen kann, muss das Root-Zertifikat von WEB.DE installiert sein. Klicken Sie dazu bitte auf:

Re: [JBoss-user] BLOB

2001-07-20 Thread Burkhard Vogel
Hi, the described pattern works on oracle 8.0.x and MS SQL 7 as well. Burkhard - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 19, 2001 7:27 PM Subject: RE: [JBoss-user] BLOB Hi, Well, I wonder if it can work, I could find no way in the jdbc

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

2001-07-20 Thread Burkhard Vogel
Hi, why do you want to use an oracle url for a postgresql DB??? If you can connect with the url you specified: attribute name=URLjdbc:postgresql:acais://localhost:5432/attribute this is fine! what is the exception you get during startup? NPE? do you see your driver is loaded by the JDBC

Re: [JBoss-user] How to get output

2001-07-20 Thread Burkhard Vogel
Hi, after you sent the message set your Servlet into a loop (with timeout) (eg while( NoResponse and NotTimeout) ). Let the Session Bean call a method on the servlet to set response material (e.g. setResponse(String)) and after the response is set let the Session bean change the boolean

Re: [JBoss-user] ejbLoad not called even when commit-option is C

2001-07-20 Thread Burkhard Vogel
. -- From: Burkhard Vogel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Subject: Re: [JBoss-user] ejbLoad not called even when commit-option is C Date: Thu, 19 Jul 2001 15:11:53 +0200 Reply-To: [EMAIL PROTECTED] Hi, commit

Re: [JBoss-user] Problem with postgresql

2001-07-20 Thread Burkhard Vogel
Hi, just think, you are opening your car door and then disable the alarm - the alarm goes off you open a connection, start a transaction, the connection is not in transaction context... Burkhard - Original Message - From: Tomasz Sulej [EMAIL PROTECTED] To: jboss-user [EMAIL PROTECTED]

Re: [JBoss-user] Connection is broken

2001-07-20 Thread Burkhard Vogel
Hi, I think maybe you are pushing hypersonic to hard. Try another DB, like postgresql. Burkhard - Original Message - From: Nicolas Ocquidant [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, July 20, 2001 2:29 PM Subject: [JBoss-user] Connection is broken --already posted on the

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

2001-07-20 Thread Burkhard Vogel
configuration of this same application work in subsecond times on this same box w/ other app servers. So something is still wrong w/ my configuration. -Original Message- From: Burkhard Vogel [mailto:[EMAIL PROTECTED]] Sent: Friday, July 20, 2001 3:44 AM To: [EMAIL PROTECTED] Subject: Re

Re: [JBoss-user] 2.4BETA Oracle JDBC Problem

2001-07-19 Thread Burkhard Vogel
Hi, better not try that, you will run in all sorts of trouble, better just include your oracle driver into the JDBC-Provider section. Burkhard - Original Message - From: Heiko Dittrich [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 19, 2001 12:16 PM Subject: AW: [JBoss-user]

Re: [JBoss-user] Can we do this?

2001-07-19 Thread Burkhard Vogel
Hi, why would you want to do this??? if you want synchronous use direct calls, but (hey, weren't you the one with this load balancing policy???) you can send it to a method in bean-A which has a handle to the user and the method would just send it out?!? (Havn't tried however). Burkhard -

Re: [JBoss-user] cannot call JBoss interest example ejb from another machine

2001-07-19 Thread Burkhard Vogel
Hi, check your network configuration on machine B, is there a default gateway configured? are there two network interfaces in either of the machines? Burkhard - Original Message - From: Liang Sun [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 19, 2001 7:51 AM Subject:

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

2001-07-19 Thread Burkhard Vogel
Hi, made by Ijonas Kisselbach: Step 1. You should have a getConnection() method that returns a java.sql.Connection object, which is retrieved through Context.lookup(). We use a base class with the following method: protected Connection getConnection() throws SQLException { Connection conn

Re: [JBoss-user] ejbLoad not called even when commit-option is C

2001-07-19 Thread Burkhard Vogel
Hi, frist of all it should read the data with an ejbLoad, but why aren't you handling R and U in one bean? Well it'll get a bit thick, but handling data in one table is usually done with one bean to avoid your issue. Burkhard - Original Message - From: Syed [EMAIL PROTECTED] To: [EMAIL

Re: [JBoss-user] JBoss Entity Bean Transactions

2001-07-19 Thread Burkhard Vogel
Hi, this would mean commit option C for your container. Burkhard - Original Message - From: Luke Studley [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 19, 2001 12:29 AM Subject: [JBoss-user] JBoss Entity Bean Transactions Hi all In the ejb 1.1 Spec (pdf) 9.5.4 and

Re: [JBoss-user] ejbLoad not called even when commit-option is C

2001-07-19 Thread Burkhard Vogel
Hi, commit option C MUST do the job, if not I guess you are misconfigured. Where and how do you set your commit-option to C how do you deploy your beans (ejb-jar/jboss/jaws)? Burkhard - Original Message - From: Luke Studley [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 19,

Re: [JBoss-user] CMP 2.x SQL trace

2001-07-19 Thread Burkhard Vogel
Hi, have you looked into server.log in log/ dir? Output is there?! Burkhard - Original Message - From: Jean-Noël Heyraud [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, July 19, 2001 2:55 PM Subject: [JBoss-user] CMP 2.x SQL trace Hello is there a way to see the generated SQL

  1   2   3   >