[JBoss-user] [Messaging, JMS & JBossMQ] - integrating with sap , some doubt

2005-12-10 Thread rohit_mca2000
Hello friends , 
i am trying to integrate my JBOSSMQ of JBOSS4.0 APP Server with SAP.

For that i need to set few parameters in SAP like the QueueConnectory Factory, 
Queue , etc. 
I found out that the QueueConnectoryFactory is org.jboss.mq.SpyConnectorFactory.
for Queue its org.jboss.mq.SpyQueue.

but i am not able to find few things that SAP requires.
1) The Channel that  QueueConnectorFactory Uses in Jboss.
2) The Transport Type that QueueConnectorFactory uses in Jboss .
3) The QueueManager used in Jboss . etc

So i am not able to set these parameters in SAP.

I had posted a similar query last time which was deleted by admins, may be coz 
i hadnt put it properly . 
Hope here i have explained my doubts clearly. 
Thanks and do help if you know this  EAI related stuff.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911973#3911973

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911973


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Queue Messages are not listed in QueueBrowser when in 'w

2005-12-10 Thread shafieksavahl
Hello upankar

I was the one who posted a similar question last month and after much searching 
I was unable to find a solution to my problem.  I was told that there might be 
a patch, but I am unable to find it.  Not sure if you have to have a 
subscription to access it.  I did find a reference to a post made a couple of 
years ago, but have not seen any solutions.  I have been thinking about 
creating my own patch, but have been waiting to see if others have a better 
solution.

I have been thinking about adding code to the browse method of the BasicQueue.

public SpyMessage[] browse(String selector) throws JMSException {
.
.
.

SpyMessage [] list 

for (Iterator i = events.keySet().iterator(); i.hasNext(); ) {
MessageReference message = (MessageReference)iter.next();
list[XXX] = message.hardReference; // may need to do a clone here
}

return list;
}


Some feedback would be great.

All I havve to do now is to figure out how to compille up my changes.

Thanks

Shafiek



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911972#3911972

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911972


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Download dynamic classes

2005-12-10 Thread fendyzhong
Hi,

I don't know if this is the right section, but I really need some help.

In the session bean I am writing, the return object is a dynamically created 
class type using java dynamic proxy. I have a remote client call the session 
bean, but keep getting a ClassNotFoundException. I have enable the security 
manager, and I have try to point the URLClassLoader all the known JBoss ports 
on the client side to download the class definition. But none of them seems to 
be able download the dynamically created class definition to the client.

I am using the latest JBoss AS 4.0.3SP1.

Fendy

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911971#3911971

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911971


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Remoting] - Download dynamic classes

2005-12-10 Thread fendyzhong
Hi,

I don't know if this is the right section, but I really need some help.

In the session bean I am writing, the return object is a dynamically created 
class type using java dynamic proxy.  I have a remote client call the session 
bean, but keep getting a ClassNotFoundException.  I have enable the security 
manager, and I have try to point the URLClassLoader all the known JBoss ports 
on the client side to download the class definition.  But none of them seems to 
be able download the dynamically created class definition to the client.

I am using the latest JBoss AS 4.0.3SP1.

Fendy

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911970#3911970

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911970


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Using Views with derived columns

2005-12-10 Thread jmoring
Consider the following SQL Server view...

create view Employee_DOC
as

select

FirstName,
LastName,
GenderCode,
GenderDesc = dbo.getCodeDescriprtion( 'GENDER', GenderCode ),
SSN

from Employees


It uses a derived column and is thus unupdateable (no insert or update). It can 
not be used by an Entity bean if you want that bean to be updateable. What 
would be great is if you could specify a table (or view) to used for reading 
and a different table for saving. This does not appear to be a feature of 
EBJ3/Hibernate, but is there a way to achieve the same outcome?

Amazing product!! My deepest admiration to those responsible.

Jim

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911969#3911969

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911969


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Microcontainer] - Thin Framework Over JDBC - Spring versus microcontainer

2005-12-10 Thread BillB719
Spring provides a thin fraemwork over JDBC. The thin framework provides a clean 
model for transaction handling, exception handling including a generic 
DataAccessEception hierarchy, as well as easy wiring up of an application 
object. Does the microcontiner provide this functionality? 

Thanks,

Bill

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911968#3911968

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911968


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Setting @Out(scope=CONVERSATION) variable to null has no

2005-12-10 Thread [EMAIL PROTECTED]
Thanks, I've fixed this bug in CVS.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911967#3911967

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911967


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Access to servlet with '/servlet/' in URL gives Error 40

2005-12-10 Thread alexeit
"[EMAIL PROTECTED]" wrote : The invoker servlet, which handles the /servlet/... 
URL pattern, is not enabled by default, as it's a potential security hole.  You 
need to go into the deploy/jbossweb-tomcat55.sar/conf/web.xml file and 
uncomment it.  It's better practice to specify your servlets in web.xml.

Brian, thank you for explaining. I like using web.xml descriptor for the 
servlet best, but the tutorials I referref to use '/servlet/' URL so I wanted 
to achieve this.

Thank you,
Alexei

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911966#3911966

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911966


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Setting @Out(scope=CONVERSATION) variable to null has no

2005-12-10 Thread AlexTemnokhod
I tried latest jboss-seam.jar build, and this is still the case. Note that any 
change to hotel bean properties or replacing hotel variable with other non-null 
value is visible immediately, but setting it to null has no effect in the 
following Render View phase. 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911962#3911962

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911962


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Simultaneous execution of Fork children

2005-12-10 Thread [EMAIL PROTECTED]
Hi Rainer,

So indeed, the whole point of tx2 and tx3 happening concurrently is that the 
processinstance should be locked (either pessimistically or optimistically) to 
isolate them. This is not a jBPM related issue, it is a very general issue of 
transaction isolation when you have to access a shared resource (in the jBPM 
case this resource is the process instance). So the point Sean is making is 
very true, but the point I am trying to make for user's reading this thread is 
that these two transactions *should* be isolated to avoid problems. If you 
break this isolation by starting transactions in custom nodes than you will 
most certainly not able to roll thing back if something goes wrong.

Which brings me to your second use case. I remember we had this discussion 
earlier and I clearly see your point. The fact that there is no easy solution 
for obtaining this, is not at all jBPM related (as we also already concluded). 
It is again a more general issue for which I think there is no general 
solution. So you will have to look at your particular case (like you did) and 
come up with the best solution. One possibility I think, is to have some kind 
of a compensation mechanism in case something goes wrong in the MDB handling 
the messages sent in state d or state f. But as I already said, this is why we 
are called software engineers, there is some thinking to do here ;-) 
Anyway even in this second use case the problem of the first use case (a race 
condition on the processinstance) exists, so you will also want to lock the 
processinstance.

Now for the serious business... Ronald told you already I am the blonde one 
with D-Cups, so I won't go looking for them :-P
Besides, I am attending the JavaPolis conference next week, and these blonde 
D-Cups are hard to find in such an audience ;-)) 
I think it is a little too early for Christmas wishes, so that will be 
something for later...

Cheers,
Koen


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911961#3911961

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911961


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: CVS Noob question

2005-12-10 Thread AlexTemnokhod
Thanks, Marius. It's not a bad idea to have something like 
http://anoncvs.forge.jboss.com/viewrep/JBoss/jboss-seam/build/jboss-seam.jar

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911960#3911960

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911960


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Javassist user questions] - Re: Modifying CtClass

2005-12-10 Thread chiba
That's spec.  Because the field initialization is done in a static initializer,
when you remove a field, you also have to remove the initialization code
from the static initializer, which is not a simple task!.

So your alternative code (create another ClassPool) is a right solution.


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911958#3911958

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911958


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Prioritization

2005-12-10 Thread ashkumar
based on my understanding of the problem, there is a very simple solution to 
it.  You just want to assign priority to taskinstances for a particular user. 
They way to do this would be assign variable called priority for that 
taskinstance. This variable will be persisted in the jbpm database and will 
enumerate the priority for that particular taskinstance.

Regards,

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911957#3911957

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911957


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Simultaneous execution of Fork children

2005-12-10 Thread RAlfoeldi
Hi Koen,

I agree with you on one and three.

jBPM works, great, solves all problems and there is at the moment no mission 
critical need for real concurrency.

It is/was important for me to know the limitations because I am using JMS 
intensively (mainly for transaction reasons) and have to guard against 
concurrency problems. The conclusion of this Thread for me is: lock on 
processInstance. Which is fine for me, but effectively means no real concurrent 
execution.

We can leave it at that.

Everything from now on is purely academic.

(I haven't been to the office for the last week due to a flu and do not (yet) 
have jBPM or other tools set up at home, so this will look a bit cheap but it 
should make the point.)

A technical (not business) usecase true concurrency 

a) workload in jBPM actions:

  | thread1.
  | tx1.
  |
  | 
  |
  | 
  | 
  |
  |
  |  continue in new Threadcontinue 
in new Thread
  |  (thread2) (thread3)
  |   
  |   
  |
  | tx1.
  | thread1.
  | 
  | thread2. thread3.
  | tx2. tx3.
  | 
  |   signal() signal()
  | 
  |   
  | 
  |  
  | 
  |   
  | 
  |  
  | 
  |  !!
  | 
  | 
  |
  | 
  |  ??
  | 
  | tx2. tx3..
  | thread2. thread3..
  | 

The point Sean made was that if tx2 and tx3 happen concurrently, when reaching 
the Join node both will not recognize that the other has possibly finished and 
neither will therefore continue.

You can circumvent the problem from above if you delegate all workload to MDBs

b) all workload in MDBs:

  | thread1.
  | tx1.
  | 
  | 
  | 
  | 
  |   
  |  
  |   
  | 
  |   
  | 
  |
  |   
  |   
  |  
  |   
  |   
  | tx1.
  | thread1.

MDBa, MDBb, MDBc, MDBd do their stuff totally idependently.

But then the execution or rather failure of e.g.  could not rollback 
 (not the sending of the JMS message, the failure of the workload.) so 
this isn't the szenario I would want to use.

Koen, you've mentioned it a few times before yourself. Its a concurrency issue 
that doesn't go away with messaging. When you think about it there will be no 
simple solution to it.

And once again: Have a very Merry Third Advent, sing Christmas jingles, go 
drink Glühwein on a Weihnachtsmarkt and don't go looking for blonde D-Cups.

Rainer

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911956#3911956

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911956


---
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_idv37&alloc_id865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Access to servlet with '/servlet/' in URL gives Error 40

2005-12-10 Thread [EMAIL PROTECTED]
The invoker servlet, which handles the /servlet/... URL pattern, is not enabled 
by default, as it's a potential security hole.  You need to go into the 
deploy/jbossweb-tomcat55.sar/conf/web.xml file and uncomment it.  It's better 
practice to specify your servlets in web.xml.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911955#3911955

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911955


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: AutoNumber

2005-12-10 Thread jelevy01
I'm continuting to dig, I am using CMP, would it make sense to change my 
identity fields to VARCHAR32 and use the KeyGenerator?

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



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911954#3911954

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911954


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Javassist user questions] - Re: Bug in Annotation (Take 2) ?

2005-12-10 Thread chiba
Maybe javassist.jar has been loaded by a different class
loader from your application code.  Can you edit the following line to use a 
different class loader?

in toAnnotationType() in CtClassType

ClassLoader cl = Thread.currentThread().getContextClassLoader();

For example, it might have to be changed to:

ClassLoader cl = .class.getClassLoader();

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911953#3911953

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911953


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - AutoNumber

2005-12-10 Thread jelevy01
Can someone please point me to some documentation or some SRC demonstrating how 
to use AutoNumber?

Alternatively, is there a better way to do autonumber in Jboss then using the 
varia util?


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911950#3911950

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911950


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Where to create a new user object in web session?

2005-12-10 Thread Neelixx
Hey all! 

I finally got the hang of the JAAS Login Modules, and can create my own login 
modules against Active Directory.

Now, I'm struggling with where to create the "current user" object in the 
session?

I'm using EJB3 beans, and I have a User Entity Bean that I want to create when 
the user logs in, and either store in the HTTP Session, or keep it in a 
Stateful Session Bean.

Unfortunately, I'm not sure "where" to create this object?  The JAAS modules do 
not have anything to do with the web sessions, and the authentication method 
hands off to Tomcat via j_security_check.  So, I can't build the object that 
way.

I can probably do it in a filter, but I only want the creation to be AFTER just 
the authentication, not on every request, as I have pages that do not need 
authentication.

What's the general practice for creating a "currentUser" object to place in the 
session, while still maintaining container-managed security?

Thanks everyone!

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911949#3911949

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911949


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Simultaneous execution of Fork children

2005-12-10 Thread [EMAIL PROTECTED]
First of all, discussion is certainly good. It is the primary force of open 
source development, so there is indeed no reason to stop discussing and poining 
out weaknesses of jBPM.
But it is very important that everybody knows they should *not* try to code 
nodes which mess with the transaction alignment of the engine. It is a bad, 
very bad way to solve problems, which may, and certainly will, cause major 
problems. Rollbacks will put the database in an incosistent state.
Second, I would be happy to see clearly described use cases for which the use 
of asynchronous (JMS) messages will not give a solution. If you don't use a 
solution like this, you will end up implementing your own substitute for this. 
Third, JMS neither MDB are particular to JBoss, you can use them in any 
appserver you like. If you have another system of doing asynchronous messaging 
(your own rolled), jBPM will happily use it if there is a Java API. So I still 
don't see the point in this whole discussion.

Regards,
Koen

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911948#3911948

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911948


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: xa transaction failure not handled correctly when lots o

2005-12-10 Thread jahlborn
actually, it *was* partially a jbossmq bug.  i'd say that the messages getting 
committed on rollback was most certainly a jbossmq problem.  

i am indeed pursuing the problem from the oracle side of things.  apparently 
you have some crystal ball and can tell that the jboss transaction manager is 
communicating correctly with oracle and the only possible cause of the problem 
is oracle!  i, unfortunately, can't verify that jboss is not at fault, so i'll 
continue to pursue the problem from both ends until i get a fix.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911947#3911947

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911947


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Database overwritten at each JBoss startup once again.

2005-12-10 Thread jmoring
Solved my problem

Sorry I didn't search the forums before posting this (emotions were running 
high:) ). The default Persistence.properties in Ebj3/deployer contained the 
SchemaUpdate option. I removed it and now my tables are unchanged at start up.



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911946#3911946

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911946


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Database overwritten at each JBoss startup once again.

2005-12-10 Thread jmoring
How do you get JBoss/Hibernate to never generate DDL? I left the option out of 
the persistence.xml file and it seems the default is to create the tables on 
startup and drop them on shutdown. If this is true it is insane. Who would ever 
want that option let alone have it as the default. Hopefully I am missing 
something here as I am new to EBJ3 persistence.

SQLServer 2000
jTDS 1.2 

Thanks
Jim

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911945#3911945

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911945


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Can I assign tasks to role?

2005-12-10 Thread adurmus
Hi,
it is enough for me now. 
Thank you

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911944#3911944

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911944


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Question - JSF Render Response phase and Data access

2005-12-10 Thread timpii
I am a newbie to most of this stack - JDK 5, EJB3, JSF, Seam, etc. One of the 
concerns that I have had regarding JSF is the life cycle event structure 
(Restore View, Apply Request Values, Process Validations, Update Model Values, 
Invoke Application, Render Response).  I like everything up to the Render 
Response. 

At that point it is my limited understanding that when the Navigation Handler 
determines the next page it is too late to go back and obtain persistent data 
for the page. Thus each page is dependent upon the previous page event process 
for obtaining its necessary data. In my mind then we have a very tight coupling 
between pages - that does not work for alot of applications. 

So my questions are:  
First - is my JSF understanding correct, or am I missing something?
Second - is there functionality in Seam that allows the Render Response phase 
to obtain persisted data after selecting the next page?
Third - Is there anything in the (future) jBPM Navigation configuration for 
Seam that will allow the Render Response phase to obtain persisted data? (BTW - 
I am excited about this functionality)
Fourth - If none of the above - any suggestions on how to create a generic 
capability to access persisted data once the next page is determined via the 
Navigation Handler?

I understand that most applications will not want to go to the database twice - 
once for the event update and the second to obtain the new pages data. However, 
there are a class of applications where this is very important - as a example 
personalized apps. 

Thanks in advance for your thoughts.

Tim

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911942#3911942

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911942


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Securing web console

2005-12-10 Thread fraccy
Hi,
I've secured my web console according to the wiki page - all seems quite 
straightforward. I'm obviously missing an understanding somewhere. When I now 
try to navigate to the web-console, I get :


  | type Status report (HTTP error 403)
  | 
  | message Configuration error: Cannot perform access control without an 
authenticated principal
  | 
  | description Access to the specified resource (Configuration error: Cannot 
perform access control without an authenticated principal) has been forbidden.
  | 

Now I guess I was expecting some magic login dialog box to appear. What else do 
I have to do to make this happen?\

Any help much appreciated,
Tim


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911941#3911941

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911941


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Problems with JNP: Class not Found Exception

2005-12-10 Thread martin_guth
Hi,

I'm using JBoss 4.0.3SP1 with ObjectWeb Lomboz Eclipse 3.1 . 

props.put(InitialContext.INITIAL_CONTEXT_FACTORY,
  | "org.jnp.interfaces.NamingContextFactory");
  | props.put(InitialContext.PROVIDER_URL, 
  |   "jnp://127.0.0.1:1099");

This code excerpt leads to the following exception:

javax.naming.NoInitialContextException: Cannot instantiate class: 
org.jnp.interfaces.NamingContextFactory [Root exception is 
java.lang.ClassNotFoundException: org.jnp.interfaces.NamingContextFactory]
at javax.naming.spi.NamingManager.getInitialContext(Unknown Source)
at javax.naming.InitialContext.getDefaultInitCtx(Unknown Source)
at javax.naming.InitialContext.init(Unknown Source)
at javax.naming.InitialContext.(Unknown Source)
at 
statelessBeanClient.SessionBeantestKlasse.getContext(SessionBeantestKlasse.java:28)




I've already searched for a solution in the forums. The solution provided was 
to include te files jnp-client.jar, jboss-client.jar and  jboss-j2ee.jar into 
the classpath. However, after having done this, the exception continues to 
occur. 

Thanks in advance for your advice

Martin Guth 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911936#3911936

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911936


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Simultaneous execution of Fork children

2005-12-10 Thread RAlfoeldi
Koen,

I don't believe this is a reason to ditch jBPM :-) It just helps to know the 
limitations of the tools you're using.

It would however be interesting to know if the jBPM Team accepts true 
concurrency as a problem. I'm not asking for a solution right now, I just want 
to know your position.

JMS and MDBs will not solve all problems connected to this topic. (I can 
provide a few examples if needed, but there are obvious ones in this thread 
already.)

And if we're strechting jBPM (or maybe Hibernate) to the limit, hey it's 
positive that we can even discuss this problem. I'm hooking up with a leagcy 
system that doesn't even support transactions in some cases. No transactions, 
no problems... except for the occasionally lost document :-)

Now we know the limits and will work with what we've got (at least I will).

Have a nice "3. Advent" (any politically correct Americans in this forum? Then 
sorry. Happy "two weeks before winter holiday weekend")

Rainer



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911935#3911935

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911935


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: strange problem with Servlet.service() exception

2005-12-10 Thread Zealot
I've changed jboss-seam.jar to the last from CVS and my application start 
crushing after I add items to the "user cart"
It was working well before changing.



@Stateful
  | @Name("productOrdering")
  | @Interceptor(SeamInterceptor.class)
  | @Intercept(ALWAYS)
  | @Cache(value=NoPassivationCache.class)
  | //@Conversational(ifNotBegunOutcome="main")
  | @LoggedIn
  | public class ProductOrderingAction implements ProductOrdering, Serializable 
{
  | 
  | 
  | 
  | public String addToCart() {
  | if (products == null) {
  | log.info("products null");
  | return null;
  | }
  | for (SelectableItem item: products) {
  | if (item.getSelected()) {
  | item.setSelected(false);
  | cartService.addProduct(item.getItem(), new Double(1));
  | log.info("1 a");
  | }
  | }
  | return null;
  | }
  | 

cart bean

@Stateful
  | @Name("cartService")
  | @Interceptor(SeamInterceptor.class)
  | @Intercept(ALWAYS)
  | @Cache(value=NoPassivationCache.class) 
  | //@Conversational(ifNotBegunOutcome="main")
  | @Scope(SESSION)
  | @LoggedIn
  | public class CartAction implements Cart, Serializable {
  | 
  | ..
  | 
  | public void addProduct(SiteProduct product, Double quantity) {
  | log.info("??? ? ??? ??");
  | for (SelectableItem item: cart) {
  | log.info("1");
  | if 
(product.getId().equals(item.getItem().getSiteProduct().getId())) {
  | item.getItem().addQuantity(quantity);
  | log.info("2");
  | return;
  | }
  | }
  | log.info("3");
  | CartItem line = new CartItem();
  | log.info("4");
  | line.setQuantity(quantity);
  | line.setSiteProduct(product);
  | log.info("5");
  | cart.add(new SelectableItem(line));
  | log.info("6");
  | }

One component use method from another component

but after stage 6  I have exception:

17:40:36,437 INFO  [Cart] 3
  | 17:40:36,437 INFO  [Cart] 4
  | 17:40:36,437 INFO  [Cart] 5
  | 17:40:36,437 INFO  [Cart] 6
  | 17:40:36,437 ERROR [[Faces Servlet]] Servlet.service() for servlet Faces 
Servlet threw exception
  | javax.faces.FacesException: Error calling action method of component with 
id productsFound:addSelectedAction
  | at 
org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:74)
  | at javax.faces.component.UICommand.broadcast(UICommand.java:106)
  | at 
javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:90)
  | at 
javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:164)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(LifecycleImpl.java:316)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:86)
  | at javax.faces.webapp.FacesServlet.service(FacesServlet.java:106)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at com.web.UTF8Filter.doFilter(UTF8Filter.java:31)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:122)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  | at 
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
  | at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  | at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  | at 
org.apache.catalina.connector.CoyoteAd

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

2005-12-10 Thread [EMAIL PROTECTED]
In the ejb3 distribution there are some tutorials explaining the jboss 
extensions with code examples. They are under docs/tutorial/index.html.

As shown in the Service tutorial (docs/tutorial/service) there is no 
requirement for a jboss-service.xml when deploying 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911933#3911933

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911933


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: [ServiceController] Problem starting service jboss.mq.de

2005-12-10 Thread balteo
I typed "MyTopic"

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911932#3911932

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911932


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - JBoss Portal 2.2 RC2 Released

2005-12-10 Thread [EMAIL PROTECTED]
The JBoss Portal Team is very proud to provide the JBoss Portal 2.2 Release 
Candidate 2.

It includes some bug fixes and the portal has been certified against the 
portlet JSR 168 TCK.

The files are available on sourceforge :

http://sourceforge.net/project/showfiles.php?group_id=22866&package_id=84509&release_id=376713

The documentation is also viewable online :

http://www.jboss.com/products/jbossportal/docs


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911931#3911931

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911931


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Simultaneous execution of Fork children

2005-12-10 Thread sforema
jBPM isn't a jBoss solution. It should work outside the context of a J2EE 
engine. How are you going to provide a BAM solution automatically if it doesn't 
save state for you...

I think we will agree to disagree. I am going to create my ForkAsync and be 
done...

Sean

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911930#3911930

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911930


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - EJB 3.0: annotation processing factories

2005-12-10 Thread yantriki
Can anyone tell me which EJB 3.0 jar files contain the annotation processing 
factories for EJB 3.0 and JBoss extension.
You input much appreciated.
Regards

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911929#3911929

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911929


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Problems with StrutsBridge

2005-12-10 Thread stucairns
I think you're missing the following line from your jboss_portlet.xml  Just 
paste it in and all will work Hopefully ;)

StrutsPortlet


Stu.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911927#3911927

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911927


---
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=7637&alloc_id=16865&op=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: eclipse Jboss IDE + ejb3.0 --> annotation pop-up window

2005-12-10 Thread yantriki
To get the annotation to work, you need JdtApt for annotation processing. Which 
you can install from:

http://www.eclipse.org/jdt/apt/JdtAptUpdateSite

Then in the Project->Properties expand Java Compiler and Annotation 
Processor->Factory Path. Now you need to add the EJB 3.0 annotation processing 
factory jars. Once you have added the appropriate libraries, the annotations 
should work. Please note that I have not done it only read it somewhere on the 
web.

Now can anyone tell me which JBoss jar file contains EJB 3.0 annotation 
processing factories?


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911926#3911926

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911926


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Simultaneous execution of Fork children

2005-12-10 Thread [EMAIL PROTECTED]
Sean, 

As stated multiple times, you should obtain the async behaviour as it is 
specified in multiple good books on integration. Use asynchronous messaging, 
use JMS. There is a simple mechanism of async behaviour included out of the 
box. This is indeed not sufficient for real concurrent behaviour. But there is 
absolutely no need to mess with the transactional alignment of the engine 
execution algorithm : send a message to a queue when entering a state, consume 
it in an MDB, have the MDB signal the token to move it out from the state when 
the work is done. The database will synchronize acces and make sure there is no 
inconsistency. All other solutions are awkward, cumbersome or whatever else you 
may call them.

Regards,
Koen

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911923#3911923

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911923


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: web based GPD

2005-12-10 Thread nafisehasani
the main question is that whats your idea about developing a web based GPD ?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911922#3911922

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911922


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Simultaneous execution of Fork children

2005-12-10 Thread sforema
I think there are two uses of jBPM.

The traditional use is a long transaction where multiple nodes occur within one 
transaction. I see the validity of this, but this isn't the only use for jBPM. 

The second use for jBPM is to save state when each node is complete. Yes, this 
means the node is doing stuff with the transaction, but this is what I 
personally wanted from the get go. Without this, you will be UNABLE to monitor 
jBPM processes externally because the results are in memory until committed to 
the database.

Without this second solution, jBPM will never be able to handle asynchronous 
processing. I have essentially been hacking jBPM to do this and I am about 
finished.

There are obviously others that want this functionality as well. My coworkers 
were a bit dumbfounded to discover I had to do this manually. You may say that 
this makes it flexible. I say it makes it cumbersome.

By saying use two is invalid, I think you are turning people away from a valid 
use of the process engine. To do this, you simply need to add three nodes (at a 
minimum): StateAsync, ForkAsync, JoinAsync. This does not break jBPM. It just 
provides a different use where the nodes themselves do work with the 
jBPMSession.

Sean

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911921#3911921

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911921


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: web based GPD

2005-12-10 Thread nafisehasani
after all , I think if you prepare what the business really want you will be 
the winner ! if a  task can be done in a day why it should be done in  5 days ? 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911920#3911920

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911920


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Simultaneous execution of Fork children

2005-12-10 Thread [EMAIL PROTECTED]
Well this is the problem. You cannot have concurrent updates of 
processinstances, so you will always have to lock them. This is true in normal 
concurrent programming as well. If one thread updates the process context and 
doesn't want the other thread to mess up his updates it has to use a monitor 
that prevents the other thread from updating the process context (the 
synchronized block in Java). In our case the process context (processinstance) 
is in the database and we use regular database locking techniques to obtain the 
isolation (lockProcessInstance). If you do need something else, I would 
conclude jBPM is not the best solution.

Regards,
Koen

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911919#3911919

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911919


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - Configuration JBOSS IDE with Hibernate

2005-12-10 Thread russray
I am using the latest version of JBOSS IDE with Hibernate.  I am working 
through the DEMOs trying to configure Hibernate to work with MySQL.  It appears 
everything is working to a point.  When I attempt in creating a Session Factory 
from the Hibernate Configuration window, I receive the below error:


  | org.hibernate.MappingException: Resource: 
com\hibernate\test\db\Catalog.hbm.xml not found
  | at org.hibernate.cfg.Configuration.addResource(Configuration.java:470)
  | at 
org.hibernate.cfg.Configuration.parseMappingElement(Configuration.java:1414)
  | at 
org.hibernate.cfg.Configuration.parseSessionFactory(Configuration.java:1382)
  | at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1363)
  | at org.hibernate.cfg.Configuration.doConfigure(Configuration.java:1339)
  | at org.hibernate.cfg.Configuration.configure(Configuration.java:1293)
  | at org.hibernate.console.ConsoleConfiguration.loadConfigurationXML(Unknown 
Source)
  | at org.hibernate.console.ConsoleConfiguration.access$0(Unknown Source)
  | at org.hibernate.console.ConsoleConfiguration$1.execute(Unknown Source)
  | at org.hibernate.console.execution.DefaultExecutionContext.execute(Unknown 
Source)
  | at org.hibernate.console.ConsoleConfiguration.buildWith(Unknown Source)
  | at org.hibernate.console.ConsoleConfiguration.build(Unknown Source)
  | at 
org.hibernate.eclipse.console.workbench.ConsoleConfigurationWorkbenchAdapter.getChildren(Unknown
 Source)
  | at 
org.hibernate.eclipse.console.workbench.BasicWorkbenchAdapter.fetchDeferredChildren(Unknown
 Source)
  | at 
org.eclipse.ui.progress.DeferredTreeContentManager$1.run(DeferredTreeContentManager.java:192)
  | at org.eclipse.core.internal.jobs.Worker.run(Worker.java:76)
  | 

I have the mapping file (Catalog.hbm.xml) located in the src portion of the 
project under the said package.  What am I doing wrong?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911918#3911918

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911918


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: web based GPD

2005-12-10 Thread RAlfoeldi
Never, ever tell the business side something is easy or can be done in an hour. 
Everything MUST take at least 5 days.

Then, and only then, does the business side think through the consequences of 
any change requests and if they still want it, well... maybe they can get it a 
bit cheaper.

I'm (only) half joking. Anything done on an impulse will lead to chaos and 
nobody is going to convince me that changes to business processes(hello!? 
oragnisational changes!) have to be done online. (We're talking direct changes 
to a production system here, not changes with proper deployment cycles - 
staging, testing, production, right?)

The problem is that the moment the business side knows something is possible 
you hardly stand a chance of preventing them from using it.

But if something goes wrong, anything, no matter what. Who's fault is it? 
...ours. From the point of view of an end user that is ok. An IT System doesn't 
work as expected so of course the IT guys are to blame.

Just my 5 cents.

Greetings

Rainer

P.S.: Thats the way it should be. In reality I always - sooner or later - make 
the mistake and let out the secrets...
P.P.S.: To any potential future employer: this is of course only parody :-)

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911917#3911917

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911917


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Access to servlet with '/servlet/' in URL gives Error 40

2005-12-10 Thread alexeit
"alexeit" wrote : I am newbie in JBoss. I'm developin the simple servlets. When 
I describe them in web.xml, everything is OK. However, when I try to call a 
servlet which is not mentioned in web.xml like this:
  | http://localhost:8080/servlet/TestServlet, I get 404 error.
  | 
  | JBoss 4.0.3SP1
  | WinXP
  | JDK 1.5

I found the answer here: 
http://tomcat.apache.org/tomcat-5.5-doc/RELEASE-NOTES.txt, part 'Enabling 
invoker servlet' and can now access servlet with 'servlet' in URL

Alexei


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911916#3911916

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911916


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: web based GPD

2005-12-10 Thread nafisehasani
ok , I said that if a person understand the concepts of process management and 
also know the tool , it is rarely happens that she/he screwed the 
organizational  processes and I think it is not  Hilarious ;-)
so let me know what is the meaning of on demand business ?


View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911915#3911915

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911915


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Ronald sells himself high (was Re: web based GPD)

2005-12-10 Thread [EMAIL PROTECTED]
Hilarious!

BTW, I don't think Ronald is talking of expertise with the tools, but the 
underlying organizational procedure.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911914#3911914

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911914


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: web based GPD

2005-12-10 Thread nafisehasani
my turn now !
Imagine that the manager knows the process of his company and can change it on 
demand and totaly screws it up unless she/he was educated for working with your 
tool ;-) 

actually in a company you can have an expert for working with such tools (we 
can educate one of them to work with GPD so she/he will be an expert on GPD ! ) 
and nothing got screwed .

BTW:
-I know this feature is not in priority list
-there is no need fo fat changes because a web based GPD is realy an indepndent 
module form the jbpm.
-if someone (you ! ) want to do it how much mony does it cost for me ?   
   



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911911#3911911

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911911


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: web based GPD

2005-12-10 Thread kukeltje
Ok... my turn 

Imagine that the manager knows the process of his company and can change it on 
demand and totaly screws it up;-)

And as a matter of fact I am not joking. We have at the company I work for have 
a tool to only draw the internal processes and manually at the values of kpi's. 
It's often screwed up because someone just changes it without detailed knowledge

btwe, you are right, 37 developers can do that if e.g.:
- it is on the priority list (file a jira issue and get others to vote)
- no other work needs to be done (fat change :-) )
- someone (me?) gets payed to do it :-)
- 



View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911909#3911909

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911909


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Prioritization

2005-12-10 Thread kukeltje
Priorities are not neccesarily controled by an actor. They can be set anywhere 
by any code. Is that what you need? 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911908#3911908

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911908


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: javax.faces.FacesException: Error calling action method

2005-12-10 Thread kukeltje
do you have required fields that are not filled in?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911907#3911907

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911907


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Where is the parseFromResource method in the org.jbpm.jp

2005-12-10 Thread kukeltje
Please use the search functionality. Surprisingly you get two results:

http://www.jboss.org/index.html?module=bb&op=viewtopic&t=67328

and 

http://www.jboss.org/index.html?module=bb&op=viewtopic&t=70202

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911906#3911906

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911906


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: web based GPD

2005-12-10 Thread nafisehasani
Imagine that the manager knows  the process of his company and can change it on 
demand ;-) 

I agree with you that working with your GPD is realy easier and smarter  than 
droflo but you know , I think it's worth developing a web based GPD .

37 developers can do that   ;-) 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911905#3911905

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911905


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: web based GPD

2005-12-10 Thread kukeltje
Imagine that the manager knows the process of his company ;-)

Personally I think the advantage of a web based designer is not that big. 
Droflo is not bad, but the ease with which you develop processes can not be 
compared to jBPM GPD. 

That does not mean a web based GPD is not interesting and that we do not want 
to have one. It's just not on the roadmap.

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911904#3911904

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911904


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Seam on JBoss 5.0 alpha

2005-12-10 Thread tblachowicz
Hi,

I tried to run Seam's "Registration" demo application on JBoss 5.0 alpha (build 
from sources, form HEAD). I know that JBoss 4.0.3 is recommended in the 
tutorial, but I was just curious ;-)

Unfortunatelly I got error like that.


  | 09:21:42,312 WARN  [ServiceController] Problem creating service 
jboss.j2ee:service=EJB3,module=jboss-seam-registration.ejb3
  | java.lang.TypeNotPresentException: Type javax.ejb.Interceptor not present
  | at 
sun.reflect.generics.factory.CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:98)
  | at 
sun.reflect.generics.visitor.Reifier.visitClassTypeSignature(Reifier.java:107)
  | at 
sun.reflect.generics.tree.ClassTypeSignature.accept(ClassTypeSignature.java:31)
  | ...
  | 

  | Caused by: java.lang.ClassNotFoundException: No ClassLoaders found for: 
javax.ejb.Interceptor
  | at org.jboss.mx.loading.LoadMgr3.beginLoadTask(LoadMgr3.java:306)
  | at 
org.jboss.mx.loading.UnifiedClassLoader.loadClassImpl(UnifiedClassLoader.java:266)
  | at 
org.jboss.mx.loading.RepositoryClassLoader.loadClass(RepositoryClassLoader.java:393)
  | 

Could you help me with this issue?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911903#3911903

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911903


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Access to servlet with '/servlet/' in URL gives Error 404

2005-12-10 Thread alexeit
I am newbie in JBoss. I'm developin the simple servlets. When I describe them 
in web.xml, everything is OK. However, when I try to call a servlet which is 
not mentioned in web.xml like this:
http://localhost:8080/servlet/TestServlet, I get 404 error.

Any help will be greatly appreciated.

Thanks in advance,
Alexei

JBoss 4.0.3SP1
WinXP
JDK 1.5

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911902#3911902

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911902


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: servlet mapping - invoker servlet - executing anonymous

2005-12-10 Thread alexeit
I am newbie in JBoss I have the same version as yours and can't invoke 
anonymous servlets like
localhost:8000/servlet/TestServlet

Why do you use mapping in web.xml instead of simple '/servlet/' in URL

Thanks in advance
Alexei 

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911901#3911901

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911901


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: CVS Noob question

2005-12-10 Thread marius.oancea
Gavin, Thomas maybe we should make a nightly build downloadable ? Or is bad 
idea?

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911900#3911900

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911900


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: CVS Noob question

2005-12-10 Thread marius.oancea
Sent

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911898#3911898

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911898


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - web based GPD

2005-12-10 Thread nafisehasani
Hi 
Is there any roadmap for developing a web based GPD ?
for exmple openwfe has a web based graphical process designer named droflo and 
I think it is a really good advantage , imagine that a manager can change the 
flow of his company in a web based environment !  

View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911897#3911897

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911897


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Simultaneous execution of Fork children

2005-12-10 Thread RAlfoeldi
@Tom,

Sean has a valid point. I woulnd't be able to use his solution - if it is a 
solution, but that doesn't change the fact the he's trying to solve a real 
problem.

I've linked to my concurrency post 3-4 times in this thread (I wouldn't do it 
again :-), but my impression is:

- lock on ProcessInstance: everythings is fine, but no concurrency
- lock on TokenInstance (or not at all) and a Join MIGHT work, but there is no 
guarantee for that as Sean traced (Due to concurrent changes in the Tokens.)

This would mean that jBPM cannot execute Tokens concurrently. (Even with 
messaging, etc.)

@Alex,

a J2EE spec conform solution would be very much appreciated. Sean approach 
wouldn't work in an app server.

Greetings

Rainer






View the original post : 
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3911896#3911896

Reply to the post : 
http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=3911896


---
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=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user