[jboss-user] [JBoss Portal] - The Eclipse Team Project file-anonymous-projectSet.psf is in

2008-04-26 Thread liran.jn
I want to download portal source code using Eclipse 3.2, and read the Wiki article " Using Eclipse as your IDE". But the link :http://anonsvn.jboss.org/repos/portal/trunk/build/ide/eclipse/3.2/team/anonymous-projectSet.psf is invalidate. How can I dowwload portal source code using Eclipse 3.

[jboss-user] [JCA/JBoss] - Re: Database Connection Failover Question

2008-04-26 Thread emmitt1219
Got it. Thank you for your help! View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147043#4147043 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4147043 ___ jboss-user mailing lis

[jboss-user] [JCA/JBoss] - Re: MBean for inbound-resourceadapter

2008-04-26 Thread vickyk
"michele.curioni" wrote : I have a TCP inbound resource adapter, which listens on various ports. | I want to be able to query which ports are active, be able to stop listening on some port, and start again, etc. | Basically I need to manage the resource adapter functionality, without affecti

[jboss-user] [JCA/JBoss] - Re: Database Connection Failover Question

2008-04-26 Thread vickyk
"emmitt1219" wrote : Thanks for the help! | | How about JBoss 4? Is there any way to accomplish this on 4.0.4...? Not without the code change it is not possible with 4.0.4 , you got to modify http://anonsvn.jboss.org/repos/jbossas/tags/JBoss_4_0_4_GA/connector/src/main/org/jboss/resource/adap

[jboss-user] [JBossWS] - Re: JBossWS Plugin for JBossIDE / Eclipse

2008-04-26 Thread jj_andrade
Anyone knows why JBossWS was discontinued?? That is a great and fantastic plug-in under eclipse. I can not believe it !! And now, where i can found out a similar plug-in with its facilities and simply!!! Regards, Jose View the original post : http://www.jboss.com/index.html?module=bb&op=viewto

[jboss-user] [JBoss Portal] - Jboss Portal Search

2008-04-26 Thread vpire
I had get the jboss portal running but I can't find the "search" function anywhere. Am I missing something or redhat forget to build that in. Is there any alternative solution to add "search" into the jboss portal? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&

[jboss-user] [Javassist user questions] - Re: How to get a method defined in the superclass

2008-04-26 Thread jmauricio
i again! I forgot to say that code don´t work Mauricio View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147031#4147031 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4147031 _

[jboss-user] [Javassist user questions] - How to get a method defined in the superclass

2008-04-26 Thread jmauricio
Help Please! When a a use the code above: ctMethod.setBody("{return ("+ nameMethod + "($$) & super."+ nameMethod + "($$));}"); Thanks Maurício View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147030#4147030 Reply to the post : http://www.jboss.com/index.h

[jboss-user] [JBossWS] - Re: Cannot expose EJB 3 as WS

2008-04-26 Thread peiguo
I can resolve by specify wsdlLocation in a config.xml file. Wondering why... tried to specify this wsdlLocation using @WebService and didn't work. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147027#4147027 Reply to the post : http://www.jboss.com/index.ht

[jboss-user] [JBossWS] - Re: Cannot expose EJB 3 as WS

2008-04-26 Thread peiguo
Checked out the specification for @WebService, it says that wsdlLocation points to a predefined wsdl, obviously does not work for my purpose here. I still wonder whether I can avoid the config.xml file. Is it not true that EJB 3 suppose to remove the need of those xml files. View the original p

[jboss-user] [JCA/JBoss] - Re: Database Connection Failover Question

2008-04-26 Thread emmitt1219
Thanks for the help! How about JBoss 4? Is there any way to accomplish this on 4.0.4...? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147021#4147021 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4147021 _

[jboss-user] [JBossWS] - Cannot expose EJB 3 as WS

2008-04-26 Thread peiguo
Hi, I developed a very simple EJB 3 bean, I can deploy it with no error, but the web service is not exposed. This is what I did: 1) Wrote the code as shown below; 2) compile and jar into hello.jar; 3) copy the jar to server/default/deploy; Please help, what did I miss? I am using 4.2.2.GA Hello.

[jboss-user] [JCA/JBoss] - Re: Database Connection Failover Question

2008-04-26 Thread vickyk
"emmitt1219" wrote : Now, my question is. When our primary db comes back up, is there a way for me to force the data source point back to the primary db? | You got to write the custom URLSelector which is possible only with jboss5 , here is the sample -ds.xml file which contains it http://an

[jboss-user] [EJB 3.0] - Re: serialVersionUID mismatch using remote client and jboss-

2008-04-26 Thread ablevine1
use all the jars in the client directory of your jboss installation View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147019#4147019 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4147019 ___

[jboss-user] [EJB 3.0] - Re: Problem with EJB call EJB

2008-04-26 Thread peiguo
I just notoced that,t the beginning of my ejb-jar.xml, it says version="2.1". That might be part of the problem, what's the correct schema and version etc? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147017#4147017 Reply to the post : http://www.jboss.com

[jboss-user] [EJB 3.0] - Re: Problem with EJB call EJB

2008-04-26 Thread peiguo
Thank for your reply. I tried your first option, and got the same null pointer error. Your second option actually was the first thing I tried when I first started to experiment. I am using 4.2.2.GA if that means anything. I have attempted to upgrade to 5.0.0.Beta4, but it gave me some wierd err

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Seam 2.0: EntityManager must be access within a transact

2008-04-26 Thread yj4jboss
Hi, Thnx for this information. I will test this on monday. Regards, Jankee Yogesh View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147011#4147011 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4147011

[jboss-user] [JBossWS] - How to write a Client for this simple wsconsume output?

2008-04-26 Thread thoste
I have difficulties to write simple Client which access an existing Web Service. The output of wsconsume on the WSDL can be seen below. How would such a client.java look like? Particularly I am interested in the necessary import statements. Which classes and *.jars do I have to include in the CL

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Sending default (welcome) page through Faces Servlet

2008-04-26 Thread scheible
Thank you for the information. It is useful although not quite what I was looking for. I know that many applications have a static welcome page. However, this application is configured to have a JSF welcome page. I can't figure out how to make the welcome page go through the Faces Servlet.

[jboss-user] [JBoss Getting Started Documentation] - Re: Call jbpm process from Jsp

2008-04-26 Thread binodkumarsuman
Hi, Thanks for reply. yes, I agreed that I can call the jBPM from Servlet and throw the result using JSP. Could you please explain that how I can call jBPM from sevlet? Please help me in this context, I am struggling for this solution. Thanks, Binod Suman View the original post : http://www

[jboss-user] [JBoss Portal] - Re: SynchronizingLoginModule synchronize always

2008-04-26 Thread ameo
Solved ! I thought that only the flag "loginOk" have to be set to false und the login-method habe to return false, therefore the authentication in whole fails. But you have to throw a LoginException, too !! The JAAS LoginContext class sets a variable addicted to this Exception for subsequ

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Sending default (welcome) page through Faces Servlet

2008-04-26 Thread jaikiran
The default application on JBoss is configured in ROOT.war in %JBOSS_HOME%\server\default\deploy\jboss-web.deployer folder. You can make your application the default one, so that http://localhost:8080 points to your application. Follow this thread for more details: http://www.jboss.com/index.ht

[jboss-user] [Installation, Configuration & DEPLOYMENT] - Re: Deploy ZIP vs. EAR

2008-04-26 Thread jaikiran
The zip file is not a valid deployable and you will not be able to deploy it. You will have to use the EAR file and try to fix the classloading issue. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147002#4147002 Reply to the post : http://www.jboss.com/ind

[jboss-user] [Beginners Corner] - Re: Problem with EJB call EJB

2008-04-26 Thread jaikiran
Please do not post the same question in multiple forums http://www.jboss.com/index.html?module=bb&op=viewtopic&t=134502. Let's continue this discussion, in that other thread. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4147000#4147000 Reply to the post :

[jboss-user] [EJB 3.0] - Re: Problem with EJB call EJB

2008-04-26 Thread jaikiran
Are you sure there were no errors during deployment? anonymous wrote : @EJB(beanName = "org.jboss.ws.hello.HelloBean") | private HelloBean h; This should have been: @EJB(beanName = "HelloBean") | private HelloBean h; or even this should work: @EJB | private HelloBea

[jboss-user] [JBoss jBPM] - Re: problem with jbpm3.2 and jboss SA 4.2.1GA

2008-04-26 Thread salaboy21
anonymous wrote : | -- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM --- | ObjectName: jboss.jca:service=DataSourceBinding,name=DefaultDS | State: NOTYETINSTALLED | Depends On Me: | jboss.ejb:service=EJBTimerService,persistencePolicy=database | jboss:service=KeyGeneratorFactory,type=Hi

[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - Re: Seam 2.0: EntityManager must be access within a transact

2008-04-26 Thread jaikiran
That's not the file where the transaction timeout is configured. There's a jboss-service.xml file in %JBOSS_HOME%\server\default\conf folder which contains this: | | | 300 | ${jboss.server.data.dir}/tx-object-store | 300 is the default value. Change it to an appr

[jboss-user] [EJB/JBoss] - Re: Accessing Applet behind NAT firewall [EJB application]

2008-04-26 Thread SandeepDJboss
Guys - now i am completely using RMI over HTTP solution implemented using the following URL http://wiki.jboss.org/wiki/EJBOverHTTPWithLegacyInvoker But the problem still persists The problem is that I want to have diffrent customers using my application. If they connect directly to the IP then

[jboss-user] [JNDI/Naming/Network] - Re: Accessing Applet behind NAT firewall [EJB application]

2008-04-26 Thread SandeepDJboss
Guys - now i am completely using RMI over HTTP solution implemented using the following URL http://wiki.jboss.org/wiki/EJBOverHTTPWithLegacyInvoker But the problem still persists The problem is that I want to have diffrent customers using my application. If they connect directly to the IP then

[jboss-user] [JNDI/Naming/Network] - RMI over HTTP -- Invoker URL at runtime ?

2008-04-26 Thread SandeepDJboss
Hi Everyone, I have used http-invkoer.sar to use the RMI over HTTP for EJB communication. http://wiki.jboss.org/wiki/EJBOverHTTPWithLegacyInvoker The problem is that I want to have diffrent customers using my application. If they connect directly to the IP then ther is no problem. But some of t

[jboss-user] [JBoss Messaging] - Re: ConnectionNotifier is produced: java.lang.NullPointerExc

2008-04-26 Thread timfox
The stack trace shows this is in jboss remoting. Have you tried asking in the jboss remoting forum? View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4146991#4146991 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4146991 __

[jboss-user] [JBoss Messaging] - Re: JBoss Messaging JMS connection usage leading to problems

2008-04-26 Thread timfox
"harish43" wrote : I am not certain whether we are using the JCA connection pool. Assuming that we are not using the connection pool is there a fix for the issue mentioned by Kevin Conner? It's slightly worrying that you don't know if your using the JCA managed conection factory or not, since t

[jboss-user] [EJB 3.0] - Re: serialVersionUID mismatch using remote client and jboss-

2008-04-26 Thread Thomaskm
Could anyone please paste all the required jar files for running ejb3 project on jboss server and invoking the same using a java client? Thanks and Regards, Thomas View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4146989#4146989 Reply to the post : http://www.

[jboss-user] [Installation, Configuration & DEPLOYMENT] - help : WARN [UDP] failed to join /224.0.0.75:7500

2008-04-26 Thread j-root
Dearz , i'm facing a problem when i startup jboss 4.2.2 over RHEL , i'm getting this warnings : 11:34:24,351 INFO [Server] Starting JBoss (MX MicroKernel)... 11:34:24,352 INFO [Server] Release ID: JBoss [Trinity] 4.2.2.GA (build: SVNTag=JBoss_4_2_2_GA date=200710221139) 11:34:24,354 INFO [Se

[jboss-user] [JBoss Messaging] - Re: PLEASE DO NOT POST JBOSS MQ QUESTIONS HERE

2008-04-26 Thread timfox
Actually, that datasheet is pretty out of date now. View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4146979#4146979 Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4146979 ___ jbo

[jboss-user] [JBoss Messaging] - Re: Simple Queue into a Clustered enviroment

2008-04-26 Thread timfox
Please post post JBoss MQ questions on the JBoss MQ forum, not the JBoss Messaging forum. See sticky post at the top of this forum, View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4146978#4146978 Reply to the post : http://www.jboss.com/index.html?module=bb&o