[jboss-user] [JNDI/Naming/Network] - Re: JNDI Connection Problem! jboss.bind.address always 127.0

2007-07-14 Thread cjc
Hi, @ vedgunjan: I'm think your problem is something with FW too. If i install a fresh donwloaded JBoss it works well on Windows Server 2003. I havnt installed a Activ directory or somthing like that (dev system!) maybe write your own programm and bind the requred Port so u can test if it is JB

[jboss-user] [JNDI/Naming/Network] - Re: JNDI Connection Problem! jboss.bind.address always 127.0

2007-07-07 Thread cjc
Thangs that works! But the Produktion System is MS :-/ and There i have to use javaservice. Running the run.bat -b x.x.x.x works as well! But with -Djboss.bind.address it will not workt! This is how the registry looks: [HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\JBOSS\Parameters] | "J

[jboss-user] [JNDI/Naming/Network] - JNDI Connection Problem! jboss.bind.address always 127.0.0.1

2007-07-04 Thread cjc
.0.0 it changed nothing! Even jboss.bind.address=dbserver or the IP. If im just to stupid read right the manual say me where to look! Do I have to use the bind-service.xml to do that? regards cjc View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4060338#406

[jboss-user] [EJB 3.0] - Re: inject @EJB dosn't work with 4.0.5

2006-11-11 Thread cjc
A restart of Jboss solve the problem !!! http://www.jboss.com/index.html?module=bb&op=viewtopic&t=93486 how ever in Jboss 4.0.4 GA it works well!!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3985139#3985139 Reply to the post : http://www.jboss.com/index.

[jboss-user] [EJB 3.0] - Re: JBoss 4.0.5 EJB3 Deploy need server restart ?

2006-11-11 Thread cjc
I got the same problem!! http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3985139#3985139 did someone find the reason, work around, fix? A restart all the time is very BAD!! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3985140#3985140 Reply to the p

[jboss-user] [EJB 3.0] - Re: inject @EJB dosn't work with 4.0.5

2006-11-06 Thread cjc
Thx allot ALRubinger, this solve the NullpointerException!! I forgot to add the new Jars to my Eclipse Project *ups* i use this library's from jboss 4.0.5 now: *jboss-ejb3x.jar *hibernate-client.jar *ejb3-persistence.jar But yet i get this crazy error! Work right!! WM_MailManager mm =(WM_MailMa

[jboss-user] [EJB 3.0] - inject @EJB dosn't work with 4.0.5

2006-11-06 Thread cjc
I have 2 Statless Sessionbeans in one I invoke the other by using @EJB The same jar works fine under 4.0.4 GA!! Example Javacode: | import javax.annotation.EJB; | import javax.ejb.Stateless; | | public @Stateless class MailBoxAccountManagerBean implements WM_MailBoxAccountManager { |

[jboss-user] [JNDI/Naming/Network] - Re: using Tomcat to serve EJB requests

2006-11-03 Thread cjc
Hi, I have the same configuration. I did copy the lib's from Jboss to webapps/"something"/WEB-INF/lib | jbossall-client.jar | jboss-aop-jdk50-client.jar | jboss-aspect-jdk50-client.jar | jboss-aspect-library-jdk50.jar | jboss-ejb3-client.jar | jboss-ejb3x.jar | ejb3-persistence.jar

[jboss-user] [EJB 3.0] - Re: JbossQL and m.createQuery(.. OFFSET 5 LIMIT 23)

2006-08-25 Thread cjc
, Integer limit){ | String order = "ORDER BY ." | Query q = manager.createQuery("SELECT o FROM SomeObj o "+ order ); | q.setFirstResult(offset); | q.setMaxResults(limit); | return q.getResultList(); | } | thx all cjc View the original post : http://www.

[jboss-user] [EJB 3.0] - JbossQL and m.createQuery(.. OFFSET 5 LIMIT 23)

2006-08-25 Thread cjc
; | | public List findAllBlub(Integer offset, Integer limit){ | String order = "ORDER BY ." | return manager.createQuery("SELECT o FROM SomeObj o "+ order +" OFFSET "+ offset +" LIMIT "+ limit).getResultList(); | } | I'm using Jboss4.