[JBoss-user] [JBoss Portal] - Re: Displaying Portlet of one application in another applica

2005-12-17 Thread windyguy27
Hi mholzer,

I thank you very much for posting solution for my query. Your suggestion really 
worked for me. Below is the XML fragment which I have used in my application. I 
haven't placed any / before the context name in component-ref tag.

deployment
  | if-existskeep/if-exists
  | instance
  | instance-nameMyPortletInstance/instance-name
  | component-refWarContextHere.MyPortlet/component-ref
  | deployment

Once again Thanks









View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913231#3913231

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913231


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: On conversation usage patterns

2005-12-17 Thread [EMAIL PROTECTED]
anonymous wrote : I'll definatetly have a look :)

Well, I beat you to it ;)

In CVS.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913232#3913232

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913232


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Question about BPEL's WSDL message part

2005-12-17 Thread fwshk
Excuse me,
I have success deployed a process called BuyingBook.
While the deployment, I found something that would like to know.

In the process's WSDL
Initially, I use element as the message part but the deployment was failed

  | message name=BuyingBookRequestMessage
  | part element=my:BuyingBookRequest name=payload/
  | /message
  | message name=BuyingBookResponseMessage
  | part element=my:BuyingBookResponse name=payload/
  | /message
  | 
  | 17:25:10,562 WARN  [TypeMappingDescription] Class not found: 
learning.buyingbook.BuyingBookRequest
  | 

I found the the WSCompile haven't generate the class for me
Therefore, I modify the WSDL the using type rather than element
and the deployment is success

  | message name=BuyingBookRequestMessage
  | part type=my:BuyingBookRequestType name=payload/
  | /message
  | message name=BuyingBookResponseMessage
  | part type=my:BuyingBookResponseType name=payload/
  | /message
  | 

Would jBPM BPEL allow to use element rather than type in message part?
Is that it is required for me to writting the missing class if element is using

The below code is for reference usage:

  | types
  | xsd:schema targetNamespace=http://learning/BuyingBook;
  | xsd:complexType name=BuyingBookRequestType
  | xsd:sequence
  | xsd:element name=input type=xsd:string/
  | /xsd:sequence
  | /xsd:complexType
  | xsd:complexType name=BuyingBookResponseType
  | xsd:sequence
  | xsd:element name=result type=xsd:string/
  | /xsd:sequence
  | /xsd:complexType
  | xsd:element name=BuyingBookRequest 
type=BuyingBookRequestType/
  | xsd:element name=BuyingBookResponse 
type=BuyingBookResponseType/
  | /xsd:schema
  | /types
  | 

Thank you very much ^^
Roy

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913234#3913234

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913234


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Re-obtaining a reference to an existing stateful EJB3 in

2005-12-17 Thread fschoning
I have used the following successfully but have not tested it extensively or 
over a number of session calls. I have also not tested this across different 
VM's.

ChatMsgHandler ejbhandler = 
(ChatMsgHandler)ctx.lookup(ChatMsgHandler.class.getName());
  | 
To serialize the ejb3 proxy object:
ByteArrayOutputStream baos = new ByteArrayOutputStream();
  | ObjectOutputStream oos = new ObjectOutputStream(baos);
  | oos.writeObject(ejbhandler);
  | 
To deserialize the ejb proxy object:
ByteArrayInputStream file = new ByteArrayInputStream(baos.toByteArray());
  | ObjectInputStream input = new ObjectInputStream(file);
  | ChatMsgHandler ejbhandler2 = (ChatMsgHandler)input.readObject();
  | 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913233#3913233

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913233


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Problem with running tests for SEAM-BOOKING example

2005-12-17 Thread wojtek82
Hi,

I have a problem running tests for the booking example shipped with Seam. 

When I want to run the tests basing on the tutorial (
http://docs.jboss.com/seam/reference/en/html/configuration.html#d0e1542
Configuring Seam with the JBoss Embeddable EJB3 container ) I get problems.

I use Eclipse 3.1 with TestNG plugin. When I run the tests I get:

[RunInfo] Adding method selector: [EMAIL PROTECTED] priority: 10
  | [TestClass] Creating TestClass for [ClassImpl 
org.jboss.seam.example.booking.test.LoginTest]
  | [TestClass] Adding method 
org.jboss.seam.example.booking.test.LoginTest.testLogin() on TestClass class 
org.jboss.seam.example.booking.test.LoginTest
  | [TestRunner] Running test org.jboss.seam.example.booking.test.LoginTest on 
1  classes,  included groups:[] excluded groups:[]
  | [TestClass] 
  | ==
  | TESTCLASS: org.jboss.seam.example.booking.test.LoginTest
  | [TestClass] BeforeClass : org.jboss.seam.mock.SeamTest.init()
  | [TestClass] BeforeMethod:   org.jboss.seam.mock.SeamTest.begin()
  | [TestClass] Test:   
org.jboss.seam.example.booking.test.LoginTest.testLogin()
  | [TestClass] AfterMethod :   org.jboss.seam.mock.SeamTest.end()
  | [TestClass] AfterClass  : org.jboss.seam.mock.SeamTest.cleanup()
  | [TestClass] 
  | ==
  | 
  | [TestRunner] PARALLEL LIST:
  | [TestRunner]   org.jboss.seam.example.booking.test.LoginTest.testLogin()
  | [TestRunner] SEQUENTIAL LIST:
  | [TestRunner] ===
  | [TestRunner] Found 1 applicable methods
  | [Invoker 5210326] Keeping method 
org.jboss.seam.mock.SeamTest.init() for class [TestClass class 
org.jboss.seam.example.booking.test.LoginTest]
  | [Invoker 5210326] Invoking org.jboss.seam.mock.SeamTest.init()
  | [Invoker 5210326] Keeping method org.jboss.seam.mock.SeamTest.begin() for 
class [TestClass class org.jboss.seam.example.booking.test.LoginTest]
  | [Invoker 5210326] Keeping method org.jboss.seam.mock.SeamTest.end() for 
class [TestClass class org.jboss.seam.example.booking.test.LoginTest]
  | [Invoker 5210326] Keeping method 
org.jboss.seam.mock.SeamTest.begin() for class [TestClass class 
org.jboss.seam.example.booking.test.LoginTest]
  | [Invoker 5210326] Invoking 
org.jboss.seam.example.booking.test.LoginTest.testLogin
  | [Invoker 5210326] Keeping method org.jboss.seam.mock.SeamTest.end() 
for class [TestClass class org.jboss.seam.example.booking.test.LoginTest]
  | [Invoker 5210326] Keeping method 
org.jboss.seam.mock.SeamTest.cleanup() for class [TestClass class 
org.jboss.seam.example.booking.test.LoginTest]
  | 
  | *** INVOKED METHODS
  | 
  | org.jboss.seam.mock.SeamTest.init() 5998631
  | org.jboss.seam.example.booking.test.LoginTest.testLogin() 
5998631
  | 
  | ***
  | 
  | FAILED: org.jboss.seam.mock.SeamTest.init()
  | java.lang.RuntimeException: java.lang.IllegalArgumentException: Null kernel
  | at 
org.jboss.ejb3.embedded.EJB3StandaloneBootstrap.deployXmlResource(EJB3StandaloneBootstrap.java:59)
  | at org.jboss.seam.core.Ejb.deploy(Unknown Source)
  | at org.jboss.seam.core.Ejb.startup(Unknown Source)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  | at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  | at java.lang.reflect.Method.invoke(Unknown Source)
  | at org.jboss.seam.util.Reflections.invoke(Unknown Source)
  | at org.jboss.seam.util.Reflections.invokeAndWrap(Unknown Source)
  | at org.jboss.seam.Component.callCreateMethod(Unknown Source)
  | at org.jboss.seam.Component.newInstance(Unknown Source)
  | at org.jboss.seam.Component.getInstance(Unknown Source)
  | at org.jboss.seam.contexts.Lifecycle.startup(Unknown Source)
  | at org.jboss.seam.contexts.Lifecycle.endInitialization(Unknown Source)
  | at org.jboss.seam.init.Initialization.init(Unknown Source)
  | at org.jboss.seam.mock.SeamTest.init(Unknown Source)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
  | at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
  | at java.lang.reflect.Method.invoke(Unknown Source)
  | at org.testng.internal.MethodHelper.invokeMethod(MethodHelper.java:379)
  | at 
org.testng.internal.Invoker.invokeConfigurationMethod(Invoker.java:280)
  | at org.testng.internal.Invoker.invokeConfigurations(Invoker.java:147)
  | at org.testng.internal.TestMethodWorker.run(TestMethodWorker.java:78)
  | at org.testng.TestRunner.privateRun(TestRunner.java:620)
  | at org.testng.TestRunner.run(TestRunner.java:503)
  | at org.testng.SuiteRunner.privateRun(SuiteRunner.java:200)
  | at org.testng.SuiteRunner.run(SuiteRunner.java:126)
  | at org.testng.eclipse.runner.RemoteTestNG.run(RemoteTestNG.java:99)
  | at 

[JBoss-user] [JBoss jBPM] - Re: Problem during deploying my own bpel process in jbpm bpe

2005-12-17 Thread fabricio.nogueira
Alejandro,

thanks for your reply, the  ant deploy-definition command worked now. I'm going 
to folow the next steps now. But, It's weird because those files were all 
generated by Oracle JDeveloper Bpel Designer and work with Oracle Business 
Process Manager deployment.

Maybe, this is a stupid question. But what do you mean with This makes sense 
because your process does not receive through the myEcho partner link. Are you 
saying that the service won't return anything to the process? Because, myEcho 
service returns a greeting message to the process. As you can see in the jws:


  | public class myEcho {
  | 
  | public String echo(String s){
  | return Hello,  + s + . Nice to meet you!;
  | }
  | 
  | }
  | 

Am I making a misunderstanding about what you said?

Thanks in advance,

Fabrício.




View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913236#3913236

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913236


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_idv37alloc_id865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - clustering database

2005-12-17 Thread sigitm
Hi,
I'm working on an application based on a stateful session ejb, and an entity 
ejb.
I have a 2 nodes cluster, where I deploy my application (putting the .ear file 
in the server/all/farm directory in one of the nodes, and jboss replicates the 
package on the other node). 

The problem is: when I use the application on the first node, interacting with 
the entity ejb and storing new data (which is saved in the all/data/hypersonic 
folder), then the second node is not updated with new data. It seems that there 
is a different database on each node.
How can I share the database inside the cluster?


Thanks

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913238#3913238

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913238


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: Strange exception in HTTP-Session replication

2005-12-17 Thread [EMAIL PROTECTED]
anonymous wrote : 
  | Maybe this happens if I try to modify a HashMap that is stored in the 
ClusteredSession object while it is replicated?!

There was no synchronization on the attribute Map itself while it was being 
serialized for replication, so concurrently adding/removing an attribute could 
raise an exception.  This is a bug in 4.0.3 and 4.0.3SP1, see 
http://jira.jboss.com/jira/browse/JBAS-2571.  This is fixed in CVS.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913239#3913239

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913239


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: clustering database

2005-12-17 Thread [EMAIL PROTECTED]
Hypersonic is an in-process database (i.e. runs inside the JVM that runs a 
JBoss instance).

You should use an external database.  There are lots of open source ones 
(mysql, postgres, derby).

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913240#3913240

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913240


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: Multiple Java versions in JBoss server?

2005-12-17 Thread [EMAIL PROTECTED]
What ORB are you using; you sure it donsn't run on Java5. Another option would 
be to switch to the JacORB implementation that comes with JBoss? AFAIK EJB3 
requires Java5, so there is nothing you can do for this (you can ask in the 
ejb3 users forums just in case).



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913242#3913242

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913242


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Use nested deployment for resource adapter

2005-12-17 Thread Rudi Vankeirsbilck
Dunno actually. My build script has done that for the last 2 years I guess and 
it has always worked. The APP-INF/lib/classes.jar contains all classes I need 
in the nested deployed jars. So in fact, the nested .jar (and also .war that I 
did not mention) only contain the deployment descriptors for the session beans.

I have made some progress since... had a typo in a setter method of one of the 
properties of the resource adapter. I discovered that when I used the same 
structure as the examples (i.e. not use nested deployment).

Currently, the app deploys but I cannot see my MDB connecting to the resource 
adapter, although I have logging in the activtion method.

Rudi.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913243#3913243

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913243


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Advanced Documentation] - SSO Configuration

2005-12-17 Thread windyguy27
Hi All,

Please provide me some documentation how to implement SSO

Thanks

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913245#3913245

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913245


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Article over jBPM

2005-12-17 Thread camunda
I work on page 1 at the moment...

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913246#3913246

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913246


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Unable to deploy typemapping - ClassNotFoundException

2005-12-17 Thread bbredohl
Hi,
I am trying to use ws4ee on JBoss 4.0.3 SP1.

My webservice works fine with rpc/literal, but when I change to document style 
webservice and deploy it, I get the following error:

 ERROR [WSDDService] Unable to deploy typemapping: {urn:blablub}blablub
java.lang.ClassNotFoundException: No ClassLoaders found for: 
org.apache.axis.encoding.ser.BeanSerializerFactory
at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:198)
at 
org.jboss.mx.loading.RepositoryClassLoader.loadClassImpl(RepositoryClassLoader.java:475)
at 
org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:377)
at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
at java.lang.ClassLoader.loadClassInternal(ClassLoader.java:319)
at java.lang.Class.forName0(Native Method)
at java.lang.Class.forName(Class.java:164)

...


The class is in the axis-ws4ee.jar in the server/all/deploy/jboss-ws4ee.sar 
dir. I try to copy this file in the server/all/lib dir, but I get the same 
error.

Does someone have any solution for my problem?

Thanks in advance, 
Björn 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913248#3913248

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913248


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_idv37alloc_id865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: java.lang.NoClassDefFoundError

2005-12-17 Thread dirk.koehler
I suggest to post such problems in a java forum... it's not EJB related if you 
can't get your main running...

1) cd C:\TEST\EJB\

2) %JAVA_HOME%\bin\java -classpath 
.;C:\jboss-4.0.2\client\jboss-j2ee.jar;C:\TEST\EJB\FirstEJB\Fir
stEJB.jar FirstEJBClient 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913249#3913249

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913249


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Seam on Tomcat

2005-12-17 Thread [EMAIL PROTECTED]
For Tomcat fans, I finally managed to get around to making the examples work 
smoothly on Tomcat.

This is work only available in current CVS.

Both the booking and noejb examples can be deployed to Tomcat, and full 
instructions may be found in the readme files in the respective directories. 
Read the instructions first!


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913252#3913252

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913252


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Problem with running tests for SEAM-BOOKING example

2005-12-17 Thread [EMAIL PROTECTED]
Check out current Seam CVS, and follow the instructions in booking/readme.txt.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913253#3913253

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913253


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - JBOSS MQ

2005-12-17 Thread nayabingi
What exactly is jboss.MQ 

Mohammed

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913254#3913254

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913254


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Re: I know, another JNDI lookup issue - local ejb

2005-12-17 Thread philc_jboss
Thanks for your reply jaikiran!! You were correct. I searched for some time 
through EJB/JBOSS and found another related post. I changed my jboss.xml 
jndi-name/ tag to local-jndi-name/ and a couple other changes and finally 
got my deployment working :). I still have a class loader issue that I will 
continue to work with (many people have the same issue and have to set a global 
flag to true), but I don't have other context apps so this is fine for now. 
Thanks to your reply I was able to head down a path to resolution. 
Now my jmx-console show the bean deployment as:

Global JNDI Namespace

+- MyBeanLocalHome (proxy: $Proxy100 implements interface 
org.blah.ejb.MyBeanLocalHome)

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913258#3913258

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913258


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - starting a new project.

2005-12-17 Thread myraft01
Hello,
  I am new to JBossIDE setup. I have setup a simple web project and was able to 
run it. I am having the hardest time firguring out how to setup the workspace 
where once the server is started, code can be changed without re-packaging / 
re-deploying ? Is there a way to setup the workspace in the 
server/default/deploy directory , so that changes to the .jsp and .java are 
instantly picked up without having to running the packaging / deploying the war 
file ?

I used the example in http://www.laliluna.de, and keep on getting  No action 
instance for path /bookEdit could be created which tells me there is something 
wrong with my project structure. This is the partial stack strace : Error 
creating form bean of class 
src.de.laliluna.tutorial.library.struts.form.BookEditForm
java.lang.ClassNotFoundException: 
src.de.laliluna.tutorial.library.struts.form.BookEditForm

Any ideas ?

Is there a simple struts project that I can get, which I start working with ?

Thanks



View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913259#3913259

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913259


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: starting a new project.

2005-12-17 Thread myraft01
Sorry, posted in the wrong forum, I was trying to post in the IDE forum. I will 
post it there now. 

Thanks

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913260#3913260

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913260


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - starting a new project.

2005-12-17 Thread myraft01
Hello,
I am new to JBossIDE setup. I have setup a simple web project and was able to 
run it. I am having the hardest time firguring out how to setup the workspace 
where once the server is started, code can be changed without re-packaging / 
re-deploying ? Is there a way to setup the workspace in the 
server/default/deploy directory , so that changes to the .jsp and .java are 
instantly picked up without having to running the packaging / deploying the war 
file ?

I used the example in http://www.laliluna.de, and keep on getting  No action 
instance for path /bookEdit could be created  which tells me there is 
something wrong with my project structure. This is the partial stack strace : 
Error creating form bean of class 
src.de.laliluna.tutorial.library.struts.form.BookEditForm
java.lang.ClassNotFoundException: 
src.de.laliluna.tutorial.library.struts.form.BookEditForm

Any ideas ?

Is there a simple struts project that I can get, which I start working with ?

Thanks 

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913261#3913261

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913261


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Problem during deploying my own bpel process in jbpm bpe

2005-12-17 Thread [EMAIL PROTECTED]
anonymous wrote : It's weird because those files were all generated by Oracle 
JDeveloper Bpel Designer and work with Oracle Business Process Manager 
deployment
Quite weird. The BPEL spec is clear in this point. From section 7.2:
anonymous wrote : The role of the business process itself is indicated by the 
attribute myRole and the role of the partner is indicated by the attribute 
partnerRole. In the degenerate case where a partnerLinkType has only one role, 
one of these attributes is omitted as appropriate

anonymous wrote : what do you mean with This makes sense because your process 
does not receive through the myEcho partner link
I meant asynchronous reception: using the partner link in a receive activity to 
get a separate response to a previous request placed with an one-way invoke 
activity. Such an interaction pattern is quite different from a 
request/response invoke activity, as it requires the process to expose a 
callback interface to the partner service.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913262#3913262

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913262


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: jBPM BPEL Hello example exception

2005-12-17 Thread [EMAIL PROTECTED]
The attribute messageExchange was introduced in BPEL 2 to allow for 
distinguishing between overlapped message exhanges. 

The v1.1 schema allows for extensible attributes of other namespaces in the 
receive activity, which does not include local attributes. Therefore you can 
only use messageExchange if your document conforms to the v2 schema. 

BPEL 2 further states that if the messageExchange attribute is not specified 
on a receive then its value is taken to be empty. This is the value receive 
activities from v1 documents use internally. Maybe the empty string is being 
saved as a SQL NULL in Oracle? I need to ask the JBoss QA team as I don't have 
Oracle in my dev machine (neither do I want to!).

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913263#3913263

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913263


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - Re: starting a new project.

2005-12-17 Thread myraft01
Hate to sort of answer my own question (somewhat), after going thru the 
Fibonacci example, I deployed the .ear file and was able to debug ( also change 
the Java code) at runtime.

Now if only I can get a basic struts project working, I am on my way.

Still need the help folks.

thanks

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913264#3913264

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913264


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Question about BPEL's WSDL message part

2005-12-17 Thread [EMAIL PROTECTED]
The WS-I Basic Profile v1.0 describes how many wsdl:part elements are permitted 
or required for document-literal and rpc-literal bindings and how they must be 
defined:

anonymous wrote :  An rpc-literal binding in a DESCRIPTION MUST refer, in its 
soapbind:body element(s), only to wsdl:part element(s) that have been defined 
using the type attribute.
  | [...]
  | For document-literal bindings, the Profile requires that at most one part, 
abstractly defined with the element attribute, be serialized into the soap:Body 
element.

wscompile focuses on supporting WS-I BP compliant definitions; for 
non-compliant ones, it sometimes behaves strangely. If you change the binding 
style from rpc to document, wscompile should be able to generate the class for 
you.

However, jBPM BPEL does not support publishing ports with doc-literal bindings 
(it does support invoking them, tough). Would you please file a JIRA feature 
request for this?

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913265#3913265

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913265


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: jBPM BPEL Hello example exception

2005-12-17 Thread karmen38
Thank you for your reply. The field is definitelly NULL in Oracle since I saw 
this NULL in the database table. I think that Oracle represents any empty 
string as NULL. I thought that PostgreSQL does it as well but I might be wrong. 

Is it any workaround about it in jBPM BPEL / JBoss configuration?

Thank you again,
Mark


View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913266#3913266

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913266


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Using @Service annotation in eclipse; JBoss EJB 3.0 Serv

2005-12-17 Thread yantriki
Thanks Bill. I appreciate your help.

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913268#3913268

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913268


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS JBossMQ] - Re: Configuration of SonicMQ 6.1 and JBoss version 4.0.x

2005-12-17 Thread michaelf
Hey,
After I have solved an issue alone, I have found the solution at JBossWiki.

http://wiki.jboss.org/wiki/Wiki.jsp?page=IntegrationWithSonicMQ

Best regards,
   Michael

View the original post : 
http://www.jboss.com/index.html?module=bbop=viewtopicp=3913269#3913269

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=3913269


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637alloc_id=16865op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user