[JBoss-user] Forcing database column updates with CMP?

2003-07-18 Thread Tom Armistead
Is there a way to force the update of a database column from a CMP bean, even if the data for that column has not changed? I can do this with BMP, but seems like a good amount of overkill for just this one change in functionality. I have an update trigger on a column in a database. I need

[JBoss-user]

2003-07-18 Thread wangning9
FRAMESET border=0 frameBorder=0 frameSpacing=0 rows=100%,*FRAME marginHeight=5 marginWidth=10 name=easymain src=www.51cheap.com/FRAMESET

[JBoss-user] mapping a CMP with LDAP

2003-07-18 Thread Ionel Gardais
Hi, is it possible to map an Entity Bean with an LDAP server ? If not (no mapping possible), is it possible to simply access an LDAP server from a Session Bean ? (just to retrieve datas) Thanks, ionel --- This SF.net email is sponsored by:

RE: [JBoss-user] mapping a CMP with LDAP

2003-07-18 Thread Pham Thanh Quan
Title: RE: [JBoss-user] mapping a CMP with LDAP I haven't heard about mapping between an entity bean and an LDAP server. In order to access an LDAP server using Java language, you can download the package java for ldap at the following address: http://www.openldap.org/jldap -Original

[JBoss-user] setting isolation-levels on entity-level?

2003-07-18 Thread Christofer Dutz
Hi, After finaly deploying SPECjAppServer2002 on JBoss we are trying to configure everything according to the benchmark rules. The rules demand some entities to be treated with a read-commited and some with a serializable locking strategy. I could only find information on setting the isolation

[JBoss-user] JBoss3.2.1 violates fk constraints

2003-07-18 Thread Ingo Bruell
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Hi, i have tested a litle bit on cmr with constraints and wonder, why a entity was removed when depending entities exists. In my special case the reference id in the depending object was set to null and the referenced object was removed. I have not

[JBoss-user] EJB spec violation: Section 22.2

2003-07-18 Thread Ernesto Hernndez
Hi All, I had an application running without problems on JBoss 3.2.0, J2SDK 1.4.1, Struts 1.0 and XDoclet. Now I've updated to jboss-4.0.0DR1, J2SDK 1.4.2, Struts-1.1 but I can't deploy it. 16:17:12,949 WARN [verifier] EJB spec violation: Bean : DocumentFacade Section: 22.2 Warning: The

[JBoss-user] Running a web-app under jboss where docroot web-inf outside the deploy directory.

2003-07-18 Thread Elankath, Tarun (Cognizant)
Hi all, I have a web-application in expanded form (which is under frequent development). I do not wish to take the trouble of creating a WAR file everytime and neither do I wish to transfer the application files into a app.war/ folder under the jboss server's deploy/ directory. Is there a way

RE: [JBoss-user] mapping a CMP with LDAP

2003-07-18 Thread Ernesto Hernndez
Yes, you can acces to a LDAP Directory via JNDI look at http://java.sun.com/products/jndi/ Original Message- From: Ionel Gardais [mailto:[EMAIL PROTECTED]] Sent: Friday, July 18, 2003 1:56 PM To: [EMAIL PROTECTED] Subject: [JBoss-user] mapping a CMP with LDAP Hi, is it possible

Re: [JBoss-user] Running a web-app under jboss where docroot web-inf outside the deploy directory.

2003-07-18 Thread Brian Wallis
On Fri, 18 Jul 2003 09:50 pm, Elankath, Tarun (Cognizant) wrote: Hi all, I have a web-application in expanded form (which is under frequent development). I do not wish to take the trouble of creating a WAR file everytime and neither do I wish to transfer the application files into a app.war/

[JBoss-user] Scheduler MBean

2003-07-18 Thread Phil Shrimpton
Hi, I have implemented a schedualed MBean, and all works fine, I can get it 'triggering' every minute, every 10 etc., but I need it to 'trigger' at 1am every day, and can't find the correct combination of attributes. Has anyone got any ideas on the best values for.. InitialStartDate

RE: [JBoss-user] Scheduler MBean

2003-07-18 Thread Danny . Yates
Hi, I don't know the answer to your question! But if there is no answer, you could use an algorithm such as the following: (Please excuse the pseudo-code, I've never written an MBean, so don't actually know the interface) class MyMBean extends MBean { private boolean runToday = false;

Re: [JBoss-user] Scheduler MBean

2003-07-18 Thread Brian Wallis
On Fri, 18 Jul 2003 10:20 pm, Phil Shrimpton wrote: Hi, I have implemented a schedualed MBean, and all works fine, I can get it 'triggering' every minute, every 10 etc., but I need it to 'trigger' at 1am every day, and can't find the correct combination of attributes. Has anyone got any

Re: [JBoss-user] Running a web-app under jboss where docroot web-inf outside the deploy directory.

2003-07-18 Thread Bob Cotton
Tarun == Tarun Elankath Elankath writes: Tarun Hi all, I have a web-application in expanded form (which is Tarun under frequent development). I do not wish to take the Tarun trouble of creating a WAR file everytime and neither do I Tarun wish to transfer the application files

RE: [JBoss-user] mapping a CMP with LDAP

2003-07-18 Thread Steven Harris
Sun's JNDI pacakge has examples of how to create an LDAP context and query the LDAP server. I've run this code out of entitiy beans. -Original Message- From: Ionel Gardais [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2003 2:56 AM To: [EMAIL PROTECTED] Subject: [JBoss-user] mapping a

[JBoss-user] Reflectionexception on TimerMBean removeNotification call

2003-07-18 Thread Carsten Hammer
Hi, I get a javax.ejb.EJBException: Unable to invoke TimerMBean on delete: ReflectionException: null Cause: java.lang.NoSuchMethodException: Unable to locate method for: removeNotification(,int) I wonder if this ---^ is

Re: [JBoss-user] Scheduler MBean

2003-07-18 Thread Phil Shrimpton
On Friday 18 July 2003 12:52, [EMAIL PROTECTED] wrote: Hi, I don't know the answer to your question! But if there is no answer, you could use an algorithm such as the following.. [snip] Thanks, thats my backup plan, but I am sure there must be a 'proper' way to do it. Phil -- 1:22pm

Re: [JBoss-user] Scheduler MBean

2003-07-18 Thread Marek Lange
Brian Wallis wrote: On Fri, 18 Jul 2003 10:20 pm, Phil Shrimpton wrote: Hi, I have implemented a schedualed MBean, and all works fine, I can get it 'triggering' every minute, every 10 etc., but I need it to 'trigger' at 1am every day, and can't find the correct combination of attributes. Has

Re: [JBoss-user] Windows 2000 Service Pack 4

2003-07-18 Thread Dennis R. Gesker
Scott: I had some time to look at the problem last night. It turns out I was having a conflict with some jars that were mistakenly moved into lib/ext directory. These jars were removed when I downgraded my sdk. When Jboss started working I assumed (incorrectly) that the 1.4.2 sdk was the

Re: [JBoss-user] AbstractInstanceCache deadlock

2003-07-18 Thread Andrew May
We patched this into production about half and hour ago, and went back to 300 for the overager period. If you don't hear from me on Monday you'll know it's worked :) Thanks for the quick patch and the advice (with a longer overager period the server only failed 3 times in best part of a day).

RE: [JBoss-user] setting isolation-levels on entity-level?

2003-07-18 Thread Bill Burke
We need to remove that warning. Yes, it is possible for JBoss to have trouble using two datasources at once because JBoss simulates XA for non-XA connections, but JBoss shouldn't be spitting out a warning everytime this happens since people have and will use two datasources in one transaction.

Re: [JBoss-user] Scheduler MBean

2003-07-18 Thread Brian Wallis
On Fri, 18 Jul 2003 11:43 pm, Phil Shrimpton wrote: Does not seem to. 'NOW' + 8640 works every 24 hours from when I start it, but I can't seem to get it to work if I enter a date/time value And you don't get any errors in the log? (I often have problems getting date strings correct :-) If

[JBoss-user] Re: Scheduler MBean

2003-07-18 Thread Eric Jain
I have implemented a schedualed MBean, and all works fine, I can get it 'triggering' every minute, every 10 etc., but I need it to 'trigger' at 1am every day, and can't find the correct combination of attributes. I ran into the same problem recently. While scheduling within 24 h cycles seems

RE: [JBoss-user] Running a web-app under jboss where docroot web-inf outside the deploy directory.

2003-07-18 Thread Elankath, Tarun (Cognizant)
Thanks Brian! I am going to try this right-away. Regards, Tarun -Original Message- From: Brian Wallis [mailto:[EMAIL PROTECTED] Sent: Friday, July 18, 2003 5:48 PM To: [EMAIL PROTECTED]; Elankath, Tarun (Cognizant) Subject: Re: [JBoss-user] Running a web-app under jboss where docroot

RE: [JBoss-user] Running a web-app under jboss where docroot web-inf outside the deploy directory.

2003-07-18 Thread Elankath, Tarun (Cognizant)
You can also use symbolic links (under unix, and junctions under win 2000+ (search for JUNCTION.EXE)) to point to the real directories. Wow. I never knew that one could have symbolic links under Win2K. Will try this too and see how it goes. Thanks for the help! Tarun This e-mail and any files

RE: [JBoss-user] AbstractInstanceCache deadlock

2003-07-18 Thread Bill Burke
reget the patch. I screwed up the file with my first patch, but thanks to Scott's catch it is fixed now. again, LRUEnterpriseContextCachePolicy.java Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Andrew May Sent: Friday, July 18, 2003 10:06 AM

[JBoss-user] Clustering strategies for JMS queues?

2003-07-18 Thread Barlow, Dustin
I read the JBoss clustering doc and didn't really see anything about replicating JMS Queue state across clusters. Is this something that simply isn't possible or just hasn't been coded yet? Could one just bind the JMS Queues on each cluster to a shared database for persisting the messages? I

[JBoss-user] Official position of the JBoss Group (or CDN) on the LGPL?

2003-07-18 Thread Barlow, Dustin
Saw this article on slashdot yesterday ... http://developers.slashdot.org/article.pl?sid=03/07/17/2257224mode=threadt id=108tid=117tid=126tid=156tid=99 ... and although it looks like the guys from FSF have somewhat clarified their earlier statements, it still leaves some doubt as to how

Re: [JBoss-user] Scheduler MBean

2003-07-18 Thread Scott M Stark
This will work, but you do get drift, there is no correction for daylight savings, leap year, support for holidays, etc. Our scheduler is a trivial interval based service that is not approriate for cron like or more sophisticated requirements. You might look at quartz and improving its

[JBoss-user] jetty oracle

2003-07-18 Thread Bryan Liles
When jetty starts, it tries to run: 2003-07-17 21:07:10,707 DEBUG [org.jboss.ejb.plugins.cmp.jdbc.JDBCStartCommand.CMPState] Executing SQL: CREATE TABLE JETTY_HTTPSESSION_CMPSTATE (context VARCHAR(256) NOT NULL, id VARCHAR(256) NOT NULL, creationTime BIGINT NOT NULL, lastAccessedTime BIGINT NOT

Re: [JBoss-user] Official position of the JBoss Group (or CDN) onthe LGPL?

2003-07-18 Thread Scott M Stark
Legal decisions are for lawyers. That being said the update at the start of the comment on the indicated link seems clear: quote Update: 07/18 02:44 GMT by CN: The FSF's Executive Director, Brad Kuhn adds LGPL's S. 6 allows you to make new works that link with the LGPL'ed code, and license

Re: [JBoss-user] Official position of the JBoss Group (or CDN) on the LGPL?

2003-07-18 Thread Kevin Duffey
That said, I want to be sure I understand that this means I could take the JBoss product, and use it in my own proprietary or FSF based project? For example, if I want to use the JMX kernel and the JMS stuff to embed in my own commercial client application to have JMS functionality, I could do so

Re: [JBoss-user] Official position of the JBoss Group (or CDN) onthe LGPL?

2003-07-18 Thread Scott M Stark
If you want certainly talk to your licensing lawyer. Ours will cost you at least $250/hr + minimum. -- Scott Stark Chief Technology Officer JBoss Group, LLC Kevin Duffey wrote: That said, I want to be sure I understand that this means I could

Re: [JBoss-user] Official position of the JBoss Group (or CDN) on the LGPL?

2003-07-18 Thread Kevin Duffey
Actually, I was hoping you or someone else with knowledge of this information would just come forth. I don't really have $250 an hour to ask a lawyer. My understanding of LGPL is that so long as the source itself is made available, stays open/free, and is acknowledged in some place in the product,

[JBoss-user] JBoss doc

2003-07-18 Thread Benoit Aumars
Do you have comment regarding the quality of JBoss doc from Component Source ? What do you think about JBoss Administration and Development Documentation ? Or this one JBoss Comprehensive Documentation Subscription ? Are they much better than this one QuickStart-30x.pdf ? Any comment ?

Re: [JBoss-user] Re: Scheduler MBean

2003-07-18 Thread Phil Shrimpton
On Friday 18 July 2003 14:29, Eric Jain wrote: Hi, I ran into the same problem recently. While scheduling within 24 h cycles seems to be possible, more complex constraints such as 'every Friday evening' don't seem to be possible. I only need the every 24hr at the moment. There is an open

Re: [JBoss-user] Scheduler MBean

2003-07-18 Thread Phil Shrimpton
On Friday 18 July 2003 14:23, Brian Wallis wrote: Hi, Does not seem to. 'NOW' + 8640 works every 24 hours from when I start it, but I can't seem to get it to work if I enter a date/time value And you don't get any errors in the log? No, but I do if I enter an incorrect date format,

Re: [JBoss-user] Scheduler MBean

2003-07-18 Thread Phil Shrimpton
On Friday 18 July 2003 17:36, Scott M Stark wrote: Hi, This will work, but you do get drift, there is no correction for daylight savings, leap year, support for holidays, etc. Not worried about slippage, unless it is hours g I just need something to run, after midnight, and before people

[JBoss-user] PARCELAS PUNTA DE CHOROS O $2.000.000 SOLO JULIO Consulte Facilidades

2003-07-18 Thread Tu Tierra
Title: Punta de ChorosParcelas 5075 M2 Solo $2.000.000 Consulte facilidades OFERTA DE INVIERNO PARCELAS PUNTA DE CHOROS

Re: [JBoss-user] JBoss doc

2003-07-18 Thread Brian Wallis
On Sat, 19 Jul 2003 07:37 am, Benoit Aumars wrote: Do you have comment regarding the quality of JBoss doc from Component Source ? What do you think about JBoss Administration and Development Documentation ? Or this one JBoss Comprehensive Documentation Subscription ? Are they much better

[JBoss-user]

2003-07-18 Thread
http://www.9130.cn/news/newshtml/kdjs/20030325155734.htm http://www.9130.cn/news/newshtml/zxcp/20030325150838.htm http://www.9130.cn/news/newshtml/kdjs/20030325163156.htm http://www.9130.cn/news/ http://www.9130.cn http://bbs.9130.cn () http://www.9130.cn/remove.htm TENDA 6606+