[jboss-user] [Beginner's Corner] - Re: Upgrade from jboss 3.x to Jboss AS 7

2013-08-22 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Upgrade from jboss 3.x to Jboss AS 7

To view the discussion, visit: https://community.jboss.org/message/833549#833549

--
Diesel, I added a comment in that JIRA
--

Reply to this message by going to Community
[https://community.jboss.org/message/833549#833549]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [Beginner's Corner] - Re: Upgrade from jboss 3.x to Jboss AS 7

2013-08-21 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Upgrade from jboss 3.x to Jboss AS 7

To view the discussion, visit: https://community.jboss.org/message/833300#833300

--
The FAQ that Anders Welen pointed you to has the basic details and here's a 
thread where it's explained in more detail  
https://community.jboss.org/message/831244#831244#831244 
https://community.jboss.org/message/831244#831244
--

Reply to this message by going to Community
[https://community.jboss.org/message/833300#833300]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [Beginner's Corner] - Re: Upgrade from jboss 3.x to Jboss AS 7

2013-08-21 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Upgrade from jboss 3.x to Jboss AS 7

To view the discussion, visit: https://community.jboss.org/message/833301#833301

--
 Anders Welen wrote:
 
  http://wildfly.org/download/ http://wildfly.org/download/ (Not all versions 
 are available here. You may have to build it yourself using the code from  
 https://github.com/wildfly/wildfly https://github.com/wildfly/wildfly)
I'm not sure I understood that part. All released versions of WildFly are 
available on that page.
--

Reply to this message by going to Community
[https://community.jboss.org/message/833301#833301]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [Beginner's Corner] - Re: which form to download either source or binary download for Jboss 4.2.3 ?

2013-08-13 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: which form to download either source or binary download for Jboss 4.2.3 ?

To view the discussion, visit: https://community.jboss.org/message/832579#832579

--
You'll have to download the pre-built binary file, unless you want to build it 
yourself.
--

Reply to this message by going to Community
[https://community.jboss.org/message/832579#832579]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [EJB3] - Re: JBoss 6.1.0.Final SFSB concurrency issue

2013-07-19 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: JBoss 6.1.0.Final SFSB concurrency issue

To view the discussion, visit: https://community.jboss.org/message/828896#828896

--
Is this JBoss EAP 6.1.0.Final (based on AS7) or the community JBoss AS 
6.1.0.Final?
--

Reply to this message by going to Community
[https://community.jboss.org/message/828896#828896]

Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [EJB3] - Re: Multiple session beans with the same interface

2013-07-10 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Multiple session beans with the same interface

To view the discussion, visit: https://community.jboss.org/message/827308#827308

--
It's perfectly valid for multiple EJBs to implement the same interface. The 
error isn't because multiple EJBs are implementing the same interface, but it's 
because the usage of the @EJB in your application is such that the container 
has no idea which of the multiple EJB implementations you are trying to setup 
into the java:global namespace via the @EJB usage:

@Stateless
@EJB(name = java:global/coo/TestBean1, beanInterface = TestBean.class)
public class TestBean1 implements TestBean{
}
 
@Stateless
@EJB(name = java:global/coo/TestBean2, beanInterface = TestBean.class)
public class TestBean2 implements TestBean{


The spec allows you to narrow it down to the specific EJB implementation. You 
can do so by using the beanName attribute of the @EJB where you can specify 
the name of the bean (which by default is the bean implementation's simple 
class name). So you should change that above code to:

@Stateless
@EJB(name = java:global/coo/TestBean1, beanInterface = TestBean.class, 
*beanName=TestBean1*)
public class TestBean1 implements TestBean{
}

@Stateless
@EJB(name = java:global/coo/TestBean2, beanInterface = TestBean.class, 
*beanName=TestBean2*)
public class TestBean2 implements TestBean{
--

Reply to this message by going to Community
[https://community.jboss.org/message/827308#827308]

Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [JBoss Tools] - Re: WildFly 8.0.0 Alpha2 with Eclipse 4.3 Kepler

2013-06-29 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: WildFly 8.0.0 Alpha2 with Eclipse 4.3 Kepler

To view the discussion, visit: https://community.jboss.org/message/825674#825674

--
Renato, weclome to the forums!

I believe JBoss Tools does support WildFly. I've moved it to the JBoss Tools 
forum where someone might know more.
--

Reply to this message by going to Community
[https://community.jboss.org/message/825674#825674]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [Beginner's Corner] - Re: Jboss log file (jboss.log) in top-level directory

2013-06-20 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Jboss log file (jboss.log) in top-level directory

To view the discussion, visit: https://community.jboss.org/message/824039#824039

--
Welcome to the forums!

I think that jboss.log at the root level is created by the stdout redirection 
that you might be doing while starting the server as a service. Do you use the 
service.bat to set it up as a service and then start it as a service?
--

Reply to this message by going to Community
[https://community.jboss.org/message/824039#824039]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [Beginner's Corner] - Re: Jboss log file (jboss.log) in top-level directory

2013-06-20 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Jboss log file (jboss.log) in top-level directory

To view the discussion, visit: https://community.jboss.org/message/824051#824051

--
Redirect to /dev/null?
--

Reply to this message by going to Community
[https://community.jboss.org/message/824051#824051]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [Beginner's Corner] - Re: Accessing jboss admin console returns Http 400 Bad Request error

2013-06-10 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Accessing jboss admin console returns Http 400 Bad Request error

To view the discussion, visit: https://community.jboss.org/message/822236#822236

--
What exact URL gives you the 404 error?
--

Reply to this message by going to Community
[https://community.jboss.org/message/822236#822236]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [JNDI and Naming] - Re: Use plain @EJB for remote EJB lookup?

2013-05-31 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Use plain @EJB for remote EJB lookup?

To view the discussion, visit: https://community.jboss.org/message/820573#820573

--
 Mikal Henriksen wrote:
 I've done some more research, and I guess what it boils down to is that the 
 client needs to know that name (whether default or custom); the interface 
 alone plus the connection to the server is not enough to lookup and connect 
 to the remote implementation. 
Of course it has to know the name of the bean it is trying to communicate with. 
A remote interface can be implemented by multiple beans. So it's upto the 
client to tell the server which bean it is interested in communicating with.
 Mikal Henriksen wrote:
 
 Are there other approaches I can use to streamline this? Is this something 
 domain deployment would help with?
Why are you trying to avoid the bean name usage?
--

Reply to this message by going to Community
[https://community.jboss.org/message/820573#820573]

Start a new discussion in JNDI and Naming at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2083]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [Beginner's Corner] - Re: Init script of jboss 4.2.3 GA - jdk6 for Debian 7

2013-05-31 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Init script of jboss 4.2.3 GA - jdk6 for Debian 7

To view the discussion, visit: https://community.jboss.org/message/820576#820576

--
Mikel, welcome to the forums!

Does this work:

...
JBOSS_BIND_ADDR=-b 192.168.1.205
... 
EXEC=${JBOSS_HOME}/bin/run.sh ${JBOSS_BIND_ADDR}
... 
do_start(){    
    start-stop-daemon --start --chuid jboss --user jboss --name jboss  
--exec ${EXEC}
    }
--

Reply to this message by going to Community
[https://community.jboss.org/message/820576#820576]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [JNDI and Naming] - Re: Use plain @EJB for remote EJB lookup?

2013-05-30 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Use plain @EJB for remote EJB lookup?

To view the discussion, visit: https://community.jboss.org/message/820335#820335

--
Mikal, welcome to the forums.


 Mikal Henriksen wrote:
 
 I've been using the guide at  
 https://docs.jboss.org/author/display/AS71/EJB+invocations+from+a+remote+server+instance
  
 https://docs.jboss.org/author/display/AS71/EJB+invocations+from+a+remote+server+instance
  to make a standalone war that uses beans that are deployed in an ear running 
 on a separate AS. I got it working by using an explicit lookup name in the 
 @EJB annotation, like this:
 
 @EJB(lookup = 
 ejb:earname/modulename/BeanClass!fully.qualified.RemoteInterface)
 private RemoteInterface bean;
 
 Writing this for all the remote EJBs is getting tedious, and refactoring with 
 it is even worse. Is there a way to tell the default context which app name 
 and module name to use, so that I can use plain @EJB annotations without 
 parameters?
 
The server cannot guess what the appname, module name and bean name would be 
for that target bean (which resides on a different server) to be. It's the 
user's application which has that idea. One way to reduce the tediouness is to 
use the ejb-jar.xml to set up the injection (ejb-jar xsd has the necessary 
details) such that you can then use something like this in the ejb-jar.xml:

 lookup-name${myfoo.bar.system.property}/lookup-name


and set the system property (typically by passing 
-Dsystem-property-name=system-property-value) while launching the server. 
Note that the system property replacement in deployment descriptors is a JBoss 
application server specific features and may not be portable across different 
server vendors.
--

Reply to this message by going to Community
[https://community.jboss.org/message/820335#820335]

Start a new discussion in JNDI and Naming at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2083]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [JNDI and Naming] - Re: Use plain @EJB for remote EJB lookup?

2013-05-30 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Use plain @EJB for remote EJB lookup?

To view the discussion, visit: https://community.jboss.org/message/820396#820396

--
 Mikal Henriksen wrote:
 
 
 But your answer made me realize that we also need to know the name for the 
 implementing class, since that's part of every standard jndi name. Thinking 
 about it, it seems weird that the client should have to know about the name 
 of the server-side class implementing the interface (the exception is of 
 course multiple implementations of the same interface). 
 
You don't need to know the class name of the implementing bean class. That's 
just a default that gets used. i.e. the bean name defaults to the simple class 
name of the implementing class. It can always be overriden using the +name+ 
attribute of the appropriate annotation (@Stateless, @Stateful, @Singleton) or 
via the +ejb-name+ element of ejb-jar.xml.
--

Reply to this message by going to Community
[https://community.jboss.org/message/820396#820396]

Start a new discussion in JNDI and Naming at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2083]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [Snowdrop] - Re: EAP6 + Snowdrop compatible?

2013-05-22 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: EAP6 + Snowdrop compatible?

To view the discussion, visit: https://community.jboss.org/message/818779#818779

--
Thank you for reporting. I'll check who can fix those links.
--

Reply to this message by going to Community
[https://community.jboss.org/message/818779#818779]

Start a new discussion in Snowdrop at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2082]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [JBoss Tools] - Re: Logging pattern in EAP 6.1.0 Beta causes junk in console in eclipse

2013-05-14 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Logging pattern in EAP 6.1.0 Beta causes junk in console in eclipse

To view the discussion, visit: https://community.jboss.org/message/817661#817661

--
https://bugzilla.redhat.com/show_bug.cgi?id=909479 
https://bugzilla.redhat.com/show_bug.cgi?id=909479
--

Reply to this message by going to Community
[https://community.jboss.org/message/817661#817661]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [EJB3] - Re: Failed to start service jboss.deployment.unit.ejb.jar.POST_MODULE

2013-05-05 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Failed to start service jboss.deployment.unit.ejb.jar.POST_MODULE

To view the discussion, visit: https://community.jboss.org/message/816137#816137

--
Welcome to the forums!

You got me curious with the name of that attached file  :) 

So it looks like you have a jar which has a lib folder with the hibernate jars. 
What you should instead do is, remove those hibernate libraries and just add a 
dependency on the Hibernate module shipped in AS7. This might help  
https://docs.jboss.org/author/display/AS71/Class+Loading+in+AS7 
https://docs.jboss.org/author/display/AS71/Class+Loading+in+AS7. Also consider 
moving to a latest released version instead of 7.1.1.Final.
--

Reply to this message by going to Community
[https://community.jboss.org/message/816137#816137]

Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [JBoss Tools] - Re: Eap 6.1 Alpha Runntime - Libraries not included

2013-05-01 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Eap 6.1 Alpha Runntime - Libraries not included

To view the discussion, visit: https://community.jboss.org/message/811069#811069

--
AFAIK, this was fixed in 4.1 of JBoss Tools and it was supposed to be 
functional against EAP 6.1  
https://community.jboss.org/community/tools/blog/2013/03/12/lets-go-to-kepler 
https://community.jboss.org/en/tools/blog/2013/03/12/lets-go-to-kepler
--

Reply to this message by going to Community
[https://community.jboss.org/message/811069#811069]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [JBoss Tools] - Re: Eap 6.1 Alpha Runntime - Libraries not included

2013-05-01 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Eap 6.1 Alpha Runntime - Libraries not included

To view the discussion, visit: https://community.jboss.org/message/811078#811078

--
I don't have much knowledge of JBoss Tools. Let's wait for some more time to 
hear from someone who knows more - it's a holiday today in some parts of the 
world so responses might be slow and might even take a day.
--

Reply to this message by going to Community
[https://community.jboss.org/message/811078#811078]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [Beginner's Corner] - Re: Time Out

2013-03-25 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Time Out

To view the discussion, visit: https://community.jboss.org/message/804554#804554

--
 Michael Pellaton wrote:
 
 Hi Wolf-Dieter
 I found the log file. There was actually an error message. (It's quite long.  
 :| )(I can't add a TextFile, can't I?)
 
Click on the Use advanced editor link in the message editor window (top right 
corner) when you are replying. That will take you to a editor where you can 
attach files.
--

Reply to this message by going to Community
[https://community.jboss.org/message/804554#804554]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [IronJacamar] - Re: JCA Spec violation using resource-adapter in JBoss 7?

2013-03-25 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: JCA Spec violation using resource-adapter in JBoss 7?

To view the discussion, visit: https://community.jboss.org/message/804610#804610

--
 jleinawe wrote:
 
 
 3. In one of our test runs, we saw a NPE in the JBoss code when shutting down 
 the JBoss server.   See attached server.log and search for 
 NullPointerException
 
That's a bug. Can you please file a JIRA for this under the EJB component? I 
can do it myself but since you are the one who found this out, you might want 
to have it opened in your name.
--

Reply to this message by going to Community
[https://community.jboss.org/message/804610#804610]

Start a new discussion in IronJacamar at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2098]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [JBoss Tools] - Re: JBoss AS7 in Eclipse Juno

2013-02-18 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: JBoss AS7 in Eclipse Juno

To view the discussion, visit: https://community.jboss.org/message/798149#798149

--
Senthil, welcome to the forums!

I've moved this thread to the JBoss Tools forum which is a better place for 
this question. Take a look at their project page  http://www.jboss.org/tools 
http://www.jboss.org/tools which has the details that you are looking for.
--

Reply to this message by going to Community
[https://community.jboss.org/message/798149#798149]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user

[jboss-user] [Datasource Configuration] - Re: Problem with Closed Connection jboss-as-7.1.1(2, 3)

2013-01-26 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Problem with Closed Connection jboss-as-7.1.1(2,3)

To view the discussion, visit: https://community.jboss.org/message/794427#794427

--
See if setting this configuration in the datasource subsystem helps  
https://github.com/jbossas/jboss-as/blob/master/build/src/main/resources/docs/schema/jboss-as-datasources_1_1.xsd#L442
 
https://github.com/jbossas/jboss-as/blob/master/build/src/main/resources/docs/schema/jboss-as-datasources_1_1.xsd#L442
--

Reply to this message by going to Community
[https://community.jboss.org/message/794427#794427]

Start a new discussion in Datasource Configuration at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2077]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: Database password change during application is running in hibernate

2013-01-23 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Database password change during application is running in hibernate

To view the discussion, visit: https://community.jboss.org/message/793950#793950

--
I assume you are using a datasource in your hibernate configuration. What does 
your datasource configuration (-ds.xml) look like? And please post the entire 
exception stacktrace that you see when Hibernate fails to reconnect after the 
DB is restarted.
--

Reply to this message by going to Community
[https://community.jboss.org/message/793950#793950]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: Changing AS7 port number

2013-01-18 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Changing AS7 port number

To view the discussion, visit: https://community.jboss.org/message/792799#792799

--
 Sergey Kornilov wrote:
 
 Port offset change setting of all deployed application on server.
I think what the other posters are talking about is the apparent hardcoding of 
certain ports within the jBPM application(s) which effectively means that they 
will no longer function if the server wide ports are changed.
--

Reply to this message by going to Community
[https://community.jboss.org/message/792799#792799]

Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: Developing with Eclipse and JBoss AS7. Can we use a remote server.

2013-01-02 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Developing with Eclipse and JBoss AS7. Can we use a remote server.

To view the discussion, visit: https://community.jboss.org/message/787232#787232

--
Moved to JBoss Tools forum.
--

Reply to this message by going to Community
[https://community.jboss.org/message/787232#787232]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: How to test web project from eclipse to jboss as7 without mvn jboss-as:deploy

2012-12-28 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: How to test web project from eclipse to jboss as7 without mvn 
jboss-as:deploy

To view the discussion, visit: https://community.jboss.org/message/785168#785168

--
Moved to JBoss Tools forums.


 techsjs2012 wrote:
 
 
 
 With the new environment it does not look like Eclipse can start and stop and 
 depoy right to Jboss AS so we are running a command line: mvn jboss-as:deploy 
 does anyone know a better way?
 
Take a look at JBoss Tools (which is a bunch of plugins for Eclipse)  
http://www.jboss.org/tools http://www.jboss.org/tools
--

Reply to this message by going to Community
[https://community.jboss.org/message/785168#785168]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: javax.naming.NameNotFoundException: jdbc not bound

2012-12-24 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: javax.naming.NameNotFoundException: jdbc not bound

To view the discussion, visit: https://community.jboss.org/message/784829#784829

--
 resource-ref
     res-ref-namejdbc/nbuDS/res-ref-name
     jndi-namejbossDS/jndi-name
That should be:

jndi-namejava:jbossDS/jndi-name
--

Reply to this message by going to Community
[https://community.jboss.org/message/784829#784829]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: Reflection stopeed working after migration

2012-10-18 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Reflection stopeed working after migration

To view the discussion, visit: https://community.jboss.org/message/766588#766588

--
 Nik J wrote:
 
 Hi ,
 
 I have a rflection code to llokup a bean using jndi lookup . 
I'm not sure what that means. Can you post the relevant code and tell us what 
exactly isn't working?
--

Reply to this message by going to Community
[https://community.jboss.org/message/766588#766588]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: Reflection stopeed working after migration

2012-10-18 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Reflection stopeed working after migration

To view the discussion, visit: https://community.jboss.org/message/766589#766589

--
This looks like a duplicate thread of the discussion which is already happening 
in a separate thread here  https://community.jboss.org/thread/206537?tstart=0 
https://community.jboss.org/thread/206537?tstart=0. I'm going to close this 
one. Please continue the discussion in that other thread.
--

Reply to this message by going to Community
[https://community.jboss.org/message/766589#766589]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: Why ApplicationException thrown from server-side interceptor is wrapped by JBoss AS/EJB container?

2012-10-17 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Why ApplicationException thrown from server-side interceptor is wrapped by 
JBoss AS/EJB container?

To view the discussion, visit: https://community.jboss.org/message/766566#766566

--
Let's continue the discussion in your other thread here  
https://community.jboss.org/thread/206748?tstart=30 
https://community.jboss.org/thread/206748?tstart=30. I haven't yet been able to 
understand the question and look into the details. I'll take a more detailed 
look at it later today. I'll close this duplicate thread.
--

Reply to this message by going to Community
[https://community.jboss.org/message/766566#766566]

Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: Asynchronous EJB calls dropped with StrictMaxPool

2012-10-11 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Asynchronous EJB calls dropped with StrictMaxPool

To view the discussion, visit: https://community.jboss.org/message/764479#764479

--
I don't remember how we did this in AS 6.x, but I certainly can't remember 
anything queue which has a capacity of 500. And when you say the calls are 
being dropped, what exactly happens? Any exceptions?

By the way, I would strongly recommend that you move to AS7 since AS6 is no 
longer under development and it had some unimplemented @Asynchronous features.
--

Reply to this message by going to Community
[https://community.jboss.org/message/764479#764479]

Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: Asynchronous EJB calls dropped with StrictMaxPool

2012-10-11 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Asynchronous EJB calls dropped with StrictMaxPool

To view the discussion, visit: https://community.jboss.org/message/764484#764484

--
 david_b wrote:
 
  It'll be nice to have cancellation support working in AS7.
Yes, that's working in AS7.
--

Reply to this message by going to Community
[https://community.jboss.org/message/764484#764484]

Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Remoting] - Re: Is it possible to influence which EJB is called (remote / local)?

2012-09-06 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Is it possible to influence which EJB is called (remote / local)?

To view the discussion, visit: https://community.jboss.org/message/758251#758251

--
Adriaan, welcome to the forums  :) 
 Adriaan Wisse wrote:
 
 
 But... somehow at the moment we are facing the problem that it is not default 
 behaviour that when the same EJB can be found locally and remote it will 
 prefer the local EJB above the remote one. Is this some configuration option 
 or something that we can influence programmatically? 
Yes, there's a server side implementation of DeploymentNodeSelector which 
prefers the local server if there are multiple servers which can handle that 
EJB. There are reasons to do that since if the local server can handle the 
request there's no need to do the expensive network calls on the remote server. 
This is the implementation which routes it to the local node  
https://github.com/jbossas/jboss-as/blob/master/ejb3/src/main/java/org/jboss/as/ejb3/remote/LocalEJBReceiverPreferringDeploymentNodeSelector.java#L31
 
https://github.com/jbossas/jboss-as/blob/master/ejb3/src/main/java/org/jboss/as/ejb3/remote/LocalEJBReceiverPreferringDeploymentNodeSelector.java#L31.

If you want to override that behaviour then you can implement your own 
DeploymentNodeSelector (which selects and returns appropriate node) and then 
package a jboss-ejb-client.xml in the application and set the 
deployment-node-selector attribute value to that class name. Here's an example 
of the xml  
https://github.com/jbossas/jboss-as/blob/master/testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/ejb/client/descriptor/jboss-ejb-client_1_2.xml#L24
 
https://github.com/jbossas/jboss-as/blob/master/testsuite/integration/basic/src/test/java/org/jboss/as/test/integration/ejb/client/descriptor/jboss-ejb-client_1_2.xml#L24
--

Reply to this message by going to Community
[https://community.jboss.org/message/758251#758251]

Start a new discussion in JBoss Remoting at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2050]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: EJB3 arguments by reference

2012-07-20 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: EJB3 arguments by reference

To view the discussion, visit: https://community.jboss.org/message/749250#749250

--
See  https://community.jboss.org/thread/195679 
https://community.jboss.org/thread/195679
--

Reply to this message by going to Community
[https://community.jboss.org/message/749250#749250]

Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JNDI and Naming] - Re: Local lookup failing

2012-07-20 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Local lookup failing

To view the discussion, visit: https://community.jboss.org/message/749332#749332

--
You are using an incorrect JNDI name. You should be using ejb: namespace JNDI 
name. The article that Wolf pointed you to has the details. But before we go 
into that, I'm a bit confused about what you are trying to do. Your thread 
title says Local lookup failing but you are doing a lookup from a remote EJB 
client. You can't access local business interfaces from a remote client.
--

Reply to this message by going to Community
[https://community.jboss.org/message/749332#749332]

Start a new discussion in JNDI and Naming at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2083]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: EJB 2.1 BMP with CMT and RequiresNew in JBoss AS 7.1.0 Final

2012-07-08 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: EJB 2.1 BMP with CMT and RequiresNew in JBoss AS 7.1.0 Final

To view the discussion, visit: https://community.jboss.org/message/746793#746793

--
 Daniel Zhelyazkov wrote:
 
 Fixed my problem, after debug session of JBoss code it turned out that the 
 code that parses TX attributes produces wrong info.
 we had the folowing in ejb-jar.xml
 
 method
  ejb-nameSomeEjb/ejb-name
  method-name*/method-name
 /method
 ...
 trans-attributeRequiresNew/trans-attribute
 
 Specified like that JBoss set default TX attribute Required to all LOCAL_HOME 
 methods (ejbCreate/Find/Select/Home)
 and RequiresNew to all Bean methods such as toString(), hashCode()...
 
 by adding method-intfLocalHome/method-intf
 
 method
  ejb-nameSomeEjb/ejb-name
  method-intfLocalHome/method-intf
  method-name*/method-name
 /method
 
 all went to normal, my ejbCreate() started new transaction, and 
 getProperties() method did not use TX interceptor.
 
 So it looks like different or wrong loginc in JBoss, the code itself states 
 it has some problems, and it looks targeted at EJB 3.x, it is not a separate 
 code for 2.x
 
 daniel
Daniel, have you been able to reproduce this against the latest nightly build  
https://community.jboss.org/thread/167590 
https://community.jboss.org/thread/167590 or maybe 7.1.1.Final?
--

Reply to this message by going to Community
[https://community.jboss.org/message/746793#746793]

Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: injecting env-entry into interceptor by @Resource does not work

2012-06-28 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: injecting env-entry into interceptor by @Resource does not work

To view the discussion, visit: https://community.jboss.org/message/744774#744774

--
You have a mismatch between the ejb-name specified in the ejb-jar.xml 
(DicomConfiguration) and the annotated bean class implementation 
(LdapDicomConfigurationInterceptor). You can either change the ejb-jar.xml to 
use LdapDicomConfigurationInterceptor as the ejb-name or use the 
@javax.ejb.Singleton(name=DicomConfiguration) on the bean implementation 
class.
--

Reply to this message by going to Community
[https://community.jboss.org/message/744774#744774]

Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Cache] - Re: does jboss JGroup membership affect Cache cluster,

2012-06-19 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: does jboss JGroup membership affect Cache cluster,

To view the discussion, visit: https://community.jboss.org/message/742952#742952

--
 Bond Chan wrote:
 
 anyone can help me ?
You have to be patient when you are asking for help in community forums which 
are frequented by volunteers. It's not even 30 minutes since you asked the 
question.
--

Reply to this message by going to Community
[https://community.jboss.org/message/742952#742952]

Start a new discussion in JBoss Cache at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2052]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - Re: where can I config the timeout of jboss clustering, very urgent, waiting online

2012-06-18 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: where can I config the timeout of jboss clustering, very urgent, waiting 
online

To view the discussion, visit: https://community.jboss.org/message/742569#742569

--
Moved to JBoss Messaging forum.
--

Reply to this message by going to Community
[https://community.jboss.org/message/742569#742569]

Start a new discussion in JBoss Messaging at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2042]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: JBoss AS 7.2.0.Alpha1-SNAPSHOT not starting up properly

2012-06-14 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: JBoss AS 7.2.0.Alpha1-SNAPSHOT not starting up properly

To view the discussion, visit: https://community.jboss.org/message/741711#741711

--
Moved to our IDE forum.
--

Reply to this message by going to Community
[https://community.jboss.org/message/741711#741711]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: JBoss AS 7.2.0.Alpha1-SNAPSHOT not starting up properly

2012-06-14 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: JBoss AS 7.2.0.Alpha1-SNAPSHOT not starting up properly

To view the discussion, visit: https://community.jboss.org/message/741713#741713

--
The error you mentioned:
 Approx. 5 minutes after, I get a server startup failure saying +Server JBoss 
 7.0 Alpha Server was unable to start within 450 seconds. If the server 
 requires more time, try increasing the timeout in the server editor+.
is an IDE message. 

The logs that you posted don't contain any error messages and they show that 
the server has started successfully.

Are you talking about these few lines:

 10:55:01,291 ERROR [stderr] (MSC service thread 1-1) 
 
 10:55:01,291 ERROR [stderr] (MSC service thread 1-1) *** WARNING: Wicket is 
 running in DEVELOPMENT mode.  ***
 10:55:01,291 ERROR [stderr] (MSC service thread 1-1) 
 ***   ^^^    ***
 10:55:01,292 ERROR [stderr] (MSC service thread 1-1) *** Do NOT deploy to 
 your live server(s) without changing this.  ***
 10:55:01,292 ERROR [stderr] (MSC service thread 1-1) *** See 
 Application#getConfigurationType() for more information. ***
 10:55:01,292 ERROR [stderr] (MSC service thread 1-1) 
 
If yes, then those really aren't ERRORs. The Wicket code seems to be using 
System.err to log those messages which is why it's being logged at ERROR level. 
That messages is asking you to set some configuration within your wicket 
application to disable the development mode, in production.
--

Reply to this message by going to Community
[https://community.jboss.org/message/741713#741713]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: JBoss AS 7.2.0.Alpha1-SNAPSHOT not starting up properly

2012-06-14 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: JBoss AS 7.2.0.Alpha1-SNAPSHOT not starting up properly

To view the discussion, visit: https://community.jboss.org/message/741719#741719

--
 Peter Fajemisin wrote:
 
 I am talking about this errors:
 
 11:22:57,613 DEBUG [org.jboss.tm.TransactionManagerLocator] (MSC service 
 thread 1-4) Unable to lookup: java:/TransactionManager: 
 javax.naming.NameNotFoundException: Error looking up TransactionManager, 
 service service jboss.naming.context.java.TransactionManager is not started
 
     at 
 org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNamingStore.java:126)
  [jboss-as-naming-7.2.0.Alpha1-SNAPSHOT.jar:7.2.0.Alpha1-SNAPSHOT]
 
     at 
 org.jboss.as.naming.ServiceBasedNamingStore.lookup(ServiceBasedNamingStore.java:74)
  [jboss-as-naming-7.2.0.Alpha1-SNAPSHOT.jar:7.2.0.Alpha1-SNAPSHOT]
  ...
 
Oh, those are actually DEBUG messages and you can ignore those. I do admit that 
those exception stacktraces perhaps shouldn't have been printed for DEBUG 
messages, but certain project do print out those.
--

Reply to this message by going to Community
[https://community.jboss.org/message/741719#741719]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: How to prepare the Jboss certification?

2012-06-11 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: How to prepare the Jboss certification?

To view the discussion, visit: https://community.jboss.org/message/740968#740968

--
Does this help  https://community.jboss.org/thread/175656 
https://community.jboss.org/thread/175656
--

Reply to this message by going to Community
[https://community.jboss.org/message/740968#740968]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: getting started unit testing - embedded JBoss AS 7?

2012-06-10 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: getting started unit testing - embedded JBoss AS 7?

To view the discussion, visit: https://community.jboss.org/message/740865#740865

--
 Matthew Cornell wrote:
 
 Thank you - I'm still working on the terminology. I'm using embedded to 
 mean starting a Java EE server in the same JVM as the tests then shutting it 
 down when they're through. I understand I don't need a full blown container 
 for unit testing (which I can do with mocks, and with properly-designed 
 code), but I do need it for integration testing. 
Okay. That's what typically embedded means. Arquillian has 3 server 
integration types, managed (start/stop server as a JVM process), embedded 
(start/stop server within the same process that triggers the JUnit test), 
remote (join a running instance of server). AS7 integration for Arquillian 
does +not+ have the embedded mode. *But* the use case you mention - running 
the tests in the same JVM as the server can still be achieved via the others 2 
modes too. In fact, when you run an Arquillian test, the Arquillian 
infrastructure deploys the deployment to the server and depending on the run 
mode the test is either run in the same JVM process as the server or in a 
separate JVM as the client. By default, the tests are run on the server JVM 
(from your description that's what you want). If the test uses a @RunAsClient 
annotation for the test (the arquillian guides have more info about this) then 
the test is run as a remote client and does +not+ run on the server JVM. I 
believe, that should make this a bit clear. If you still have more questions, 
feel free to ask.
--

Reply to this message by going to Community
[https://community.jboss.org/message/740865#740865]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: getting started unit testing - embedded JBoss AS 7?

2012-06-07 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: getting started unit testing - embedded JBoss AS 7?

To view the discussion, visit: https://community.jboss.org/message/740470#740470

--
Matthew, take a look at the Arquillian guides here  http://arquillian.org/ 
http://arquillian.org/
--

Reply to this message by going to Community
[https://community.jboss.org/message/740470#740470]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: getting started unit testing - embedded JBoss AS 7?

2012-06-07 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: getting started unit testing - embedded JBoss AS 7?

To view the discussion, visit: https://community.jboss.org/message/740566#740566

--
 Matthew Cornell wrote:
 
 Thanks for the pointer, jaikiran. I did some research and it looks like 
 Arquillian does not support the embedded container for JBoss 7.1 -  
 https://community.jboss.org/message/717500#717500 
 https://community.jboss.org/message/717500 . That makes me wonder whether the 
 project is active...
Is there a reason why you want that embedded project? Arquillian has the 
ability to start/stop the server on it's own when you run your JUnit tests. You 
don't have to write a single line of code (except for adding a Maven dependency 
in your pom.xml) for managing the server. This is known as the managed server 
mode in Arquillian. There's also a remote server mode where Arquillian will 
auto connect to an already running server instance (which you might have 
started in whatever way you want) and run the JUnit tests for you. And this 
isn't specific to JBoss AS server, Arquillian can do the same with any other 
server too.
--

Reply to this message by going to Community
[https://community.jboss.org/message/740566#740566]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: How to get ALL sources for a JBoss AS 7 release, including external deps?

2012-06-01 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: How to get ALL sources for a JBoss AS 7 release, including external deps?

To view the discussion, visit: https://community.jboss.org/message/739262#739262

--
 Max Rydahl Andersen wrote:
 
 
 But see  
 https://community.jboss.org/community/tools/blog/2012/01/24/jboss-source-lookup
  https://community.jboss.org/en/tools/blog/2012/01/24/jboss-source-lookup for 
 how we provide it for debugging of AS servers.
Give my lack of Eclipse usage for some time now, I don't fully understand that 
blog but I think this statement in that blog summarizes where the source files 
are looked for:

 The Source Lookup plugin finds source for a mavenized archive as follows:
 
     using the m2e API
     using the archive's metadata (META-INF/maven)
     using nexus repositories that can be defined using the Source Lookup 
 preferences page
Now in Craig's case, the JBoss AS7 sources were published to *local maven 
repository* (on his filesystem) after he built the server. They weren't 
available in any of the remote maven repos. So does the source lookup plugin 
take into consideration the local maven repository for looking up the sources?

I think that's one of the points that Craig's bringing up:
 Craig Ringer wrote:
 
 * When debugging a project running on AS7, the JBoss Tools / m2e integration 
 doesn't automatically find JBoss AS 7 sources in the local maven repository, 
 the sources have to be manually added to the source search path or JBoss AS 7 
 has to be imported as a project. That's kind of clunky, especially as 
 importing AS7 as a project here crashes JBoss Developer Studio. Manually 
 listing each source artifact shouldn't be necessary.

--

Reply to this message by going to Community
[https://community.jboss.org/message/739262#739262]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: JBOSS7: ASV Scan Report Attestation of Scan Compliance

2012-06-01 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: JBOSS7: ASV Scan Report Attestation of Scan Compliance

To view the discussion, visit: https://community.jboss.org/message/739456#739456

--
For those who are watching this thread, Carlos has created a AS7 JIRA where 
this was discussed  https://issues.jboss.org/browse/AS7-4929 
https://issues.jboss.org/browse/AS7-4929
--

Reply to this message by going to Community
[https://community.jboss.org/message/739456#739456]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: How to get ALL sources for a JBoss AS 7 release, including external deps?

2012-05-31 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: How to get ALL sources for a JBoss AS 7 release, including external deps?

To view the discussion, visit: https://community.jboss.org/message/739217#739217

--
I've moved this to the JBoss Tools forum. I'm sure they would be interested in 
your feedback and might even be able to point you to better ways of dealing 
with this.
--

Reply to this message by going to Community
[https://community.jboss.org/message/739217#739217]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JNDI and Naming] - Re: Creating initial Context in JBoss AS 7.1.1

2012-05-30 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Creating initial Context in JBoss AS 7.1.1

To view the discussion, visit: https://community.jboss.org/message/738692#738692

--
You'll have to post the entire exception stacktrace you are seeing. And what 
client jar(s) do you have on your classpath?
--

Reply to this message by going to Community
[https://community.jboss.org/message/738692#738692]

Start a new discussion in JNDI and Naming at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2083]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: Using environment variables in persistence.xml for property name/value pairs

2012-04-26 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Using environment variables in persistence.xml for property name/value 
pairs

To view the discussion, visit: https://community.jboss.org/message/732308#732308

--
 property name=server.nodes value=${server.host.list}/
Change it to:

property name=server.nodes value=${server.host.list}/
--

Reply to this message by going to Community
[https://community.jboss.org/message/732308#732308]

Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: Issues with servlet loading in JBoss7

2012-04-18 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Issues with servlet loading in JBoss7

To view the discussion, visit: https://community.jboss.org/message/730807#730807

--
Dahn, I've moved this to an appropriate forum where you might get some help.
--

Reply to this message by going to Community
[https://community.jboss.org/message/730807#730807]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: can not run JBoss AS in eclipse

2012-04-15 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: can not run JBoss AS in eclipse

To view the discussion, visit: https://community.jboss.org/message/730104#730104

--
Khobaib, welcome to the forums!

I've moved this thread to the JBoss Tools forum where you might get some help.
--

Reply to this message by going to Community
[https://community.jboss.org/message/730104#730104]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Datasource Configuration] - Re: Passwords are getting logged in log file through datasource configuration when jboss logging is in debug level

2012-04-03 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Passwords are getting logged in log file through datasource configuration 
when jboss logging is in debug level

To view the discussion, visit: https://community.jboss.org/message/727925#727925

--
Which version of JBoss AS?
--

Reply to this message by going to Community
[https://community.jboss.org/message/727925#727925]

Start a new discussion in Datasource Configuration at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2077]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Datasource Configuration] - Re: Passwords are getting logged in log file through datasource configuration when jboss logging is in debug level

2012-04-03 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Passwords are getting logged in log file through datasource configuration 
when jboss logging is in debug level

To view the discussion, visit: https://community.jboss.org/message/727931#727931

--
One possible workaround would be to use encrypted datasource passwords  
https://community.jboss.org/docs/DOC-9703 
https://community.jboss.org/wiki/EncryptingDataSourcePasswords
--

Reply to this message by going to Community
[https://community.jboss.org/message/727931#727931]

Start a new discussion in Datasource Configuration at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2077]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Datasource Configuration] - Re: Passwords are getting logged in log file through datasource configuration when jboss logging is in debug level

2012-04-03 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Passwords are getting logged in log file through datasource configuration 
when jboss logging is in debug level

To view the discussion, visit: https://community.jboss.org/message/727948#727948

--
 Rahul Singh wrote:
 
 It will be helpful in adding the encypted password. But internally it will be 
 getting decrypted and is getting logged in debug.
No it won't get decrypted - it's a one way hash. Did you try the approach 
mentioned in that article?
--

Reply to this message by going to Community
[https://community.jboss.org/message/727948#727948]

Start a new discussion in Datasource Configuration at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2077]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Datasource Configuration] - Re: Cannot lookup datasource remotely in Jboss 7.10 final

2012-03-14 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Cannot lookup datasource remotely in Jboss 7.10 final

To view the discussion, visit: https://community.jboss.org/message/723904#723904

--
Remote lookup of datasources is not supported in AS7.
--

Reply to this message by going to Community
[https://community.jboss.org/message/723904#723904]

Start a new discussion in Datasource Configuration at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2077]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: Debugger Stopped Working

2012-03-08 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Debugger Stopped Working

To view the discussion, visit: https://community.jboss.org/message/722380#722380

--
Have you tried cleaning all/any breakpoints that might have been set in the 
IDE, before starting the server?
--

Reply to this message by going to Community
[https://community.jboss.org/message/722380#722380]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: JBoss AS 7.1 Final continuing starting Then it show failed to start messege

2012-02-18 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: JBoss AS 7.1 Final continuing starting Then it show failed to start 
messege

To view the discussion, visit: https://community.jboss.org/message/717702#717702

--
Moved to JBoss Tools forum.
--

Reply to this message by going to Community
[https://community.jboss.org/message/717702#717702]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: How to set the maxSession for an MDB at runtime in JBoss 7?

2012-02-18 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: How to set the maxSession for an MDB at runtime in JBoss 7?

To view the discussion, visit: https://community.jboss.org/message/717741#717741

--
https://issues.jboss.org/browse/AS7-3816 
https://issues.jboss.org/browse/AS7-3816
--

Reply to this message by going to Community
[https://community.jboss.org/message/717741#717741]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: JBoss AS7 freezes at startup when launching in debug mode from Eclipse.

2012-02-14 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: JBoss AS7 freezes at startup when launching in debug mode from Eclipse.

To view the discussion, visit: https://community.jboss.org/message/716443#716443

--
Moved to JBoss Tools forum.
--

Reply to this message by going to Community
[https://community.jboss.org/message/716443#716443]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: Cannot start AS 7.1 Final LogManager error

2012-02-09 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Cannot start AS 7.1 Final LogManager error

To view the discussion, visit: https://community.jboss.org/message/715618#715618

--
Moved to JBoss Tools forum.
--

Reply to this message by going to Community
[https://community.jboss.org/message/715618#715618]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: Change maxSession ActivationConfigProperty dynamically on MDB

2012-02-02 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Change maxSession ActivationConfigProperty dynamically on MDB

To view the discussion, visit: https://community.jboss.org/message/713962#713962

--
That's a deployment time configuration which can't be changed at runtime.
--

Reply to this message by going to Community
[https://community.jboss.org/message/713962#713962]

Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JNDI and Naming] - Re: How to create a JNDI string value on AS7?

2012-02-02 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: How to create a JNDI string value on AS7?

To view the discussion, visit: https://community.jboss.org/message/713963#713963

--
If you want to bind a simple string value, then all you need to do is  
https://community.jboss.org/message/641742#641742#641742 
https://community.jboss.org/message/641742#641742
--

Reply to this message by going to Community
[https://community.jboss.org/message/713963#713963]

Start a new discussion in JNDI and Naming at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2083]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JNDI and Naming] - Re: JNDI binding in extension module READONLY exception

2012-01-31 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: JNDI binding in extension module READONLY exception

To view the discussion, visit: https://community.jboss.org/message/649831#649831

--
 hellen-z wrote:
 
 
 By invoking this before binding, the binding works
 
 WritableServiceBasedNamingStore.+pushOwner+(...);
 
 But I'm not sure if it's the good way to do it.
 
 
That's the right way to do it for non-EE components. See this for more details  
https://issues.jboss.org/browse/AS7-2667?focusedCommentId=12654355page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-12654355
 
https://issues.jboss.org/browse/AS7-2667?focusedCommentId=12654355page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#comment-12654355
--

Reply to this message by going to Community
[https://community.jboss.org/message/649831#649831]

Start a new discussion in JNDI and Naming at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2083]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: Create Enterprise Application Project in Eclipse

2012-01-25 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: Create Enterprise Application Project in Eclipse

To view the discussion, visit: https://community.jboss.org/message/648763#648763

--
Adrián, welcome to the forums!

I've moved this thread to JBoss Tools forum where you might get some help.
--

Reply to this message by going to Community
[https://community.jboss.org/message/648763#648763]

Start a new discussion in JBoss Tools at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: EJBTimerService remove persistent timers trouble

2012-01-23 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: EJBTimerService remove persistent timers trouble

To view the discussion, visit: https://community.jboss.org/message/648119#648119

--
You can delete the JBOSS_HOME/server/servername/data folder on your 
development machine.
--

Reply to this message by going to Community
[https://community.jboss.org/message/648119#648119]

Start a new discussion in EJB3 at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: ClassNotFoundException when using a EJB from an independent deployment

2012-01-17 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: ClassNotFoundException when using a EJB from an independent deployment

To view the discussion, visit: https://community.jboss.org/message/647150#647150

--
I've branched this to a separate discussion to avoid confusion in the other 
thread.
--

Reply to this message by going to Community
[https://community.jboss.org/message/647150#647150]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: ClassNotFoundException using EJB in RESTfull Application

2012-01-17 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: ClassNotFoundException using EJB in RESTfull Application

To view the discussion, visit: https://community.jboss.org/message/647154#647154

--
 h3llghost wrote:
 
 There was an answer from someone, but it seems that it has been deleted. 
 https://community.jboss.org/message/647150#647150#647150 
https://community.jboss.org/message/647150#647150

I re-read your thread again and no where did you mention that the .war and the 
ejb jar are separate deployments. Or did I miss it? That's a totally different 
usecase than what I thought the problem was. Can you please explain your 
application packaging more clearly?
--

Reply to this message by going to Community
[https://community.jboss.org/message/647154#647154]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: ClassNotFoundException using EJB in RESTfull Application

2012-01-17 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: ClassNotFoundException using EJB in RESTfull Application

To view the discussion, visit: https://community.jboss.org/message/647155#647155

--
 jaikiran pai wrote:
 I re-read your thread again and no where did you mention that the .war and 
 the ejb jar are separate deployments. Or did I miss it? 
I guess that's what you meant by:
 I have a EJB project, which contains my entities and connecting to the 
 database via hibernate.
 My second project is the dynamic web project containing the classes.
I didn't understand it to be 2 different deployments. 

So in this case, you'll have to package the business +interfaces+ (no need of 
the bean impl) of the beans in a jar in your .war/WEB-INF/lib folder.
--

Reply to this message by going to Community
[https://community.jboss.org/message/647155#647155]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: ClassNotFoundException using EJB in RESTfull Application

2012-01-12 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: ClassNotFoundException using EJB in RESTfull Application

To view the discussion, visit: https://community.jboss.org/message/646528#646528

--
 19:47:44,540 ERROR 
 [org.apache.catalina.core.ContainerBase.[jboss.web].[default-host].[/BF3AccessRestrictionJSON].[de.h3llghost.service.RESTService]]
  (http-localhost-127.0.0.1-8080-1) Allocate exception for servlet 
 de.h3llghost.service.RESTService: java.lang.ClassNotFoundException: 
 com.DataAccessObjectRemote from [Module 
 deployment.BF3AccessRestrictionJSON.war:main from Service Module Loader]
   at 
 org.jboss.modules.ModuleClassLoader.findClass(ModuleClassLoader.java:190)
   at 
 org.jboss.modules.ConcurrentClassLoader.performLoadClassUnchecked(ConcurrentClassLoader.java:468)
   at 
 org.jboss.modules.ConcurrentClassLoader.performLoadClassChecked(ConcurrentClassLoader.java:456)
   at 
 org.jboss.modules.ConcurrentClassLoader.performLoadClass(ConcurrentClassLoader.java:398)
   at 
 org.jboss.modules.ConcurrentClassLoader.loadClass(ConcurrentClassLoader.java:120)
   at java.lang.Class.getDeclaredFields0(Native Method) [:1.7.0]
   at java.lang.Class.privateGetDeclaredFields(Unknown Source) [:1.7.0]
   at java.lang.Class.getDeclaredFields(Unknown Source) [:1.7.0]
   at 
 org.jboss.resteasy.core.PropertyInjectorImpl.populateMap(PropertyInjectorImpl.java:139)
  [resteasy-jaxrs-2.3.0.GA.jar:]

Can you post the output of:

jar -tf BF3AccessRestrictionJSON.war

and are you sure none of the classes have references to 
com.DataAccessObjectRemote (maybe some stale class is lying around)?
--

Reply to this message by going to Community
[https://community.jboss.org/message/646528#646528]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: ClassNotFoundException using EJB in RESTfull Application

2012-01-12 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: ClassNotFoundException using EJB in RESTfull Application

To view the discussion, visit: https://community.jboss.org/message/646545#646545

--
Extract that .war to some folder, then post the output of:

javap -classpath ./WEB-INF/classes de.h3llghost.service.RESTService
--

Reply to this message by going to Community
[https://community.jboss.org/message/646545#646545]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: ClassNotFoundException using EJB in RESTfull Application

2012-01-12 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: ClassNotFoundException using EJB in RESTfull Application

To view the discussion, visit: https://community.jboss.org/message/646546#646546

--
You also have a web.xml. So please post the contents of that file too.
--

Reply to this message by going to Community
[https://community.jboss.org/message/646546#646546]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: ClassNotFoundException using EJB in RESTfull Application

2012-01-12 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: ClassNotFoundException using EJB in RESTfull Application

To view the discussion, visit: https://community.jboss.org/message/646551#646551

--
Hmm, I can't think of what's wrong then. By the way, how exactly are you 
deploying this application? And from where are you getting the output of these 
commands? From the JBOSS_HOME/standalone/deployment folder? You mentioned 
earlier that you are using an IDE. What happens if you keep aside the IDE and 
instead start the server manually and deploy (a clean version of) the 
application manually by placing it in JBOSS_HOME/standalone/deployment folder?
--

Reply to this message by going to Community
[https://community.jboss.org/message/646551#646551]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: ClassNotFoundException using EJB in RESTfull Application

2012-01-12 Thread jaikiran pai
jaikiran pai [https://community.jboss.org/people/jaikiran] created the 
discussion

Re: ClassNotFoundException using EJB in RESTfull Application

To view the discussion, visit: https://community.jboss.org/message/646556#646556

--
 h3llghost wrote:
 
 
 But what do you mean by clean version?
A version that is built afresh.


 h3llghost wrote:
 
 Deployment works, but I got the same exception.
 
It's failing during deploy right? Can you post the new exception stacktrace 
please?
--

Reply to this message by going to Community
[https://community.jboss.org/message/646556#646556]

Start a new discussion in Beginner's Corner at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: TorqueBox related question

2012-01-05 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: TorqueBox related question

To view the discussion, visit: http://community.jboss.org/message/644963#644963

--
 Morgan Daniel wrote:
 
 Hello,
 
 First of all, I'd like to apologize in advance if this topic is unrelated to 
 the JBoss community.
 I have been looking for information for some time now with no success.
 Haven't managed to find a forum specific to TorqueBox either.
 
TorqueBox uses mailing lists  http://torquebox.org/community/mailing_lists/ 
http://torquebox.org/community/mailing_lists/. That's a better place to ask 
questions related to TorqueBox.
--

Reply to this message by going to Community
[http://community.jboss.org/message/644963#644963]

Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: Jboss 4.2.3 community build security vulnerabilities

2012-01-05 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: Jboss 4.2.3 community build security vulnerabilities

To view the discussion, visit: http://community.jboss.org/message/644966#644966

--
 Shaun Steer wrote:
 
 Can we apply the enterprise patches CVE-2010-1428 and RHSA-2008:0827 to the 
 community version of the jboss server to address the security vulnerabilities 
 they resolve?
Yes you can. Just follow this  https://access.redhat.com/kb/docs/DOC-30741 
https://access.redhat.com/kb/docs/DOC-30741 (it's a simple change).
--

Reply to this message by going to Community
[http://community.jboss.org/message/644966#644966]

Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: can't find message-driven bean..

2011-12-25 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: can't find message-driven bean..

To view the discussion, visit: http://community.jboss.org/message/643165#643165

--
How have you deployed the queue?
--

Reply to this message by going to Community
[http://community.jboss.org/message/643165#643165]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: jboss folder gone missing, how to track the root cause.

2011-12-25 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: jboss folder gone missing, how to track the root cause.

To view the discussion, visit: http://community.jboss.org/message/643167#643167

--
http://community.jboss.org/blogs/mjc/2011/10/20/statement-regarding-security-threat-to-jboss-application-server
 
http://community.jboss.org/blogs/mjc/2011/10/20/statement-regarding-security-threat-to-jboss-application-server
--

Reply to this message by going to Community
[http://community.jboss.org/message/643167#643167]

Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: How to load different version of my jar in jboss as7

2011-12-13 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: How to load different version of my jar in jboss as7

To view the discussion, visit: http://community.jboss.org/message/641216#641216

--
 abiya wrote:
 
 Hi,
 
 My struts version is 1.0 and I have problem with the XML parser which is 
 bundled as part of jdk1.6
 My config inputstream is not null but still I get the following exception 
 while deployment,
 
What inputstream? How do you get it? What does the code look like?


 abiya wrote:
 
 I would want my war to refer the xerces.jar(2.2.0) and xalan.jar. 
Place them in the .war/WEB-INF/lib folders of your deployed application and 
they will be picked up.
--

Reply to this message by going to Community
[http://community.jboss.org/message/641216#641216]

Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JNDI and Naming] - Re: JNDI binding and NameNotFoundException

2011-12-13 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: JNDI binding and NameNotFoundException

To view the discussion, visit: http://community.jboss.org/message/641217#641217

--
Also, what does your application packaging look like? Where are those EJBs 
placed and how do you deploy the application?
--

Reply to this message by going to Community
[http://community.jboss.org/message/641217#641217]

Start a new discussion in JNDI and Naming at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2083]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: JBoss 6.1 and locked jar in exploded war deployment

2011-12-13 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: JBoss 6.1 and locked jar in exploded war deployment

To view the discussion, visit: http://community.jboss.org/message/641297#641297

--
Moved to JBoss Tools forum.
--

Reply to this message by going to Community
[http://community.jboss.org/message/641297#641297]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: build path configuration on jboss 7.0.2

2011-12-11 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: build path configuration on jboss 7.0.2

To view the discussion, visit: http://community.jboss.org/message/640979#640979

--
http://community.jboss.org/message/640950#640950#640950 
http://community.jboss.org/message/640950#640950
--

Reply to this message by going to Community
[http://community.jboss.org/message/640979#640979]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JNDI and Naming] - Re: JNDI Lookup fails in JBoss AS 7 [java.naming.CommunicationException]

2011-12-09 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: JNDI Lookup fails in JBoss AS 7 [java.naming.CommunicationException]

To view the discussion, visit: http://community.jboss.org/message/640748#640748

--
Instead of doing a lookup:

DataSource ds = (javax.sql.DataSource) 
ctx.lookup(java:jboss/datasources/Test);


use injection:

@Resource (mappedName=java:jboss/datasources/Test)
private DataSource ds;


That'll setup the appropriate dependencies between the servlet and the 
datasource.
--

Reply to this message by going to Community
[http://community.jboss.org/message/640748#640748]

Start a new discussion in JNDI and Naming at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2083]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: Console Application in JBoss

2011-12-05 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: Console Application in JBoss

To view the discussion, visit: http://community.jboss.org/message/639811#639811

--
The first question would be - why do you want to deploy it in JBoss AS? Is it a 
web application? Which version of JBoss AS do you use?

P.S: Please do not use all bold letters. It's considered yelling.
--

Reply to this message by going to Community
[http://community.jboss.org/message/639811#639811]

Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: How to make changes without restarting the server.

2011-12-04 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: How to make changes without restarting the server.

To view the discussion, visit: http://community.jboss.org/message/639762#639762

--
You can deploy the .war in exploded format 
http://community.jboss.org/wiki/ExplodedDeployment 
(http://community.jboss.org/docs/DOC-9719) and changes to .jsp/.html files will 
be picked up automatically without requiring a redeploy of the application or 
restart of the server.
--

Reply to this message by going to Community
[http://community.jboss.org/message/639762#639762]

Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: How to make changes without restarting the server.

2011-12-04 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: How to make changes without restarting the server.

To view the discussion, visit: http://community.jboss.org/message/639769#639769

--
 Kamal Khadka wrote:
 
 The application has already been deployed in .ear format. 
That doesn't matter. What matters is whether it's deployed in exploded format 
or as an archive.
--

Reply to this message by going to Community
[http://community.jboss.org/message/639769#639769]

Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: Set maxSession of an MDB using XML instead of Annotations

2011-12-04 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: Set maxSession of an MDB using XML instead of Annotations

To view the discussion, visit: http://community.jboss.org/message/639775#639775

--
 Hushen Savani wrote:
 it says that, in order the changes to be reflected, *you need to set the 
 maxSession parameter either on the resource adapter itself or via an an 
 Activation Config Property on the MDB itself.* 
 
See this example on how you can set it as an activation config property in 
ejb-jar.xml  
http://docs.jboss.org/ejb3/docs/tutorial/1.0.7/html/Message_Driven_Beans_with_deployment_descriptor.html
 
http://docs.jboss.org/ejb3/docs/tutorial/1.0.7/html/Message_Driven_Beans_with_deployment_descriptor.html
--

Reply to this message by going to Community
[http://community.jboss.org/message/639775#639775]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: JBOSS EJB Timers, delete multiple copies.

2011-12-02 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: JBOSS EJB Timers, delete multiple copies.

To view the discussion, visit: http://community.jboss.org/message/639546#639546

--
It's a bug we have in AS 6.x. We have that fixed in AS7.

A workaround is to mark the @Schedule with persistent=false attribute. For 
already created timers, clean the JBOSS_HOME/server/servername/data folder 
(one time) before setting that persistent=false flag.
--

Reply to this message by going to Community
[http://community.jboss.org/message/639546#639546]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools] - Re: Jboss 7.1 Beta 1 startup within Eclipse IDE fails

2011-11-28 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: Jboss 7.1 Beta 1 startup within Eclipse IDE fails

To view the discussion, visit: http://community.jboss.org/message/638575#638575

--
Moved to JBoss Tools forum.
--

Reply to this message by going to Community
[http://community.jboss.org/message/638575#638575]

Start a new discussion in JBoss Tools at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2128]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: EJB 3.1 Asynchronous in JBoss AS 6 CR1

2011-11-28 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: EJB 3.1 Asynchronous in JBoss AS 6 CR1

To view the discussion, visit: http://community.jboss.org/message/638641#638641

--
 Aaron Harshbarger wrote:
 
 Was this actually implemented in the JBoss AS6 Final release?  I'm trying to 
 use @Asynchronous in a stateless (local) EJB3 and it seems to be blocking 
 while being executed.
Asynchronous was implemented in 6.0.0.Final although there are a few known 
issues  http://community.jboss.org/thread/161771?tstart=120 
http://community.jboss.org/thread/161771?tstart=120


 Aaron Harshbarger wrote:
 
 
 
 P.S. I see it wasn't implemented in the initial AS7.0 release.
AS 7.0.2 and later releases have that support.
--

Reply to this message by going to Community
[http://community.jboss.org/message/638641#638641]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: Datasource specification in web.xml

2011-11-17 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: Datasource specification in web.xml

To view the discussion, visit: http://community.jboss.org/message/636961#636961

--
See if this helps  http://community.jboss.org/thread/81055 
http://community.jboss.org/thread/81055
--

Reply to this message by going to Community
[http://community.jboss.org/message/636961#636961]

Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: JNDI Lookup fails with an ArrayStoreException

2011-11-09 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: JNDI Lookup fails with an ArrayStoreException

To view the discussion, visit: http://community.jboss.org/message/635780#635780

--
Do you package any JBoss specific jar files within your application (for 
example: jboss-ejb3-*.jar)? If yes, then remove such jars from the application 
packaging.
--

Reply to this message by going to Community
[http://community.jboss.org/message/635780#635780]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: JNDI Lookup fails with an ArrayStoreException

2011-11-09 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: JNDI Lookup fails with an ArrayStoreException

To view the discussion, visit: http://community.jboss.org/message/635790#635790

--
 1.310.720 jboss-aop-2.0.0.GA.jar
   544.768 jboss-common-core-2.2.14.GA.jar
    24.576 jboss-logging-log4j-2.0.5.GA.jar
    12.288 jboss-logging-spi-2.0.5.GA.jar
   176.128 jboss-mdr-2.0.0.GA.jar
   208.896 jboss-reflect-2.0.0.GA.jar
I haven't looked fully at your post, but you don't need these above jars in 
your application packaging. Remove them and see if that gets you past this 
issue (probably it won't but atleast, I want to rule out the jar conflicts 
first).
--

Reply to this message by going to Community
[http://community.jboss.org/message/635790#635790]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: Compiler error

2011-11-04 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: Compiler error

To view the discussion, visit: http://community.jboss.org/message/635171#635171

--
Can you post those errors? Also how are you starting the server? Are you sure 
it's using the correct version of Java? Can you post the first few lines that 
you see on the server console (which includes the echo statements and other 
environment details).
--

Reply to this message by going to Community
[http://community.jboss.org/message/635171#635171]

Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JNDI and Naming] - Re: Upgrade JB6.0.0-6.1.0, now JMS ConnectionFactory not bound?

2011-11-03 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: Upgrade JB6.0.0-6.1.0, now JMS ConnectionFactory not bound?

To view the discussion, visit: http://community.jboss.org/message/634986#634986

--
The discussion is being continued in the other forum here  
http://community.jboss.org/thread/174420?tstart=0 
http://community.jboss.org/thread/174420?tstart=0.
--

Reply to this message by going to Community
[http://community.jboss.org/message/634986#634986]

Start a new discussion in JNDI and Naming at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2083]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginner's Corner] - Re: Compiler error

2011-11-02 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: Compiler error

To view the discussion, visit: http://community.jboss.org/message/634666#634666

--
Did you try cleaning the JBOSS_HOME/server/servername/work/ folder?
--

Reply to this message by going to Community
[http://community.jboss.org/message/634666#634666]

Start a new discussion in Beginner's Corner at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2075]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB3] - Re: JBoss AS 7.0.0.Final And EJB 3.1 @Schedule Problem

2011-10-27 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: JBoss AS 7.0.0.Final And EJB 3.1 @Schedule Problem

To view the discussion, visit: http://community.jboss.org/message/633836#633836

--
TimerService is available in the 7.0.2 (download the Everything binary and 
use the standalone-preview.xml configuration).
--

Reply to this message by going to Community
[http://community.jboss.org/message/633836#633836]

Start a new discussion in EJB3 at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2029]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [jBPM] - Re: How to install drools jbpm integration 5.3.0 Final into App Server 7

2011-10-27 Thread jaikiran pai
jaikiran pai [http://community.jboss.org/people/jaikiran] created the discussion

Re: How to install drools jbpm integration 5.3.0 Final into App Server 7

To view the discussion, visit: http://community.jboss.org/message/633909#633909

--
Moved this to jBPM forum. Someone there might be able to help. By the way have 
you seen  http://kverlaen.blogspot.com/2011/07/jbpm5-on-as7-lightning.html 
http://kverlaen.blogspot.com/2011/07/jbpm5-on-as7-lightning.html
--

Reply to this message by going to Community
[http://community.jboss.org/message/633909#633909]

Start a new discussion in jBPM at Community
[http://community.jboss.org/choose-container!input.jspa?contentType=1containerType=14container=2034]

___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


  1   2   3   4   5   6   7   8   9   10   >