[JBoss-user] [JBoss jBPM] - Re: getGroupTaskList not returning task for user assigned ta

2006-05-10 Thread kukeltje
the javadoc is kind of not completely clear (afaik) . It should just be the 
grouplist. The personal tasks is a diferent method. 

Also the varablenames in the whole thing of group/pooledactor/etc.. is kind of 
mixed (imho) I'll try to make a jira issue for this to clear things up a little.



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: create new users in jbpm

2006-05-10 Thread medjbpm
hi 
to modify user 
you can make your change in jbpm.3.1/src/resources/hsqldb/identity.db.xml
and deploy jbpm
regard

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - name attribute of mbean JNDIBINDINGServiceMgr?

2006-05-10 Thread nancy.aggarwal
Hi,

I want to bind some String to JNDI and in jboss naming tutorial I found example 
3.5.1 JNDI Binding Manager:


  | 
  | http://www.w3.org/2001/XMLSchema-instance";
  | xmlns:jndi="urn:jboss:jndi-binding-service"
  | xs:schemaLocation="urn:jboss:jndi-binding-service 
resource:jndi-binding-service_1_
  | 
  | Hello, JNDI!
  | 
  | 
  | 
  | 
  | 

I placed this  code in jboss-service.xml.But it is unable to configure service

Why?What should be given in name attribute.I changed name attribute to



But same problem arises.Can someone tell what is the value of name attribute?

12:14:30,828 INFO  [ServiceConfigurator] Problem configuring service 
jboss.tests:name=example1
  | org.jboss.xb.binding.JBossXBException: Failed to parse source: null
  | at 
org.jboss.xb.binding.parser.sax.SaxJBossXBParser.parse(SaxJBossXBParser.java:154)
  | at 
org.jboss.xb.binding.UnmarshallerImpl.unmarshal(UnmarshallerImpl.java:141)
  | at 
org.jboss.system.ServiceConfigurator.parseJbxbSerialData(ServiceConfigurator.java:643)
  | at 
org.jboss.system.ServiceConfigurator.configure(ServiceConfigurator.java:327)
  | at 
org.jboss.system.ServiceConfigurator.internalInstall(ServiceConfigurator.java:460)

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - getGroupTaskList not returning task for user assigned tasks

2006-05-10 Thread hosierdm
I'm trying to play with the Identity module by assigning tasks to groups in my 
process definition.  I modified the webapp to assign a task to a specific user 
after they click on the link to start the task.  I initially changed the 
getTaskInstances() method to read as follows:
IdentitySession idSession = new IdentitySession(jbpmContext.getSession());
  | User user = idSession.getUserByName(userBean.getUserName());
  | Set memberships = user.getMemberships();
  | ArrayList userAndGroups = new ArrayList();
  | userAndGroups.add(userBean.getUserName());
  | for (Iterator it = memberships.iterator(); it.hasNext(); )
  | {
  |   Membership membership = (Membership)it.next();
  |   Group group = membership.getGroup();
  |   userAndGroups.add(group.getName());
  | }
  | System.out.println("LOOKING FOR TASKS FOR ACTORIDS: " + userAndGroups);
  | return jbpmContext.getGroupTaskList(userAndGroups);
  | 

The javadoc for the getGroupTaskList() method states:
anonymous wrote : Typically, for an actor, his/her personal actorId plus all 
the actorIds representing the groups that person belongs to form the actorIds.

I can see a task assigned to a certain group when logged in as every member of 
that group.  However, when I start the task and assign it to the specific user, 
even that specific user does not get that task in his list (i.e. 
getGroupTaskList() does not appear to return tasks for specific users, contrary 
to the javadoc).  Changing the last line of the above code by adding the 
following lines gives me what I want:
List groupTasks = jbpmContext.getGroupTaskList(userAndGroups);
  | 
groupTasks.addAll(taskMgmtSession.findTaskInstances(userBean.getUserName()));
  | return groupTasks;
  | 
Is the javadoc mistaken in its description of the getGroupTaskList() method?  
Am I misreading it?  Is there a bug? Or is it none of the above?  I did a 
search for getGroupTaskList both here and in JIRA and was not able to find any 
mention of any problems.  Thanks.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - How to set binding ordering?

2006-05-10 Thread nancy.aggarwal
Hi,

I am new to JNDI.I want to bind hibernate to JBOSS.I created a 
hibernate-service.xml having following content:

  | 
  |   jdbc/mysql org.hibernate.dialect.MySQLDialect testingcreate-drop true 


If I put this xml while running JBOSS,I can lookup java:/testing 
successfully.But if restart jboss(having this xml already),it is unable to 
start service jboss.har:service=Hibernate

11:59:26,437 WARN  [ServiceController] Problem starting service 
jboss.har:service=Hibernate
org.hibernate.HibernateException: Could not find datasource

But I can lookup the specified datasource with 'java:jdbc/mysql'.I think 
problem is that jboss goes to bind hibernate binding first and when it tries to 
find database binding,it cannot find.

Is there anyway so that my datasource get binded first and then my hibernate 
binding should be done by JBOSS so that Hibenate binding can lookup db binding.



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Using a PrePersist test to set ID variable if not set.

2006-05-10 Thread voidhawc
Hi, 

This is also at

http://opensource.atlassian.com/projects/hibernate/browse/EJB-46

But I'm experiencing the same thing in 4.0.3SP1 and 4.0.4CR2

***

Hibernate does property validation such as not null checking before it does the 
EJB3 callback to prepersist/preupdate. I'm not sure if there's a good reason 
for this, but I think it would be particularly convenient if this behavior was 
reversed. IMHO it seems to better fit the semantics of the PRE callbacks, and 
it would allow callbacks to make modifications to the objects before they are 
persisted or updated -- modifications that might in turn effect the property 
validation Hibernate is doing.

The "audit" example in the entity manager documentation does make changes to 
the object. What if these changes had effected the property validation done 
before the callback occurred? What if the object was in an invalid state before 
the callback, but a valid state after the callback? The latter case is what I 
think would be conveniently handled if hibernate did its property validation 
after prepersist/preupdate.

Just two cents worth, obviously there are workarounds. This EJB3 stuff is 
looking great.

Ryan

P.S. This might also allow those of us who assign our own IDs to objects to do 
so automatically within a callback.



Any ideas or should I just post it to JIRA

Thanks, Grant

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - SeamTest hangs when run via ant with transaction timeouts.

2006-05-10 Thread markfrench
Hi,

Has anybody experienced a problem where the running SeamTests via ant results 
in transaction timeouts? The message I see is

   [testng] WARN  11-05 16:05:52,197 (TransactionImpl.java:timedOut:1130)  -Tran
saction TransactionImpl:XidImpl[FormatId=257, GlobalId=null:1147327249881/1, Bra
nchQual=null:1147327249881, localId=0:1] timed out. status=STATUS_ACTIVE

Cheers

Mark

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Re: WARN [NamingService] Context.PROVIDER_URL in server jnd

2006-05-10 Thread nohwal
Thanks KiranI suspected that I need to specify a separate jndi.properties 
file because if you notice the comment in the NamingService class it says, 

"Context.PROVIDER_URL in server jndi.properties."

So it says that the file present in /conf is a server side jndi.properties 
(whatever it means). And the error is certainly because of specifying the url 
in /conf/jndi.properties. This is evident by taking a look at 
org.jboss.naming.NamingService class code.

BTW, a few more interesting observations:

a) If I specify the url as "jnp://localhost:1099" in /conf/jndi.properties file 
then I receive a ClassCastException in JBoss while trying to instantiate 
NamingService.

b) I have my own properties file read/write mechanism built in my application. 
So I used my this properties file to specify these values and changed code to 
create InitialContext using these values from the properties file.

anyways, thanks. My application would still work though I'd love to find out 
the reasons for the warning.



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: JBoss throwing org.jboss.cache.lock.TimeoutException: re

2006-05-10 Thread [EMAIL PROTECTED]
Did you upgrade JBossCache in both servers? Can you also upgrade the jgroups 
version that came with it?

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: Scheduler Problem in Clustered Environment

2006-05-10 Thread [EMAIL PROTECTED]
We don't have clustered MBean service yet. So you will need to set them 
individually.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: Clustering and UDP traffic (and errors) in non-clustered

2006-05-10 Thread [EMAIL PROTECTED]
We don't have a switch to turn clustering on/off. Best way is to build from 
"default" and then add the service libarary that you need.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Http Session Timeout does not work properly

2006-05-10 Thread erikture
Hello!

I am having exactly the same problem.
My sessions are timing out as expected when testing on WinXP but not in 
production on Suse Linux 9.

/Erik

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Thread creation by TreeCache

2006-05-10 Thread [EMAIL PROTECTED]
JBossCache does use a single thread for eviction timer (only if eviction is 
configured). However, it does not access the JTA transaction though. So I don't 
think your problem is caused by that. And I dont think this is relevant to JEE 
discussion.


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Async but not Parallel

2006-05-10 Thread kukeltje
I think you are correct... good searching :-)

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How to define customized web pages

2006-05-10 Thread kukeltje
If done 2 once myself in 3.1 with jsf, but you have to change some fundamental 
things. e.g. returning the node name instead of 'home' as the outcome of some 
methods, create the corresponding jsf config outcomes, but to have something 
customized *in* these pages, you have to change the taskvariable suff to return 
a hashmap instead of a list.

It worked for me, but threw it away in favour of going for the 3.2 approach

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: could not register synchronization with JTA TransactionM

2006-05-10 Thread [EMAIL PROTECTED]
fixed in next release.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Unchecked Exception break stateful session bean via EJBN

2006-05-10 Thread [EMAIL PROTECTED]
@ApplicationException
public MyRuntimeException extends RuntimeException {}

For the persistence exceptions, yes, this sucks, but you can fix it within 
ejb-jar.xml with the application-exception element.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: jboss 4.0.3 jboss portal 2.2.1 jdk1.5.04 on xp =>locale

2006-05-10 Thread hanzpk
oh yah the question is what could be the reason?
the configuration of embedded catalina?

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: jboss 4.0.3 jboss portal 2.2.1

2006-05-10 Thread hanzpk
this topic has been abandoned by me
mod please delete, thank you

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Seam JSR168 Portlet and EJB3 and Facelets

2006-05-10 Thread evanzeng
Is it possible to develop jsr168 portlet with Seam using EJB3 and Facelets?

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: EJB client cannot connect: [SocketServerInvoker] Failed

2006-05-10 Thread kindy_wu
it's great ,probem is solved by add jbss-serialization.jar to client path.a lot 
of thanks

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How dose the jBPM work with struts framework

2006-05-10 Thread cherdpop
thanks a lot  : )

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: JSR181 web service deployment error.

2006-05-10 Thread symmetrysolutions
I am getting the same error while trying to start a JSR-181 annotated Web 
service.

20:51:15,203 ERROR [MainDeployer] Could not create deployment: file:/C:/jboss-4.
0.4.CR2/server/default/deploy/statsws.war
java.lang.ArrayIndexOutOfBoundsException: 0
at org.jboss.ws.metadata.AnnotationsMetaDataBuilder.getWebParamAnnotatio
n(AnnotationsMetaDataBuilder.java:310)
at org.jboss.ws.metadata.AnnotationsMetaDataBuilder.processWebMethod(Ann
otationsMetaDataBuilder.java:388)
at org.jboss.ws.metadata.AnnotationsMetaDataBuilder.setupEndpointFromAnn
otations(AnnotationsMetaDataBuilder.java:153)
at org.jboss.ws.metadata.AnnotationsMetaDataBuilderJSE.buildMetaData(Ann
otationsMetaDataBuilderJSE.java:82)
at org.jboss.ws.server.WebServiceDeployerJSE.createWebServicesMetaData(W
ebServiceDeployerJSE.java:194)
at org.jboss.ws.server.WebServiceDeployer.create(WebServiceDeployer.java
:103)
at org.jboss.ws.server.WebServiceDeployerJSE.create(WebServiceDeployerJS
E.java:65)

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: CMSPortlet problem

2006-05-10 Thread ericmacau
Thanks for your great efford !!

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How to define a

2006-05-10 Thread hosierdm
As far as I know, right now you cannot specify any details of a sub-process in 
the Process State using the graphical components.  For example, you cannot 
specify which process the process state is linked to using any graphical 
dialogs.  The only way to do it is to manually edit the source, which is 
available in the Source tab in the designer.  So create all your sub-processes 
in the designer, add a process state for each sub-process in your super-process 
in the designer, and then edit the source XML for the super-process to specify 
which process goes with each process state...in the designer.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - SOLVED! (was Re: NullPointerException - org.jboss.seam.conte

2006-05-10 Thread acruise
OK, I've gotten past this issue.  MyFaces was loading my faces-config.xml 
twice, the first time because I had specified the following in web.xml:

  | 
  | javax.faces.CONFIG_FILES
  | /WEB-INF/faces-config.xml
  | 
  | 
And the second thanks to the usual automatic lookup of 
/WEB-INF/faces-config.xml.

I'd imagine this is a bug in MyFaces; IMO it shouldn't try to do the automatic 
lookup if the same resource has already been specified in a CONFIG_FILES 
context-param.

I removed the CONFIG_FILES context-param and It Just Worked(tm)

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Async but not Parallel

2006-05-10 Thread jemodurn
I think my problem is related to this bug

http://jira.jboss.com/jira/browse/JBPM-633 

so JMS is the only solution I see for now.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: how do you undeploy processdefinition?

2006-05-10 Thread greg823
Thank you. It worked.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: CMSPortlet problem

2006-05-10 Thread [EMAIL PROTECTED]
Thanks. We'll be redoing the management ui for 2.6 - a big push for improved 
usability.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: ActionHandler configuration

2006-05-10 Thread SaravananB
This is exactly what I want to avoid. In this case the action handler is 
dependent on the specific city_param context variable. This prevents me from 
using the same action handler in another step where I want to use a different 
context variable/constant for the city property.


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How to define a sub-process

2006-05-10 Thread flawlor
The questions were about how to define the process and sub-processes IN THE 
DESIGNER.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: NullPointerException - rg.jboss.seam.contexts.PageContex

2006-05-10 Thread acruise
I modified my copy of Seam to throw, catch and log an exception when new 
SeamPhaseListeners are created; here's what it looks like:


  | 16:46:06,687 INFO  [FacesConfigurator] Reading standard config 
org/apache/myfaces/resource/standard-faces-config.xml
  | 16:46:06,859 INFO  [FacesConfigurator] Reading config 
jar:file:/C:/opt/java/jboss-4.0.4.CR2/server/default/tmp/deploy/tmp54830dvc.ear-contents/jboss-seam-ui.jar!/META-INF/faces-config.xml
  | 16:46:06,906 INFO  [FacesConfigurator] Reading config 
jar:file:/C:/opt/java/jboss-4.0.4.CR2/server/default/tmp/deploy/tmp54830dvc.ear-contents/jboss-seam.jar!/META-INF/faces-config.xml
  | 16:46:06,937 INFO  [FacesConfigurator] Reading config 
jar:file:/C:/opt/java/jboss-4.0.4.CR2/server/default/tmp/deploy/tmp54830dvc.ear-contents/dvc-exp.war/WEB-INF/lib/jboss-seam-ui.jar!/META-INF/faces-config.xml
  | 16:46:06,984 INFO  [FacesConfigurator] Reading config 
jar:file:/C:/opt/java/jboss-4.0.4.CR2/server/default/tmp/deploy/tmp54830dvc.ear-contents/dvc-exp.war/WEB-INF/lib/jboss-seam.jar!/META-INF/faces-config.xml
  | 16:46:07,015 INFO  [FacesConfigurator] Reading config 
/WEB-INF/faces-config.xml
  | 16:46:07,062 INFO  [FacesConfigurator] Reading config 
/WEB-INF/faces-config.xml
  | 16:46:07,250 ERROR [STDERR] java.lang.RuntimeException: new 
SeamPhaseListener()
  | 16:46:07,250 ERROR [STDERR] at 
org.jboss.seam.jsf.SeamPhaseListener.(SeamPhaseListener.java:51)
  | 16:46:07,250 ERROR [STDERR] at 
sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
  | 16:46:07,250 ERROR [STDERR] at 
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
  | 16:46:07,250 ERROR [STDERR] at 
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
  | 16:46:07,250 ERROR [STDERR] at 
java.lang.reflect.Constructor.newInstance(Constructor.java:494)
  | 16:46:07,250 ERROR [STDERR] at 
java.lang.Class.newInstance0(Class.java:350)
  | 16:46:07,250 ERROR [STDERR] at 
java.lang.Class.newInstance(Class.java:303)
  | 16:46:07,250 ERROR [STDERR] at 
org.apache.myfaces.util.ClassUtils.newInstance(ClassUtils.java:274)
  | 16:46:07,250 ERROR [STDERR] at 
org.apache.myfaces.util.ClassUtils.newInstance(ClassUtils.java:265)
  | 16:46:07,250 ERROR [STDERR] at 
org.apache.myfaces.config.FacesConfigurator.configureLifecycle(FacesConfigurator.java:622)
  | 16:46:07,250 ERROR [STDERR] at 
org.apache.myfaces.config.FacesConfigurator.configure(FacesConfigurator.java:133)
  | 16:46:07,250 ERROR [STDERR] at 
org.apache.myfaces.webapp.StartupServletContextListener.initFaces(StartupServletContextListener.java:63)
  | 16:46:07,250 ERROR [STDERR] at 
org.apache.myfaces.webapp.StartupServletContextListener.contextInitialized(StartupServletContextListener.java:46)
  | ...
  | 

I'd guess that's what's interesting is that my /WEB-INF/faces-config.xml is 
getting read twice.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Client endpoint address

2006-05-10 Thread kcochrane
Hello,
I am currently developing an application which requires to implement endpoints 
for some services and act as clients for others. Using 4.0.4 and ws import, I 
have both client and server components running correctly. In order to get the 
client to work the value of the wsdl location had to be specified in the 
wsimport task (which ultimately gets set as the constant WSDL_LOCATION in the 
service class). The only way I could get this to work was to define this as a 
location on the file system and then modify the address element in the wsdl 
file at that location. Can it be set up so that the client application is 
provided with a url dynamically at run time and it simply looks there for the 
wsdl? I do not want to place this url in the wsimport task as that happens at 
compile time and is a different url depending on deployed and testing 
environments. It would not be so bad if the location of the wsdl file provided 
to wsimport could be relative to the root of the deployed application but it 
only seemed to work when the full path was specified.
It looks to me as if I have missed something and am not quite doing things the 
right way as this method of locating an endpoint does not seem to make a lot of 
sense.
If anyone could offer some advice on the correct way to define the url for 
locating the endpoint it would be most helpful. 


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid0709&bid&3057&dat1642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Why do all my logging messages from java.util.logging show u

2006-05-10 Thread itchytoes
Hi -- I am running jboss 4.0.4RC1, and I have some services running.  They use 
java.util.loggin, and al the logging messages show up with ERROR [STDERR] in 
the text.  I don't believe this happened in an earlier 4.0.3X version.   

Is there something I must configure to prevent this?

Thanks

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: ActionHandler configuration

2006-05-10 Thread jemodurn
If the variable is in the context, you can access it in your action handler.


public void execute(ExecutionContext context) throws Exception {
  | context.getContextInstance().setVariable("message", message);
  | city_param = (String) 
context.getContextInstance().getVariable("city_param");
  | }
  | 

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Unchecked Exception break stateful session bean via EJBN

2006-05-10 Thread ejb3workshop
I took a look at the spec. In my example i am throwing a RuntimeException.  
What makes this a System exception. Is there a way I can annotate this, to 
avoid the bean being discarded. It seems to me that there are a number of 
exceptions (EntityNotFound etc) which cause this behaviour. 

Thanks for your feedback
Alex
ejb3workshop.com

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: NullPointerException - rg.jboss.seam.contexts.PageContex

2006-05-10 Thread acruise
"acruise" wrote : "[EMAIL PROTECTED]" wrote : The problem is that two different 
SeamPhaseListeners are being registered with JSF. One is in faces-config.xml. 
I'm trying to figure out where the other one comes from.
  | I've got the identical stack trace.

A few things that may be relevant...

I'm deploying this to JBoss 4.0.4CR2 as an .ear containing a .war and two ejb 
modules. It's is a copy of the registration tutorial, modified to work with my 
own User class, except the entities and session beans are contained in separate 
ejb modules.

- the .ear contains META-INF/application.xml, which looks like this:


  | http://java.sun.com/xml/ns/javaee";
  |  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  |  xsi:schemaLocation="http://java.sun.com/xml/ns/javaee
  | http://java.sun.com/xml/ns/javaee/application_5.xsd";
  |  version="5">
  | Foo.com
  | 
  | 
  | foo.war
  | foo
  | 
  | 
  | 
  | 
  | foo-seam.jar
  | 
  | 
  | 
  | jboss-seam.jar
  | 
  | 
  | 
  | foo-entities.jar
  | 
  |   
  | 
  | 

- the first ejb module (foo-entities.jar) contains my entity beans classes and 
a persistence.xml;
- the other (foo-seam.jar) contains only RegisterAction.class, Register.class 
and the ejb-jar.xml declaring the Seam interceptor;
- the .war contains faces-config.xml, web.xml, register.jsp and registered.jsp.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: ActionHandler configuration

2006-05-10 Thread hosierdm
If you always want to pass in the variable as the value to the action handler, 
you don't even need to specify it in the configuration.  You can access your 
process variables from the ExecutionContext
city = executionContext.getVariable("city_param");

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How to define a

2006-05-10 Thread hosierdm
It does answer at least one of your questions:

"flawlor" wrote : 
  | How do you point "phase1" at its detailed process definition?
  | 


  |   
  | 
  | 
  | 
  | 
  |   
  | 

You point phase1 at its detailed process definition by using the sub-process 
element as shown above (taken from Section 9.8 in the User Guide).  Each unique 
process that is pointed to by a sub-process needs to be its own par and 
deployed separately (prior to deploying the process that references it).  I 
don't think there is a way to nest multiple process definitions in a single 
source XML.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: ActionHandler configuration

2006-05-10 Thread SaravananB
Even if I have something like,

public class MyActon implements ActionHandler {
  | 
  |String city;
  | 
  |public String getCity() {
  |   return city;
  |}
  | 
  |public void setCity(String _city) {
  |   city = _city;
  |}
  | }

How do I pass in the context variable city_param with either config-type field 
or bean?


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: 2.4.0 ALPHA: Management Portlet WSDL Exception

2006-05-10 Thread [EMAIL PROTECTED]
Glad I could help.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: NullPointerException - rg.jboss.seam.contexts.PageContex

2006-05-10 Thread acruise
"[EMAIL PROTECTED]" wrote : The problem is that two different 
SeamPhaseListeners are being registered with JSF. One is in faces-config.xml. 
I'm trying to figure out where the other one comes from.
I've got the identical stack trace.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How to define a sub-process

2006-05-10 Thread flawlor
Thanks for the pointer.

Sections 4.3.3 and 9.8 have some useful informatin on Process Composition.

However, it doesn't answer any of the questions I asked.  

Does anyone have any pointers? 

Thanks
  -- Frank

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - UserDbTest.testUser() wiped database

2006-05-10 Thread hosierdm
I'm trying to learn the Identity module, so I ran the UserDbTest.testUser() 
test case.  My hibernate config points to the actual database I'm using for 
development.  When I ran the test, I ended up with a wiped out database!  All 
my tables are gone...vanished.  Maybe the Identity DB test cases are meant to 
point to an empty database and create and clean up afterwards.  If that's the 
case, then a huge fat warning in each test class would be advised.  So is this 
normal behavior for these specific test classes?  Luckily I didn't really have 
anything too important in there.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: ActionHandler configuration

2006-05-10 Thread jemodurn
You can try to add a getter/setter for your private variables and use the 
config-type="bean"  in the action definition.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Async but not Parallel

2006-05-10 Thread jemodurn
After following the AsyncExecutionDbTest I was able to get Async execution to 
work. 
I then modify the testcase a little such that I fork out 3 async nodes and 
hoping they will run in parallel. But they run in serial.
I looked at the code for CommandExecutorThread, it seems the thread will 
consume the messages one by one. Thus the serial execution.

I created two CommandExecutorThread and hoping the thread pool will consume the 
messages in turns. But the Command Executor does not remove the message from 
the queue until it has finished executing it. The two threads simply repeats 
the message.

Can you suggest a solution to this?

Thanks.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: CMSPortlet problem

2006-05-10 Thread sitongia
I've started using 2.4 ALPHA, and this feature is in there.  I've found, since 
fixing configuration issues related to changing port number, that I am, for the 
first time, able to create new tabs, pages, portlet instances, and content, and 
associate all together via the GUI.  Nice!  :-)

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How to define a

2006-05-10 Thread hosierdm
You need to be looking at ProcessState, not SuperState.  There is an example on 
process composition in the User Guide.  Plus there are examples in the source 
code bundled with the distribution.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: 2.4.0 ALPHA: Management Portlet WSDL Exception

2006-05-10 Thread sitongia
Great, editing jboss-client.xml in that jar and removing the references to 
:8080 has fixed this.  Thanks!

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - How to define a

2006-05-10 Thread flawlor
I'm trying to figure out how to use the DESIGNER to make use of Super States.

My assumption from what little is in the user guide and elsewhere is that I 
could use SuperStates to define a high-level process, e.g.

  phase1 -> phase2 -> phase3

And then define the details of each phase.

Is the high-level definition, above, defined as one .par and then each phase as 
a separate .par?  Or what?

How do you point "phase1" at its detailed process definition?

While the user guide has some information on super states it doesn't really 
explain this either.

I'd appreciate any help,

  -- Frank

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: how do you undeploy processdefinition?

2006-05-10 Thread jemodurn
You can try this:

ProcessDefinition pd = 
jbpmContext.getGraphSession().findLatestProcessDefinition(process.getName());
  | jbpmContext.getGraphSession().deleteProcessDefinition(pd);

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Problem with Image in a Portlet

2006-05-10 Thread [EMAIL PROTECTED]
Read this: http://www.jboss.com/index.html?module=bb&op=viewtopic&t=82540

Notice how he declares defineobjects at the top. You may want to look through 
the spec. Its REALLY easy reading and will explain a lot of this to you faster 
than we can in the forums.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: 2.4.0 ALPHA: Management Portlet WSDL Exception

2006-05-10 Thread [EMAIL PROTECTED]
Oops, I meant portal-wsrp-client.jar

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Problem with Image in a Portlet

2006-05-10 Thread landinw
Thanks Roy, but how do I get my hands on the renderRequest object from within 
the jsp?  I'm getting a cannot resolve error when generating the servlet.

Please bear with me - I've been working with JBoss Portal for 2 whole days!

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Why is Designer 3.0.9 not available from eclipse update

2006-05-10 Thread [EMAIL PROTECTED]
Yes JBoss IDE 1.5.1 bundles GPD 3.0.8. That is correct. The upcoming JBoss IDE 
1.6 will be bundled with GPD 3.0.9.1. But I recommend to use the site GPD 
download if you need the latest and greatest release. 

Regards,
Koen

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: 2.4.0 ALPHA: Management Portlet WSDL Exception

2006-05-10 Thread sitongia
Actually, I was looking at the wrong file, under META-INF.  I don't have 
jboss-portal.sar/portal-wsrp-client.sar

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - EJB3Trail doesn't work ...

2006-05-10 Thread fquimbay
Greetings ...

I deploy EJB3Trail on JBoss 4.0.4CR2 and when I try to execute de stateless 
sample, I see this:


  | 17:05:42,776 ERROR [STDERR] javax.naming.NameNotFoundException: EJB3Trail 
not bound
  | 17:05:42,776 ERROR [STDERR] at 
org.jnp.server.NamingServer.getBinding(NamingServer.java:529)
  | 17:05:42,776 ERROR [STDERR] at 
org.jnp.server.NamingServer.getBinding(NamingServer.java:537)
  | 17:05:42,776 ERROR [STDERR] at 
org.jnp.server.NamingServer.getObject(NamingServer.java:543)
  | 17:05:42,776 ERROR [STDERR] at 
org.jnp.server.NamingServer.lookup(NamingServer.java:267)
  | 17:05:42,776 ERROR [STDERR] at 
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:625)
  | 17:05:42,776 ERROR [STDERR] at 
org.jnp.interfaces.NamingContext.lookup(NamingContext.java:587)
  | 17:05:42,776 ERROR [STDERR] at 
javax.naming.InitialContext.lookup(InitialContext.java:351)
  | 17:05:42,776 ERROR [STDERR] at 
org.apache.jsp.serviceobjects.slsb.calculator_jsp.jspInit(calculator_jsp.java:19)
  | 17:05:42,776 ERROR [STDERR] at 
org.apache.jasper.runtime.HttpJspBase.init(HttpJspBase.java:78)
  | 17:05:42,776 ERROR [STDERR] at 
org.apache.jasper.servlet.JspServletWrapper.getServlet(JspServletWrapper.java:155)
  | 17:05:42,776 ERROR [STDERR] at 
org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:315)
  | 17:05:42,776 ERROR [STDERR] at 
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
  | 17:05:42,776 ERROR [STDERR] at 
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
  | 17:05:42,776 ERROR [STDERR] at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
  | 17:05:42,776 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  | 17:05:42,776 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | 17:05:42,776 ERROR [STDERR] at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
  | 17:05:42,776 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | 17:05:42,776 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | 17:05:42,776 ERROR [STDERR] at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  | 17:05:42,776 ERROR [STDERR] at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  | 17:05:42,776 ERROR [STDERR] at 
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:54)
  | 17:05:42,776 ERROR [STDERR] at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:174)
  | 17:05:42,776 ERROR [STDERR] at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:432)
  | 17:05:42,791 ERROR [STDERR] at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
  | 17:05:42,791 ERROR [STDERR] at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  | 17:05:42,791 ERROR [STDERR] at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  | 17:05:42,791 ERROR [STDERR] at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  | 17:05:42,791 ERROR [STDERR] at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
  | 17:05:42,791 ERROR [STDERR] at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
  | 17:05:42,791 ERROR [STDERR] at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
  | 17:05:42,791 ERROR [STDERR] at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
  | 17:05:42,791 ERROR [STDERR] at 
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
  | 17:05:42,791 ERROR [STDERR] at java.lang.Thread.run(Thread.java:595)
  | 

and in the file "$JBOSS_HOME\server\all\log", I see:


  | 2006-05-10 16:51:48,803 DEBUG [org.jboss.mx.loading.UnifiedClassLoader] New 
jmx UCL with url null
  | 2006-05-10 16:51:48,803 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] 
setRepository, [EMAIL PROTECTED], [EMAIL PROTECTED] url=null ,addedOrder=0}
  | 2006-05-10 16:51:48,803 DEBUG [org.jboss.mx.loading.UnifiedClassLoader] New 
jmx UCL with url null
  | 2006-05-10 16:51:48,803 DEBUG [org.jboss.mx.loading.RepositoryClassLoader] 
setRepository, [EMAIL PROTECTED], [EMAIL PROTECTED] url=null ,addedOrder=0}
  | 2006-05-10 16:51:48,803 DEBUG [org.jboss.mx.loading.UnifiedClassLoader] New 
jmx UCL 

[JBoss-user] [JBoss Portal] - Re: Portlet Instance in Page problem !!!

2006-05-10 Thread [EMAIL PROTECTED]
Do you end every post with "!!!"?!!!

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Passing request paramter between page

2006-05-10 Thread [EMAIL PROTECTED]
Read the spec and see how renderParameters are passed from jsps to portlets.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: CMSPortlet problem

2006-05-10 Thread [EMAIL PROTECTED]
I'm pretty sure I only added it in 2.4.

Once 2.2 was out, only bug fixes went in, and no new features.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - how do you undeploy processdefinition?

2006-05-10 Thread greg823
Is it possible to undeploy a deployed process definition?
I tried processDefinition.removeDefinition(ctx); but it did not work. 
I would like to get rid of all versions of the process definitions previously 
deployed.


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Problem with Image in a Portlet

2006-05-10 Thread [EMAIL PROTECTED]
The portal instance is irrelevant, if you're fetching the img from your war:


  | 
  | 

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Problem with Image in a Portlet

2006-05-10 Thread landinw
I have a simple portlet that returns a jsp file with an IMG tag to display a 
jpg image.  The hope is to see the image in the portlet, but I always get the 
alt text instead.

My portal name is Jupiter and my deployed war path to the jpg is: 
WEB-INF/jsp/images/map.jpg

The html img tag line is: IMG SRC="/Jupiter/WEB-INF/jsp/images/map.jpg" 
ALT="You should see a map."

Any suggestions?

Thanks in advance...

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: 2.4.0 ALPHA: Management Portlet WSDL Exception

2006-05-10 Thread sitongia
I don't see a port specification in jboss-client.xml.  Which part of the file 
would that be in?  I had already changed default-wsrp.xml, and it still looks 
for 8080, so jboss-client.xml must be the last file to modify, but I don't see 
what to change.

I looked at other posts about 0.0.0.0, and it seems to suggest that it 
shouldn't be a problem, that it means to search on all interfaces.

==Leonard

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - ActionHandler configuration

2006-05-10 Thread SaravananB
If I have a actionhandler like this,


public class MyAction implements ActionHandler {
  |   // access specifiers can be private, default, protected or public
  |   private String city;
  |   Integer rounds;
  |   ...
  | }
  | 

I want instantiate the city property with a context variable like the following,

...
  | 
  |   #{city_param}
  |   5
  | 
  | ...
  | 

This one does not work. I'm looking for other ways to do the same.
Please help.

Thanks,


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - JBoss4.03 SP1/JMX-Console: displayMBeans_jsp ClassNotFoundEx

2006-05-10 Thread parasada
Hi,
I get the following error while logging into jmx-console. 
The log says "ClassNotFoundException" while loading displayMBeans_jsp
but I can see this class present in my JBoss under 
/jmx-console/org/apache/jsp/

I am using JBoss version 4.03 SP1

Can someone please give me some insight into when this 
occurs? 

thanks,
Praveen


Error Message seen:


HTTP Status 500 - 



type Exception report

message 

description The server encountered an internal error () that prevented it from 
fulfilling this request.

exception 

org.apache.jasper.JasperException: Unable to load class for JSP

org.apache.jasper.JspCompilationContext.load(JspCompilationContext.java:591)

org.apache.jasper.servlet.JspServletWrapper.getServlet(JspServletWrapper.java:137)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:305)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.jboss.jmx.adaptor.html.HtmlAdaptorServlet.displayMBeans(HtmlAdaptorServlet.java:169)

org.jboss.jmx.adaptor.html.HtmlAdaptorServlet.processRequest(HtmlAdaptorServlet.java:79)

org.jboss.jmx.adaptor.html.HtmlAdaptorServlet.doGet(HtmlAdaptorServlet.java:62)
javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:693)

org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:660)
org.apache.jsp.index_jsp._jspService(org.apache.jsp.index_jsp:44)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)


root cause 

java.lang.ClassNotFoundException: org.apache.jsp.displayMBeans_jsp
java.net.URLClassLoader$1.run(URLClassLoader.java:199)
java.security.AccessController.doPrivileged(Native Method)
java.net.URLClassLoader.findClass(URLClassLoader.java:187)
org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:158)
org.apache.jasper.servlet.JasperLoader.loadClass(JasperLoader.java:71)

org.apache.jasper.JspCompilationContext.load(JspCompilationContext.java:589)

org.apache.jasper.servlet.JspServletWrapper.getServlet(JspServletWrapper.java:137)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:305)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.jboss.jmx.adaptor.html.HtmlAdaptorServlet.displayMBeans(HtmlAdaptorServlet.java:169)

org.jboss.jmx.adaptor.html.HtmlAdaptorServlet.processRequest(HtmlAdaptorServlet.java:79)

org.jboss.jmx.adaptor.html.HtmlAdaptorServlet.doGet(HtmlAdaptorServlet.java:62)
javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:693)

org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:660)
org.apache.jsp.index_jsp._jspService(org.apache.jsp.index_jsp:44)
org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:322)
org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to

[JBoss-user] [JBoss Portal] - Re: 2.4.0 ALPHA: Management Portlet WSDL Exception

2006-05-10 Thread [EMAIL PROTECTED]
I don't think that you need to change jbossws14 or http-invoker. Your problem 
is more than just a change of port I think since your system is not even 
providing an IP address. The two locations where you can change the port if you 
need to are:
jboss-portal.sar/portal-wsrp.sar/default-wsrp.xml
jboss-portal.sar/portal-wsrp-client.sar/META-INF/jboss-client.xml

I think the issue comes from the fact that, in that last file, 
${jboss.bind.address} is not being resolved. This configuration aspect of the 
server will be improved at some point.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How to define customized web pages

2006-05-10 Thread flawlor
Thanks for the pointers.

Sounds like you have something coming up in 3.2.  Is there a target date for 
that?

Some possible workarounds I considered (but my jBPM understanding is still very 
basic):

1) use a simple node type like a state node to create a tasklist entry which 
has a reference to my own jsp/servlet

2) modify jBPM to allow the task node xml to contain an element specifying a 
jsp/servlet and modify jBPM web app to use that, if provided, rather than 
generate the generic page.

Do either of these workarounds sound workable or would you suggest a different 
approach?

Thanks,
  -- Frank

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Possible fix for driver class loading issue in LocalMana

2006-05-10 Thread [EMAIL PROTECTED]
I am not sure what your issue is. Your link goes nowhere as 

http://www.jboss.com/JBAS-1042 

resolves to nothing. 

What exception are you seeing? 



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: 2.4.0 ALPHA: Management Portlet WSDL Exception

2006-05-10 Thread sitongia
I changed the port number in:

jboss-portal.sar/portal-wsrp.sar/default-wsrp.xml
jbossws14.sar/META-INF/jboss-service.xml
./http-invoker.sar/META-INF/jboss-service.xml

and it is still looking for

2006-05-10 15:39:53,204 DEBUG 
[org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory] parse: 
http://0.0.0.0:8080/portal-wsrp/ServiceDescriptionService?wsdl

Where can I configure that to use port 80?

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Possible fix for driver class loading issue in LocalManagedC

2006-05-10 Thread esword
I am trying to deploy a fully isolated ear (i.e. all jars that I use are in the 
ear; no leaking of jars into the main lib directory).  However, the app uses a 
couple of datasource connections, and I am hitting a problem encountered by 
others over the years.  It is best summarized in Jira issue JBAS-1042.  The 
issue is the same in JBoss 4.0.3SP1, which is what I am using.

I figured out that the exception caused by the strange class loading behavior 
in DriverManager.getDriver() is actually only thrown the first time you  try to 
access the driver.  This is because once the driver is set in 
LocalManagedConnectionFactory.getDriver() by line 277:

  | driver = (Driver)clazz.newInstance();
  | 
it is never cleared.  So even though an exception is thrown the first time 
through because isDriverLoadedForURL(url) always returns false, the check for 
(driver!=null) at the start of the LocalManagedConnectionFactory.getDriver() 
will return the driver for all future uses.

It seems like the method should be changed in one of two ways:
1) Change line 277 to set a local Driver variable rather than the object member 
variable.  That way the member variable is only set by the isDriverLoadedForURL 
check and it will always fail (thus enforcing always going through the 
DriverManager).  Or,

2) (My preferred change) After the 3rd call to isDriverLoadedForURL, check if 
driver != null and, if so, do what DriverManager does and call 
driver.acceptsURL(url).  That way, the (erroneous) exception won't be thrown 
the first time through at all.

Is there any reason not to allow this functionality?



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: JBossWS Thinks its a servlet (but it's not)

2006-05-10 Thread [EMAIL PROTECTED]
This may be related to:
http://jira.jboss.com/jira/browse/JBWS-860

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Clustering and UDP traffic (and errors) in non-clustered env

2006-05-10 Thread damo9f
We found that our version of JBoss (4.0.3 sp1) was configured for clustering 
out-of-the box and have been unable to disable all clustering traffic since 
this dicovery.

We removed tc5-cluster.xml and cluster-service.xml but have still not been able 
to supress various UDP multicast messages, and messages such as


  | [TreeCache] viewAccepted(): new members: [blast:1029, clarke:1579, ...]
  | 
  | [TreeCache] setting cluster properties from xml to: [...] 
  | 

Recently, an install is logging errors apparently to do with invalid multicast 
addresses, or improper network interfaces.  This seems to be specific to the 
network config of the PC, but at root we think this is caused by unwanted 
clustering and/or HA traffic being multicast.

We intend to deploy a single server, so can anyone recommend a way to turn off 
all multicasting, clustering and other discovery-based features?  We've tried a 
few things and also seen others posting with similar issues over the past few 
months but have not found a solution.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - File download 350% slower than using IIS

2006-05-10 Thread nreviya
When comparing simple file download between IIS and JBoss there is a huge 
difference in performance. What can be done (configured)  to speed up of large 
file downloads from JBoss? Please, help...

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - JBossWS Thinks its a servlet (but it's not)

2006-05-10 Thread codemonster_4_hire
I'm exposing an EJB3.0 object as a webservice and I'm seeing some fairly 
bizarre behaviour. The deployment proceeds properly and I receive the message 
in the console indicating that the wsdl for my service has been generated like 
this:

 [java] 14:13:49,662 INFO  [EJBContainer] STARTED EJB: 
com.ghx.console.servr.tjvm.ws.AggregateTjvmDataServiceImpl ejbName: 
AggregateTjvmDataServiceImpl
 [java] 14:13:49,677 INFO  [EJB3Deployer] Deployed: 
file:/C:/tools/jboss4.0.4.CR2/server/transmon/tmp/deploy/tmp39785transmon.ear-contents/transmon_ejb.jar
 [java] 14:13:49,693 INFO  [WSDLFilePublisher] WSDL published to: 
file:/C:/tools/jboss4.0.4.CR2/server/transmon/data/wsdl/transmon.ear/transmon_ejb.jar/AgregateTjvmDataService39786.wsdl


However, when I try to run the wsdl query (ie /AggregateTjvmDatatService?wsdl) 
I get this exception:

javax.servlet.ServletException: Class 
com.ghx.console.server.tjvm.ws.AggregateTjvmDataServiceImpl is not a Servlet

org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:54)

org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:174)

org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)

org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)

org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)

org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)

org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)

org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)

org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
java.lang.Thread.run(Thread.java:595)


Obviously, the webservice is NOT a servlet in the usual sense but then again, 
it's not supposed to be...

I started seeing this behavior shortly after converting my POJO webservice into 
an EJB3 webservice. As a POJO object I could query for the wsdl with no 
problems. Now, I just get my service deactivated bummer.

Is this a bug? Or just operator error?

Thanks,
Brian


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Toubleshooting Jboss and TibcoEMS connection

2006-05-10 Thread rachono
Well, I have to admit that the answer is "trivial". The wiki page does not 
mention that you have to create queues and factories in TIBCO EMS.

Actually the wiki page looks pretty much like the documentation shipped with 
EMS. So to be complete : one has to create two factories 
XAQueueConnectionFactory and XATopicConnectionFactry + three queues.

I'll update the wiki page.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Associate custom objects with Nodes

2006-05-10 Thread kukeltje
But...

What you could do is ad an action to the task, read the db in there and create 
transient task variables. Those will be displayed (I hope) but I do not know 
how to update them.

Ronald

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Associate custom objects with Nodes

2006-05-10 Thread kukeltje
Sebastian,

Maybe it's that I'm tired (it's 22:48 after a long day, but I do not fully 
grasp what you mean. From what I understand you want a page with input elements 
that come from both the process and another system? And you want that 
customized per task? 

That is not possible with 3.1 without implementing your own framework. In 3.2 
things will be possible to some extend.

Ronald

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: 2.4.0 ALPHA: Management Portlet WSDL Exception

2006-05-10 Thread sitongia
My platform is Linux, Suse 10,
2.6.13-15.8-default

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: Error: detached entity passed to persist

2006-05-10 Thread blowteam
solution for this problem:

REPLACE EntityManager.Persist(object) to EntityManager.merge(object)

for detached objects..

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How to define customized web pages

2006-05-10 Thread kukeltje
"flawlor" wrote : If I want to define a customized user web page for some task 
node how would I go about that in jBPM?
  | 
  | I could not find any documentation or forum discussions about this.
  | 

With the words 'web' and 'custom' I found the following links when searching 
the forum 

http://www.jboss.com/index.html?module=bb&op=viewtopic&t=81101
http://www.jboss.com/index.html?module=bb&op=viewtopic&t=67036



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: PersistentObjectException: detached entity passed to per

2006-05-10 Thread blowteam
hello, 

my solution for this problem ejb3 detached entitys:

//CODE SNIPPET EJB 3.0
@EntityContext 
protected EntityManager em;

public void save(object o){
em.merge(o); //replace em.Persist(o) to em.merge(o);
}


sucess, and good codes..
Hermano Pereira
software architect
www.itsway.com.br


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: 2.4.0 ALPHA: Management Portlet WSDL Exception

2006-05-10 Thread sitongia
I did some tests to isolate this, and see it comes about because I changed the 
server configuration to port 80.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: [EJBTimerServiceImpl] Cannot obtain TransactionManager -

2006-05-10 Thread elbutcher
I have "sometimes" the same error when I start JBOSS (jboss-4.0.4.CR2) under 
WindowsXp using Eclipse WTP:

22:10:35,393 INFO  [WebService] Using RMI server codebase: http://t42:8083/
  | 22:10:35,533 WARN  [EJBTimerServiceImpl] Cannot obtain TransactionManager 
from JNDI, using TxManager.getInstance(): javax.naming.NameNotFoundException: 
TransactionManager not bound

I have this error for 3 days... and when I restart my computer it's OK, for a 
few time. 

New soft installed recently on my computer are : last microsoft security update 
patch and  last live messenger beta release.

Any idea, about this problem?
Bye

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Associate custom objects with Nodes

2006-05-10 Thread cavalera

First of all, I will explain shortly and detailed the app ->

The client can design the flow using the designer, and obviously deploy it.

Client's personal logs in the web app, the home page is displayed and the link 
which starts the processInstance is shown.
The guy now clicks on the link starting a new processInstace and sending the 
signal message to the StartNode.

The following thing that should occurred is ( supposing next node is TaskNode ) 
get the tasks instances of that TaskNode and show the web form to the user for 
e.g. the first task instance.

As said that should be the following thing, BUT I do not only have to show the 
web form with the variables of the task instances otherwise I have to add 
another variables dynamically that I got from some DB for then finall show up 
the web form with both variable types.

And this is my problem... in some way I have to recognize what type of TaskNode 
the token is set to. 

Why ? 

Because if it's a mail type I have to present the web form showing 
taskcontrollers variables ( name, subject, mail text ) the also the dynamic 
variables I got from some BD. 

On the other hand if it's approval I have to present the web form showing 
taskcontrollers variables ( publisher, comments, etc ) the also the dynamic 
variables I got from some BD quering other tables. 

So is there some way to do this ? Like maybe associating some custom object to 
each Node ( GraphElement ) in order that it's a "Mail" Task Node or a 
"Approval" Task Node or so on...

Regards, 
Sebastian.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Why is Designer 3.0.9 not available from eclipse update

2006-05-10 Thread kukeltje
That's the JBoss IDE update site, not the GPD update site. The JBoss IDE 
includes an older version of the GPD, but I have no idea what version. Koen, is 
there a list somewhere?

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - How to define customized web pages

2006-05-10 Thread flawlor
If I want to define a customized user web page for some task node how would I 
go about that in jBPM?

I could not find any documentation or forum discussions about this.

Thanks,
  -- Frank

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: 2.4.0 ALPHA: Management Portlet WSDL Exception

2006-05-10 Thread [EMAIL PROTECTED]
Hi Leonard,

The error comes from the fact that the server is not resolving your host 
name/IP address to a proper value for some reason. In the log you provide,  you 
can see that the deployer is trying to get the WSDL file from: 
http://0.0.0.0:8080

I am not quite sure what is going on here. On which platform are you running?

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Why is Designer 3.0.9 not available from eclipse update

2006-05-10 Thread kosulin
   site name="JBoss IDE development" 
url="http://download.jboss.org/jbosside/updates/development"; web="false" 
selected="true" local="false"
   site name="JBoss IDE stable" 
url="http://download.jboss.org/jbosside/updates/stable"; web="false" 
selected="true" local="false"


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Why is Designer 3.0.9 not available from eclipse update

2006-05-10 Thread kosulin
I use 2 update sites:
   
   


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


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

2006-05-10 Thread flawlor
I tried the email button to send you some information but it doesn't seem to 
work.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: create new users in jbpm

2006-05-10 Thread kukeltje
The jmx agent thingy only works for hsqldb, not other databases. The sql 
statement above works always.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: What exactly is jbpm.sar good for?

2006-05-10 Thread JeffGordon
anonymous wrote : one more thing.  i didn't yet answer the question "what is 
the jbpm.sar good for"
  | 
  | the way we use it now, it is an alternative way to put the jbpm libs on the 
global classpath.
  | 
  | it also allows us to publish JbpmConfiguration to JNDI, but as stated in 
the previous post, that is never used and redundant.

Well I've been using the SAR for quite a while (just in case you thought nobody 
was using it).  I've got stress testing with hundreds of users in separate 
threads all getting, using, and closing sessions with: (obviously abbreviated)

  | JbpmConfiguration jbpmConfig = null;
  | log.debug("Getting jbpm config from JNDI");
  | Context ctx = new InitialContext();
  | try {
  |   jbpmConfig = 
(JbpmConfiguration)ctx.lookup("java:/jbpm/JbpmConfiguration");
  | } catch (Exception e) {
  |   log.debug("Failed getting context object: "+e);
  | }
  | if (jbpmConfig!=null) {
  |   log.debug("Getting jbpmContext from config");
  |   jbpmContext = jbpmConfig.createJbpmContext();
  | } else {
  |   log.error("JbpmConfiguration is null");
  | }
  | return jbpmConfig
  | 
I also use the SAR to deploy the JBPM jars, config files, and my own assignment 
handlers bundled in a jar.  Additionally, I've got changes to JBPM queries that 
are deployed as a new hibernate.queries.hbm.xml in the SAR (which is rebuilt 
and deployed as part of my build process).

So if you look hard enough you might find a use.  :)

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - 2.4.0 ALPHA: Management Portlet WSDL Exception

2006-05-10 Thread sitongia
Context: 2.4.0-ALPHA1 on Linux with Firefox.

When I login as admin and click on the Manage: Portlet link, I get an Exception 
related to WSDL and the portlet disappears from the page:

...
2006-05-10 13:40:48,105 DEBUG [org.hibernate.engine.StatefulPersistenceContext] 
initializing non-lazy collections
2006-05-10 13:40:48,105 DEBUG [org.hibernate.loader.Loader] done loading 
collection
2006-05-10 13:40:48,112 DEBUG 
[org.jboss.portal.wsrp.PerEndpointSOAPInvokerServiceFactory] Looking up service 
for class org.jboss.p
ortal.wsrp.core.WSRP_v1_ServiceDescription_PortType using JNDI name 
wsrp-client/service/ServiceDescriptionService
2006-05-10 13:40:48,288 DEBUG [org.jboss.ws.jaxrpc.ServiceObjectFactory] Create 
jaxrpc service from wsdl
2006-05-10 13:40:48,288 DEBUG 
[org.jboss.ws.metadata.JSR109ClientMetaDataBuilder] START buildMetaData: 
[service=null]
2006-05-10 13:40:48,289 DEBUG 
[org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory] parse: 
http://0.0.0.0:8080/portal-wsrp/ServiceDes
criptionService?wsdl
2006-05-10 13:40:48,289 ERROR [org.jboss.ws.jaxrpc.ServiceObjectFactory] Cannot 
create service
org.jboss.ws.metadata.wsdl.WSDLException: java.net.ConnectException: Connection 
refused
at 
org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory.getDocument(WSDLDefinitionsFactory.java:198)
at 
org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:106)
at 
org.jboss.ws.metadata.ServiceMetaData.getWsdlDefinitions(ServiceMetaData.java:253)
at 
org.jboss.ws.metadata.JSR109ClientMetaDataBuilder.buildMetaData(JSR109ClientMetaDataBuilder.java:120)
at org.jboss.ws.jaxrpc.ServiceImpl.(ServiceImpl.java:105)
at 
org.jboss.ws.jaxrpc.ServiceObjectFactory.getObjectInstance(ServiceObjectFactory.java:182)
...
at 
org.apache.myfaces.portlet.MyFacesGenericPortlet.facesRender(MyFacesGenericPortlet.java:396)
at 
org.apache.myfaces.portlet.MyFacesGenericPortlet.doView(MyFacesGenericPortlet.java:266)
at javax.portlet.GenericPortlet.doDispatch(GenericPortlet.java:167)
at javax.portlet.GenericPortlet.render(GenericPortlet.java:407)
at 
org.jboss.portal.portlet.container.PortletContainer.invokeRender(PortletContainer.java:563)
...
Caused by: java.net.ConnectException: Connection refused
at java.net.PlainSocketImpl.socketConnect(Native Method)
...
2006-05-10 13:40:48,313 WARN  [org.jboss.portal.wsrp.consumer.WSRPConsumerImpl] 
java.lang.RuntimeException: Couldn't access service
 description service.
2006-05-10 13:40:48,314 ERROR 
[org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/portal-core]] 
/WEB-INF/jsp/manageme
nt/portlets.xhtml @21,73 value="#{portletmgr.portlets}": 
org.jboss.portal.core.portlet.management.PortletManagerBean
javax.faces.el.EvaluationException: /WEB-INF/jsp/management/portlets.xhtml 
@21,73 value="#{portletmgr.portlets}": org.jboss.portal.
core.portlet.management.PortletManagerBean
at 
com.sun.facelets.el.LegacyValueBinding.getValue(LegacyValueBinding.java:60)
at javax.faces.component.UIData.getValue(UIData.java:779)

==Leonard

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: create new users in jbpm

2006-05-10 Thread flawlor
See the description of how to use the JMX agent to do this in the jBPM Getting 
Started Guide: http://wiki.jboss.org/wiki/Wiki.jsp?page=JbpmGettingStarted 

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Problems deploying JPivot portlet in JBoss Portal

2006-05-10 Thread george.alex
Hello, we are consultants in Venezuela.  Now, we are working with Pentaho.
In principle, we have decided understand the principals tools of Pentaho.  As 
JPivot and Mondrian. In this moment, we would install  the JPivot portlet in 
JBoss Portal.

We have read the Readme.txt that is in  the jboss-portlet directory.
We have tried to use the ant build targets, after specify the build propiertes: 
jboss.home, jboss.deploy, jboss-portal.deploy,
but the build failed.

We get the following compilation error:

 C:\Documents and 
Settings\Krysttel\Desktop\Aplicaciones\jpivot\src\jboss-portlet\java\com\tonbeller\jpivot\jboss\portlet\JPivotPortlet.java:39:
 cannot find symbol
[javac] symbol  : class WindowContext
[javac] location: package org.jboss.portal.server
[javac] import org.jboss.portal.server.WindowContext;

...


These errors turned up with the package: org.jboss.portal.server.

1)  We would like to know what jar file contains this package  and  where can 
find it?

2) Other steps to install JPivot portlet in JBoss Portal exists and which are 
the JBoss AS and JBoss Portal versions that work with
the JPivot Portlet?

Best Regards.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Urgent: upload a zip file

2006-05-10 Thread glodo
Hi everyone!! if load a file .zip in the CMS Manager, i can not download the 
file .zip. The jboss portal doesnt support the download of .zip file?? or is 
something that i can do to this work for me?
Is really urgent this problem
thanks for advice
glodo

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Problem installing BPEL extension

2006-05-10 Thread [EMAIL PROTECTED]
anonymous wrote : Caused by: java.lang.ClassNotFoundException: Unexpected error 
during load of: org.jbpm.bpel.def.BpelDefinition, 
msg=org/jbpm/bpel/def/BpelDefinition (Unsupported major.minor version 49.0) 

The class files in alpha 4 were compiled against JDK 1.5. To deploy in 1.4.2, 
you need to recompile the sources. To do so, take the build.xml file in the 
base directory of the distribution and run the build target. This target will 
compile and build the jBPM BPEL library. 

By the way, this has nothing to do with the data source error above. That's a 
problem with your configuration.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: jbpm as rule engine and ProcessCalssLoader

2006-05-10 Thread elis
It will be great. But in this case need to change
retrun new ProcessClassLoader(ClassLoaderUtil.class.getClassLoader(), 
processDefinition); to: 
retrun new ProcessClassLoader(getClassLoader(), processDefinition); 

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Searching CMS stored content...

2006-05-10 Thread glodo
Hi! i am trying to develop my search of the portal, one question.. where is 
stored the attributes title, description and language of the archive that is 
created in the CMS Manager like html or when load an pdf for example?
thanks for the information
glodo

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


  1   2   3   4   >