[JBoss-user] [Messaging, JMS & JBossMQ] - Re: how to tunneling jms to 80 port?

2005-02-27 Thread dragon_jdh
Hi, justkeys I tried & it works. but I am still confusing, since it is just JNDI over http, how message send between server & client side? would you please explain the communication a bit detail? thanks a lot Regards Dragon View the original post : http://www.jboss.org/index.html?module=bb&o

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: how to tunneling jms to 80 port?

2005-02-24 Thread dragon_jdh
thanks a lot, I will try it immediately. BTW: is there a way to do RMI tunneling on JBoss? I know JProxy can do it, but I want to find other ways. thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867858#3867858 Reply to the post : http://www.jboss.org

[JBoss-user] [Messaging, JMS & JBossMQ] - how to tunneling jms to 80 port?

2005-02-20 Thread dragon_jdh
Does jboss supports http tunneling so I can s/r message by port 80? I am new to http tunneling, please help me, thanks View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3867208#3867208 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode

[JBoss-user] [Persistence & CMP/JBoss] - Re: CMP Bean Finder expression error

2005-01-21 Thread dragon_jdh
illegal character, you should use < or sth else instead of < View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3863087#3863087 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3863087

[JBoss-user] [Persistence & CMP/JBoss] - Re: Intermittent TransactionRollbackLocalExceptions

2005-01-19 Thread dragon_jdh
anonymous wrote : multiple beans to share a single ID How did you do that? would you please explain it in detail? Boz I have ever met that exception intermittently. thanks Regards View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862827#3862827 Reply to the

[JBoss-user] [Persistence & CMP/JBoss] - Re: how to configure get & find method independently?

2005-01-17 Thread dragon_jdh
thanks Hariv, I got it. View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3862511#3862511 Reply to the post : http://www.jboss.org/index.html?module=bb&op=posting&mode=reply&p=3862511 --- The SF.Net email is s

[JBoss-user] [Persistence & CMP/JBoss] - Re: dead lock

2005-01-17 Thread dragon_jdh
I did some modification as following: 1: modify jboss.xml, add one container configuration as following: Optimistic CMP EntityBean org.jboss.ejb.plugins.lock.JDBCOptimisticLock B then shift the special bean to this configuration. 2: configure locking policy for

[JBoss-user] [Persistence & CMP/JBoss] - how to configure get & find method independently?

2005-01-12 Thread dragon_jdh
May I configure find & get methods to no lock, set methods to pessimistic lock? in standardjboss.xml, we can configure the locking policy, but it's for all ejb. Can I configure for special methods? View the original post : http://www.jboss.org/index.html?module=bb&op=viewtopic&p=3861756#3861756

[JBoss-user] [Persistence & CMP/JBoss] - Re: dead lock

2005-01-12 Thread dragon_jdh
I change the bean to 'instance per transaction...', and add synchronize in some place, the deadlock disappear again. but I got following exception: java.util.ConcurrentModificationException ... I found the configuration for 'instance per transa..' is nolock, and also I change the commit option

[JBoss-user] [Persistence & CMP/JBoss] - Re: dead lock

2005-01-11 Thread dragon_jdh
thanks,HariV two more question: 1: how to configure your entity bean as instance per transaction ? 2: I change the lock to JDBCOptimisticLock by modify standardjboss.xml, the deadlock disappear. but new error happend. the exception is: 2005-01-12 10:44:49,147 ERROR [org.jboss.ejb.plugins.LogInter

[JBoss-user] [Persistence & CMP/JBoss] - dead lock

2005-01-10 Thread dragon_jdh
jboss3.2.3 sql server 2000 I have a timertask, run in background regularly. it will visit an entity bean, suppose A. And also there are other places visit that bean. all the methods are 'required' configuration. the isolation level is pessimistic now I often met deadlock exception. How