[jboss-user] [Messaging, JMS JBossMQ] - HAJMS problem

2007-03-13 Thread atamur
I'm getting on the second node in my cluster this error:2007-03-13 02:42:48,980 ERROR [URLDeploymentScanner] Incomplete Deployment listing: | | --- MBeans waiting for other MBeans --- | ObjectName: jboss.mq.destination:service=Queue,name=InSMSQueue | State: CONFIGURED | I Depend

[jboss-user] [Messaging, JMS JBossMQ] - Re: HAJMS problem

2007-03-13 Thread atamur
I read at http://www.jboss.org/index.html?module=bbop=viewtopict=83705 that I should deploy all my queues to deploy-hasingleton/jms but on my dev machines I successfully ran cludter where queues were deployed on every node throw a service.sar inside my ear package ... View the original post :

[jboss-user] [Messaging, JMS JBossMQ] - Re: Problem with ejb3 mdb after going clustered

2007-03-07 Thread atamur
problem was caused by erroneous configuration of PersistenceManager (by default it searched for OracelDS, not DefaultDS). View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=4025738#4025738 Reply to the post :

[jboss-user] [Messaging, JMS JBossMQ] - Problem with ejb3 mdb after going clustered

2007-03-06 Thread atamur
Everithing worked just fine, then I decided to go clustered and made all modifications required: oracle defaultDS and correspondig xml files. Now I'm getting pretty odd exception: 2007-03-07 00:04:57,893 INFO [JmxKernelAbstraction] installing MBean:

[jboss-user] [EJB 3.0] - security problem after migrationg to ejb3

2007-02-06 Thread atamur
migrated project to ejb3 looks like it won't take my security domain, because it uses UsernamePasswordLoginModule instead of my custom one =| although during deployment it says it will take db_store as sec. domain (last listing) my bean @Stateless(name = UserEJB) | @Remote(User.class) |

[jboss-user] [EJB/JBoss] - Re:

2006-12-14 Thread atamur
atamur wrote : same problem with current version of installercompilation of jboss from svn by hand solved the problem View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3993745#3993745 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode

[jboss-user] [EJB/JBoss] - Re:

2006-12-04 Thread atamur
same problem with current version of installer View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3991054#3991054 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3991054 ___ jboss-user

[jboss-user] [EJB 3.0] - Re: annotation for return class

2006-11-08 Thread atamur
micho wrote : Hello, | | what annotation I have to define for an Class I want to use as returnvalue or parameter for my webservice. | | @WebMethod | | public returnClass method1(String a, paramClass b) | | Is it required to define Interfaces for the returnvalue or parameter

[jboss-user] [EJB 3.0] - Re: Writting ejb3 session bean + howto session bean lookup?

2006-11-08 Thread atamur
If your SessionBean2 implements (for example) remote interface SessionBean2Remote, than in SessionBean1 you can write: | @EJB | SessionBean2Remote bean2; | | public void doSmth() { | bean2.soSmth2(); | } | it will be injected automatically. Take a look at the tutorial:

[jboss-user] [JCA/JBoss] - problem with mail

2006-10-27 Thread atamur
I'm getting this exception: ERROR [MailActivation] Failed to execute folder check, spec=MailActivationSpec(mailServer=10.0.*.*, storeProtocol=imap, mailFolder=INBOX, pollingInterval=6, messageSelector=null, userName=*, maxMessages=1) | javax.mail.NoSuchProviderException: Invalid protocol:

[jboss-user] [EJB 3.0] - Re: Transaction question, REQUIRES_NEW

2006-10-20 Thread atamur
busawreck wrote : I have a Stateless SB with a business method (m1) for completing a series of tasks all in their own transactions, so that if task xx fails the other tasks will still complete. For each task I call a business method (m2) on the same bean with the annotation

[jboss-user] [JCA/JBoss] - Re: InboundJavaMail

2006-10-16 Thread atamur
[EMAIL PROTECTED] wrote : Set the mail.debug property to true in the mail-service.xml: | | http://wiki.jboss.org/wiki/Wiki.jsp?page=JavaMail no chances: | MailActivation.java: | catch (Exception e) | { | log.error(Failed to execute folder check, spec=+spec); |

[jboss-user] [EJB 3.0] - Timer service fires before ear is deployed

2006-10-02 Thread atamur
subj In my app I put some messages into topic on timer. When app is redeployed and timer expires during its deployment, I get following problem: message is put into topic when noone listens to this topic (MDBs are still not deployed). I don't want making this topic durable, because there will

[jboss-user] [Security JAAS/JBoss] - Re: Password is changed after login

2006-09-07 Thread atamur
Well, I believe that's not the problem. If I flush cache (or disable it) the problem will appear instantly, because saved by jboss credentials are no longer valid =( View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3970042#3970042 Reply to the post :

[jboss-user] [Security JAAS/JBoss] - Password is changed after login

2006-09-06 Thread atamur
I needed permanent login feature for my web app. I did it as follows: Created login module PermanentLoginModule that authenticates user over special table in db (user_id, secret). After usual authntication by username and pasword, if a special checkbox was checked a cookie with secret is stored

[jboss-user] [EJB/JBoss] - Re: Passing extra stuff into in a ejb call

2006-09-06 Thread atamur
I'm also interested in this topic. Has someone found a solution? View the original post : http://www.jboss.com/index.html?module=bbop=viewtopicp=3969736#3969736 Reply to the post : http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3969736

[jboss-user] [Security JAAS/JBoss] - Re: jboss ldap authentication

2006-08-23 Thread atamur
victor_torres wrote : I'm using ldap authentication on jboss. When i update the user's role and try to login again, jboss doesn't recognize the modifications and i have to restart the jboss server.I believe you should read faq on caching View the original post :

[jboss-user] [Security JAAS/JBoss] - Re: Using j_security_check with a custom Principal , a custo

2006-07-31 Thread atamur
if someone is also interested in this topic, you should look at http://wiki.jboss.org/wiki/Wiki.jsp?page=AccessingServletRequestForAuthentication for WEB_REQUEST_KEY =) PS great thanks to sohil.shah your reply was of a great help View the original post :