Re: [JBoss-user] Custom MBeans

2001-03-30 Thread joel cordonnier

Do you use the 'Default' configuration or your own ?

Joel


--- James Kiryakoza [EMAIL PROTECTED] a crit :
 I created a custom MBean to set up my Log4J
 configuration. The bean works
 fine, but when I try to pass it a parameter by
 including a reference to it
 in the Jboss.jcml file, the jcml file is always
 overwritten and my entry is
 deleted. Does anyone have any ideas as to why this
 is happening.
  
 Here is the entry I'm trying to place in the jcml
 file:  
  
 mbean name="Log4J:service=LogInitializer"
attribute
 name="PropertyFile"EngageApps.log/attribute
 /mbean
 
  
  
 James Kiryakoza
 Engage Media
 415-615-2752
 [EMAIL PROTECTED] mailto:  
 
  
 
 

 ATTACHMENT part 2 image/jpeg name=Glacier Bkgrd.jpg



___
Do You Yahoo!? -- Pour dialoguer en direct avec vos amis, 
Yahoo! Messenger : http://fr.messenger.yahoo.com

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] JBoss@Oreilly conference.

2001-03-30 Thread Rickard Öberg

 so the last day of the Oreilly Java Enterprise Conference has past. Yes, I
 was there, and I really heard a LOT of people talking about, mention,
 referencing, planing to test JBoss. Thats nice, but a shame that no one
 from the JBoss team showed up, instead the open source part of the
 conference was dominated by apache, SUN and exolab folks. Nice people, but
 NO JBoss. Well, I of course picked every possible situation to talk about
 the MDB support in JBoss ;-).

I was supposed to have been there for two talks, but unfortunately a flu
messed up my voice so I had to cancel :-(

I'm glad to hear that JBoss was in the air anyway :-)

 - Local interfaces added for possible cal by reference semantic between
 beens in the same...well ear-file I think. Makes entity beans possible to
 use in a fine grained fasion, behind an entity or session facade wich
 calles them throug the container but with normal java local call semantic.

Which is basically what we allow today. Nice to see it standardized.

Thanks for the conference review! Wish I could have been there.

regards,
  Rickard



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Custom MBeans

2001-03-30 Thread Penn

Hi,

i'm learning to create a MBean, may i know where/how to start

thanks

Penn

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of joel
cordonnier
Sent: Friday, March 30, 2001 4:11 PM
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-user] Custom MBeans


Do you use the 'Default' configuration or your own ?

Joel


--- James Kiryakoza [EMAIL PROTECTED] a crit :
 I created a custom MBean to set up my Log4J
 configuration. The bean works
 fine, but when I try to pass it a parameter by
 including a reference to it
 in the Jboss.jcml file, the jcml file is always
 overwritten and my entry is
 deleted. Does anyone have any ideas as to why this
 is happening.

 Here is the entry I'm trying to place in the jcml
 file:

 mbean name="Log4J:service=LogInitializer"
attribute
 name="PropertyFile"EngageApps.log/attribute
 /mbean



 James Kiryakoza
 Engage Media
 415-615-2752
 [EMAIL PROTECTED] mailto:





 ATTACHMENT part 2 image/jpeg name=Glacier Bkgrd.jpg



___
Do You Yahoo!? -- Pour dialoguer en direct avec vos amis,
Yahoo! Messenger : http://fr.messenger.yahoo.com

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] I need ammo

2001-03-30 Thread Peter Routtier-Wone

Jim, this reason will work on me. It's logical and it's testable, with an
immediate benefit.

It will NOT work on a corporate decision-maker who wouldn't know a desirable
EJB feature if it fell on his head.

What are the compelling business cases, guys? Or, to put it another way,
where's the money? I've thought of quite a few, but I won't list them yet
because I don't want to blind you to your own insights.

- Original Message -
From: Jim Archer
Subject: RE: [JBoss-user] I need ammo

I'll suggest another reason to use jBoss right now. With an inexpensive
add-in (check out http://www.mvcsoft.com), you can start codeing in EJB 2.0



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] I need ammo

2001-03-30 Thread Rickard Öberg

 What are the compelling business cases, guys? Or, to put it another way,
 where's the money? I've thought of quite a few, but I won't list them yet
 because I don't want to blind you to your own insights.

Here's one for ya: painless integration.

Need to add your own custom stuff? No problem, write a JMX component for it.
Need to integrate tool XYZ? No problem, write a JMX component for it.

This is not easily done with many other tools, and translates directly to
time-to-market and money benefits.

/Rickard



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



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

2001-03-30 Thread Micheal J

The free JDBC-ODBC driver is evil. Sun's free JDBC-ODBC driver [written
by/with Merant if memory serves] isn't a great driver. It has poor
performance and other issues with threading for instance. www.merant.com and
www.EasySoft.com both offer substantially better JDBC-ODBC drivers. They are
very good indeed. They are Type 3 drivers since they can't be 100% Java
unless someone decided to re-write ODBC in Java (a *very* pointless task
IMO). One benefit of ODBC is that the ODBC layer can handle connection
pooling /transaction enlistment transparently using native Windows services.

If you *prefer* an ODBC-JDBC solution, this is the way to go. If not, then a
Type 4 driver is the way forward. The only time I would recommend Sun's
JDBC-ODBC driver if for basic development or while you are awaiting delivery
of your new driver ;-)

As for free MS SQL Drivers, the only one I am aware of is FreeTDS and is
listed in Kunle's HowTo. I wouldn't rely on Sybase drivers, the protocols
began to diverge quite a while ago and certainly for SQL7 and SQL2000, a
Sybase product would not be ideal.

See http://www.jboss.org/documentation/HTML/ch10s22.html

Cheers!

Micheal


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Peter
 Routtier-Wone
 Sent: 30 March 2001 07:00
 To: [EMAIL PROTECTED]
 Subject: Re: [JBoss-user] MS SQL7 JDBC-ODBC parameters


 ODBC is evil.

 There is more than one free pure Java JDBC driver for TDS (the M$
 and Sybase
 protocol).

 Search the net for TDS near JDBC.

 - Original Message -
 From: Steve Shier
 To: '[EMAIL PROTECTED]'
 Sent: Tuesday, March 27, 2001 8:05 PM
 Subject: [JBoss-user] MS SQL7 JDBC-ODBC parameters


 I want to use the JDBC-ODBC bridge to a Microsoft SQL 7.0 database and



 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] help : java.sql.SQLException : could not find table ...

2001-03-30 Thread java

Hello, could someone help me?

I will explain my problem : 

I'm using JBoss 2.0 final on Windows 2000 service pack 1 with Mysql 3.23.33 on a 
pentium III with 390 MB RAM.

OS: Windows 2000 Service Pack 1
JBoss : JBoss 2.0 final
JDK   : java 2 sdk 1.3
J2EE  : java 2 sdk enterprise edition 1.2.1
DBMS  : MySQL 3.23.33
JDBC  : mm.mysql-2.0.4-bin.jar

I have created a database "RailTrackerDB" and I'd like to use it in my EJB's.
When I start JBoss, I can see that it connects to mysql and to the right database.
In that database, there is a table "CL".
I have an EJB "Customer" that access to the table "CL".
When I use this EJB on the sun J2EE reference implementation, it's all right; 
but when I try on JBoss, it tells me that it can't find the table "CL". 
What can I do to make him find this table ??? Is is a security problem ???

here is the error message : 

Erreur : java.sql.SQLException: Table not found: CL in statement [SELECT CLUID, CLID, 
SYNWID, CLNM, CLNMAB, CLALIA, CLBAI  FROM CL WHERE CLID = '0211'   AND SYNWID = 'ZR' ]
java.sql.SQLException: Table not found: CL in statement [SELECT CLUID, CLID, SYNWID, 
CLNM, CLNMAB, CLALIA, CLBAI  FROM CL WHERE CLID = '0211'   AND SYNWID = 'ZR' ]
at 
sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:245)
at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:220)
at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:122)
at org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker_Stub.invoke(Unknown 
Source)
at 
org.jboss.ejb.plugins.jrmp.interfaces.StatelessSessionProxy.invoke(StatelessSessionProxy.java:175)
at $Proxy1.getMinimumDetail(Unknown Source)
at com.RailTracker.Client.CL.init(CL.java:27)
at com.RailTracker.Client.CL.main(CL.java:41)

thanks to help me.

Jean-François

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



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

2001-03-30 Thread Philippe GTLYA-NTIC-PETIT

Did you allowed your PostgreSQL to accept incoming queries from other boxes than the 
localhost ?

/Philippe




[EMAIL PROTECTED]%internet le 29/03/2001 19:24:54
Veuillez rpondre  [EMAIL PROTECTED]%internet@WTFR
Pour :  [EMAIL PROTECTED]%internet@WTFR
cc : 

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

X-Originating-IP: [209.118.74.19]
X-OriginalArrivalTime: 29 Mar 2001 17:24:54.0719 (UTC) FILETIME=[2B84ECF0:01C0B875]
Errors-To: [EMAIL PROTECTED]
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.0.3
Precedence: bulk
List-Help: mailto:[EMAIL PROTECTED]?subject=help
List-Post: mailto:[EMAIL PROTECTED]
List-Subscribe: http://lists.sourceforge.net/lists/listinfo/jboss-user, 
mailto:[EMAIL PROTECTED]?subject=subscribe
List-Id: The JBoss User main mailing list jboss-user.lists.sourceforge.net
List-Unsubscribe: http://lists.sourceforge.net/lists/listinfo/jboss-user, 
mailto:[EMAIL PROTECTED]?subject=unsubscribe
List-Archive: http://lists.sourceforge.net/archives//jboss-user/

Hi,
I'm trying to get jboss going with postgres.  I have the latest version
of both. I've configured the stuff in the config files as shown in the
docs.  The jdbc driver loads, but when it gets to the bit about starting
up the datasource, jboss freezes.  It looks almost as if it's trying to
time out, but I haven't managed to wait long enough yet.  ^c causes jboss
to shutdown as it should.  Postgres is up and running (on another
machine), and I'm pretty sure the url is right in the config file. I
don't really think it's getting that far, watching the other datasources
the come preconfigured start up.  I copied the DefaultDS section and
modified it, as suggested in the docs.

Any ideas?  I know this is pretty vague, but I'm away from the machine
with the stuff on it. I looked in the archive and didn't see anything
that looked right...

Thanks,
Carey

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user




___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] help : java.sql.SQLException : could not find table ...

2001-03-30 Thread jK.MkIII

Are you sure that your bean get connection to right database and with
right identity? I similiar problem yesterday when had problem with
creating datasource and then my bean just happily got defaullt
datasource and of course there wasn't that table in there :)

 --
jK.MkIII


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] java.io.FileNotFoundException

2001-03-30 Thread Ralf Purnhagen

Hi,

we use current CVS of JBoss. Sometimes we get the following Exception:

[SessionManager] TRANSACTION ROLLBACK EXCEPTION:Could not activate;
nested
exception is:
 java.io.FileNotFoundException:
E:\javalib\jboss\dist\db\sessions\SessionManager\985947443675.ser (Das
System kann die angegebene Datei nicht finden); nested exception is:
 java.rmi.NoSuchObjectException: Could not activate; nested exception
is:
 java.io.FileNotFoundException:
E:\javalib\jboss\dist\db\sessions\SessionManager\985947443675.ser (Das
System kann die angegebene Datei nicht finden)
[SessionManager] java.rmi.NoSuchObjectException: Could not activate;
nested
exception is:
[SessionManager]  java.io.FileNotFoundException:
E:\javalib\jboss\dist\db\sessions\SessionManager\985947443675.ser (Das
System kann die angegebene Datei nicht finden)
[SessionManager]  at
org.jboss.ejb.plugins.AbstractInstanceCache.get(AbstractInstanceCache.java:1
73)
[SessionManager]  at
org.jboss.ejb.plugins.StatefulSessionInstanceInterceptor.invoke(StatefulSess
ionInstanceInterceptor.java:157)
[SessionManager]  at
org.jboss.ejb.plugins.TxInterceptorCMT.invokeNext(TxInterceptorCMT.java:133)
[SessionManager]  at
org.jboss.ejb.plugins.TxInterceptorCMT.runWithTransactions(TxInterceptorCMT.
java:263)
[SessionManager]  at
org.jboss.ejb.plugins.TxInterceptorCMT.invoke(TxInterceptorCMT.java:99)
[SessionManager]  at
org.jboss.ejb.plugins.LogInterceptor.invoke(LogInterceptor.java:195)
[SessionManager]  at
org.jboss.ejb.StatefulSessionContainer.invoke(StatefulSessionContainer.java:
326)
[SessionManager]  at
org.jboss.ejb.plugins.jrmp.server.JRMPContainerInvoker.invoke(JRMPContainerI
nvoker.java:482)
[SessionManager]  at
org.jboss.ejb.plugins.jrmp.interfaces.StatefulSessionProxy.invoke(StatefulSe
ssionProxy.java:150)
[SessionManager]  at $Proxy13.getCustomizations(Unknown Source)
[SessionManager]  at de.imost.action.Style.execute(Style.java:32)
[SessionManager]  at
webwork.servlets.Dispatcher.service(Dispatcher.java:477)
[SessionManager]  at
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
[SessionManager]  at
org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:404)
[SessionManager]  at
org.apache.tomcat.core.Handler.service(Handler.java:286)
[SessionManager]  at
org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
[SessionManager]  at
org.apache.tomcat.facade.RequestDispatcherImpl.include(RequestDispatcherImpl
.java:345)
[SessionManager]  at
org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.java:414)
[SessionManager]  at
webwork.taglib.IncludeTag.doEndTag(IncludeTag.java:120)
[SessionManager]  at
base.common._0002fbase_0002fcommon_0002fheader_0002ejspheader_jsp_112._jspSe
rvice(_0002fbase_0002fcommon_0002fheader_0002ejspheader_jsp_112.java:89)
[SessionManager]  at
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
[SessionManager]  at
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
[SessionManager]  at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.ja
va:177)
[SessionManager]  at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:318)
[SessionManager]  at
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:391)
[SessionManager]  at
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
[SessionManager]  at
org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:404)
[SessionManager]  at
org.apache.tomcat.core.Handler.service(Handler.java:286)
[SessionManager]  at
org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
[SessionManager]  at
org.apache.tomcat.facade.RequestDispatcherImpl.include(RequestDispatcherImpl
.java:345)
[SessionManager]  at
org.apache.jasper.runtime.PageContextImpl.include(PageContextImpl.java:414)
[SessionManager]  at
webwork.taglib.IncludeTag.doEndTag(IncludeTag.java:120)
[SessionManager]  at
base.home._0002fbase_0002fhome_0002fhome_0002ejsphome_jsp_102._jspService(_0
002fbase_0002fhome_0002fhome_0002ejsphome_jsp_102.java:86)
[SessionManager]  at
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:119)
[SessionManager]  at
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
[SessionManager]  at
org.apache.jasper.servlet.JspServlet$JspServletWrapper.service(JspServlet.ja
va:177)
[SessionManager]  at
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:318)
[SessionManager]  at
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:391)
[SessionManager]  at
javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
[SessionManager]  at
org.apache.tomcat.core.ServletWrapper.doService(ServletWrapper.java:404)
[SessionManager]  at
org.apache.tomcat.core.Handler.service(Handler.java:286)
[SessionManager]  at
org.apache.tomcat.core.ServletWrapper.service(ServletWrapper.java:372)
[SessionManager]  at
org.apache.tomcat.facade.RequestDispatcherImpl.forward(RequestDispatcherImpl
.java:194)
[SessionManager]  at

Re: [JBoss-user] Illegal Access Exception

2001-03-30 Thread Scott M Stark


This is just saying that access to one of your bean methods is not allowed for the
guest user. The MethodInvocation is an attempt to show which method is
being denied but it has not been printed correctly. This is probably now failing
because previously if a method did not have any security roles assigned to in the
ejb-jar.xml file anyone could access it. This was inconsistent with the ejb spec
and now every method must have a security role assigned to it in order for the
method to be callable.


- Original Message -
From: jBoss Monkey
To: [EMAIL PROTECTED]
Sent: Friday, March 30, 2001 1:37 AM
Subject: [JBoss-user] Illegal Access Exception


I had this project running for a while on the previous version of jBoss.  Today I did 
the build with the latest bits from cvs. I
have used the same old user and role properties files, callback handler etc... Here is 
the exception I got.
Could some one figure out, what is going on in here.  As there is illegal access on  
org.jboss.ejb.MethodInvocation@f1a31 and not on
the method on my Bean.

Thanks,
~jm

[Mail Service] Mail Service 'Mail' bound to java:/Mail
[Mail Service] Started
[Service Control] Started 25 services
[Default] JBoss 2.1-BETA-Mar-26-2001 Started in 0m:24s
[JAASSecurity] User 'guest' authenticated.
[LocatorBean] Illegal access, principal=guest method=org.jboss.ejb.MethodI
nvocation@f1a31
[LocatorBean] TRANSACTION ROLLBACK EXCEPTION:checkSecurityAssociation; nested
exception is:
java.lang.SecurityException: Illegal access exception; nested exception
is:
java.rmi.RemoteException: checkSecurityAssociation; nested exception is:
java.lang.SecurityException: Illegal access exception
[LocatorBean] java.rmi.RemoteException: checkSecurityAssociation; nested exce
ption is:
[LocatorBean] java.lang.SecurityException: Illegal access exception
[LocatorBean] java.lang.SecurityException: Illegal access exception
[LocatorBean] at org.jboss.ejb.plugins.SecurityInterceptor.checkSecuri



Get your FREE download of MSN Explorer at http://explorer.msn.com

___ JBoss-user mailing list 
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] ...problems with mySQL Database

2001-03-30 Thread Alexander Methke

Ursprngliche Nachricht:
 
 ...Hi there,
 
 it's me again, up to now I found that funny mistake when starting up jBoss, it 
didn't like the order I wrote my mBeans. So I changed the order and no 
outprints...silly thing?
 
 But there's a new problem (Alex--- world best troublemaker is). No it's time to 
get together with our project. So we try to share one mySQL database on a 
project-partners localhost. He provides the mySQL-Server and holds all Data needed. 
With some DataBase Visualizer I get remote access via LAN and can access the 
Database. Our servers name is "ist-dresden.de" and his hosts name is "Deimos". With 
the following URL I got access with that Vis-Tool:
 
 jdbc:mysql://Deimos.ist-dresden.de/webdata
 
 (ist-dresden.de is not neccessary but looks cool  :-))  )
 
 If I add this URL to my mBean (with same UserID and password!!) jBoss stopps when 
binding my Pool to it's Name.
 My mBean looks like this:
 
 mbean code="org.jboss.jdbc.XADataSourceLoader" 
name="DefaultDomain:service=XADataSource,name=mySQL"
  attribute name="Properties"/attribute
attribute 
name="URL"jdbc:mysql://Deimos.ist-dresden.de/webdata/attribute

attribute name="JDBCUser"***/attribute
attribute name="Password"anyPassword/attribute
attribute name="PoolName"Anwender/attribute
attribute 
name="DataSourceClass"org.opentools.minerva.jdbc.xa.wrapper.XADataSourceImpl/attribute
attribute name="GCMinIdleTime"120/attribute
attribute name="MaxSize"10/attribute
attribute name="GCEnabled"false/attribute
  attribute name="InvalidateOnError"false/attribute
  attribute name="TimestampUsed"false/attribute
  attribute name="Blocking"true/attribute
  attribute name="GCInterval"12/attribute
  attribute name="IdleTimeout"180/attribute
  attribute name="IdleTimeoutEnabled"false/attribute
  attribute name="LoggingEnabled"false/attribute
  attribute name="MaxIdleTimeoutPercent"1.0/attribute
 attribute name="MinSize"0/attribute
 
 
 What went wrong?
 
 __
 Die Fachpresse ist sich einig: WEB.DE 20mal Testsieger! Kostenlos E-Mail, 
 Fax, SMS, Verschlusselung, POP3, WAPtesten Sie uns! http://freemail.web.de
  


___
Alles unter einem Dach: Informationen, Fun, E-Mails. Bei WEB.DE: http://web.de
Die gro?e Welt der Kommunikation: E-Mail, Fax, SMS, WAP: http://freemail.web.de


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] SQL Server Drivers

2001-03-30 Thread Renzo Toma


This list lacks the commercial jdbc driver from www.jturbo.com

Renzo

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Micheal J
Sent: vrijdag 30 maart 2001 11:01
To: [EMAIL PROTECTED]
Subject: RE: [JBoss-user] SQL Server Drivers


http://www.jboss.org/documentation/HTML/ch10s22.html

As for pricing, there links to a number of drivers in the document above.
There is also a link to the only Open Source effort which is a [somewhat
usable] work-in-progress.
Check out the doc.

Micheal

PSPls refrain from HTML postings to the list.
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Dewayne McNair
Sent: 30 March 2001 08:13
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-user] SQL Server Drivers


It's not open source, but, we're using i-net Opta 2000... we're very pleased
with it.  Pricing is very reasonable.

http://www.inetsoftware.de/Default.htm

-- Dewayne
- Original Message -
From: Rama Rao
To: [EMAIL PROTECTED]
Sent: Friday, March 30, 2001 12:09 AM
Subject: [JBoss-user] SQL Server Drivers


Hi,
What is the driver you are using for SQL Server 2000.
From which company? How much does it cost?
Can we get any open source  SQL Server driver .
TIA
Regards
Rama Rao


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] java.lang.SecurityException: sealing violation

2001-03-30 Thread Naresh Sharma


Hello Everybody,

I am new to the JBoss, and recently downloaded jboss-tomcat-2.1-beta.zip
from http://www.jboss.org/business/binary.html
As per the instructions from http://www.jboss.org/documentation/jboss_win32_1.html,
unzipped the file and run "run.bat" in the bin directory. I got the following
error message after issuing this command.
Any clue what's happening???
"CLASSPATH=.;C:\j2sdkee1.2.1\lib\j2ee.jar;f:\jdk1.3\lib\tools.jar;c:\classes12_01.zip;d:\JMF2.1.1\lib\
jmf.jar;run.jar;../lib/crimson.jar
jboss.home = F:\jboss\jboss-tomcat-2.1-beta\jboss-2.1
Using configuration "default"
Please make sure the following is intended (check your CLASSPATH):
jndi.properties is read from file:/F:/jboss/jboss-tomcat-2.1-beta/jboss-2.1/bin/jndi.properties
[Info] Java version: 1.3.0,Sun Microsystems Inc.
[Info] Java VM: Java HotSpot(TM) Client VM 1.3.0-C,Sun Microsystems
Inc.
[Info] System: Windows NT 4.0,x86
[Shutdown] Shutdown hook added
[Service Control] Registered with server
[Default] java.lang.SecurityException: sealing violation
[Default] at java.net.URLClassLoader.defineClass(Unknown
Source)
[Default] at java.net.URLClassLoader.access$100(Unknown
Source)
[Default] at java.net.URLClassLoader$1.run(Unknown
Source)
[Default] at java.security.AccessController.doPrivileged(Native
Method)
[Default] at java.net.URLClassLoader.findClass(Unknown
Source)
[Default] at java.lang.ClassLoader.loadClass(Unknown
Source)
[Default] at sun.misc.Launcher$AppClassLoader.loadClass(Unknown
Source)
[Default] at java.lang.ClassLoader.loadClass(Unknown
Source)
[Default] at java.lang.ClassLoader.loadClassInternal(Unknown
Source)
[Default] at java.lang.ClassLoader.defineClass0(Native
Method)
[Default] at java.lang.ClassLoader.defineClass(Unknown
Source)
[Default] at java.security.SecureClassLoader.defineClass(Unknown
Source)
[Default] at java.net.URLClassLoader.defineClass(Unknown
Source)
[Default] at java.net.URLClassLoader.access$100(Unknown
Source)
[Default] at java.net.URLClassLoader$1.run(Unknown
Source)
[Default] at java.security.AccessController.doPrivileged(Native
Method)
[Default] at java.net.URLClassLoader.findClass(Unknown
Source)
[Default] at java.lang.ClassLoader.loadClass(Unknown
Source)
[Default] at sun.misc.Launcher$AppClassLoader.loadClass(Unknown
Source)
[Default] at java.lang.ClassLoader.loadClass(Unknown
Source)
[Default] at java.lang.ClassLoader.loadClassInternal(Unknown
Source)
[Default] at org.apache.crimson.jaxp.DocumentBuilderFactoryImpl.newDocumentBuilder(DocumentBuil
derFactoryImpl.java:82)
[Default] at org.jboss.configuration.ConfigurationService.loadConfiguration(ConfigurationServic
e.java:258)
[Default] at java.lang.reflect.Method.invoke(Native
Method)
[Default] at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
[Default] at com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
[Default] at org.jboss.Main.init>(Main.java:195)
[Default] at org.jboss.Main$1.run(Main.java:107)
[Default] at java.security.AccessController.doPrivileged(Native
Method)
[Default] at org.jboss.Main.main(Main.java:103)
[Default] JBoss 2.1-BETA-Mar-26-2001 Started in 30m:0s
[Default] Shutting down
[Service Control] Stopping 0 MBeans
[Service Control] Stopped 0 services
[Service Control] Destroying 0 MBeans
[Service Control] Destroyed 0 services
[Default] Shutdown complete
Press any key to continue . . ."

Any clue what's happening???
Thanks
Naresh


[JBoss-user] [EmbeddedTomcat] java.rmi.ServerException: Transaction rolled back:com/sun/xml/tree/XmlDocument

2001-03-30 Thread fabien



Hi all,

I'm getting this error when I reach this simple 
piece of code in a stateful SessionBean :
..
XmlDocument xmlDoc = new 
XmlDocument();
.

, the Xmldocument class doesn't implements 
serializable but that shouldn't be a pb since it's not a bean 
attribute.

In addition I believe that I didn't have this pb 
some days ago with a previousbinary of 2.1.

What am I missing ?

thanks,

Fabien


Re: [JBoss-user] JBoss@Oreilly conference.

2001-03-30 Thread Toby Allsopp

Peter Antman wrote:

 Well, that was just a few imressions from the conference. And by the way,
 I have started writing a J2EE Connector JMS resource adapter, which will
 bring JMS as a true resource (transacted) to JBoss also for publishing
 and not only (as now) for message driven  beasn;-)

Hi, Peter.

The JCA 1.0 spec has no asynchronous support, so this resource adapter
will only handle sending messages, right?

Are you aware of the JSR for JCA 2.0, which adds asynchronous stuff? It
also explicitly mentions JMS.

It might be cool to get JBoss represented in the expert group for this
JSR (JSR 112
http://java.sun.com/aboutJava/communityprocess/jsr/jsr_112_connector.html).
What do you think? Perhaps this is a quesstion for the board.

Toby.


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] [EmbeddedTomcat] java.rmi.ServerException: Transaction rolled back:com/sun/xml/tree/XmlDocument

2001-03-30 Thread fabien



sorry about that, mismatch between xml.jar and 
crimson.jar.

  - Original Message - 
  From: 
  [EMAIL PROTECTED] 
  To: [EMAIL PROTECTED] 
  
  Sent: Friday, March 30, 2001 1:57 
PM
  Subject: [JBoss-user] [EmbeddedTomcat] 
  java.rmi.ServerException: Transaction rolled 
  back:com/sun/xml/tree/XmlDocument
  
  Hi all,
  
  I'm getting this error when I reach this simple 
  piece of code in a stateful SessionBean :
  ..
  XmlDocument xmlDoc = new 
  XmlDocument();
  .
  
  , the Xmldocument class doesn't implements 
  serializable but that shouldn't be a pb since it's not a bean 
  attribute.
  
  In addition I believe that I didn't have this pb 
  some days ago with a previousbinary of 2.1.
  
  What am I missing ?
  
  thanks,
  
  Fabien


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

2001-03-30 Thread Toby Allsopp

[ apologies if this message appears more than once - mail client probs ]

On Thu, Mar 29, 2001 at 06:18:46PM -0800, Crothers.Dean wrote:
  Filip,
 
  thanks for the explanation, even though its not what I wanted to
  hear!!
 
  So I guess the issue now is when will JBoss support distributed
  transactions - does anybody know???

I believe that this is misinformation. JBoss's bundled transaction 
manager implements two phase commit, so using multiple XAResources in 
the same transaction should work fine.

What it doesn't support is propagating the transaction context to other 
transaction managers, i.e. outside one JVM.

Toby.


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] ...problems with mySQL Database

2001-03-30 Thread Ken Jenks


No it's time to get together with our project. So we try to share one 
mySQL database on a project-partners localhost. He provides the 
mySQL-Server and holds all Data needed. With some DataBase Visualizer I 
get remote access via LAN and can access the Database. Our servers name is 
"ist-dresden.de" and his hosts name is "Deimos". With the following URL I 
got access with that Vis-Tool:
 
  jdbc:mysql://Deimos.ist-dresden.de/webdata
 
  (ist-dresden.de is not neccessary but looks cool  :-))  )
 
  If I add this URL to my mBean (with same UserID and password!!) jBoss 
 stopps when binding my Pool to it's Name.


  What went wrong?

It may be a MySQL permissions thing. Check the MySQL logs and see if it's 
denying permission because of missing entries in the mysql/host table. 
Sometimes, I find that MySQL requires both a domain name and an IP address 
in that table, but I haven't figured out when or why.

-- Ken Jenks, http://abiblion.com/

Tools for reading.


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] SQL Server Drivers

2001-03-30 Thread Micheal J

It does say it is a partial list Renzo. What's the motivation behind your
initial post in any case?.
Why did you want to know what other users are using?

Micheal


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Renzo Toma
 Sent: 30 March 2001 11:54
 To: [EMAIL PROTECTED]
 Subject: RE: [JBoss-user] SQL Server Drivers



 This list lacks the commercial jdbc driver from www.jturbo.com

 Renzo

 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Micheal J
 Sent: vrijdag 30 maart 2001 11:01
 To: [EMAIL PROTECTED]
 Subject: RE: [JBoss-user] SQL Server Drivers


 http://www.jboss.org/documentation/HTML/ch10s22.html

 As for pricing, there links to a number of drivers in the document above.
 There is also a link to the only Open Source effort which is a [somewhat
 usable] work-in-progress.
 Check out the doc.

 Micheal

 PSPls refrain from HTML postings to the list.
 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Dewayne McNair
 Sent: 30 March 2001 08:13
 To: [EMAIL PROTECTED]
 Subject: Re: [JBoss-user] SQL Server Drivers


 It's not open source, but, we're using i-net Opta 2000... we're
 very pleased
 with it.  Pricing is very reasonable.

 http://www.inetsoftware.de/Default.htm

 -- Dewayne
 - Original Message -
 From: Rama Rao
 To: [EMAIL PROTECTED]
 Sent: Friday, March 30, 2001 12:09 AM
 Subject: [JBoss-user] SQL Server Drivers


 Hi,
 What is the driver you are using for SQL Server 2000.
 From which company? How much does it cost?
 Can we get any open source  SQL Server driver .
 TIA
 Regards
 Rama Rao


 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user


 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[jBoss-User] Error when creating entity bean

2001-03-30 Thread Tim Yates

Hi there!!

We have an entity bean (using BMP) with several fields, including one CLOB
field...

Occasionally, when a user is adding an item of content to the system, the
server.log file shows the following error:

java.sql.SQLException: ORA-00600: internal error code, arguments: [19942],
[], [], [], [], [], [], []

we then get

[Content] LOCKING-WAITING (TRANSACTION) for id TNSContent395443 ctx.hash
2224828 tx:TransactionImpl:XidImpl:[B@471d2b

over and over and over, and the website stops responding...

I am using a jboss-pre2.1 downloaded from the CVS in January.  Has this
problem been fixed?

Or can anyone tell me what might cause the SQLException?

I am confused...

Tim.

--
http://www.teamnetsol.com
**
  This email and any files transmitted with it are confidential and
 intended solely for the use of the individual or entity to whom they
are addressed.  If you have received this email in error please notify
 [EMAIL PROTECTED]

Team Netsol Limited is incorporated in England and Wales under company
number 3697370.  Its registered office is at 2-4 Little Peter Street,
   Manchester M15 4PS. +44 (0)161 834 8342
**



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



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

2001-03-30 Thread Andrew Hadinyoto

Hi Jason,

Just in case you missed it, try the following from JBoss preliminary
manual and new manual.
"http://www.jboss.org/manual/third_party.html#tomcat"
"http://www.jboss.org/documentation/HTML/ch10.html#N22e6"

My setup is using different JVM for Tomcat and JBoss,
so I used the instruction from prelim manual. With a little
bit of tweaking, so far it works well on my system (Suse 7/Tomcat3.2.1)

Hope it helps,
Andrew...

Jason Wells wrote:
 
 Hello,
 
 I'm new to the EJB world and I'm trying to find a "hello world" level
 explanation/tutorial that walks through creating a very basic web
 application (using Jboss) that accesses EJB services from within a JSP
 or servlet.
 
 When I looked through the online Jboss docs, I found a tutorial which
 suggests that you download example code... but when I tried, I
 repeatedly got a 404. I've also dug through the listserv archive, and
 found nothing that seemed especially germane to this problem. 
 I've also rifled through the java.sun.com/jGuru J2EE tutorials, but they
 seem to rely on vendor-specific tools for crucial parts of the code
 deployment procedure. (Since their example was based on Weblogic, it
 isn't very useful in the Jboss world.)
 
 I'm not sure where else to turn. This seems like a problem anyone would
 have to get through in order to create a web application using Jboss.
 Surely there must be some kind of resource (at least a mini-howto, or
 something!) just to help people get started.
 
 My configuration is Apache/Tomcat/Jboss running on RH6.2. Any help is
 appreciated. Thanks in advance.
 --
 Jason Wells
 Web Architect
 Xsilogy, Inc.
 http://www.xsilogy.com/
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] problem with oracle connection pool, Pl. help me its very urgent

2001-03-30 Thread Swarr, Bob



I 
believe that you're not getting the oracle database, but the "default" 
datasource. I ran into the same problem (using the Oracle thin 
driver).
I put 
in a JDBC call that retrieved that database name and displayed it with a 
System.out.println() to debug this problem. Just follow the directions in 
the doc until you get it right.

  -Original Message-From: chandra poluru 
  [mailto:[EMAIL PROTECTED]]Sent: Wednesday, March 28, 
  2001 11:55 PMTo: 
  [EMAIL PROTECTED]Subject: [JBoss-user] problem with 
  oracle connection pool, Pl. help me its very urgent
  hi,
  i am using jboss-2.1, jdk1.3, 
  oracle8i
  and i have created one connection pool 
  "OracleDb"
  the pool has been created 
  successfully.
  iam accessing the connection pool in an entity 
  ejb.
  iam able get the connection.
  i have printed the connection object, and it's 
  giving as
  
   
  org.opentools.minerva.jdbc.xa.wrapper.XAConnection@482bad
  
  and iam trying to use CallableStatement with that 
  connection, and it's throwing
  SQLException : This function is not 
  supported
  
  how to get the XAOracleConnection instead of this 
  minervaconnection.
  
  please provide me with all the scripts in 
  jboss.jcml, jboss.conf
  and also ejb-jar.xml, jboss.xml.
  
  pl. hellp me, its very urgent for 
me.
  


RE: [JBoss-user] iplanet

2001-03-30 Thread Swarr, Bob
Title: RE: [JBoss-user] iplanet



iPlanet is destined for obscurity. WebLogic is 
increasing its market share over all other competitors, including 
WebSphere.WebLogic supports Linux. JBoss is the only EJB 
Server that I''ve tested (including iPlanet and WebSphere) that comes 
close to WebLogic on performance, functionality, ease of use and conformance to 
standards. Right now I'nm running a benchmark on both WebLogic and JBoss. If 
iPlanet makes their product more proprietary the marketplace will punish them 
severely. 

  -Original Message-From: Sam 
  [mailto:[EMAIL PROTECTED]]Sent: Thursday, March 29, 2001 11:51 
  AMTo: '[EMAIL PROTECTED]'Subject: RE: 
  [JBoss-user] iplanet
  Just a warning if you plan on using Linux. Since 
  AOL/Netscape formed their alliance with Sun, iplanet has been systematically 
  dropping Linux support on all product lines. Notice that Directory 
  Server 5.0beta does not have the Linux version. ;-)
  Sam 
  -Original Message- From: Roman 
  Seidl [mailto:[EMAIL PROTECTED]] Sent: Thursday, March 29, 2001 1:00 AM To: 
  [EMAIL PROTECTED] Subject: [JBoss-user] 
  iplanet 
  Hello, 
  Anyone of you know iplanet appserver? I'd like to know if it 
  has troubles, disadvantages (besides the price) 
  etc. 
  Pls answer to my private email as this is rather off-topic 
  (sorry for that). 
  -- Best regards, Roman 
  mailto:[EMAIL PROTECTED] 
  ___ 
  JBoss-user mailing list [EMAIL PROTECTED] http://lists.sourceforge.net/lists/listinfo/jboss-user 
  


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

2001-03-30 Thread Tim Taylor

Hi,

David Jencks wrote:

 Hi,
 
 What in more detail are you trying to do?  What is your datasource
 connected to? Why are you setting autocommit true? 
 
The datasource is connected to Oracle, and we have several cases where 
our database code runs outside a container.  We have some RMI servers 
that are not yet containerized and, in particular, our service startup 
MBean runs outside a container.  We want to be able to control the 
database connection transaction directly in these cases.

In essence, what we want is a pool of JDBC PooledConnections in addition 
to our pool of XAConnections (a subclass of PooledConnection 
implementing XA).  We just want a plain database connection pool to use 
for utilities in addition to an XA pool to use for EJBs and servlets.


 If you are trying to pool non-XA connections, you might try using a
 org.opentools.minerva.jdbc.JDBCPoolDatasource.
 
I tried using the JDBCDataSourceLoader to create a JDBCPoolDataSource 
(which is what I want to do).  However, there are no examples of using 
the JDBCDataSourceLoader from jboss.jcml.  Simply duplicating the 
jboss.jcml entries used (successfully) in the XADataSourceLoader setup 
doesn't work.


 A brief look makes me think it provides a Datasource front end to a pool of
 connections, without XAResources--so you manage the transactions directly
 on the Connection objects.
 
 I also am not sure if it is available through DataSourceLoader route or if
 it is intended for use with jbosscx JCA implementation.
 
 David Jencks
 
 On 2001.03.29 22:27:14 -0500 Tim Taylor wrote:
 


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



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

2001-03-30 Thread marc fleury

JBoss has support for distributed transactions it is the JBossTx that
doesn't,  to get distributed transactions you can drop tyrex or jonas' tx in
JBoss and it should work.  We are going to provide it since folks are asking
for it.

HOWEVER

1- It is a purely "checkpoint" feature, I don't know of ANYONE really using
it in production with the other vendors
2- Which is why we made the CONSCIOUS decision to let JBossTX run fast in VM
and leave the cumbersome distributed TX out

Again we should really package a JBoss with distributed TX, but I am willing
to be few if any are going to use it,

marc


|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of
|Crothers.Dean
|Sent: Thursday, March 29, 2001 9:19 PM
|To: [EMAIL PROTECTED]
|Subject: RE: [JBoss-user] JBoss questions...
|
|
|Filip,
|
|thanks for the explanation, even though its not what I wanted to hear!!
|
|So I guess the issue now is when will JBoss support distributed
|transactions
|- does anybody know???
|
|
|thanks again,
|
|Dean
|
|-Original Message-
|From: Filip Hanik [mailto:[EMAIL PROTECTED]]
|Sent: Thursday, March 29, 2001 5:28 PM
|To: [EMAIL PROTECTED]
|Cc: [EMAIL PROTECTED]
|Subject: RE: [JBoss-user] JBoss questions...
|
|
| You mentioned that 'true 2 phase commit' is not implemented in JBoss? The
| logging of the JBoss console at startup outputs:
|
| [SQLServerPool] Starting
| [SQLServerPool] XA Connection pool SQLServerPool bound to
| java:/SQLServerPool
| [SQLServerPool] Started
|
|Well. that is the jdbc driver that implements the XA protocol.
|This means that if the server was able to handle distributed transactions,
|the underlying driver will support that.
|
|so for a distributed transaction to work across multiple database
|servers to
|work it requires a) the driver to handle two phase commits and b)
|the server
|to implement the logic for the distributed transactions.
|
|now, if I remember correctly, jboss doesn't seem to have support for
|distributed transactions, but hey, I could be full of shit, so if I am
|please correct me :)
|
|Filip
|
|~
|Namaste - I bow to the divine in you
|~
|Filip Hanik
|Software Architect
|[EMAIL PROTECTED]
|www.filip.net
|
|
|___
|JBoss-user mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-user
|
|___
|JBoss-user mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] Strange !

2001-03-30 Thread Gabriel De Munno Francisco

Hi,

Why JBoss isn't listed at javasoft site as an Application Server ?
(http://www.javasoft.com/products/ejb/tools1.html)

tks,

Gabriel


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



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

2001-03-30 Thread Carey Nation

Yeah, I'd done that already.  it was the -i on postmaster...


From: Philippe GTLYA-NTIC-PETIT 
[EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: Re'f. : [JBoss-user] Postgres datasource causes JBoss init to 
stop...
Date: Fri, 30 Mar 2001 11:25:41 +0200

Did you allowed your PostgreSQL to accept incoming queries from other boxes 
than the localhost ?

/Philippe




[EMAIL PROTECTED]%internet le 29/03/2001 19:24:54
Veuillez répondre à [EMAIL PROTECTED]%internet@WTFR
Pour : [EMAIL PROTECTED]%internet@WTFR
cc :

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

X-Originating-IP: [209.118.74.19]
X-OriginalArrivalTime: 29 Mar 2001 17:24:54.0719 (UTC) 
FILETIME=[2B84ECF0:01C0B875]
Errors-To: [EMAIL PROTECTED]
X-BeenThere: [EMAIL PROTECTED]
X-Mailman-Version: 2.0.3
Precedence: bulk
List-Help: mailto:[EMAIL PROTECTED]?subject=help
List-Post: mailto:[EMAIL PROTECTED]
List-Subscribe: http://lists.sourceforge.net/lists/listinfo/jboss-user, 
mailto:[EMAIL PROTECTED]?subject=subscribe
List-Id: The JBoss User main mailing list 
jboss-user.lists.sourceforge.net
List-Unsubscribe: http://lists.sourceforge.net/lists/listinfo/jboss-user, 
mailto:[EMAIL PROTECTED]?subject=unsubscribe
List-Archive: http://lists.sourceforge.net/archives//jboss-user/

Hi,
I'm trying to get jboss going with postgres.  I have the latest version
of both. I've configured the stuff in the config files as shown in the
docs.  The jdbc driver loads, but when it gets to the bit about starting
up the datasource, jboss freezes.  It looks almost as if it's trying to
time out, but I haven't managed to wait long enough yet.  ^c causes jboss
to shutdown as it should.  Postgres is up and running (on another
machine), and I'm pretty sure the url is right in the config file. I
don't really think it's getting that far, watching the other datasources
the come preconfigured start up.  I copied the DefaultDS section and
modified it, as suggested in the docs.

Any ideas?  I know this is pretty vague, but I'm away from the machine
with the stuff on it. I looked in the archive and didn't see anything
that looked right...

Thanks,
Carey

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user




___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

_
Get your FREE download of MSN Explorer at http://explorer.msn.com


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



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

2001-03-30 Thread Carey Nation

Well, my little test program threw a very nice SQLException that told
me what was going on.  JBoss just stopped.  It was almost as if it were
in an infinate catch/retry loop...


From: Jim Archer [EMAIL PROTECTED]
Reply-To: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Subject: RE: [JBoss-user] Postgres datasource causes JBoss init to stop...
Date: Fri, 30 Mar 2001 01:02:36 -0500

Prehaps because that was an issue between the PostgreSQL JDBC driver and
Postgres. The -i causes Postgres to accept connections via sockets, which
is the only way the JDBC driver can talk to it.

The JDBC driver may not report this well enough for jBoss to interprate or,
if it does, its a database specific error and jBoss probably dossen't
understand it.

But this is just educated speculation.

Jim


--On Thursday, March 29, 2001 10:14 PM -0500 Carey Nation
[EMAIL PROTECTED] wrote:

I got it to work.  You have to start postmaster with a -i.  That makes it
run over the network.
I figured this out by writing a 10 line program to connect.  It threw a
very nice exception that
told me what was wrong.  Wonder why JBoss didn't do that?

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of SASAGAWA
Takashi
Sent: Thursday, March 29, 2001 9:56 PM
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-user] Postgres datasource causes JBoss init to
stop...


Hi,

I have set up JBoss 2-1 with Tocat a couple of days ago. I have the same
problem as yours.
I just forgot to place postgres JDBC driver in the right place.
$JBOSS_HOME/lib/ext

JBoss works really great. I love it.
Hope you can work it out.

Thanks,

WiseKnot Ltd.  http://www.wiseknot.co.jp
Takashi Sasagawa


- Original Message -
From: "Carey Nation" [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, March 30, 2001 9:46 AM
Subject: RE: [JBoss-user] Postgres datasource causes JBoss init to stop...


Ok, I did that, and the result is the same.  but now, I can provide
actual details...

1. Here's where it stops...
ty.SubjectSecurityProxyFactory@4695a6
[JAAS Security Manager] Started
[JDBC provider] Starting
[JDBC provider] Started
[postgres] Starting
[postgres] XA Connection pool postgres bound to java:/postgres

2. Here's my jboss.jcml.

?xml version="1.0" encoding="UTF-8"?
!-- This is where you can add and configure your MBeans
   ATTENTION: The order of the listing here is the same order as
 the MBeans are loaded. Therefore if a MBean depends on another
 MBean to be loaded and started it has to be listed after all
 the MBeans it depends on.
--

server
   !-- Classloading --
   mbean code="org.jboss.web.WebService"
name="DefaultDomain:service=Webserver"
 attribute name="Port"8083/attribute
   /mbean

   !-- JNDI --
   mbean code="org.jboss.naming.NamingService"
name="DefaultDomain:service=Naming"
 attribute name="Port"1099/attribute
   /mbean
   mbean code="org.jboss.naming.JNDIView"
name="DefaultDomain:service=JNDIView" /


   !-- Transactions --
   mbean code="org.jboss.tm.TransactionManagerService"
name="DefaultDomain:service=TransactionManager"
 attribute name="TransactionTimeout"300/attribute
   /mbean

   !-- Security --

   !-- Uncomment to enable the sample SRPVerifierStore service
   mbean code="org.jboss.security.plugins.SRPVerifierStoreService"
name="Security:name=SRPVerifierStoreService"
 attribute name="JndiName"SRPDefaultVerifierSource/attribute
 attribute name="StoreFile"SRPVerifierStore.ser/attribute
   /mbean
--
   !-- Uncomment to enable the SRP login service
   mbean code="org.jboss.security.plugins.SRPService"
name="service:name=SRPService"
 attribute name="JndiName"SRPServerInterface/attribute
 attribute
name="VerifierSourceJndiName"SRPDefaultVerifierSource/attribute
 attribute
name="AuthenticationCacheJndiName"SRPAuthenticationCache/attribute
 attribute name="ServerPort"10099/attribute
   /mbean
--

   !-- JAAS security manager and realm mapping --
   mbean code="org.jboss.security.plugins.JaasSecurityManagerService"
name="Security:name=JaasSecurityManager"
 attribute

name="SecurityManagerClassName"org.jboss.security.plugins.JaasSecurityMa
nag
er/attribute
   /mbean

   !-- Uncomment to enable the XML implementation of the JAAS policy
   mbean code="org.jboss.security.plugins.SecurityPolicyService"
name="Security:name=SecurityPolicyService"
 attribute name="JndiName"DefaultSecurityPolicy/attribute
 attribute name="PolicyFile"sample_policy.xml/attribute
   /mbean
--

   !-- JDBC --
   mbean code="org.jboss.jdbc.JdbcProvider"
name="DefaultDomain:service=JdbcProvider"
  attribute name="Drivers"org.postgresql.Driver/attribute
   /mbean

   mbean code="org.jboss.jdbc.XADataSourceLoader"
name="DefaultDomain:service=XADataSource,name=postgres"
 attribute name="PoolName"postgres/attribute
 attribute

name="DataSourceClass"org.opentools.minerva.jdbc.xa.wrapper.XADataSource
Imp
l/attribute
 attribute name="Properties"/attribute
 attribute

RE: [JBoss-user] JBoss@Oreilly conference.

2001-03-30 Thread marc fleury

| - Local interfaces added for possible cal by reference semantic between
| beens in the same...well ear-file I think. Makes entity beans possible to
| use in a fine grained fasion, behind an entity or session facade wich
| calles them throug the container but with normal java local call
|semantic.
|
|Which is basically what we allow today. Nice to see it standardized.

yes it is nice, however I don't see why the "ear" restriction.  I will code
that "class loader" we have wrestling with,

marc

|
|regards,
|  Rickard
|
|
|
|___
|JBoss-user mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] I need ammo

2001-03-30 Thread marc fleury

| What are the compelling business cases, guys? Or, to put it another way,
| where's the money? I've thought of quite a few, but I won't list them yet
| because I don't want to blind you to your own insights.
|
|Here's one for ya: painless integration.
|
|Need to add your own custom stuff? No problem, write a JMX
|component for it.
|Need to integrate tool XYZ? No problem, write a JMX component for it.
|
|This is not easily done with many other tools, and translates directly to
|time-to-market and money benefits.

he was talking about the $ value to us rickard,

marc


|
|/Rickard
|
|
|
|___
|JBoss-user mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] I need ammo

2001-03-30 Thread marc fleury

everyone's got it yet?

marc


|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of Peter
|Routtier-Wone
|Sent: Friday, March 30, 2001 3:48 AM
|To: [EMAIL PROTECTED]
|Subject: Re: [JBoss-user] I need ammo
|
|
|Jim, this reason will work on me. It's logical and it's testable, with an
|immediate benefit.
|
|It will NOT work on a corporate decision-maker who wouldn't know a
|desirable
|EJB feature if it fell on his head.
|
|What are the compelling business cases, guys? Or, to put it another way,
|where's the money? I've thought of quite a few, but I won't list them yet
|because I don't want to blind you to your own insights.
|
|- Original Message -
|From: Jim Archer
|Subject: RE: [JBoss-user] I need ammo
|
|I'll suggest another reason to use jBoss right now. With an inexpensive
|add-in (check out http://www.mvcsoft.com), you can start codeing in EJB 2.0
|
|
|
|___
|JBoss-user mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



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

2001-03-30 Thread marc fleury

|I believe that this is misinformation. JBoss's bundled transaction
|manager implements two phase commit, so using multiple XAResources in
|the same transaction should work fine.
|
|What it doesn't support is propagating the transaction context to other
|transaction managers, i.e. outside one JVM.

that is misinformation as well.  We DO propagate the context, we just don't
provide a JBossTX that supports extraVM import export, we integrate with
others TM

We really must do the proof of concept ONCE AND FOR ALL, to put this
misinformation to be... ole you there?

marc
|
|Toby.
|
|
|___
|JBoss-user mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] JBoss@Oreilly conference.

2001-03-30 Thread marc fleury

Thanks for the report,

I am glad JBoss was mentionned everywhere, we *are* the open source leading
group in J2EE, and buzz makes us feel all warm.

I will just say this...

I had to cancel because I am working on the training, I am broke (post
Telkel), and I am going to JavaONE and I pay one ticket, Rickard who was
going to replace me couldnt' go for his own reasons, I even tried to get Mad
Andy, but couldn't reach him in time. Then the OReilly guys called me up on
monday saying "please come we will pay the ticket" so I answered that the
first ticket I could find for a day trip was $2000 from Atlanta to SF.  They
said wow... way too expensive (they cover ONLY $500)... and that is the
reason why no one from JBoss was there...

So let it be known that OReilly conference guys are "cheap bastards".

They built a publishing reputation on Open Source Developers and when it
comes to paying speakers to go to THEIR conferences to do THEIR work, they
don't want to pay a meager $2000.

I am dissapointed to say the least, things are not as pretty from behind as
they look on the shelves of book stores.

Let it be known "cheeep baaasta"

marc


PS: michael is in copy, but no flames please, they juggle "budget
restrictions" as they see fit.



|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of Peter Antman
|Sent: Friday, March 30, 2001 2:00 AM
|To: [EMAIL PROTECTED]
|Subject: [JBoss-user] JBoss@Oreilly conference.
|
|
|Hi,
|so the last day of the Oreilly Java Enterprise Conference has past. Yes, I
|was there, and I really heard a LOT of people talking about, mention,
|referencing, planing to test JBoss. Thats nice, but a shame that no one
|from the JBoss team showed up, instead the open source part of the
|conference was dominated by apache, SUN and exolab folks. Nice people, but
|NO JBoss. Well, I of course picked every possible situation to talk about
|the MDB support in JBoss ;-).
|
|
|I also tried to pump the folks from SonicMQ about what they are doing,
|which basically seems to be proprietary integration into some application
|server to realy be able to use JMS as a transacted resource from within
|beans (not possible now). And then: XML based messaging, such as support
|for SOAP and JAXM. It would probaly be great if JBoss could be a leader
|also in XML integration into the app-server, perhaps asadd-on services
|(since they are outside of the J2EE spec).
|
|A speach wasalso held from the EJB2.0 group. A great speach wich outlined
|the changes in the spec for CMP.Realy great changes, I think:
|
|- Dependant objects are discarded (there simply not there any more)
|
|- Local interfaces added for possible cal by reference semantic between
|beens in the same...well ear-file I think. Makes entity beans possible to
|use in a fine grained fasion, behind an entity or session facade wich
|calles them throug the container but with normal java local call semantic.
|
|- references bewteen remote interfaces discarded.
|
|- QL clean up.
|
|My impression  is that this will make it a lot easier to get a EJB2.0
|compliant CMP container up fast for JBoss.
|
|The final pre 2 spec should be published in a couple of weeks.
|
|Well, that was just a few imressions from the conference. And by the way,
|I have started writing a J2EE Connector JMS resource adapter, which will
|bring JMS as a true resource (transacted) to JBoss also for publishing
|and not only (as now) for message driven  beasn;-)
|
|//Peter
|
|Jobba hos oss: http://www.tim.se/weblab
|
|Peter AntmanTechnology in Media, Box 34105 100 26 Stockholm
|Systems Architect   WWW: http://www.tim.se
|Email: [EMAIL PROTECTED] WWW: http://www.backsource.org
|Phone: +46-(0)8-506 381 11 Mobile: 070-675 3942
|
|
|
|___
|JBoss-user mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



AW: [JBoss-user] JBoss@Oreilly conference.

2001-03-30 Thread Mellouk, Mohammed

Marc die nchste ;-)

-Ursprngliche Nachricht-
Von: marc fleury [mailto:[EMAIL PROTECTED]]
Gesendet am: Freitag, 30. Mrz 2001 16:50
An: [EMAIL PROTECTED]
Cc: Michael Loukides
Betreff: RE: [JBoss-user] JBoss@Oreilly conference.

Thanks for the report,

I am glad JBoss was mentionned everywhere, we *are* the open source leading
group in J2EE, and buzz makes us feel all warm.

I will just say this...

I had to cancel because I am working on the training, I am broke (post
Telkel), and I am going to JavaONE and I pay one ticket, Rickard who was
going to replace me couldnt' go for his own reasons, I even tried to get Mad
Andy, but couldn't reach him in time. Then the OReilly guys called me up on
monday saying "please come we will pay the ticket" so I answered that the
first ticket I could find for a day trip was $2000 from Atlanta to SF.  They
said wow... way too expensive (they cover ONLY $500)... and that is the
reason why no one from JBoss was there...

So let it be known that OReilly conference guys are "cheap bastards".

They built a publishing reputation on Open Source Developers and when it
comes to paying speakers to go to THEIR conferences to do THEIR work, they
don't want to pay a meager $2000.

I am dissapointed to say the least, things are not as pretty from behind as
they look on the shelves of book stores.

Let it be known "cheeep baaasta"

marc


PS: michael is in copy, but no flames please, they juggle "budget
restrictions" as they see fit.



|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of Peter Antman
|Sent: Friday, March 30, 2001 2:00 AM
|To: [EMAIL PROTECTED]
|Subject: [JBoss-user] JBoss@Oreilly conference.
|
|
|Hi,
|so the last day of the Oreilly Java Enterprise Conference has past. Yes, I
|was there, and I really heard a LOT of people talking about, mention,
|referencing, planing to test JBoss. Thats nice, but a shame that no one
|from the JBoss team showed up, instead the open source part of the
|conference was dominated by apache, SUN and exolab folks. Nice people, but
|NO JBoss. Well, I of course picked every possible situation to talk about
|the MDB support in JBoss ;-).
|
|
|I also tried to pump the folks from SonicMQ about what they are doing,
|which basically seems to be proprietary integration into some application
|server to realy be able to use JMS as a transacted resource from within
|beans (not possible now). And then: XML based messaging, such as support
|for SOAP and JAXM. It would probaly be great if JBoss could be a leader
|also in XML integration into the app-server, perhaps as add-on services
|(since they are outside of the J2EE spec).
|
|A speach was also held from the EJB2.0 group. A great speach wich outlined
|the changes in the spec for CMP.Realy great changes, I think:
|
|- Dependant objects are discarded (there simply not there any more)
|
|- Local interfaces added for possible cal by reference semantic between
|beens in the same...well ear-file I think. Makes entity beans possible to
|use in a fine grained fasion, behind an entity or session facade wich
|calles them throug the container but with normal java local call semantic.
|
|- references bewteen remote interfaces discarded.
|
|- QL clean up.
|
|My impression  is that this will make it a lot easier to get a EJB2.0
|compliant CMP container up fast for JBoss.
|
|The final pre 2 spec should be published in a couple of weeks.
|
|Well, that was just a few imressions from the conference. And by the way,
|I have started writing a J2EE Connector JMS resource adapter, which will
|bring JMS as a true resource (transacted) to JBoss also for publishing
|and not only (as now) for message driven  beasn;-)
|
|//Peter
|
|Jobba hos oss: http://www.tim.se/weblab
|
|Peter AntmanTechnology in Media, Box 34105 100 26 Stockholm
|Systems Architect   WWW: http://www.tim.se
|Email: [EMAIL PROTECTED] WWW: http://www.backsource.org
|Phone: +46-(0)8-506 381 11 Mobile: 070-675 3942
|
|
|
|___
|JBoss-user mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] Experience with Oracle cached statements and Minerva

2001-03-30 Thread Tim Taylor

It looks to me like you can't use Oracle's statement caching and Minerva 
pools together without modifying JBoss and/or Minerva code.  Minerva 
does statement caching itself, but there is no way to control it 
centrally, either from jboss.jcml or from a hand-written service MBean. 
  The statement cache size seems hard-coded to 10 for startup and can 
only be changed on a connection-by-connection basis.

When I set up my jboss.jcml OracleDB for transactions and use minerva's 
XADataSourceImpl, minerva creates plain OracleConnection objects and 
does all of the XA magic itself.  When I set up my OracleDB to use 
Oracle's OracleXADataSource, minerva creates OracleConnection objects 
factoried from an OracleXAConnection. In both cases, minerva statement 
caching interferes with Oracle statement caching.

My perfect world would be to use the OracleXADataSource, Oracle's 
statement caching, and minerva's pooling.  This just sounds a lot more 
reliable WRT 2PC and database resource management (e.g., cursors), to 
name a couple of reasons.  However, it looks like code has to be written 
to get that done.  Does anyone have any other experience trying to do this?

Thanks,

Tim


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] JBoss@Oreilly conference.

2001-03-30 Thread Peter Antman

On Fri, 30 Mar 2001, Toby Allsopp wrote:

 Peter Antman wrote:
 
  Well, that was just a few imressions from the conference. And by the way,
  I have started writing a J2EE Connector JMS resource adapter, which will
  bring JMS as a true resource (transacted) to JBoss also for publishing
  and not only (as now) for message driven  beasn;-)
 
 Hi, Peter.
 
 The JCA 1.0 spec has no asynchronous support, so this resource adapter
 will only handle sending messages, right?

Correct, I would have to srt of have a cover up class that does not allow
any of the not supported operations (which are specifyed in the J2EE 1.3
specification).

  
 Are you aware of the JSR for JCA 2.0, which adds asynchronous stuff? It
 also explicitly mentions JMS.

I was not up until to yesterday, when one of the OpenEJB guys told me
about it. But I already know that the next version would go into JMS
provider plugability. But how long time will it take before that
spec is out ? Probably a year.

I do think we can get JMS working as a connector, perhaps with some minor
JBoss specific code. I know the other server vendors integrates thaire JMS
offereings tighter into the plattform, therefor JBoss ought to do that to.

 
 
 It might be cool to get JBoss represented in the expert group for this
 JSR (JSR 112
 http://java.sun.com/aboutJava/communityprocess/jsr/jsr_112_connector.html).
 What do you think? Perhaps this is a quesstion for the board.

Yea, I think it would be good fpr JBoss to be represented in a lot of the
expert group, the same way other vendors and the apache team is. But if
the JBoss board should have a say in this, I don't know.

But its kind of tempting to see the link: "I Would like to join this
expert group" ;-)

//Peter

 
 Toby.
 
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 

Jobba hos oss: http://www.tim.se/weblab

Peter Antman Technology in Media, Box 34105 100 26 Stockholm
Systems ArchitectWWW: http://www.tim.se
Email: [EMAIL PROTECTED]  WWW: http://www.backsource.org
Phone: +46-(0)8-506 381 11 Mobile: 070-675 3942 



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] SQL Server Drivers

2001-03-30 Thread Frank Thiemonge (NBK)




We are 
using the i-net Opta 2000. you can read more about it at http://www.inetsoftware.de/English/Produkte/OPTA/default.htmand the jboss-user archives (I posted 
quite a bit about it already. Look for something like "SQL Server Driver Test"). 
It costs about $1600 for an all you can eat license. You can find some for less, 
but it had the best bang for the buck from my research. For information on what 
other drivers are out there, look to http://industry.java.sun.com/products/jdbc/drivers. I have not heard of any free type 4 JDBC 
driver for SQL Server. In theory, you could use a JDBC-ODBC bridge, but it is 
highly unrecommended. Let me know how your search goes.

Hope 
this helps,

Frank

  
  -Original 
  Message-From: Rama Rao 
  [mailto:[EMAIL PROTECTED]]Sent: Friday, March 30, 2001 12:10 
  AMTo: [EMAIL PROTECTED]Subject: 
  [JBoss-user] SQL Server Drivers
  Hi,What is the driver you are using for SQL 
  Server 2000.From which company? How much does it cost?Can we get any 
  open source SQL Server driver .TIARegardsRama 
  Rao


FW: [JBoss-user] Transaction Isolation Level

2001-03-30 Thread Kevin Meldorf (NBK)

Yo Marc! If you're still browsing the list,
could you field this one for me???

Thanks
Kevin

-Original Message-
From: Kevin Meldorf (NBK) [mailto:[EMAIL PROTECTED]]
Sent: Thursday, March 29, 2001 2:06 PM
To: [EMAIL PROTECTED]
Subject: [JBoss-user] Transaction Isolation Level


How are Transaction Isolation Levels handled in jboss? Weblogic
seems to use a proprietary method in their weblogic-ejb-jar file.
If jboss does have a control over Transaction Isolation Levels,
where and how do you declare them.

Thanks,

Kevin

Kevin Meldorf
Systems Analyst
WorldTravel BTI
400 Skokie Blvd
Northbrook, IL 60062
Phone: (847) 480-8340
[EMAIL PROTECTED]




___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] I need ammo.

2001-03-30 Thread Bill Burke

Peter,

We're not in production yet, but we are in beta.  We originally started 
working and developing with Weblogic 5.1 about a year ago and actually 
went into beta with it.  Recently, about a month ago, because of serious 
budgetary constraints, we ported from Weblogic to JBoss and have been 
using it ever since.  Now, budgetary constraints have been lifted and 
upper management is thinking of going back to using Weblogic.  I have 
been fighting furiously against this.  Not only do I think that JBoss 
could potentially become a superior product(in many ways, it already 
is!), but IMHO, OpenSource has serious long term advantages that can't 
be overlooked.

In the meantime, I'm keeping a parallel nightly build going with 
Weblogic so that if we need to (or if forced to :-( ),  we can switch 
back to WebLogic.

IMHO, I think we would be an incredible testimonial for JBoss, not only 
because of the scale of our application, but also because we moved from 
Weblogic.

Regards,
Bill

Peter Routtier-Wone wrote:

 You're a pearl, Bill. This is exactly the sort of stuff I need for the promo
 material I'm preparing - unsolicited from-the-trenches testimonial.
 
 It may  help to point out to your employers that they have no guarantees
 from the other container providers, and that JBoss gives them the ability to
 rescue themselves, which the other vendors don't.
 
 Point out that official support just means vested interest in maintaining
 customer loyalty, and that if they want evidence of vested interest Marc F
 has bet the farm on the success of JBoss.
 
 If anyone can furnish either medium to large testimonial for Bill's use then
 I would also appreciate a copy.
 
 If not a production app, what about benchmark figures? TPc?
 
 Bill, would it help to remind your PHB that you can always switch to another
 container?
 
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 
 
 



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] JMX implications

2001-03-30 Thread Rickard Öberg

  Need to add your own custom stuff? No problem, write a JMX component for
it.
  Need to integrate tool XYZ? No problem, write a JMX component for it.

 I have started reading up on JMX. It appears to be basically an
instrumentation standard, and finally I've discovered the signifance of all
the chatter about MBeans.

 Do the various subsystems of JBoss implement the Agent Level?

All subsystems are instrumented MBeans. Period.

 Does inheritance from JBoss classes automatically instrument our EJBs?

No the actual EJB's have nothing to do with JMX. They exist only under
the premises of the EJB/J2EE spec. And where did you get inheritance from
JBoss classes? What classes are you referring to? When you build your EJB's
you don't do anything JBoss related. JBoss just runs 'em.

/Rickard



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] instantdb deadlock

2001-03-30 Thread gregor . giebel


While we're at it: I have my db (InstantDB - the default out-of-the-box db)
set to drop tables and recreate them after use, which is fine for my (very
small) development environment. However, when coming up again, InstantDB (or
is it Hypersonic? I haven't really found out about the difference between
the two) tries to reestablish its state by going through the whole
default.script. The largest script I had so far was ~750MB, taking way too
much time just for dropping the tables afterwards anyway. 

Of course, the workaround is to do a head -n 108 default.script and just
remove the rest in the script, but couldn't jBoss be set to check for table
dropping _before_ it sets out to reestablish the old state?

Is that a jBoss question at all, or should I ask some of the
Hypersonic/InstantDB people?

Cheers, Gregor



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] JMX implications

2001-03-30 Thread Peter Routtier-Wone

 Do the various subsystems of JBoss implement the Agent Level?

 All subsystems are instrumented MBeans. Period.

 Does inheritance from JBoss classes automatically instrument our EJBs?

 No the actual EJB's have nothing to do with JMX. They exist only under
 the premises of the EJB/J2EE spec. And where did you get inheritance from
 JBoss classes? What classes are you referring to? When you build your EJB's
 you don't do anything JBoss related. JBoss just runs 'em.

In hindsight it was a silly question. I have a habit of matched pairs of interfaces 
and base classes (into which I might put such instrumentation) with everything 
inheriting from the base class rather than directly implementing the interface, but 
this couldn't possibly be the way with JBoss; that would make it fundamentally 
different from all other containers.

I was just trying to work out how everything gets instrumented, and the extent of 
"everything".

My lesson for today is "engage brain before opening mouth".
$,f–)–+-$,X(~Šzw†ib,y+b?–+-Šw6z


RE: [JBoss-user] Keeping WL and JBoss Deployment Descriptors in synch, reference I need ammo.

2001-03-30 Thread marc fleury

Develop that "plugin" sell it for $10 bucks through JBoss Group

"write code, get paid"

marc


|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of John Penrose
|Sent: Friday, March 30, 2001 11:05 AM
|To: '[EMAIL PROTECTED]'
|Subject: [JBoss-user] Keeping WL and JBoss Deployment Descriptors in
|synch, reference " I need ammo".
|
|
|Bill,
|
|We want to do the opposite, but we're not actually doing it yet: we would
|like to develop under WebLogic, and eventually deploy under both WebLogic
|and JBoss.
|
|We have determined that we need clustering and fail over, so it looks like
|JBoss is out for now.  But when JBoss supports that, we'll jump on it.
|
|My question is this: is there a way to keep the app-server-specific
|deployment descriptors in synch through some sort of tool?  Is there a
|migration tool that maps WebLogic Deployment Descriptors to JBoss's, or
|vice-versa?  How do you update your WL DDs?
|
|Regards,
|John
|
|John Penrose
|[EMAIL PROTECTED]
|[EMAIL PROTECTED]
|
|
|-Original Message-
|From: Bill Burke [mailto:[EMAIL PROTECTED]]
|Sent: Friday, March 30, 2001 10:25 AM
|To: [EMAIL PROTECTED]
|Subject: Re: [JBoss-user] I need ammo.
|
|
|Peter,
|
|We're not in production yet, but we are in beta.  We originally started
|working and developing with Weblogic 5.1 about a year ago and actually
|went into beta with it.  Recently, about a month ago, because of serious
|budgetary constraints, we ported from Weblogic to JBoss and have been
|using it ever since.  Now, budgetary constraints have been lifted and
|upper management is thinking of going back to using Weblogic.  I have
|been fighting furiously against this.  Not only do I think that JBoss
|could potentially become a superior product(in many ways, it already
|is!), but IMHO, OpenSource has serious long term advantages that can't
|be overlooked.
|
|In the meantime, I'm keeping a parallel nightly build going with
|Weblogic so that if we need to (or if forced to :-( ),  we can switch
|back to WebLogic.
|
|IMHO, I think we would be an incredible testimonial for JBoss, not only
|because of the scale of our application, but also because we moved from
|Weblogic.
|
|Regards,
|Bill
|
|Peter Routtier-Wone wrote:
|
| You're a pearl, Bill. This is exactly the sort of stuff I need for the
|promo
| material I'm preparing - unsolicited from-the-trenches testimonial.
|
| It may  help to point out to your employers that they have no guarantees
| from the other container providers, and that JBoss gives them the ability
|to
| rescue themselves, which the other vendors don't.
|
| Point out that official support just means vested interest in maintaining
| customer loyalty, and that if they want evidence of vested
|interest Marc F
| has bet the farm on the success of JBoss.
|
| If anyone can furnish either medium to large testimonial for Bill's use
|then
| I would also appreciate a copy.
|
| If not a production app, what about benchmark figures? TPc?
|
| Bill, would it help to remind your PHB that you can always switch to
|another
| container?
|
|
| ___
| JBoss-user mailing list
| [EMAIL PROTECTED]
| http://lists.sourceforge.net/lists/listinfo/jboss-user
|
|
|
|
|
|
|___
|JBoss-user mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-user
|
|___
|JBoss-user mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Custom MBeans

2001-03-30 Thread James Kiryakoza

The Jboss.jcml seems to be overwritten whether it's in the conf directory or
the conf/default directory. However, this may be a bug in JBoss 2.0. I
switch to 2.1 and the problem no longer happens.

Merci

-Original Message-
From: joel cordonnier [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 12:11 AM
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-user] Custom MBeans


Do you use the 'Default' configuration or your own ?

Joel


--- James Kiryakoza [EMAIL PROTECTED] a crit :
 I created a custom MBean to set up my Log4J
 configuration. The bean works
 fine, but when I try to pass it a parameter by
 including a reference to it
 in the Jboss.jcml file, the jcml file is always
 overwritten and my entry is
 deleted. Does anyone have any ideas as to why this
 is happening.
  
 Here is the entry I'm trying to place in the jcml
 file:  
  
 mbean name="Log4J:service=LogInitializer"
attribute
 name="PropertyFile"EngageApps.log/attribute
 /mbean
 
  
  
 James Kiryakoza
 Engage Media
 415-615-2752
 [EMAIL PROTECTED] mailto:  
 
  
 
 

 ATTACHMENT part 2 image/jpeg name=Glacier Bkgrd.jpg



___
Do You Yahoo!? -- Pour dialoguer en direct avec vos amis, 
Yahoo! Messenger : http://fr.messenger.yahoo.com

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] I need ammo.....(Humorours..)

2001-03-30 Thread Bill Burke

Thought you all might find this funny.  I got this below email from my 
"I need ammo" thread.  Pretty funny huh?  I guess "ammo" is a dirty 
word.  :-)


 Original Message 
Subject: ScanMail Message: To Sender, sensitive content found and action 
t aken.
Date: Fri, 30 Mar 2001 10:47:48 -0500
From: [EMAIL PROTECTED]
To: [EMAIL PROTECTED]



Trend SMEX Content Filter has detected sensitive content.

Place = [EMAIL PROTECTED]; ; ; 
[EMAIL PROTECTED]
Sender = Bill Burke
Subject = Re: [JBoss-user] I need ammo.
Delivery Time = March 30, 2001 (Friday) 10:47:46
Policy = Dirty Words
Action on this mail = Quarantine message

Warning message from administrator:
Sender, Content filter has detected a sensitive e-mail.



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [jBoss-User] Error when creating entity bean

2001-03-30 Thread Tim Yates

Solved half of the problem (we think)

One of the editorial staff was going through an MS proxy which was caching
everything, and reposting information with the same PK

Still don't know why it locked, and didn't just destroy the erroneous Entity
bean, but at least now, it shouldn't get in that state...

Tim.

- Original Message -
From: Tim Yates [EMAIL PROTECTED]

 Occasionally, when a user is adding an item of content to the system, the
 server.log file shows the following error:

 java.sql.SQLException: ORA-00600: internal error code, arguments: [19942],
 [], [], [], [], [], [], []

 we then get

 [Content] LOCKING-WAITING (TRANSACTION) for id TNSContent395443
ctx.hash
 2224828 tx:TransactionImpl:XidImpl:[B@471d2b

 over and over and over, and the website stops responding...



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Custom MBeans

2001-03-30 Thread James Kiryakoza

I'm no expert, but here's some code to get you started if you'd like to
create an MBean called Foo:

1) Create an interface called FooMBean. It can be empty, but it will contain
method declarations for your accessor/mutator methods if you have any.


package com.example.FooMBean;

public interface FooMBean
{
public static final String OBJECT_NAME = ":service=FooExample";

public void setFileName(String fileName);
public String getFileName();
}

2) Next create a class named Foo that extends ServiceMBeanSupport and
implements MBeanRegistration and FooMBean and minimally implement the
following methods: getName, getObjectName, initService. The
ServiceMBeanSupport is an adaptor class that provides bare bones
implementations of methods like startService or stopServices that are called
as various stages of the MBeanlife cycle. You can override these methods to
add more functionality.

package com.example.Foo;

import org.jboss.util.ServiceMBeanSupport;
import javax.management.*;

public class Foo extends ServiceMBeanSupport implements MBeanRegistration,
FooMBean
{  
ObjectName name;
MBeanServer server;
String fileName;
 
public Foo(){ )

public Foo(String fileName)
{
this.fileName = fileName;
)
   
// ServiceMBeanSupport implementation 
public ObjectName getObjectName(MBeanServer server, ObjectName name)
throws javax.management.MalformedObjectNameException
{
return name == null ? new ObjectName(OBJECT_NAME) : name;
}
 
public String getName()
{
return "Foo Exmaple";
}

public void initService() throws java.lang.Exception
{
System.out.println("FileName = " + fileName);
}

public void setFileName(String fileName)
{
this.fileName = fileName;
}

public String getFileName() { return this.fileName; }
}

3) To use the MBean make the following entry in the jboss.conf file

MLET CODE="com.example.Foo" ARCHIVE="foo.jar" CODEBASE="../../lib/ext/"
ARG TYPE="java.lang.String" VALUE="example.txt"
/MLET

This form passes the file name into the constructor. You could also omit the
parameter:

MLET CODE="com.example.Foo" ARCHIVE="foo.jar" CODEBASE="../../lib/ext/"
/MLET

in which case you must also make an entry int he jboss.jcml file:

 mbean code="com.example.Foo" name="DefaultDomain:service=FooExample"
   attribute name="FileName"exmaple.file/attribute
 /mbean

4) Make sure you'r using the latest version of JBoss. The 2.0 version i used
seemed to overwrite the changes I made to the jboss.jcml file.

Hope this helps.

Jim

-Original Message-
From: Penn [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 12:42 AM
To: [EMAIL PROTECTED]
Subject: RE: [JBoss-user] Custom MBeans


Hi,

i'm learning to create a MBean, may i know where/how to start

thanks

Penn

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of joel
cordonnier
Sent: Friday, March 30, 2001 4:11 PM
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-user] Custom MBeans


Do you use the 'Default' configuration or your own ?

Joel


--- James Kiryakoza [EMAIL PROTECTED] a crit :
 I created a custom MBean to set up my Log4J
 configuration. The bean works
 fine, but when I try to pass it a parameter by
 including a reference to it
 in the Jboss.jcml file, the jcml file is always
 overwritten and my entry is
 deleted. Does anyone have any ideas as to why this
 is happening.

 Here is the entry I'm trying to place in the jcml
 file:

 mbean name="Log4J:service=LogInitializer"
attribute
 name="PropertyFile"EngageApps.log/attribute
 /mbean



 James Kiryakoza
 Engage Media
 415-615-2752
 [EMAIL PROTECTED] mailto:





 ATTACHMENT part 2 image/jpeg name=Glacier Bkgrd.jpg



___
Do You Yahoo!? -- Pour dialoguer en direct avec vos amis,
Yahoo! Messenger : http://fr.messenger.yahoo.com

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Keeping WL and JBoss Deployment Descriptors in synch, reference I need ammo.

2001-03-30 Thread Dewayne McNair

Just a thought, but, this sounds like a job for a "style" task in ant --
write an XSLT that will transform one vendor descriptor to another.

-- Dewayne

 My question is this: is there a way to keep the app-server-specific
 deployment descriptors in synch through some sort of tool?  Is there a
 migration tool that maps WebLogic Deployment Descriptors to JBoss's, or
 vice-versa?  How do you update your WL DDs?



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Keeping WL and JBoss Deployment Descriptors in synch, reference I need ammo.

2001-03-30 Thread Bill Burke

John,

We just started having a parallel build of Weblogic and JBoss so we're 
still working out the kinks, but

You can share ejb-jar.xml because that is a standard file.  One of my 
colleagues has written some python scripts to convert Weblogic DDs into 
Jboss DDs.  There is some hand editing of the XML still involved after 
you run the python scripts, but I'm sure that a little massaging of the 
python scripts could fully automate the process.  Jamie?

Bill

marc fleury wrote:

 Develop that "plugin" sell it for $10 bucks through JBoss Group
 
 "write code, get paid"
 
 marc
 
 
 |-Original Message-
 |From: [EMAIL PROTECTED]
 |[mailto:[EMAIL PROTECTED]]On Behalf Of John Penrose
 |Sent: Friday, March 30, 2001 11:05 AM
 |To: '[EMAIL PROTECTED]'
 |Subject: [JBoss-user] Keeping WL and JBoss Deployment Descriptors in
 |synch, reference " I need ammo".
 |
 |
 |Bill,
 |
 |We want to do the opposite, but we're not actually doing it yet: we would
 |like to develop under WebLogic, and eventually deploy under both WebLogic
 |and JBoss.
 |
 |We have determined that we need clustering and fail over, so it looks like
 |JBoss is out for now.  But when JBoss supports that, we'll jump on it.
 |
 |My question is this: is there a way to keep the app-server-specific
 |deployment descriptors in synch through some sort of tool?  Is there a
 |migration tool that maps WebLogic Deployment Descriptors to JBoss's, or
 |vice-versa?  How do you update your WL DDs?
 |
 |Regards,
 |John
 |
 |John Penrose
 |[EMAIL PROTECTED]
 |[EMAIL PROTECTED]
 |
 |
 |-Original Message-
 |From: Bill Burke [mailto:[EMAIL PROTECTED]]
 |Sent: Friday, March 30, 2001 10:25 AM
 |To: [EMAIL PROTECTED]
 |Subject: Re: [JBoss-user] I need ammo.
 |
 |
 |Peter,
 |
 |We're not in production yet, but we are in beta.  We originally started
 |working and developing with Weblogic 5.1 about a year ago and actually
 |went into beta with it.  Recently, about a month ago, because of serious
 |budgetary constraints, we ported from Weblogic to JBoss and have been
 |using it ever since.  Now, budgetary constraints have been lifted and
 |upper management is thinking of going back to using Weblogic.  I have
 |been fighting furiously against this.  Not only do I think that JBoss
 |could potentially become a superior product(in many ways, it already
 |is!), but IMHO, OpenSource has serious long term advantages that can't
 |be overlooked.
 |
 |In the meantime, I'm keeping a parallel nightly build going with
 |Weblogic so that if we need to (or if forced to :-( ),  we can switch
 |back to WebLogic.
 |
 |IMHO, I think we would be an incredible testimonial for JBoss, not only
 |because of the scale of our application, but also because we moved from
 |Weblogic.
 |
 |Regards,
 |Bill
 |
 |Peter Routtier-Wone wrote:
 |
 | You're a pearl, Bill. This is exactly the sort of stuff I need for the
 |promo
 | material I'm preparing - unsolicited from-the-trenches testimonial.
 |
 | It may  help to point out to your employers that they have no guarantees
 | from the other container providers, and that JBoss gives them the ability
 |to
 | rescue themselves, which the other vendors don't.
 |
 | Point out that official support just means vested interest in maintaining
 | customer loyalty, and that if they want evidence of vested
 |interest Marc F
 | has bet the farm on the success of JBoss.
 |
 | If anyone can furnish either medium to large testimonial for Bill's use
 |then
 | I would also appreciate a copy.
 |
 | If not a production app, what about benchmark figures? TPc?
 |
 | Bill, would it help to remind your PHB that you can always switch to
 |another
 | container?
 |
 |
 | ___
 | JBoss-user mailing list
 | [EMAIL PROTECTED]
 | http://lists.sourceforge.net/lists/listinfo/jboss-user
 |
 |
 |
 |
 |
 |
 |___
 |JBoss-user mailing list
 |[EMAIL PROTECTED]
 |http://lists.sourceforge.net/lists/listinfo/jboss-user
 |
 |___
 |JBoss-user mailing list
 |[EMAIL PROTECTED]
 |http://lists.sourceforge.net/lists/listinfo/jboss-user
 
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 
 
 



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] I need ammo.....(Humorours..)

2001-03-30 Thread Peter Routtier-Wone

Are you sure it wasn't the topic of marketing that was obscene? These AIs are getting 
better...
A.j)bžbA.Šl‹qzmŸ–+-.Ÿ–+-b~n‹,


RE: [JBoss-user] Keeping WL and JBoss Deployment Descriptors in synch, reference I need ammo.

2001-03-30 Thread John Moore
Title: RE: [JBoss-user] Keeping WL and JBoss Deployment Descriptors in synch, reference  I need ammo.






John P.,


We are building under jBoss and will deploy under jBoss but we also have customers who are existing WebLogic and Inprise customers who are going to host the application themselves.

Our approach was to create our own bean descriptor in XML and to apply style sheets to produce all of the necessary output. For example, apply an ejb-jar.jboss.xsl to all of our descriptors (1 per bean) and create a consoldidated ejb-jar.xml output file. The same was done for the jboss and jaws descriptors to support Oracle and InterBase. Other vendor specific descriptors are handled using the same mechanism.

The finder support requires additional work because of the format of the declaration and arguments to each of the servers differs. Inprise uses findByAccount( Integer account ) with a where of account_id = :account vs. jBoss of findByAccount with account = {0}. 

Now, it is certainly not as elegant as the plug-in the mark suggested but it works for us. We'll be creating a Task in Ant and will make it an integrated part of our build process when time permits.

John M.



-Original Message-
From: John Penrose [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 8:05 AM
To: '[EMAIL PROTECTED]'
Subject: [JBoss-user] Keeping WL and JBoss Deployment Descriptors in
synch, reference  I need ammo.



Bill,


We want to do the opposite, but we're not actually doing it yet: we would
like to develop under WebLogic, and eventually deploy under both WebLogic
and JBoss.


We have determined that we need clustering and fail over, so it looks like
JBoss is out for now. But when JBoss supports that, we'll jump on it.


My question is this: is there a way to keep the app-server-specific
deployment descriptors in synch through some sort of tool? Is there a
migration tool that maps WebLogic Deployment Descriptors to JBoss's, or
vice-versa? How do you update your WL DDs?


Regards,
John


John Penrose
[EMAIL PROTECTED]
[EMAIL PROTECTED]



-Original Message-
From: Bill Burke [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 10:25 AM
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-user] I need ammo.



Peter,


We're not in production yet, but we are in beta. We originally started 
working and developing with Weblogic 5.1 about a year ago and actually 
went into beta with it. Recently, about a month ago, because of serious 
budgetary constraints, we ported from Weblogic to JBoss and have been 
using it ever since. Now, budgetary constraints have been lifted and 
upper management is thinking of going back to using Weblogic. I have 
been fighting furiously against this. Not only do I think that JBoss 
could potentially become a superior product(in many ways, it already 
is!), but IMHO, OpenSource has serious long term advantages that can't 
be overlooked.


In the meantime, I'm keeping a parallel nightly build going with 
Weblogic so that if we need to (or if forced to :-( ), we can switch 
back to WebLogic.


IMHO, I think we would be an incredible testimonial for JBoss, not only 
because of the scale of our application, but also because we moved from 
Weblogic.


Regards,
Bill


Peter Routtier-Wone wrote:


 You're a pearl, Bill. This is exactly the sort of stuff I need for the
promo
 material I'm preparing - unsolicited from-the-trenches testimonial.
 
 It may help to point out to your employers that they have no guarantees
 from the other container providers, and that JBoss gives them the ability
to
 rescue themselves, which the other vendors don't.
 
 Point out that official support just means vested interest in maintaining
 customer loyalty, and that if they want evidence of vested interest Marc F
 has bet the farm on the success of JBoss.
 
 If anyone can furnish either medium to large testimonial for Bill's use
then
 I would also appreciate a copy.
 
 If not a production app, what about benchmark figures? TPc?
 
 Bill, would it help to remind your PHB that you can always switch to
another
 container?
 
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 
 
 




___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user





[JBoss-user] Web App Fails to Run on Disconnected Windows 2000 Laptop

2001-03-30 Thread Dole, Christopher

Hello,

I do some of my development on the road, away from any networks. I have a
web application that runs fine when I'm connected, but throws the error
below when it tries to start and I am not connected to a network.

I am running jboss-tomcat-2.1-beta, and otherwise everything is working
fine. I have some print statements in my startup servlet, and it does not
look like JBoss is getting that far.

Is there something in the JBoss runtime that needs to get a host? Is there
some way around this? Quite a bit of my development will need to be in
stand-alone mode. I'm running Windows 2000 Professional (workstation) on the
laptop.

Thanks,
Chris


[J2EE Deployer Default] Deploy J2EE application:
file:/C:/usr/local/jboss-tomcat-2.1-beta/jboss-2.1/deploy/InFluid.war
[J2EE Deployer Default] Create application InFluid.war
[J2EE Deployer Default] inflate and install module InFluid.war
[J2EE Deployer Default] Starting module InFluid.war
[Auto deploy] XmlMapper: Can't find resource for entity: -//Sun
Microsystems, Inc.//DTD Web Application 1.2//EN --
http://java.sun.com/j2ee/dtds/web-app_2.2.dtd "null"
[Auto deploy] ERROR reading
C:\usr\local\jboss-tomcat-2.1-beta\jboss-2.1\tmp\deploy\Default\InFluid.war\
web1004\WEB-INF\web.xml
[Auto deploy] At External entity not found:
"http://java.sun.com/j2ee/dtds/web-app_2.2.dtd".
[Auto deploy] ERROR reading
C:\usr\local\jboss-tomcat-2.1-beta\jboss-2.1\tmp\deploy\Default\InFluid.war\
web1004\WEB-INF\web.xml
[Auto deploy] java.net.UnknownHostException: java.sun.com
[Auto deploy]   at java.net.InetAddress.getAllByName0(InetAddress.java:571)
[Auto deploy]   at java.net.InetAddress.getAllByName0(InetAddress.java:540)
[Auto deploy]   at java.net.InetAddress.getByName(InetAddress.java:449)
[Auto deploy]   at java.net.Socket.init(Socket.java:100)
[Auto deploy]   at sun.net.NetworkClient.doConnect(NetworkClient.java:50)
[Auto deploy]   at
sun.net.www.http.HttpClient.openServer(HttpClient.java:331)
[Auto deploy]   at
sun.net.www.http.HttpClient.openServer(HttpClient.java:517)
[Auto deploy]   at sun.net.www.http.HttpClient.init(HttpClient.java:267)
[Auto deploy]   at sun.net.www.http.HttpClient.init(HttpClient.java:277)
[Auto deploy]   at sun.net.www.http.HttpClient.New(HttpClient.java:289)
[Auto deploy]   at
sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.java:3
79)
[Auto deploy]   at
sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnection
.java:472)
[Auto deploy]   at
java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:230)
[Auto deploy]   at
com.sun.xml.parser.Resolver.createInputSource(Resolver.java:248)
[Auto deploy]   at
com.sun.xml.parser.ExternalEntity.getInputSource(ExternalEntity.java:49)
[Auto deploy]   at com.sun.xml.parser.Parser.pushReader(Parser.java:2768)
[Auto deploy]   at
com.sun.xml.parser.Parser.externalParameterEntity(Parser.java:2504)
[Auto deploy]   at
com.sun.xml.parser.Parser.maybeDoctypeDecl(Parser.java:1137)
[Auto deploy]   at com.sun.xml.parser.Parser.parseInternal(Parser.java:481)
[Auto deploy]   at com.sun.xml.parser.Parser.parse(Parser.java:284)
[Auto deploy]   at javax.xml.parsers.SAXParser.parse(SAXParser.java:155)
[Auto deploy]   at javax.xml.parsers.SAXParser.parse(SAXParser.java:126)
[Auto deploy]   at
org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:214)
[Auto deploy]   at
org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.java:2
02)
[Auto deploy]   at
org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
[Auto deploy]   at
org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
[Auto deploy]   at
org.jboss.tomcat.TomcatEntry.initContext(TomcatEntry.java:132)
[Auto deploy]   at
org.jboss.tomcat.EmbeddedTomcatService.deploy(EmbeddedTomcatService.java:103
)
[Auto deploy]   at java.lang.reflect.Method.invoke(Native Method)
[Auto deploy]   at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
[Auto deploy]   at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
[Auto deploy]   at
org.jboss.deployment.J2eeDeployer.startApplication(J2eeDeployer.java:415)
[Auto deploy]   at
org.jboss.deployment.J2eeDeployer.deploy(J2eeDeployer.java:178)
[Auto deploy]   at java.lang.reflect.Method.invoke(Native Method)
[Auto deploy]   at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
[Auto deploy]   at
com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
[Auto deploy]   at org.jboss.ejb.AutoDeployer.deploy(AutoDeployer.java:358)
[Auto deploy]   at org.jboss.ejb.AutoDeployer.run(AutoDeployer.java:221)
[Auto deploy]   at java.lang.Thread.run(Thread.java:484)
[Container factory]
Deploying:file:/C:/usr/local/jboss-tomcat-2.1-beta/jboss-2.1/tmp/deploy/Defa
ult/InFluid.war
[Container factory] Deployed application:
file:/C:/usr/local/jboss-tomcat-2.1-beta/jboss-2.1/tmp/deploy/Default/InFlui
d.war
[J2EE Deployer Default] J2EE application:

Re: [JBoss-user] Web App Fails to Run on Disconnected Windows 2000Laptop

2001-03-30 Thread Jim Archer

Its because the XML parser can't get to the DTD. You can try commenting out 
all the DTD lines from the top of the XML files and see what happens. That 
might work...

Jim

--On Friday, March 30, 2001 11:24 AM -0600 "Dole, Christopher" 
[EMAIL PROTECTED] wrote:

 Hello,

 I do some of my development on the road, away from any networks. I have a
 web application that runs fine when I'm connected, but throws the error
 below when it tries to start and I am not connected to a network.

 I am running jboss-tomcat-2.1-beta, and otherwise everything is working
 fine. I have some print statements in my startup servlet, and it does not
 look like JBoss is getting that far.

 Is there something in the JBoss runtime that needs to get a host? Is there
 some way around this? Quite a bit of my development will need to be in
 stand-alone mode. I'm running Windows 2000 Professional (workstation) on
 the laptop.

 Thanks,
 Chris


 [J2EE Deployer Default] Deploy J2EE application:
 file:/C:/usr/local/jboss-tomcat-2.1-beta/jboss-2.1/deploy/InFluid.war
 [J2EE Deployer Default] Create application InFluid.war
 [J2EE Deployer Default] inflate and install module InFluid.war
 [J2EE Deployer Default] Starting module InFluid.war
 [Auto deploy] XmlMapper: Can't find resource for entity: -//Sun
 Microsystems, Inc.//DTD Web Application 1.2//EN --
 http://java.sun.com/j2ee/dtds/web-app_2.2.dtd "null"
 [Auto deploy] ERROR reading
 C:\usr\local\jboss-tomcat-2.1-beta\jboss-2.1\tmp\deploy\Default\InFluid.w
 ar\ web1004\WEB-INF\web.xml
 [Auto deploy] At External entity not found:
 "http://java.sun.com/j2ee/dtds/web-app_2.2.dtd".
 [Auto deploy] ERROR reading
 C:\usr\local\jboss-tomcat-2.1-beta\jboss-2.1\tmp\deploy\Default\InFluid.w
 ar\ web1004\WEB-INF\web.xml
 [Auto deploy] java.net.UnknownHostException: java.sun.com
 [Auto deploy] at java.net.InetAddress.getAllByName0(InetAddress.java:571)
 [Auto deploy] at java.net.InetAddress.getAllByName0(InetAddress.java:540)
 [Auto deploy] at java.net.InetAddress.getByName(InetAddress.java:449)
 [Auto deploy] at java.net.Socket.init(Socket.java:100)
 [Auto deploy] at sun.net.NetworkClient.doConnect(NetworkClient.java:50)
 [Auto deploy] at
 sun.net.www.http.HttpClient.openServer(HttpClient.java:331)
 [Auto deploy] at
 sun.net.www.http.HttpClient.openServer(HttpClient.java:517)
 [Auto deploy] at sun.net.www.http.HttpClient.init(HttpClient.java:267)
 [Auto deploy] at sun.net.www.http.HttpClient.init(HttpClient.java:277)
 [Auto deploy] at sun.net.www.http.HttpClient.New(HttpClient.java:289)
 [Auto deploy] at
 sun.net.www.protocol.http.HttpURLConnection.connect(HttpURLConnection.jav
 a:3 79)
 [Auto deploy] at
 sun.net.www.protocol.http.HttpURLConnection.getInputStream(HttpURLConnect
 ion .java:472)
 [Auto deploy] at
 java.net.HttpURLConnection.getResponseCode(HttpURLConnection.java:230)
 [Auto deploy] at
 com.sun.xml.parser.Resolver.createInputSource(Resolver.java:248)
 [Auto deploy] at
 com.sun.xml.parser.ExternalEntity.getInputSource(ExternalEntity.java:49)
 [Auto deploy] at com.sun.xml.parser.Parser.pushReader(Parser.java:2768)
 [Auto deploy] at
 com.sun.xml.parser.Parser.externalParameterEntity(Parser.java:2504)
 [Auto deploy] at
 com.sun.xml.parser.Parser.maybeDoctypeDecl(Parser.java:1137)
 [Auto deploy] at com.sun.xml.parser.Parser.parseInternal(Parser.java:481)
 [Auto deploy] at com.sun.xml.parser.Parser.parse(Parser.java:284)
 [Auto deploy] at javax.xml.parsers.SAXParser.parse(SAXParser.java:155)
 [Auto deploy] at javax.xml.parsers.SAXParser.parse(SAXParser.java:126)
 [Auto deploy] at
 org.apache.tomcat.util.xml.XmlMapper.readXml(XmlMapper.java:214)
 [Auto deploy] at
 org.apache.tomcat.context.WebXmlReader.processWebXmlFile(WebXmlReader.jav
 a:2 02)
 [Auto deploy] at
 org.apache.tomcat.context.WebXmlReader.contextInit(WebXmlReader.java:109)
 [Auto deploy] at
 org.apache.tomcat.core.ContextManager.initContext(ContextManager.java:491)
 [Auto deploy] at
 org.jboss.tomcat.TomcatEntry.initContext(TomcatEntry.java:132)
 [Auto deploy] at
 org.jboss.tomcat.EmbeddedTomcatService.deploy(EmbeddedTomcatService.java:
 103 )
 [Auto deploy] at java.lang.reflect.Method.invoke(Native Method)
 [Auto deploy] at
 com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
 [Auto deploy] at
 com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1523)
 [Auto deploy] at
 org.jboss.deployment.J2eeDeployer.startApplication(J2eeDeployer.java:415)
 [Auto deploy] at
 org.jboss.deployment.J2eeDeployer.deploy(J2eeDeployer.java:178)
 [Auto deploy] at java.lang.reflect.Method.invoke(Native Method)
 [Auto deploy] at
 com.sun.management.jmx.MBeanServerImpl.invoke(MBeanServerImpl.java:1628)
 [Auto deploy] at
 

RE: [JBoss-user] I need ammo. -WL SUX

2001-03-30 Thread Micheal J

Windows 2000 scales just fine Fillip. Certainly the 32-CPU Windows 2000
Datancentre boxes represent much more _vertical_ scalability than 90% or
more of businesses need or want I imagine. As for _horizontal_ scalability
you can scale till the cows...

More seriously, I am curious though about this problem with clustering and
why it only applies to Windows. If WebLogic admitted there was a problem
perhaps there is a link to some online description/notice?

Micheal


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Filip Hanik
 Sent: 30 March 2001 18:39
 To: [EMAIL PROTECTED]
 Subject: RE: [JBoss-user] I need ammo. -WL SUX


  We've been trying to get an install of Weblogic51 up and running for 4
  months! BEA has as of yet been unable to get it run either. They finally
  admitted that they have a SERIOUS problem with windows and clustering.

 two thinks to consider, JBoss doesn't offer clustering yet. So
 the statement
 is no good.
 Also, why not cluster on Unix boxes, since you want scalability,
 Windows is
 not going to offer it anyway :)

 :)

 ~
 Namaste - I bow to the divine in you
 ~
 Filip Hanik
 Software Architect
 [EMAIL PROTECTED]
 www.filip.net



 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



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

2001-03-30 Thread Greg Wilkins

Julian Gosnell wrote:

 I shall be rewriting the jboss_jetty integration this weekend, now that i
 finally have the time to figure JMX out properly.

This will include the Jetty 3.1 JMX enhancements, where most if Jetty's own components
are JXM manageable (threadpools, listeners, contexts etc.)


 Please be more specific about your war file problem - If you can tell me what
 you think is broken I shall let Greg know.
 
 I also hope to deal with a WAR redeployment problem that seems to have
 appeared.

Firstly Jetty does not support auto-deploy, you must request a WAR file to
be deployed, either by code, config or JMX.   This is a small price to pay and there
are good security reasons for it.   I may add this option the next version of
jetty, but it will be off by default.

Jetty does have a problem at the moment with redeploying changed war files if
it is configured NOT to unpack them.  The JarURLConnection class in the latest
JVMs from Sun is very broken, and we will have to write our own to get around
this problem.  For now if you redeploy wars, configure Jetty to
extract them to a temporary location.

 
 Greg, has anyone done any recent performance comparisons ?

Nobody that I know has completed any formal tests - other than informal feedback
that Jetty has 4 or 5 times more throughput than tomcat, I really don't know.

I just build Jetty to be as fast as I can, and fix anything that people complain
is slow   But I'm more than happy to assist anybody who wants to do a formal
comparison.

cheers
 
 Jules
 
 
 [EMAIL PROTECTED] wrote:
 
 
 Will new jboss/jetty release be able to handle war files better?
 How does jboss/jetty (or jetty) handle standard war's (war, not ear)? I had
 a trivial
 deploy with tomcat (just copied war file into webapps and it worked),
 however I couldn't
 do that with jboss/jetty (or jetty standalone).
 We would like to avoid tomcat/apache integration, if jetty does not need any
 external web server for speed, however...
 By the way, are there any performance comparisons there? Tomcat 3.2.1 also
 looks
 pretty fast to me, by itself...
 Thanks. Miomir
 
 -Original Message-
 From: Julian Gosnell [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, March 29, 2001 12:39 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [JBoss-user] Q: jBoss  Jetty Package
 
 Looking at it as we speak...
 
 It's taking a while, beacause Jetty has a completely new JMX-ified wrapper.
 I
 am trying to figure out how to connect it to the JBoss JMX stuff.
 
 Jules
 
 "Day, Jem BGI WAC" wrote:
 
 
 Guys,
 
   Do you intend to update the "jBoss  Jetty" combined distribution for
 
 2.1.
 
 The
   download page says that the standalone  tomcat versions were produced
 
 on
 
   Mar 26th but the jetty version is from Jan 28th.
 
   Great stuff - keep up the good work.
 
 Jem..
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 
 _
 Do You Yahoo!?
 Get your free @yahoo.com address at http://mail.yahoo.com
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 
 
 
 _
 Do You Yahoo!?
 Get your free @yahoo.com address at http://mail.yahoo.com



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Custom MBeans

2001-03-30 Thread Liu, Kenneth Albert (Kenneth)** CTR **

Hey - that's a great explanation!  Do you think you could try to get it
submitted into the documentation effort?  It took me a whole day to figure
out what you told me in one email.

Ken

 -Original Message-
 From: James Kiryakoza [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 30, 2001 11:27 AM
 To: '[EMAIL PROTECTED]'
 Subject: RE: [JBoss-user] Custom MBeans
 
 
 I'm no expert, but here's some code to get you started if 
 you'd like to
 create an MBean called Foo:

snip

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] What is the beta in jboss-tomcat-2.1-beta.zip?

2001-03-30 Thread Chunnuan Chen


Hi,
When Idownload the binary for
 .
JBoss_tomcat.zip (8.75M) [MAR-26-2001]
the file name is jboss-tomcat-2.1-beta.zip. What does the "beta" within
the filename mean (seeing this word just makes me feel not so comfortable)?
Does it mean the Jboss 2.1 itself is in beta release? If so, why doesn't
the download page state that?
Thanks,
Chunnuan




RE: [JBoss-user] Unix version

2001-03-30 Thread Simphoukham, Southin

John,

Thank you for the info.

Southin

-Original Message-
From: John Collins [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 11:52 AM
To: [EMAIL PROTECTED]
Subject: Re: [JBoss-user] Unix version


"Simphoukham, Southin" wrote:

 Where can I download the Unix version of JBoss 2.1?  Are there any
gotcha's
 on installing JBoss on a Unix server? Any instructions outside the
 documentation on the Website?

I found that you have to patch up some directory permissions, and then
change
the jboss-2.1/bin/run.sh file from ms-dos text format to unix text format
and
make it executable before it will run on linux.  It's apparently packaged up
on a Windows box, and some of the non-java details aren't quite right on
unix.  Once you get that done, it works fine.

Cheers -

John Collins



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] What is the beta in jboss-tomcat-2.1-beta.zip?

2001-03-30 Thread Filip Hanik



beta 
means beta.

almost 
all features complete
not 
fully tested/verified to be considered production quality.

that 
is what beta means to most software organizations :)

Filip

~Namaste - I bow to the divine in you~Filip 
HanikSoftware Architect[EMAIL PROTECTED]www.filip.net 

  -Original Message-From: 
  [EMAIL PROTECTED] 
  [mailto:[EMAIL PROTECTED]]On Behalf Of Chunnuan 
  ChenSent: Friday, March 30, 2001 10:40 AMTo: 
  [EMAIL PROTECTED]Subject: [JBoss-user] What is the 
  "beta" in jboss-tomcat-2.1-beta.zip?Hi, When 
  Idownload the binary for  
  . JBoss_tomcat.zip (8.75M) [MAR-26-2001] 
  the file name is jboss-tomcat-2.1-beta.zip. What does the "beta" within 
  the filename mean (seeing this word just makes me feel not so comfortable)? 
  Does it mean the Jboss 2.1 itself is in beta release? If so, why doesn't the 
  download page state that? 
  Thanks, Chunnuan   


[JBoss-user] Binary Only Distributions ???

2001-03-30 Thread Day, Jem BGI WAC


Hi,

  This may well be a 'licensing' issue but is it possible to package
  a real binary only distribution without all the source code  associated
  javadoc ?

  Purely to reduce the size of downloads and resultant disk-space usage.

Jem...



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



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

2001-03-30 Thread Fulco Muriglio

On Thu, Mar 29, 2001 at 11:11:57AM -0500, Alvin Yap wrote:
 I have a Jboss2.1 and Tomcat 4.0 (Catalina) on Linux 6.2 using JDK1.3
 Does anybody have a fix to this problem.  I have this app working on
 Jboss2.1 and Tomcat 3.2.1
 
 [J2EE Deployer Default] Starting module bfrs_web.war
 [Auto deploy] java.lang.NullPointerException
 [Auto deploy]   at
 org.jboss.contrib.catalina.ConfigMapper.deploy(ConfigMapper.java:333)

Did u get the source from contrib?

ConfigMapper should have 314 lines (11683 bytes), but u get an error at line
333.

Can u tell me size of that file please.

Bye
Fulco




___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] I need ammo. -WL SUX

2001-03-30 Thread MicaCooper

Michael,

This is currently BEA's top priority fix over all others. I know of no
documentation except a voluminous amount on the private engineering db
internal to BEA. It is a problem on all platforms but does not noticeably
manifest itself except on windows. The reason is weblogic uses multicast for
messaging in the cluster. Windows has a VERY small multicast buffer size.
Other platforms allow you to change the size of the multicast buffer and
alleviate communication problems.

So one, BEA screwed up using multicast for messaging large amounts of data
in a cluster. Other products like Gemstone have a much more mature cluster
technology and do not need to message to stay in synch.

Two, they are sychronizing much more data than they need to, up to 14meg has
been measured. Talk about performance downer...that will kill a CPU when you
have 4 plus instances all trying to talk at the same time.

Mica

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED]]On Behalf Of Micheal J
Sent: Friday, March 30, 2001 12:18 PM
To: [EMAIL PROTECTED]
Subject: RE: [JBoss-user] I need ammo. -WL SUX


Windows 2000 scales just fine Fillip. Certainly the 32-CPU Windows 2000
Datancentre boxes represent much more _vertical_ scalability than 90% or
more of businesses need or want I imagine. As for _horizontal_ scalability
you can scale till the cows...

More seriously, I am curious though about this problem with clustering and
why it only applies to Windows. If WebLogic admitted there was a problem
perhaps there is a link to some online description/notice?

Micheal


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED]]On Behalf Of Filip Hanik
 Sent: 30 March 2001 18:39
 To: [EMAIL PROTECTED]
 Subject: RE: [JBoss-user] I need ammo. -WL SUX


  We've been trying to get an install of Weblogic51 up and running for 4
  months! BEA has as of yet been unable to get it run either. They finally
  admitted that they have a SERIOUS problem with windows and clustering.

 two thinks to consider, JBoss doesn't offer clustering yet. So
 the statement
 is no good.
 Also, why not cluster on Unix boxes, since you want scalability,
 Windows is
 not going to offer it anyway :)

 :)

 ~
 Namaste - I bow to the divine in you
 ~
 Filip Hanik
 Software Architect
 [EMAIL PROTECTED]
 www.filip.net



 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



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

2001-03-30 Thread MArandjelovic

Thanks for feedback, Julian, Greg.

I have a problem deploying any war file in jetty or jboss/jetty
(I have been tested my sample war, java bug tracking system from
 http://www.gjt.org/pkg/bugrat/ and javacorporate's eforum)
and couldn't find any instruction how to do that. Could you
please provide sample configuration for deploying generic war with jetty
and jboss/jetty?! I could make my standalone servlets/html work fine 
(after some troubles), but I really would like to do it with war.
It doesn't need to be auto-deployment, but I don't want to do an
installation of unpacked files, setting classpaths etc.

By the way I have the same problem (war not working) with ATG Dynamo 
:-), but it was wery easy with tomcat (all three applications mentioned).

I would be also trying to make some comparisons (ejb and non
ejb application) between Dynamo5/iPlanet, jboss/jetty, jboss/tomcat 
and jboss/tomcat/apache, to see how suitable is each of them for 
for a particular kind of application, either non-ejb (still useful) or ejb.
I would like to use the same simple app a) war and b) ear file in each, to
avoid deployment dependencies. I have made (very) simple ejb and non-ejb
which work
in all environments, but I still have to do lot of configuration (and that
affects the results as well). Any suggestions here would be greatly
appreciated.

Thanks Miomir


-Original Message-
From: Greg Wilkins [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 1:17 PM
To: Julian Gosnell
Cc: [EMAIL PROTECTED]
Subject: Re: [JBoss-user] Q: jBoss  Jetty Package


Julian Gosnell wrote:

 I shall be rewriting the jboss_jetty integration this weekend, now that i
 finally have the time to figure JMX out properly.

This will include the Jetty 3.1 JMX enhancements, where most if Jetty's own
components
are JXM manageable (threadpools, listeners, contexts etc.)


 Please be more specific about your war file problem - If you can tell me
what
 you think is broken I shall let Greg know.
 
 I also hope to deal with a WAR redeployment problem that seems to have
 appeared.

Firstly Jetty does not support auto-deploy, you must request a WAR file to
be deployed, either by code, config or JMX.   This is a small price to pay
and there
are good security reasons for it.   I may add this option the next version
of
jetty, but it will be off by default.

Jetty does have a problem at the moment with redeploying changed war files
if
it is configured NOT to unpack them.  The JarURLConnection class in the
latest
JVMs from Sun is very broken, and we will have to write our own to get
around
this problem.  For now if you redeploy wars, configure Jetty to
extract them to a temporary location.

 
 Greg, has anyone done any recent performance comparisons ?

Nobody that I know has completed any formal tests - other than informal
feedback
that Jetty has 4 or 5 times more throughput than tomcat, I really don't
know.

I just build Jetty to be as fast as I can, and fix anything that people
complain
is slow   But I'm more than happy to assist anybody who wants to do a
formal
comparison.

cheers
 
 Jules
 
 
 [EMAIL PROTECTED] wrote:
 
 
 Will new jboss/jetty release be able to handle war files better?
 How does jboss/jetty (or jetty) handle standard war's (war, not ear)? I
had
 a trivial
 deploy with tomcat (just copied war file into webapps and it worked),
 however I couldn't
 do that with jboss/jetty (or jetty standalone).
 We would like to avoid tomcat/apache integration, if jetty does not need
any
 external web server for speed, however...
 By the way, are there any performance comparisons there? Tomcat 3.2.1
also
 looks
 pretty fast to me, by itself...
 Thanks. Miomir
 
 -Original Message-
 From: Julian Gosnell [mailto:[EMAIL PROTECTED]]
 Sent: Thursday, March 29, 2001 12:39 PM
 To: [EMAIL PROTECTED]
 Subject: Re: [JBoss-user] Q: jBoss  Jetty Package
 
 Looking at it as we speak...
 
 It's taking a while, beacause Jetty has a completely new JMX-ified
wrapper.
 I
 am trying to figure out how to connect it to the JBoss JMX stuff.
 
 Jules
 
 "Day, Jem BGI WAC" wrote:
 
 
 Guys,
 
   Do you intend to update the "jBoss  Jetty" combined distribution for
 
 2.1.
 
 The
   download page says that the standalone  tomcat versions were produced
 
 on
 
   Mar 26th but the jetty version is from Jan 28th.
 
   Great stuff - keep up the good work.
 
 Jem..
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 
 _
 Do You Yahoo!?
 Get your free @yahoo.com address at http://mail.yahoo.com
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 
 
 
 

RE: [JBoss-user] I need ammo. -WL SUX

2001-03-30 Thread marc fleury

|So one, BEA screwed up using multicast for messaging large amounts of data
|in a cluster. Other products like Gemstone have a much more mature cluster
|technology and do not need to message to stay in synch.

that is actually pretty smart (mcast sync of ball) we were planning on using
that... if they ran into problems likeliness is we will too

marc

|
|Two, they are sychronizing much more data than they need to, up to
|14meg has
|been measured. Talk about performance downer...that will kill a
|CPU when you
|have 4 plus instances all trying to talk at the same time.
|
|Mica
|
|-Original Message-
|From: [EMAIL PROTECTED]
|[mailto:[EMAIL PROTECTED]]On Behalf Of Micheal J
|Sent: Friday, March 30, 2001 12:18 PM
|To: [EMAIL PROTECTED]
|Subject: RE: [JBoss-user] I need ammo. -WL SUX
|
|
|Windows 2000 scales just fine Fillip. Certainly the 32-CPU Windows 2000
|Datancentre boxes represent much more _vertical_ scalability than 90% or
|more of businesses need or want I imagine. As for _horizontal_ scalability
|you can scale till the cows...
|
|More seriously, I am curious though about this problem with clustering and
|why it only applies to Windows. If WebLogic admitted there was a problem
|perhaps there is a link to some online description/notice?
|
|Micheal
|
|
| -Original Message-
| From: [EMAIL PROTECTED]
| [mailto:[EMAIL PROTECTED]]On Behalf Of Filip Hanik
| Sent: 30 March 2001 18:39
| To: [EMAIL PROTECTED]
| Subject: RE: [JBoss-user] I need ammo. -WL SUX
|
|
|  We've been trying to get an install of Weblogic51 up and running for 4
|  months! BEA has as of yet been unable to get it run either.
|They finally
|  admitted that they have a SERIOUS problem with windows and clustering.
|
| two thinks to consider, JBoss doesn't offer clustering yet. So
| the statement
| is no good.
| Also, why not cluster on Unix boxes, since you want scalability,
| Windows is
| not going to offer it anyway :)
|
| :)
|
| ~
| Namaste - I bow to the divine in you
| ~
| Filip Hanik
| Software Architect
| [EMAIL PROTECTED]
| www.filip.net
|
|
|
| ___
| JBoss-user mailing list
| [EMAIL PROTECTED]
| http://lists.sourceforge.net/lists/listinfo/jboss-user
|
|
|___
|JBoss-user mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-user
|
|
|___
|JBoss-user mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] JBoss verses Orion

2001-03-30 Thread Fink, Paul


I ported our Orion application to JBoss. I love JBoss for
usability, documentation and support. Unfortunately our application is very
performance dependent the JBoss version ran very slow. After playing with
cache setting, etc. It seemed like the communications was the main bottle
neck.
To test this I wrote a simple session bean with one get method that returns
a Long.

The client looped 10,000 times calling the getter. The Orion version was 6
times faster!
Other tests we ran had Orion running 4x faster.

It seems that JBoss certainly is performance limited.

I'm running on a 900 MHz PIII under Linux with Sun's JDK 1.3


Paul Fink

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] I need ammo. -WL SUX

2001-03-30 Thread Filip Hanik

 |So one, BEA screwed up using multicast for messaging large
 amounts of data
 |in a cluster. Other products like Gemstone have a much more
 mature cluster
 |technology and do not need to message to stay in synch.

 that is actually pretty smart (mcast sync of ball) we were
 planning on using
 that... if they ran into problems likeliness is we will too

 marc

Unless, you have a framework that implements reliable multicasting, like
www.javagroups.com, I'm still researching and digging into this technology
to see if it would
be a fit. As of now, it looks really good, but it is a little bit built to
be its own application instead of a component inside of a server
application. The statement here, is about thread handling can not be
controlled from outside, and when developing an EJB server you have to be
able to control most of the threads.

Will send you all more feedback once I get really down and dirty with this
one.

Filip

~
Namaste - I bow to the divine in you
~
Filip Hanik
Software Architect
[EMAIL PROTECTED]
www.filip.net


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Keeping WL and JBoss Deployment Descriptors in synch, reference I need ammo.

2001-03-30 Thread Jamie Orchard-Hays

I'm ready to share the conversion scripts, but need to put disclaimer for
our company in them. I've been searching around the web, but haven't found a
decent one. Any of you guys have a decent generic disclaimer I can put in so
I can send these up?

Thanks,
Jamie Orchard-Hays

- Original Message -
 One of my
 colleagues has written some python scripts to convert Weblogic DDs into
 Jboss DDs.  There is some hand editing of the XML still involved after
 you run the python scripts, but I'm sure that a little massaging of the
 python scripts could fully automate the process.  Jamie?

 Bill





___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] I need ammo. -WL SUX

2001-03-30 Thread marc fleury



|Unless, you have a framework that implements reliable multicasting, like
|www.javagroups.com, I'm still researching and digging into this technology
|to see if it would
|be a fit. As of now, it looks really good, but it is a little bit built to
|be its own application instead of a component inside of a server
|application. The statement here, is about thread handling can not be
|controlled from outside, and when developing an EJB server you have to be
|able to control most of the threads.
|
|Will send you all more feedback once I get really down and dirty with this
|one.

please do so, there were many ideas flying on the clustering and now we need
to bring it home... the jmx clustering is in place so at least the
infrastructure is there

marc

|
|Filip
|
|~
|Namaste - I bow to the divine in you
|~
|Filip Hanik
|Software Architect
|[EMAIL PROTECTED]
|www.filip.net
|
|
|___
|JBoss-user mailing list
|[EMAIL PROTECTED]
|http://lists.sourceforge.net/lists/listinfo/jboss-user


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Web App Fails to Run on Disconnected Windows 2000Laptop

2001-03-30 Thread Jim Archer

Thats waht I was thinking as I wrote that email, and the truth is that I 
just don't know. I'm sure the parset can be told not to validate, but I 
don't know if jBoss has a config option for this.

Jim

--On Friday, March 30, 2001 1:34 PM -0500 Donald Ball 
[EMAIL PROTECTED] wrote:

 On Fri, 30 Mar 2001, Jim Archer wrote:

 Its because the XML parser can't get to the DTD. You can try commenting
 out all the DTD lines from the top of the XML files and see what
 happens. That might work...

 can't you configure the xml parser to be non-validating?

 - donald


 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user




I shall be telling this with a sigh
Somewhere ages and ages hence:
Two roads diverged in a wood, and I -
I took the one less traveled by,
And that has made all the difference.

- Robert Frost, 1916


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] JBoss verses Orion

2001-03-30 Thread Dan Christopherson

What version of JBoss? If 2.1 (beta) the latest binary or a build from
source? If source, what date? Earlier this year there were some
performance problems stomped, but I haven't done any testing for
performance.


On Fri, 30 Mar 2001, Fink, Paul wrote:

 
 I ported our Orion application to JBoss. I love JBoss for
 usability, documentation and support. Unfortunately our application is very
 performance dependent the JBoss version ran very slow. After playing with
 cache setting, etc. It seemed like the communications was the main bottle
 neck.
 To test this I wrote a simple session bean with one get method that returns
 a Long.
 
 The client looped 10,000 times calling the getter. The Orion version was 6
 times faster!
 Other tests we ran had Orion running 4x faster.
 
 It seems that JBoss certainly is performance limited.
 
 I'm running on a 900 MHz PIII under Linux with Sun's JDK 1.3
 
 
 Paul Fink
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 

-- 
Dan Christopherson (danch) 
nVisia Technical Architect (www.nvisia.com)

Opinions expressed are mine and do not neccessarily reflect any 
position or opinion of nVISIA.

---
If you're a capitalist and you have the best goods and they're 
free, you don't have to proselytize, you just have to wait.
-Eben Moglen


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Web App Fails to Run on Disconnected Windows 2000Laptop

2001-03-30 Thread Dan Christopherson

I believe the parser still trys to load the DTD in non-validating
mode. From what I can remember this is because it might need to transform
some bits of the XML based on parts of the DTD (something like you can
create your own entities?)

On Fri, 30 Mar 2001, Jim Archer wrote:

 Thats waht I was thinking as I wrote that email, and the truth is that I 
 just don't know. I'm sure the parset can be told not to validate, but I 
 don't know if jBoss has a config option for this.
 
 Jim
 
 --On Friday, March 30, 2001 1:34 PM -0500 Donald Ball 
 [EMAIL PROTECTED] wrote:
 
  On Fri, 30 Mar 2001, Jim Archer wrote:
 
  Its because the XML parser can't get to the DTD. You can try commenting
  out all the DTD lines from the top of the XML files and see what
  happens. That might work...
 
  can't you configure the xml parser to be non-validating?
 
  - donald
 
 
  ___
  JBoss-user mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-user
 
 
 
 
 I shall be telling this with a sigh
 Somewhere ages and ages hence:
 Two roads diverged in a wood, and I -
 I took the one less traveled by,
 And that has made all the difference.
 
 - Robert Frost, 1916
 
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 

-- 
Dan Christopherson (danch) 
nVisia Technical Architect (www.nvisia.com)

Opinions expressed are mine and do not neccessarily reflect any 
position or opinion of nVISIA.

---
If you're a capitalist and you have the best goods and they're 
free, you don't have to proselytize, you just have to wait.
-Eben Moglen


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [jBoss-User] Error when creating entity bean

2001-03-30 Thread Dan Christopherson

That bug may have been fixed. Did the SQLException result in an exception
getting thrown from ejbLoad?

On Fri, 30 Mar 2001, Tim Yates wrote:

 Solved half of the problem (we think)
 
 One of the editorial staff was going through an MS proxy which was caching
 everything, and reposting information with the same PK
 
 Still don't know why it locked, and didn't just destroy the erroneous Entity
 bean, but at least now, it shouldn't get in that state...
 
 Tim.
 
 - Original Message -
 From: Tim Yates [EMAIL PROTECTED]
 
  Occasionally, when a user is adding an item of content to the system, the
  server.log file shows the following error:
 
  java.sql.SQLException: ORA-00600: internal error code, arguments: [19942],
  [], [], [], [], [], [], []
 
  we then get
 
  [Content] LOCKING-WAITING (TRANSACTION) for id TNSContent395443
 ctx.hash
  2224828 tx:TransactionImpl:XidImpl:[B@471d2b
 
  over and over and over, and the website stops responding...
 
 
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 

-- 
Dan Christopherson (danch) 
nVisia Technical Architect (www.nvisia.com)

Opinions expressed are mine and do not neccessarily reflect any 
position or opinion of nVISIA.

---
If you're a capitalist and you have the best goods and they're 
free, you don't have to proselytize, you just have to wait.
-Eben Moglen


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] JBoss verses Orion

2001-03-30 Thread Fink, Paul

 Oh sorry I should have  said.

Jboss 2.1 binary (down loaded March 22)

Orion is 1.3.8

-Original Message-
From: Dan Christopherson
To: 'jBoss'
Cc: 'Orion-Interest'
Sent: 3/30/01 3:21 PM
Subject: Re: [JBoss-user] JBoss verses Orion

What version of JBoss? If 2.1 (beta) the latest binary or a build from
source? If source, what date? Earlier this year there were some
performance problems stomped, but I haven't done any testing for
performance.


On Fri, 30 Mar 2001, Fink, Paul wrote:

 
 I ported our Orion application to JBoss. I love JBoss for
 usability, documentation and support. Unfortunately our application is
very
 performance dependent the JBoss version ran very slow. After playing
with
 cache setting, etc. It seemed like the communications was the main
bottle
 neck.
 To test this I wrote a simple session bean with one get method that
returns
 a Long.
 
 The client looped 10,000 times calling the getter. The Orion version
was 6
 times faster!
 Other tests we ran had Orion running 4x faster.
 
 It seems that JBoss certainly is performance limited.
 
 I'm running on a 900 MHz PIII under Linux with Sun's JDK 1.3
 
 
 Paul Fink
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 

-- 
Dan Christopherson (danch) 
nVisia Technical Architect (www.nvisia.com)

Opinions expressed are mine and do not neccessarily reflect any 
position or opinion of nVISIA.


---
If you're a capitalist and you have the best goods and they're 
free, you don't have to proselytize, you just have to wait.
-Eben Moglen


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Web App Fails to Run on Disconnected Windows 2000Laptop

2001-03-30 Thread Jim Archer

Hmmm... Dan, if the parser does not try to validate the DTD, why does the 
parser attempt to load it? The original problem was that Christopher wanted 
to use jBoss on a machine not connected to the Internet and was having 
trouble...

Jim

--On Friday, March 30, 2001 4:41 PM -0600 Dan Christopherson 
[EMAIL PROTECTED] wrote:

 I believe the parser still trys to load the DTD in non-validating
 mode. From what I can remember this is because it might need to transform
 some bits of the XML based on parts of the DTD (something like you can
 create your own entities?)

 On Fri, 30 Mar 2001, Jim Archer wrote:

 Thats waht I was thinking as I wrote that email, and the truth is that I
 just don't know. I'm sure the parset can be told not to validate, but I
 don't know if jBoss has a config option for this.

 Jim

 --On Friday, March 30, 2001 1:34 PM -0500 Donald Ball
 [EMAIL PROTECTED] wrote:

  On Fri, 30 Mar 2001, Jim Archer wrote:
 
  Its because the XML parser can't get to the DTD. You can try
  commenting out all the DTD lines from the top of the XML files and
  see what happens. That might work...
 
  can't you configure the xml parser to be non-validating?
 
  - donald
 
 
  ___
  JBoss-user mailing list
  [EMAIL PROTECTED]
  http://lists.sourceforge.net/lists/listinfo/jboss-user



 
 I shall be telling this with a sigh
 Somewhere ages and ages hence:
 Two roads diverged in a wood, and I -
 I took the one less traveled by,
 And that has made all the difference.

 - Robert Frost, 1916


 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user


 --
 Dan Christopherson (danch)
 nVisia Technical Architect (www.nvisia.com)

 Opinions expressed are mine and do not neccessarily reflect any
 position or opinion of nVISIA.

 -
 -- If you're a capitalist and you have the best goods and they're
 free, you don't have to proselytize, you just have to wait.
 -Eben Moglen


 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user




I shall be telling this with a sigh
Somewhere ages and ages hence:
Two roads diverged in a wood, and I -
I took the one less traveled by,
And that has made all the difference.

- Robert Frost, 1916


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



RE: [JBoss-user] Custom MBeans

2001-03-30 Thread James Kiryakoza

How do I do that?

-Original Message-
From: Liu, Kenneth Albert (Kenneth)** CTR ** [mailto:[EMAIL PROTECTED]]
Sent: Friday, March 30, 2001 10:26 AM
To: [EMAIL PROTECTED]
Cc: [EMAIL PROTECTED]
Subject: RE: [JBoss-user] Custom MBeans


Hey - that's a great explanation!  Do you think you could try to get it
submitted into the documentation effort?  It took me a whole day to figure
out what you told me in one email.

Ken

 -Original Message-
 From: James Kiryakoza [mailto:[EMAIL PROTECTED]]
 Sent: Friday, March 30, 2001 11:27 AM
 To: '[EMAIL PROTECTED]'
 Subject: RE: [JBoss-user] Custom MBeans
 
 
 I'm no expert, but here's some code to get you started if 
 you'd like to
 create an MBean called Foo:

snip

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user

___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] Web App Fails to Run on Disconnected Windows 2000 Laptop

2001-03-30 Thread Peter Routtier-Wone

Surely XML validation is largely informational. I wonder can things be set up so that 
the DTD URL is checked and the parser parser run non-validating as necessary - and the 
inaccessibility of the DTD is reported.
- Original Message - 
From: "Jim Archer" [EMAIL PROTECTED]
Subject: Re: [JBoss-user] Web App Fails to Run on Disconnected Windows 2000 Laptop


| just don't know. I'm sure the parset can be told not to validate, but I 
| don't know if jBoss has a config option for this.

$,f–)–+-$,X(~Šzw†ib,y+b?–+-Šw6z


[JBoss-user] (no subject)

2001-03-30 Thread Lars Hofhansl

Hi,

the JBoss deployer seems to suffer from a bug in JDK 1.2
For interfaces Class.getMethods() returns the bogus method clinit
(see Sub bug id 4165).
This results in the following error when deploying a bean:

--- snip ---
[Container factory] java.lang.NoSuchMethodException: clinit
[Container factory] at java.lang.Class.getMethod0(Native Method)
[Container factory] at java.lang.Class.getMethod(Class.java:854)
[Container factory] at
org.jboss.ejb.StatelessSessionContainer.setupBeanMapping(StatelessSessionCon
tainer.java:368)
--- snip ---

Here's a possible fix:
in StatelessSessionContainer.java in method setupBeanMapping()
catch NoSuchMethodException.
It would look something like this:

if
(!m[i].getDeclaringClass().getName().equals("javax.ejb.EJBObject"))
{
try {
// Implemented by bean
map.put(m[i], beanClass.getMethod(m[i].getName(),
m[i].getParameterTypes()));
Logger.debug("Mapped "+m[i].getName()+"
"+m[i].hashCode()+"to "+map.get(m[i]));
} catch (NoSuchMethodException e)
{
// ignore bogus methods...
}
}
else

(A similar fix should be added for Stateful and Entity Beans)
Maybe somebody with commit permission can add that to CVS...

Note:   I can't build with JDK 1.2 because of missing
java.lang.reflect.InvocationHandler (and other classes).
Is JBoss supposed to run with JDK 1.2?! Apparently it can only be
built with JDK 1.3?

Thanks,

Lars


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] That rude word (marketing)

2001-03-30 Thread Peter Routtier-Wone

Guys, thank you for all your support. 

A little explanation...

I wanted to work on JBoss, but it's too far advanced and I'm too far behind the 
eight-ball for me to really contribute at a technical level. So I looked at what 
*wasn't* being done well, and IMHO that was presenting it to corporate decision 
makers.

I am working on a marketing plan to push JBoss to MIS managers and CIOs. These people 
in turn have to present a *business case* to people who glaze over at the mere mention 
of message queues and network manageability. We need to help them, because this is the 
answer to the question (from our point of view) of "Where's the money?"

I still value your comments about the technical merits of JBoss; I need those too - 
they just aren't what I asked for.

This is an ongoing thing. It will never end.

I ask you all to periodically put yourselves in the boss's shoes and ask yourself "Why 
JBoss?"

When you have an inspiration, post it to the list. Use a subject of "jboss business 
case" so my daemon can flag the message (it's a busy list).

As I said, I can also use info about JBoss technical merits. In this case use a 
subject of "jboss techical merits".

What's in it for you? An expanded job market that needs you. The ability to influence 
the technical status quo, giving you some control of your own destiny. Freedom from 
crap code and poorly documented closed systems. Freedom from being at the mercy of 
bugs in closed systems. When was the last time the Oracle or Microsoft design team 
responded the same day to your criticism and took it on the chin?

What's in it for Bill Bloggs, CIO of GreedCorp? That is the question I want you all to 
consider.

$,f–)–+-$,X(~Šzw†ib,y+b?–+-Šw6z


Re: [JBoss-user] EAR Deployment Problem with WAR

2001-03-30 Thread Jacek Zagorski

Here goes:

jar -tf imaginears.ear:
META-INF/
META-INF/MANIFEST.MF
META-INF/application.xml
imaginears.war
imaginears.jar
client.jar

application.xml:
?xml version="1.0" encoding="ISO-8859-1"?
application
display-nameImaginearsApp/display-name
module
web
web-uriimaginears.war/web-uri
context-root/imagine/context-root
/web
/module
module
ejbimaginears.jar/ejb
/module
/application

Could it have something to do with the client.jar?
I can't deploy the EAR with just the ejb definition
or just the web definition in the application.xml.

Thanks a bunch.
Jacek


Tom Acree wrote:

where is the war file located within the ear?  Also, what does your
application.xml file look like?  It would help to show the directory
structure inside the ear as well.  It is probably something simple since you
have deployed jars and wars, just going to need some more info.

Tom


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] I need ammo. -WL SUX

2001-03-30 Thread Rickard Öberg

marc fleury wrote:
 |So one, BEA screwed up using multicast for messaging large amounts of data
 |in a cluster. Other products like Gemstone have a much more mature cluster
 |technology and do not need to message to stay in synch.
 
 that is actually pretty smart (mcast sync of ball) we were planning on using
 that... if they ran into problems likeliness is we will too

Good: use multicast for dirty notifications.
Bad: use multicast for sending actual data.

Only read data from databases. 

/Rickard

-- 
Rickard berg
Xpedio

Author of "Mastering RMI"
Email: [EMAIL PROTECTED]


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] JBoss verses Orion

2001-03-30 Thread danch

I don't think paul was running his test from a web app environment. I've 
just written an equivelent session bean and client and JBoss seems to be 
about 3 times slower than orion right now. I'm going to do a little 
profiling and see if I can see why.

Alexander Jerusalem wrote:

 I'm not completely sure if this is the reason but there is this "one 
 VM/classloader or multiple VMs/classloaders" distinction. I believe the 
 important point is that Orion is an EJB *and* Servlet container whereas 
 JBoss is only an EJB container. So if you use tomcat for example to run 
 your Servlets all the calls to JBoss based EJBs will we marshalled by 
 value by default whereas in Orion they will be transferred by reference. 
 This makes a huge difference especially if the method you call for 
 performance testing does essetially nothing.
 
 There is, however, a way to configure the JBoss/tomcat (or JBoss/Jetty) 
 combination so that this boundary is optimized away. With JBoss comes a 
 sample application that you can call in two ways: either optimized or 
 non optimized and the performance difference is aprox. 4 times or so. I 
 think that this could be the difference you are seeing in your tests. 
 You'll have to ask the JBoss experts to find out about how to configure 
 JBoss so that it uses this optimization.
 
 The other thing that I've heard is that tomcat is rather slow in 
 compaison to Jetty. And I know that the Orion JSP/Servlet engine is 
 pretty fast so you should maybe try the JBoss/Jetty combination for 
 faster results.
 
 Regards,
 Alexander Jerusalem
 
 At 00:44 31.03.01, Fink, Paul wrote:
 
  Oh sorry I should have  said.
 
 Jboss 2.1 binary (down loaded March 22)
 
 Orion is 1.3.8
 
 -Original Message-
 From: Dan Christopherson
 To: 'jBoss'
 Cc: 'Orion-Interest'
 Sent: 3/30/01 3:21 PM
 Subject: Re: [JBoss-user] JBoss verses Orion
 
 What version of JBoss? If 2.1 (beta) the latest binary or a build from
 source? If source, what date? Earlier this year there were some
 performance problems stomped, but I haven't done any testing for
 performance.
 
 
 On Fri, 30 Mar 2001, Fink, Paul wrote:
 
  
   I ported our Orion application to JBoss. I love JBoss for
   usability, documentation and support. Unfortunately our application is
 very
   performance dependent the JBoss version ran very slow. After playing
 with
   cache setting, etc. It seemed like the communications was the main
 bottle
   neck.
   To test this I wrote a simple session bean with one get method that
 returns
   a Long.
  
   The client looped 10,000 times calling the getter. The Orion version
 was 6
   times faster!
   Other tests we ran had Orion running 4x faster.
  
   It seems that JBoss certainly is performance limited.
  
   I'm running on a 900 MHz PIII under Linux with Sun's JDK 1.3
  
  
   Paul Fink
  


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] I need ammo.....(Humorours..)

2001-03-30 Thread David Jencks

Hi, I got one too.  I am somewhat mystified as to what my alleged dirty
word is -- my best guess is "blackbox" as in "[Sun example] blackbox
resource adapter".  The filter must have a dirty mind.

David Jencks


On 2001.03.30 11:08:39 -0500 Bill Burke wrote:
 Thought you all might find this funny.  I got this below email from my 
 "I need ammo" thread.  Pretty funny huh?  I guess "ammo" is a dirty 
 word.  :-)
 
 
  Original Message 
 Subject: ScanMail Message: To Sender, sensitive content found and action 
 t aken.
 Date: Fri, 30 Mar 2001 10:47:48 -0500
 From: [EMAIL PROTECTED]
 To: [EMAIL PROTECTED]
 
 
 
 Trend SMEX Content Filter has detected sensitive content.
 
 Place = [EMAIL PROTECTED]; ; ; 
 [EMAIL PROTECTED]
 Sender = Bill Burke
 Subject = Re: [JBoss-user] I need ammo.
 Delivery Time = March 30, 2001 (Friday) 10:47:46
 Policy = Dirty Words
 Action on this mail = Quarantine message
 
 Warning message from administrator:
 Sender, Content filter has detected a sensitive e-mail.
 
 
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user
 


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] That rude word (marketing)

2001-03-30 Thread Rickard Öberg

Peter Routtier-Wone wrote:
 I ask you all to periodically put yourselves in the boss's shoes and ask yourself 
"Why JBoss?"
 
 When you have an inspiration, post it to the list. Use a subject of "jboss business 
case" so my daemon can flag the message (it's a busy list).

Please take this to the jboss-business list.
(http://groups.yahoo.com/group/jboss-business)

/Rickard

-- 
Rickard berg
Software Development Specialist
xlurc - Xpedio Linkping Ubiquitous Research Center
Author of "Mastering RMI"
Email: [EMAIL PROTECTED]


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] Minerva code

2001-03-30 Thread Guy Rouillier

I tried searching the archives - that function appears to be broken.  In the
process of attempting to answer a question on this mail list, I tried to
find the minerva code.  The source snapshot that I already had had some
minerva files under the jboss directory, but none under opentools.  So I got
the latest snapshot, and much to my surprise, the minerva java files under
jboss are gone.   What happened to those?  Also, do we have access to
minerva source?


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



Re: [JBoss-user] That rude word (marketing)

2001-03-30 Thread Peter Routtier-Wone

Or send this material directly to [EMAIL PROTECTED]

| Please take this to the jboss-business list.
| (http://groups.yahoo.com/group/jboss-business)
| 
| /Rickard


___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user



[JBoss-user] IDE for JBOSS?

2001-03-30 Thread Yasir



Hi,Is there any IDE available that 
integrates with JBOSS on linux? It would =be super if the IDE is on windows 
and can integrate with Linux using =SAMBA or something.=20What are 
popular IDE's for EJB development? I'm a newbie to JBOSS and =have only used 
terminal windows so far for making small beans e.t.c. A =UI would greatly 
speed things up.=20YSK


Re: [JBoss-user] Minerva code

2001-03-30 Thread danch

There's a zip of the minerva code under the JBossCX module in CVS

Guy Rouillier wrote:

 I tried searching the archives - that function appears to be broken.  In the
 process of attempting to answer a question on this mail list, I tried to
 find the minerva code.  The source snapshot that I already had had some
 minerva files under the jboss directory, but none under opentools.  So I got
 the latest snapshot, and much to my surprise, the minerva java files under
 jboss are gone.   What happened to those?  Also, do we have access to
 minerva source?
 
 
 ___
 JBoss-user mailing list
 [EMAIL PROTECTED]
 http://lists.sourceforge.net/lists/listinfo/jboss-user



___
JBoss-user mailing list
[EMAIL PROTECTED]
http://lists.sourceforge.net/lists/listinfo/jboss-user