[JBoss-user] [JBoss Seam] - Re: Seam component with the same name

2006-07-05 Thread CptnKirk
The order-by is less intuitive, however it would be useful for defining drop in 
overrides.  Lets say I wanted to package my component into a JAR and override 
the default simply by including the JAR in WEB-INF/lib.  Allowing me to specify 
in my JAR's components.xml file that my component should be used instead of the 
default would ease the installation of these modules.  It's a convenience 
feature to be sure, but it allows users of this module to install it without 
any additional configuration.  

In the end there is still a need to be able to control things at a top most 
level and this can be accomplished via overrides in the top most components.xml.

So, I like being able to override by class attribute.  I'd just also like to 
provide third-party component developers easy discovery, install and override 
of their components as well.  Some order/priority attributed seemed to work 
well for that.

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

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

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: about process-state

2006-07-05 Thread fwshk
Hi Remider,

In my understanding of jBPM, the "simple" is the name of process.
In other word, you should deploy a process named "simple" into jBPM before 
execute your process "go".

Roy

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

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

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: Seam component with the same name

2006-07-05 Thread supernovasoftware.com
How about if this must be controlled by components.xml, which I agree with, 
that Seam throw an error if there are multiple components with the same name?

If there is not a deterministic intuitive order that they will be loaded then I 
think overriding in the componets.xml should be mandatory for components with 
the same name.


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

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

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 books

2006-07-05 Thread kukeltje
no, there is not. Just online docs, wiki, sources, testcases/examples etc

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

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

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 Booking demo on Glassfish (Appserver 9.0)

2006-07-05 Thread wstrange
After a fair bit of tweaking, I was able to get the SEAM booking demo running 
on Glassfish (caveat: there are still a few minor things that are not working 
right).

You can read about it here:



http://blogs.sun.com/roller/page/warren#getting_the_seam_booking_example

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

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

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: Seam component with the same name

2006-07-05 Thread jtucker
I like the idea where if the component is defined in component.xml, it 
overrides the default Seam scanning.

So CptnKirk, like you imply in your post, you only want to end up with a single 
X component being managed by Seam - this would be the one defined in 
components.xml. 

Order-by doesn't seem intuitive to me because of the fact that you only want to 
know about that single X component in the end - unlike servlets where execution 
order can be important.

We can still override built in components using the class attribute.

I'm happy to make these changes and commit them.

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

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

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 in Deploying Portlets in JBoss 2.2.1 SP2 Portal + A

2006-07-05 Thread sudhar
Hi,

I'm a newbie to both JBoss and portal/portlets. I?ve placed the portlet WAR 
under the C:\JBoss\server\default\deploy folder. The name of my portal app is 
"funportal" and I've got 2 portlets viz. SettingsPortlet and ZodiacSignPortlet. 
My portlet.xml contains the correct data wrt the fully qualified class names. 
And I've all these XMLs also in the WEB-INF folder:

funportal-portal.xml
  | jboss-app.xml
  | jboss-portlet.xml
  | jboss-web.xml
  | portlet-instances.xml
  | portlet.xml
  | settingsportlet-pages.xml
  | web.xml
  | zodiacsignportlet-pages.xml
  | 
  | When I try to access the portal app via 
http://localhost:8080/portal/funportal, I only get a standard JBoss 2.2.1 SP1 
welcome screen same as that of http://localhost:8080/portal/default. 
  | 
  | The console log gives the following information:
  | 
  | The portlet SettingsPortlet threw a runtime exception during init
  | 
  | :
  | 
  | Caused by: java.lang.ClassCastException
  | 
  | at 
org.jboss.portal.portlet.PortletContainer.start(PortletContainer.java:227)
  | 
  | The portlet ZodiacSignPortlet threw a runtime exception during init
  | 
  | :
  | 
  | Caused by: java.lang.ClassCastException
  | 
  | at 
org.jboss.portal.portlet.PortletContainer.start(PortletContainer.java:227)
  | 
  | I?m not sure where I?m going wrong. Please help! Hope I?ve given you 
sufficient info. Please let me know if you need more.
  | 
  | Regards,
  | Sudha 

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

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

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 books

2006-07-05 Thread diwa_pv
hi all,

 is there any book for jbpm atleast now?

please respond if u have any idea

regards
diwa

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

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

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] - about process-state

2006-07-05 Thread Remider
Who help me about process-state?
structure of process state as: 
   
   


 
   
i want know " what is " and where must i place process 
"simple" ?

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

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

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] - Class Cast Exception - Hellodr

2006-07-05 Thread hellodr
Thanks genman..

The type of the Object is org.jboss.mq.SpyQueue . But I dont need to use 
SpyQueue or SpyConnectionFactory. I prefer to use QueueConnectionFactory and 
Queue Connection in my program. But When do a JNDI lookup like
SpyConnectionFactory factory = (SpyConnectionFactory) 
ctx.lookup("ConnectionFactory");
It returs Object of SpyConnectionFactory. What should I do in my Application 
Server Settings to return QueueConnectionFactory. Also please let me know the 
JNDI name for it.
My full Program Code is (Which Throws Exception)


package com.echain.contacts.web.action;
import java.io.PrintWriter;

import javax.jms.QueueConnection;
import javax.jms.QueueSender;
import javax.jms.QueueSession;
import javax.jms.TextMessage;
import javax.naming.InitialContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.jboss.mq.SpyConnectionFactory;
import org.jboss.mq.SpyQueue;

public class ServerAction extends Action {

QueueConnection qCon;
QueueSession qSess;
SpyQueue queue;
QueueSender qSender;
PrintWriter pw;

public ActionForward execute(ActionMapping mapping, ActionForm form, 
HttpServletRequest req, HttpServletResponse res) throws Exception {
try {
pw = res.getWriter();
System.out.println("\n\n*** Creating Queue ***\n\n");
pw.println("*** Creating Queue ***");
createQueue();
System.out.println("\n\n*** Created Queue ***\n\n");
pw.println("*** Created Queue ***");
System.out.println("\n\n*** Sending Message to Queue ***\n\n");
pw.println("*** Sending Message to Queue ***");
sendMessageToQueue("THis is the Message");
System.out.println("\n\n*** Message Sent to Queue ***\n\n");
pw.println("*** Message Sent to Queue ***");
} catch (Exception e) {
e.printStackTrace();
}

return mapping.findForward("forward.success");
}

public void createQueue() throws Exception{
InitialContext ctx = new InitialContext();
System.out.println("\n\nFactory is : " + ctx.lookup("ConnectionFactory") + 
"\n\n");
SpyConnectionFactory factory = (SpyConnectionFactory) 
ctx.lookup("ConnectionFactory");
qCon = factory.createQueueConnection();
ctx = new InitialContext();
Object o = ctx.lookup("queue/echnQueue");
System.out.println("\n\nQueue is : " + o.getClass() + "\n\n");
queue = (SpyQueue) ctx.lookup("queue/echnQueue");
qSess = qCon.createQueueSession(false, QueueSession.AUTO_ACKNOWLEDGE);
qCon.start();
}

public void sendMessageToQueue(String message) throws Exception{
qSender = qSess.createSender(queue);
TextMessage tm = qSess.createTextMessage(message);
qSender.send(tm);
qSender.close();
System.out.println("\n\n\n\n*\n\nMessage Send to Queue And 
QSender is Closed\n\n\n\n\n");
pw.println("* Message Send to Queue And QSender is Closed 
");
}
}

In the above marked redline I am getting an exception
java.lang.LinkageError: Class javax/jms/QueueConnection violates loader 
constraints

Please help me out

Regards,
Dharma 

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

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

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] - getting error while trying to use JBOSS portal

2006-07-05 Thread NikhilSrivastava
hi,
I am new to JBOSS portal.

I have done the installation using the user guide, but on typing 
http://localhost:8080/portal i am getting the following exception:

type Exception report

message 

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

exception 

javax.servlet.ServletException: Servlet execution threw an exception

org.jboss.portal.server.servlet.PortalServlet.doGet(PortalServlet.java:227)
javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)

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


root cause 

javax.servlet.ServletException: Servlet execution threw an exception

root cause 

java.lang.Error: java.lang.NullPointerException

also in the console, i am getting the following message:

09:27:09,443 ERROR [URLDeploymentScanner] Incomplete Deployment listing:

--- Incompletely deployed packages ---
[EMAIL PROTECTED] { url=fil
e:/C:/jboss-4.0.4/server/default/deploy/jboss-portal.sar/portal-samples.war/WEB-
INF/ }
  deployer: [EMAIL PROTECTED]
  status: Deployment FAILED reason: - nested throwable: (java.lang.NullPointerEx
ception)
  state: FAILED
  watch: file:/C:/jboss-4.0.4/server/default/deploy/jboss-portal.sar/portal-samp
les.war/WEB-INF/
  altDD: null
  lastDeployed: 1152158213751
  lastModified: 1152157557577
  mbeans:

--- MBeans waiting for other MBeans ---
ObjectName: portal:service=CMS
  State: FAILED
  Reason: javax.jcr.RepositoryException: failed to load persisted repository sta
te: Transaction not successfully started: Transaction not successfully started
  I Depend On:
jboss.jca:name=PortalDS,service=DataSourceBinding
portal:service=JAASLoginModule
  Depends On Me:
portal:mapper=CMSObject

--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
ObjectName: portal:service=CMS
  State: FAILED
  Reason: javax.jcr.RepositoryException: failed to load persisted repository sta
te: Transaction not successfully started: Transaction not successfully started
  I Depend On:
jboss.jca:name=PortalDS,service=DataSourceBinding
portal:service=JAASLoginModule
  Depends On Me:
portal:mapper=CMSObject


09:27:09,533 INFO  [Http11BaseProtocol] Starting Coyote HTTP/1.1 on http-0.0.0.0
-8080
09:27:09,743 INFO  [ChannelSocket] JK: ajp13 listening on /0.0.0.0:8009
09:27:09,753 INFO  [JkMain] Jk running ID=0 time=0/30  config=null
09:27:09,773 INFO  [Server] JBoss (MX MicroKernel) [4.0.4.GA (build: CVSTag=JBos
s_4_0_4_GA date=200605151000)] Started in 1m:5s:502ms


Can any body help me resolve this. Its really urgent

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

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

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: Oracle10g dialect

2006-07-05 Thread dailo10

Merci beaucoup!

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

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

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: Class Cast Exception -- By HelloDr

2006-07-05 Thread hellodr
Thanks genman.. 

The type of the Object is org.jboss.mq.SpyQueue. But I dont need to use 
SpyQueue or SpyConnectionFactory. I prefer to use QueueConnectionFactory and 
Queue Connection in my program. But When do a JNDI lookup like
SpyConnectionFactory factory = (SpyConnectionFactory) 
ctx.lookup("ConnectionFactory");
It returs Object of SpyConnectionFactory. What should I do in my Application 
Server Settings to return QueueConnectionFactory. Also please let me know the 
JNDI name for it. 
My full Program Code is (Which Throws Exception)


package com.echain.contacts.web.action;
import java.io.PrintWriter;

import javax.jms.QueueConnection;
import javax.jms.QueueSender;
import javax.jms.QueueSession;
import javax.jms.TextMessage;
import javax.naming.InitialContext;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

import org.apache.struts.action.Action;
import org.apache.struts.action.ActionForm;
import org.apache.struts.action.ActionForward;
import org.apache.struts.action.ActionMapping;
import org.jboss.mq.SpyConnectionFactory;
import org.jboss.mq.SpyQueue;

public class ServerAction extends Action {

QueueConnection qCon;
QueueSession qSess;
SpyQueue queue;
QueueSender qSender;
PrintWriter pw;

public ActionForward execute(ActionMapping mapping, ActionForm form, 
HttpServletRequest req, HttpServletResponse res) throws Exception {
try {
pw = res.getWriter();
System.out.println("\n\n*** Creating Queue 
***\n\n");
pw.println("*** Creating Queue ***");
createQueue();
System.out.println("\n\n*** Created Queue 
***\n\n");
pw.println("*** Created Queue ***");
System.out.println("\n\n*** Sending Message to Queue 
***\n\n");
pw.println("*** Sending Message to Queue ***");
sendMessageToQueue("THis is the Message");
System.out.println("\n\n*** Message Sent to Queue 
***\n\n");
pw.println("*** Message Sent to Queue ***");
} catch (Exception e) {
e.printStackTrace();
}

return mapping.findForward("forward.success");
}

public void createQueue() throws Exception{
InitialContext ctx = new InitialContext();
System.out.println("\n\nFactory is : " + 
ctx.lookup("ConnectionFactory") + "\n\n");
SpyConnectionFactory factory = (SpyConnectionFactory) 
ctx.lookup("ConnectionFactory");
qCon = factory.createQueueConnection();
ctx = new InitialContext();
Object o = ctx.lookup("queue/echnQueue");
System.out.println("\n\nQueue is : " + o.getClass() + "\n\n");
queue = (SpyQueue) ctx.lookup("queue/echnQueue");
qSess = qCon.createQueueSession(false, 
QueueSession.AUTO_ACKNOWLEDGE);
qCon.start();
}

public void sendMessageToQueue(String message) throws Exception{
qSender = qSess.createSender(queue);
TextMessage tm = qSess.createTextMessage(message);
qSender.send(tm);
qSender.close();
System.out.println("\n\n\n\n*\n\nMessage Send 
to Queue And QSender is Closed\n\n\n\n\n");
pw.println("* Message Send to Queue And QSender 
is Closed ");
}
}

In the above marked redline I am getting an exception 
java.lang.LinkageError: Class javax/jms/QueueConnection violates loader 
constraints

Please help me out 

Regards,
Dharma


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

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

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: Cannot Render: Object Not Found

2006-07-05 Thread barddzen
Nope.  I get the following exception:

[CODE]
23:11:38,796 ERROR [MainDeployer] Could not start deployment: file:/C:/Documents
 and Settings/dyutzy/My Documents/My Downloads/jboss-portal-2.4.0-BETA1/server/d
efault/tmp/deploy/tmp24764RVSISFRequests-exp.war/WEB-INF/
org.jboss.deployment.DeploymentException: Not a page; - nested throwable: (java.
lang.IllegalArgumentException: Not a page)
at org.jboss.portal.core.deployment.jboss.ObjectDeployment.start(ObjectD
eployment.java:284)
at org.jboss.portal.server.deployment.jboss.PortalDeploymentInfo$Deploym
entContext.start(PortalDeploymentInfo.java:211)
at org.jboss.portal.server.deployment.jboss.ServerDeployer.start(ServerD
eployer.java:242)
at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractIntercept
or.java:133)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelM
BeanOperationInterceptor.java:142)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy114.deploy(Unknown Source)
at org.jboss.portal.server.deployment.jboss.ServerDeployer.deploy(Server
Deployer.java:296)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
at org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.
java:264)
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
at $Proxy87.deploy(Unknown Source)
at org.jboss.portal.server.deployment.WebAppAdapter.deploy(WebAppAdapter
.java:54)
at org.jboss.portal.server.deployment.WebAppIntercepter.handleNotificati
on(WebAppIntercepter.java:145)
at sun.reflect.GeneratedMethodAccessor3.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.mx.notification.NotificationListenerProxy.invoke(Notificati
onListenerProxy.java:153)
at $Proxy115.handleNotification(Unknown Source)
at org.jboss.mx.util.JBossNotificationBroadcasterSupport.handleNotificat
ion(JBossNotificationBroadcasterSupport.java:127)
at org.jboss.mx.util.JBossNotificationBroadcasterSupport.sendNotificatio
n(JBossNotificationBroadcasterSupport.java:108)
at org.jboss.deployment.SubDeployerSupport.emitNotification(SubDeployerS
upport.java:340)
at org.jboss.deployment.SubDeployerSupport.start(SubDeployerSupport.java
:308)
at org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:48
2)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatch
er.java:155)
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
at org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractIntercept
or.java:133)
at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
at org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelM
BeanOperationInterceptor.java:142)
at org.jboss.mx.interceptor.DynamicInterceptor.invoke(DynamicInterceptor
.java:97)
at org.jboss.system.InterceptorServiceMBeanSupport.invokeNext(Intercepto
rServiceM

[JBoss-user] [JBoss Portal] - A simple mvc framework for portlet development

2006-07-05 Thread ericmacau
There is a pretty simple and easy use framework for portlet development.
Please have a look at http://simflet.dev.java.net

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

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

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] [Performance Tuning] - Re: JBOSS vs JUNIT Performance Issue

2006-07-05 Thread tdanecito
Well,

In order to determine what is good performance you need understand how much 
time it takes to get to the class through the EJB. I would like to know:

1. How are you invoking the bean via a web service or using RMI?
2. What happens if you run the test case via the EJB several times versus just 
once?
3. What is the number of EJB's that are instantiated prior to calling JBoss?

My 2cents says if you have simple business logic in your class regardless of 
who's container you use JBoss, WebLogic, WebSphere the class will always run 
much faster because you are not going through all those layers in a container 
to get to the class.

Hope that helps.



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

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

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: @SelectItems and @SelectItemsSelection annotations?

2006-07-05 Thread CptnKirk
Gavin won't be online until Sunday.  Do you just want to go with

contrib.seam.*

and 

http://jboss.com/products/seam/contrib/*

Tip of the hat or wag of the finger.  I don't see much down side in moving 
ahead.  Worst that happens is that we need to repackage and repost down the 
road.  I need to repackage into something respectable anyway.

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

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

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: primary auto increment for MySQL

2006-07-05 Thread CptnKirk
You'll have a better chance of getting a helpful response if you ask your 
question on the Hibernate or EJB3 forums.

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

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

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] - Intalio vs jBPM

2006-07-05 Thread metabyte
Hi,

We are evaluating the usage of a BPM/Workflow manager for both human activity 
and Web service orchestration. The best products we see out there are 
Intalio|BPMS and JBoss jBPM. 

Our requirements are:
1) Ability to model and deploy people processes quickly
2) Ability to put BPM in the hands of business analyst and have nearly 
zero-coding (no Java developer involvment exept for certain web service calls)
3) Ability to integrate the process management on a portal, with roles 
integration
4) Provide basic Business Activity Monitoring.

What would you consider in jBPM as an advantage regrding Intalio.

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

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

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: Resuming parent conversation

2006-07-05 Thread CptnKirk
See if the docs on conversations and workspace management help.

http://docs.jboss.com/seam/latest/reference/en/html/conversations.html

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

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

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] - Re: Any idea why ELs, like ${user.email}, wouldn't work in J

2006-07-05 Thread SmokingAPipe
The problem is solved.  As usual, it is something absolutely trivial, which 
does not show up on any debugging tool.  The web.xml doctype was for 2.2, not 
2.4.  What a difference 0.2 makes.  Because the doctype was for an older app, 
it was giving me JSP 1.2 or whatever, when I need JSP 2.0.

This is the curse of Java: most of the hard part of getting an app to run is 
you spend days or weeks chasing down all these trivial little things, and 
there's no tool that helps with any of this.  Once you have the app running, 
everything is great.  There are amazing debugging tools, etc, but until then, 
these mystery problems can be a nightmare.

I guess that's where experience comes in.  It has taken me about 10 days to get 
a basic EJB 3 + JSF app up and working to where I could sign up and log in.  
Next time it will take me 10 minutes to do the same.


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

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

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: @Unwrap bug?

2006-07-05 Thread CptnKirk
This looks right to me.  Seam delegates variable resolution to JSF if the 
component can't be found in your Seam context.  By returning null from your 
@Unwrap method you're telling Seam that a component couldn't be created and 
that it should delegate to JSF.  It does this and delegates to JSF, which will 
either find a registered managed bean or return null.

What did you expect to happen?  What do you want to happen?

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

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

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 and No conversation context active

2006-07-05 Thread andrew.rw.robinson
nevermind, found out that if I set the preserve sort to false, the EL will not 
be evaluated during restore view

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

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

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: Session scoped javabean problem

2006-07-05 Thread CptnKirk
Are you sure you're not getting a new session each time (blocking cookies, or 
whatnot)?  Just for kicks, what happens if you change your JavaBean to a SFSB?

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

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

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: Session scoped javabean problem

2006-07-05 Thread CptnKirk
Oh, and there may or may not be a problem with the server side state saving in 
the facelets version that ships with Seam 1.0.1.

Try adding:

  | 
  | javax.faces.STATE_SAVING_METHOD
  | client
  | 
to web.xml and see if that helps.  If so, DL the latest facelets.jar from 
https://facelets.dev.java.net/ and use that instead.

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

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

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] - Session scoped javabean problem

2006-07-05 Thread bjneuman
I've got a session scoped javabean that is not being "reused". A new one is 
created and put in session scope instead.


@Name("RequisitionTabbedPaneBean")
  | @Scope(ScopeType.SESSION)
  | public class RequisitionTabbedPaneBean implements TabChangeListener {
  | public RequisitionTabbedPaneBean() {
  |System.out.println("Constructing RequisitionTabbedPaneBean");
  | }
  | ...
  | 

Here's a piece of the JSF page:


But My ouput shows this at every request for that JSF page (two requests shown):
Constructing RequisitionTabbedPaneBean
  | Displaying page
  | Constructing RequisitionTabbedPaneBean
  | Displaying Page
  | 

Any ideas? Thanks!

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

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

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: request parameter vs @DataModelSelection

2006-07-05 Thread CptnKirk
Why not use Java EE security along with Seam's support for userPrincipal and 
isUserInRole instead?

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

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

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] - Problem with EJB3StandaloneBootstrap.shutdown() in ALPHA8

2006-07-05 Thread dunks
I just updated my tests to use embedded ejb alpha 8 from alpha 6. My first set 
of ejb tests run as normal. When I try to shutdown the the embedded ejb server 
i get the following errror


  | ...
  | 20:19:00,754 INFO  [BaseTest] Shutting down embedded JBoss
  | Jul 5, 2006 8:19:00 PM Repository retrieve
  | FINER: name=jboss.ejb:service=EJBTimerService
  | Jul 5, 2006 8:19:00 PM DefaultMBeanServerInterceptor getMBean
  | 
  | FINER: jboss.ejb:service=EJBTimerService: Found no object
  | 20:19:00,858 INFO  [MailServiceBean] Mail service 'java:/Mail' removed from 
JNDI
  | Jul 5, 2006 8:19:00 PM Repository retrieve
  | FINER: name=jboss.system:service=ServiceController
  | Jul 5, 2006 8:19:00 PM DefaultMBeanServerInterceptor getMBean
  | FINER: jboss.system:service=ServiceController: Found no object
  | 20:19:00,895 WARN  [JDBCStateManager] Error in stop 
jboss.mq:service=StateManager
  | javax.management.InstanceNotFoundException: 
jboss.system:service=ServiceController
  | at 
com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1010)
  | at 
com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:804)
  | at 
com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
  | at 
org.jboss.system.ServiceMBeanSupport.stop(ServiceMBeanSupport.java:204)
  | at 
jrockit.reflect.VirtualNativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang.Object;)Ljava.lang.Object;(Unknown
 Source)
  | at 
java.lang.reflect.Method.invoke(Ljava.lang.Object;[Ljava.lang.Object;J)Ljava.lang.Object;(Unknown
 Source)
  | at 
org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(ReflectionUtils.java:55)
  | at 
org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(ReflectMethodInfoImpl.java:107)
  | at 
org.jboss.joinpoint.plugins.BasicMethodJoinPoint.dispatch(BasicMethodJoinPoint.java:66)
  | at 
org.jboss.kernel.plugins.dependency.KernelControllerContextActions.dispatchJoinPoint(KernelControllerContextActions.java:100)
  | at 
org.jboss.kernel.plugins.dependency.KernelControllerContextActions$LifecycleAction.uninstallAction(KernelControllerContextActions.java:604)
  | at 
org.jboss.kernel.plugins.dependency.KernelControllerContextActions$KernelControllerContextAction.uninstall(KernelControllerContextActions.java:219)
  | at 
org.jboss.dependency.plugins.AbstractControllerContextActions.uninstall(AbstractControllerContextActions.java:58)
  | at 
org.jboss.dependency.plugins.AbstractControllerContext.uninstall(AbstractControllerContext.java:236)
  | at 
org.jboss.dependency.plugins.AbstractController.uninstall(AbstractController.java:605)
  | at 
org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:575)
  | at 
org.jboss.dependency.plugins.AbstractController.uninstallContext(AbstractController.java:510)
  | at 
org.jboss.dependency.plugins.AbstractController.uninstall(AbstractController.java:194)
  | at 
org.jboss.kernel.plugins.deployment.AbstractKernelDeployer.undeployBean(AbstractKernelDeployer.java:367)
  | at 
org.jboss.kernel.plugins.deployment.AbstractKernelDeployer.undeployBeans(AbstractKernelDeployer.java:346)
  | at 
org.jboss.kernel.plugins.deployment.AbstractKernelDeployer.undeploy(AbstractKernelDeployer.java:149)
  | at 
org.jboss.ejb3.embedded.EJB3StandaloneBootstrap.shutdown(EJB3StandaloneBootstrap.java:332)
  | ...
  | 


This creates a problem when I try to start up an new embedded server for the 
next set of tests b/c I'll get javax.management.InstanceAlreadyExistsException 
errors for the jboss.mq:service=PersistenceManager which couldn't be undeployed 
from the last set of tests. Anyone have any ideas?

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

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

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] - org.jboss.ws.tools.ToolsUtils bug

2006-07-05 Thread agun
I am using the following configuration to generate a wsdl from a java class
in JBoss 4.0.4:


  

http://javatype.mycompany.com"; 
 type-namespace="com.mycompany.javatype"/> 


  


Once I have the wsdl, if I run the wsdl-java, irresespective of whether 
I do or do not specify the jax-rpc mapping file that was generated in 
the previous step, I get MySEI generated in the following package:

javatype.mycompany

i.e it has dropped the 'com'. The getJavaPackageName method in 
org.jboss.ws.tools.ToolsUtils seems to be the reason for this - it drops the 
first element in the targetNa mespace of the wsdl - e.g. in this case the 
'com'. 

So, the tool is not generating the original package for the same 
namespace.

Is this a known bug? 




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

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

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: Seam component with the same name

2006-07-05 Thread CptnKirk
How about an order attribute in components.xml (like the servlet 
load-on-startup)?  The named component in a given scope with the highest order 
wins.  This would allow for the override of not only built-in components but 
others as well.

Assume for the sake of argument that some contributor creates a component suite 
that overrides certain seam built-in components (to provide security, spring 
integration, whatever).  Later on you, or someone else develops a new component 
X to override component X in the contrib suite.  The contrib suite is made up 
of components X, Y, Z.  It's desirable for both jars to be included in the 
system and for the newest component X to override both the original contrib and 
built-in component.

This isn't a perfect system because is relies on the component packager to 
choose priority.  However this probably isn't a major issue and a single drop 
in jar is easier on the users than requiring additional configuration.  

If this were the default I think we'd get pretty far.  For the edge case were 
you have many components overriding (possibly incorrectly) we could specify an 
additional top level configuration (web.xml or seam.properties?) that overrides 
the order for a given class.  Sensible defaults + overrides if necessary.  It 
sounds good to me, but does this really need to be taken to the Nth degree or 
could something less complex work just as well?

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

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

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 3.0 Interceptors not Firing

2006-07-05 Thread Saish
Okay, I finally figured out a solution.  Apparently, I had slightly older 
jboss-ejb3x.jar and jboss-ejb3.jar file versions.  They referenced 
javax/ejb/InvocationContext.  Thus, the annotations that I referenced in my 
compiled source were never located when the container was instead (apparently) 
trying to find javax/interceptors/InvocationContext.  So, my interceptors never 
fired.

The solution is easy.  Make sure you have the 4.0.4-GA app server jar's listed 
above in your CLASSPATH for your IDE.  

- Saish

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

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

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] - ClusterFileTransferException

2006-07-05 Thread logankiefer
Environment JBoss 4.0.4 using Farm clustering deployment.

I'm getting the error message below when I start up a new jboss server on a 
different machine.  It adds itself to the cluster, but when it tries to pull 
down the ear files I get the error below.  It successfully pulled over the 
cluster-examples-service.xml, but is unable to pull any of the ear files.  

If I switch the order of which jboss server comes up first then it works fine.


18:37:37,772 INFO  [FarmMemberService]  pullNewDeployments 
18:37:37,772 INFO  [ClusterFileTransfer] Start pull of file 
cluster-examples-service.xml from cluster.
18:37:37,850 INFO  [ClusterFileTransfer] Finished cluster pull of file 
cluster-examples-service.xml to cluster-examples-service.xml
18:37:37,850 INFO  [ClusterFileTransfer] Start pull of file hello.ear from 
cluster.
18:38:48,771 ERROR [STDERR] 
org.jboss.ha.framework.server.ClusterFileTransfer$ClusterFileTransferException: 
An error occured on remote machine trying to read file 'farm\hello.ear'.  Is 
remote still running?.  Also, we couldn't delete temp file hello.ear
18:38:48,771 ERROR [STDERR] at 
org.jboss.ha.framework.server.ClusterFileTransfer.pull(ClusterFileTransfer.java:122)
18:38:48,771 ERROR [STDERR] at 
org.jboss.ha.framework.server.FarmMemberService.pullNewDeployments(FarmMemberService.java:229)
18:38:48,771 ERROR [STDERR] at 
org.jboss.ha.framework.server.FarmMemberService.startService(FarmMemberService.java:189)
18:38:48,771 ERROR [STDERR] at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
18:38:48,771 ERROR [STDERR] at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)

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

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

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: i18n gotcha suggested by Seam manual

2006-07-05 Thread dbatcn
Thank you for pointing out that workaround.

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

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

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] - jbpm.sar deployment from ant file lost when server is restar

2006-07-05 Thread brado
I am using the jbpm starters kit. When I invoke the

deploy.service.archive

target from the build.deploy.xml ant file, I successfully deploy my sar 
(service archive). However, if I then stop and restart jboss, the deployed 
service is no longer there. If I then go check the server configuration's 
deploy directory, the sar is not there. 

Why does the service archive deployment disappear, and last only for the 
process lifetime into which it was deployed? Is the deployed sar written to 
disk anywhere? 

Thanks,

Brad

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

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

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 and No conversation context active

2006-07-05 Thread andrew.rw.robinson
Well I just found the problem, but not a solution. The WIKI has the problem 
described:

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

In my code, I have a data table that is bound to a list from a conversation 
scoped bean. It is dying when trying to resolve the bean during the restore 
view phase (before the conversation scope is setup). 

After playing around for a bit, I found that the problem  iis my table sorting:


Is there any way to have this bean be conversation scoped and be able to use 
the tomahawk sortable table?


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

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

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: NavigationPortlet problem

2006-07-05 Thread kraptor
Nevermind... The problem was the portlet instance theme settings. The Window, 
Decoration and Portlet renderer were set by default to "no selection" when they 
were meant to be set to "empty renderer". 

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

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

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: How to send a request to a node instance that I specify

2006-07-05 Thread chwang
Hi, Geert,

I also read the link you gave me 
[url]
http://wiki.jboss.org/wiki/Wiki.jsp?page=UsingMod_proxyWithJBoss[/url]

there is this set up 

Add stickysession parameter to ProxyPass
  | 
  | ProxyPass /jmx-console balancer://mycluster stickysession=jsessionid 
lbmethod=bytraffic nofailover=Off 
  | ProxyPassReverse /jmx-console balancer://mycluster 

Coule you tell me what is jsessionid, it is the same as 
reuest.getSession(true).getId() 

Chwang

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

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

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: @SelectItems and @SelectItemsSelection annotations?

2006-07-05 Thread petemuir
I think that contrib is better than extensions. I'm pretty sure that the xml 
namespace must be a uri which limits choice somewhat.

Seam Gods, what say ye?

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

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

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: Request/response asynchronous message driven bean

2006-07-05 Thread genman
JMS is always async for sending.

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

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

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: Class Cast Exception -- By HelloDr

2006-07-05 Thread genman

What's the type of the object?  E.g. 

Object o = ...
System.out.println("class is " + o.getClass());

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

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

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 Eclipse IDE (users)] - Re: Frequent

2006-07-05 Thread znbailey
Rob,

It would be great if that were a user-configurable option. We have a 
considerable deployment, such that when debugging it is not uncommon for it to 
take anywhere from 55s to 1:35s to fully start up. (this is according to the 
line that says "17:57:10,562 INFO  [Server] JBoss (MX MicroKernel) [3.2.7 
(build: CVSTag=JBoss_3_2_7 date=200501280217)] Started in 1m:10s:328ms", for 
example).

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

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

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: Jms problem in jboss

2006-07-05 Thread genman
There are examples in JBoss, did you try them?

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

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

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: @SelectItems and @SelectItemsSelection annotations?

2006-07-05 Thread CptnKirk
All good questions Pete.  I'll defer to the Seam Gods.  org.jboss.* may be 
reserved and imply that these are official JBoss modules.  Maybe 
contrib.seam.extensions?  Or following with the seam package structure, 
contrib.seam.annotations, contrib.seam.databindings, etc


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

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

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: javax.servlet.ServletException: No active application sc

2006-07-05 Thread javalover75
I originally had no jars in my war file.  I included the following jars simply 
because the seam-booking example contained them.  I am assuming the the 
jboss-seam-ui.jar is the critical one - but I have not tested this as deadlines 
are looming.

el-api.jar
el-ri.jar
jboss-seam-debug.jar
jboss-seam-ui.jar
jsf-facelets.jar



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

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

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 Eclipse IDE (users)] - Re: Frequent

2006-07-05 Thread [EMAIL PROTECTED]
The only thing I can think of for that error is if the server is taking longer 
than my defined timeout. 

How long is it taking your server to start? If it is actually close to where my 
timeout is, I can either try to increase the timeout or allow the user to do 
it. 

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

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

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] - Database configuration confusion in the starter's kit

2006-07-05 Thread brado
Presently I am opening up generated jar files in the starter's kit (jbpm 
directory) to try to figure out how to change JBoss to use another database 
(Oracle) instead of the default Hypersonic db. The documentation is incomplete 
and doesn't completely address this, unless there is some part of the 
documentation or newer version of the JBPM user guide (I am using 3.0.3) which 
I am not aware of. 

Inside the generated jbpm.sar file, there are no related config/property files 
put in there directly. There are several other jars inside however. Two of 
these are:

jbpm-3.0.3.jar 
jbpm.sar.cfg.jar

Inside the jbpm-3.0.3.jar, there is a jbpm.properties file, with commented out 
entries about referencing hibernate configuration files, but no hibernate 
configuration files are found in the jar. 

Then, in jbpm.sar.cfg.jar, there is a jbpm.properties file, with entries (not 
commented out) that point to hibernate.properties and hibernate.cfg.xml files, 
both of which are contained in the jar too, and both of which have been changed 
for usage of my Oracle database (dialect, url, username, password, etc.). 

However, when I deploy the sar using build.deploy.xml and ant, it still is 
attempting to connect to the Hypersonic db, not Oracle. 

Help!  I am confused why the jbpm.properties files appear in both the 
jbpm-3.0.3.jar and the jbpm.sar.cfg.jar, and I need help knowing how to get a 
database other than the default Hypersonic database to work in JBoss. 

Thanks for your help. 

Brad



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

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

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: @SelectItems and @SelectItemsSelection annotations?

2006-07-05 Thread petemuir
I'm just packaging my @SelectItems implementation to put it on the wiki.  What 
package name is best to use? Something under org.jboss.seam? 
org.jboss.seam.extensions.selectitems perhaps?

Also what namespace for taglib.xml. Seam's uses 
http://jboss.com/products/seam/taglib so perhaps 
http://jboss.com/products/seam/extensions/selectitems/taglib?

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

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

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] - Request/response asynchronous message driven bean

2006-07-05 Thread srki
Hi,

I would like to send a response to the client once the server is finished 
processing.  Can I do this with message driven beans if the client sends the 
message to the server asynchronously?

Thanks

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

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

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 Eclipse IDE (users)] - Frequent "failed to start" error

2006-07-05 Thread znbailey
Hi,

I am running Eclipse 3.2 final on a Windows XP workstation, using JBoss AS 
3.2.7 and JBossIDE 2.0 Alpha. I am finding that about 40% of the time when I am 
starting the server for debugging, I get a "failed to start" error with no more 
information - nothing is output on the console in terms of an error message, 
the server just stops booting.

I am not using the publishing feature or anything of that sort - we deploy our 
files manually in a flat EAR.

Any suggestions/questions?

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

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

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: How to specify default values for attributes in service

2006-07-05 Thread dabramov
I'm interested in this as well, but so far I haven't found a way.

The JBoss J2EE deployment descriptor XSD which includes the POJO Service 
deployement descriptor does not seem to allow for arbitrary management 
properties, however. 

I also tried the using a -service.xml file as describe  in this thread, but 
there was no magic - I ended up w/ a ordinary MBean, but the EJB didn't get 
deployed.

Seems like this is needed. I really like how this ties together the actual 
service w/ the mgmt interface, but without the attributes I can't use it in a 
lot of places. Shall I put in a request via JIRA or is there something we're 
not seeing? 


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

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

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] - Re: Any idea why ELs, like ${user.email}, wouldn't work in J

2006-07-05 Thread PeterJ
Are you sure that it is in Tomcat?  I just checked 5.5.17 and none of the jars 
contain the javax.el.* package.  (Just wondering if you enhanced Tomcat or 
installed as part of some other package, and that is how you got javax.el.*.  I 
know that kind of a situation has happened to me before.)

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

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

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] - Re: Any idea why ELs, like ${user.email}, wouldn't work in J

2006-07-05 Thread SmokingAPipe
Never mind about that last post, that isn't right.  javax.el.* is of course 
part of J2EE.  JBoss should ship with an implementation of that package.  
That's where the problem is.  Tomcat does have an implementation, but JBoss 
does not appear to, which I don't understand.


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

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

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: detect changes into an ejb3 exploded jar

2006-07-05 Thread cmlopezalv
bdecoste, thanks for your comment, when i mean "it doesnt work"  i mean the 
approach does not work for the application requirements.  

I've seen some posts like this one:

http://www.jboss.com/index.html?module=bb&op=viewtopic&t=83952
(see 3 entry), you can see:

"I had a good look at Ejb3Configuration (and its source code) prior to posting 
the question, but came to the conclusion that I could not use it in conjunction 
with the container's services to scan the jars for entity beans to deploy, 
parse the annotations etc. However, I can see that using addAnnotatedClass(...) 
explicitely may do the trick.  "

They mention something about using the containers's services to scan the jars 
for entity beans to deploy.  

I can see there is a service "DeploymentScanner", that you can configure in the 
standardjboss.xml file, but this does not provide the functionality a need.

My question is, if the guy is referencing to any other kind of service that can 
be used to work around this issue ?.

thanks again for your time.

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

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

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: How to send a request to a node instance that I specify

2006-07-05 Thread chwang
Hi, Geert,

Thank you very much. 
I used  (request.getSession(true)).getId() to generate id.

D914C93143AF95B2712C64E7637EED68.node1 is genrated by above code.

I have a couple of questions.

1.) you mean I put this id in the cookie, 
like this:

Cookie mycookie = new  Cookie(D914C93143AF95B2712C64E7637EED68.node1 , "");
reposnse.addCookie(   mycookie );

then at the client site, using HTTPClient to keep this cookie. 
I know HTTPClient is from Apache, There is any related class from Sun' library?

2.) if I  use mod_proxy_balancer instead of mod_jk, I wonder if I don't need to 
use cookie nad httpclient. becasue I have written code using URLconnection. 
with only mod_proxy_balancer setup will make it easy. 

Chwang 




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

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

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 Eclipse IDE (users)] - Re: Cannot create debug-configuration

2006-07-05 Thread Hilwi
Hello! It's me again with the next problem... :-)

I have looked at your video you mentioned a few posts ago and saw that you 
deployed your ejb-jar to the server by clicking on "Run on server".

I have imported a project created with JBoss IDE 1.5 and wanted to deploy my 
ejb-jars in the same way as you did in the demo but i only get the following 
error-message:

No launchable artifact could be found in the selection.

Is there any way to make this runnable with the new JBossIDE?

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

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

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 I complete switch of JBPM db to Oracle from Hypersoni

2006-07-05 Thread brado
I have downloaded the jBPM starter's kit, read the user guide, and all jBPM and 
jBPM-db readmes. It seems that the subject of configuring jBPM and the 
subsequent deployment to an actual JBoss server instance is an uncovered topic. 
The only documentation I can find seems to only address how to run the db 
create / drop tests from the jbpm-db ant build. I can run these things just 
fine, and all tests succeed. 

But now I need to to know how to get a running instance of JBoss to properly 
use my Oracle database, rather than the Hypersonic database. I've tried 
changing the jbpm.sar's jbpm.properties file to point to my oracle-specific 
hibernate.properties file, but that doesn't seem to do anything. As a matter of 
fact, the changes to the jbpm.properties file in the 
jbpm/src/resources/jbpm.sar directory aren't found at all in the generated sar. 

How is the switch to another database for use in JBoss accomplished? 

(As an aside, I've found several bugs in the starter kit's jbpm ant files -- 
I'm wondering if there's maybe a new version of this going to be released soon 
-- it doesn't appear to have been tested.)

Help is greatly appreciated, thanks.

Brad

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

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

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: Misunderstanding of how @In works.

2006-07-05 Thread c_eric_ray
That did the trick. It makes sense too. I don't know why I didn't catch that 
but I see now how the naming has to line up in order for the injection to work. 
Very cool.

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

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

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] - Re: Any idea why ELs, like ${user.email}, wouldn't work in J

2006-07-05 Thread SmokingAPipe
Well I think I found the problem.  The class javax.el doesn't appear in any of 
the jars that ship with JBoss 4.0.4.  So it looks like JBoss is in fact 
shipping with an older JSP setup.

So I need to somehow install the new JSP jars and have JBoss use those instead. 
 Any suggestions on this?


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

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

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 Eclipse IDE (users)] - Re: JBoss Eclipse IDE 2.0.0.Alpha released!

2006-07-05 Thread [EMAIL PROTECTED]
In our released features there are some missing WTP dependencies, so our update 
site will only work if you pre-install WTP, EMF, GEF, and JEM from the Callisto 
update site.

We should have this fixed in 2.0.0.Beta1

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

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

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 Eclipse IDE (users)] - JBoss Eclipse IDE 2.0.0.Alpha released!

2006-07-05 Thread [EMAIL PROTECTED]
The JBoss Eclipse IDE Team is happy to announce JBoss Eclipse IDE 2.0.0.Alpha!

This is our first Eclipse 3.2/Callisto compatible official release. Note that 
this is an Alpha/development release so you will need to use our development 
update site.

Here are the relevant links:

Sourceforge download area:
http://sourceforge.net/project/showfiles.php?group_id=22866&package_id=72248&release_id=429207

Release Notes:
http://sourceforge.net/project/shownotes.php?release_id=429207&group_id=22866

JIRA Changelog:
http://jira.jboss.com/jira/secure/ReleaseNote.jspa?version=12310860&styleName=Html&projectId=10020&Create=Create

Download Guide:
http://www.jboss.com/products/jbosside/downloads

Update site:
http://download.jboss.org/jbosside/updates/development


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

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

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] - question regarding namespace in wstools

2006-07-05 Thread agun
I am looking at the JBoss 4.0.4 WS stack and see that the wstools requires
the user to supply the package to namespace mapping (or vice-versa)
for a java2wsdl or a wsdl2java invocation. Why is there no option of 
turning this off so that the JBossWS stack itself generates the default 
mapping?

Why was it designed to push the mapping to the user *always*? Both axis
and websphere generates default mappings and provide the user the option
to specifiy the mappings if they want.

I am curious why JBoss took this approach when most, if not all, the other
vendors with similar tools do not require the user to provide any mappings.

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

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

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 Getting Started Documentation] - Re: jboss postgresql pooling

2006-07-05 Thread PeterJ
1) I think MAX_INT (or MAX_LONG). :-)
2) You probably will not want to use MAX_INT because each pooled resource uses 
memory (space in the Java heap) and you only have so much available.   How many 
you should set really depends on how many concurrent users you think that your 
application will have, and how many connections each user needs (I have seen 
apps that required 2 connections per user).  However, you do not need a 
connection for every user  logged in (unless your application is not well 
written - the app should hold a connection for as little a time as possible).  
See 
http://wiki.jboss.org/wiki/Wiki.jsp?page=SPECjAppServer2002TuningComponentsASDataSource
 for suggested settings (you will need to know that for each IR there are 8 
concurrent users, for example, an IR of 50 means 400 concurrent users, and each 
user needs a connection)
3) The only issue is  total memory usage.  There is no "maximum connections 
among all pooled databases" value.

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

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

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: Cannot Render: Object Not Found

2006-07-05 Thread Silicio
in -object.xml
try:
default

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

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

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] - Re: Left Bracket

2006-07-05 Thread PeterJ
I just noticed that my supposedly nicely formatted post, which previewed 
properly, got totally screwed up in the final message.  So here it is again:

[code]
  |foo
  |bar
  | [/code]

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

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

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: Seam component with the same name

2006-07-05 Thread supernovasoftware.com
I would rather not leave off this annotation.

It would be the default for many of the applications that would use the class.

If I leave it off I would have to put it in every components.xml for every 
application that used this class instead of the few cases that need an 
overridding component.

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

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

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] - Re: getResourceAsStream returns null when invoked from an EJ

2006-07-05 Thread offline
I'm not sure I understand:

The resource is not in META-INF in config.jar, it's in the root of the jar, and 
is at the root of the classpath.  My understanding of getResourceAsStream was 
that if you don't provide the leading "/" character, it looks relative to the 
current class, which is undesired, since the config file sits elsewhere in the 
class tree.

How does that work?

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

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

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: Deployment exploded war to jboss cluster

2006-07-05 Thread ScottMarlowNovell
The archive needs to be J2EE deployable as it normally would need to be 
(including the WEB-INF).



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

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

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] - Re: Any idea why ELs, like ${user.email}, wouldn't work in J

2006-07-05 Thread SmokingAPipe
I put in this page directive in my JSP:

<%@ page isELEnabled="true"%>

and when I accessed the page I got:

org.apache.jasper.JasperException: /index.jsp(1,1) Page directive has invalid 
attribute: isELEnabled

which indicates to me that JBoss is somehow not providing me with JSP 2.0.  Is 
this correct?  I know that JBoss is using Tomcat 5.5.17 which ships with JSP 
2.0 but it looks like it isn't there.  Any sugestions would be welcome.


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

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

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: JBoss 4.0.2 -> 4.0.4 (Problems with topic's JNDI lookup)

2006-07-05 Thread chief39
I replaced "jms" folder in 4.0.4 by analog from 4.0.2
And got the same.

Downloading of Jboss-messaging-1.0.1.CR2 have been finished.
Tomorrow will try to solve my trouble using it...

Is here nobody, who was confronted with these difficulties?

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

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

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] [Persistence, JBoss/CMP, Hibernate, Database] - Re: IllegalAccessError initializing ehcache.CacheManager

2006-07-05 Thread blankema
I am having the same problems. I am very interested in a solution.

Does anyone know how to work around this?

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

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

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 in installing BPEL extension with JBoss

2006-07-05 Thread [EMAIL PROTECTED]
Kashif,

As pointed out in the jBPM BPEL manual, section 3.4.2, the primary testing 
target is JBoss 4.0.4, with  4.0.3.SP1 and 4.0.2 being secondary. Earlier 
versions are untested. Consider upgrading to the latest JBoss version.

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

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

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: detect changes into an ejb3 exploded jar

2006-07-05 Thread bdecoste
When you say "it doesn't work", do you mean that the redeploy does not work at 
all or are you saying that a complete undeploy/redeploy does not work for your 
application requirements?

Currently, touching/modifying the primary deployment descriptor in an exploded 
archive will always perform a full undeploy/redeploy. We are looking into just 
depoying/redeploying the deltas, but that is not currently available.

When you depoy a new bean, you can always deploy it in a new jar.

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

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

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: i18n gotcha suggested by Seam manual

2006-07-05 Thread petemuir
Try the alternative syntax:


  | 
  | 

I agree, the dot notation is most useful as it allows you 'package' messages 
e.g. customer.name, button.ok.



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

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

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] - EJB 3.0 Interceptors not Firing

2006-07-05 Thread Saish
I'm sure this is the worst of all possible post types (e.g., no behavior rather 
than an error that one can diagnose).  I am trying to write a very simple EJB 
3.0 interceptor that will perform error logging and auditing.  The interceptor 
itself is in a separate class and is referenced via the @Interceptors 
annotation in a SLSB.  When viewing my logs, I never see any of the error 
messages output.

Or there might be a simple explanation, "We have not yet implemented 
interceptors in JBoss-4.0.04-GA".  :^)

My thanks in advance for any assistance anyone can render.  

- Saish



--- ERRORINTERCEPTOR.JAVA ---

public final class ErrorInterceptor extends Object {

@AroundInvoke
public final Object isDatabaseAlive(final InvocationContext ctx)
throws Exception {

// NEITHER OF THESE EVER SHOW UP IN LOGS
System.err.println("DEBUG >>> GOTCHA!!!");
LOG.error("ErrorInterceptor executing method " + 
ctx.getMethod().toGenericString());
try {
return ctx.proceed();
}
catch (Throwable cause) {
ErrorHandler.getInstance().process(cause);
if (cause instanceof RuntimeException) {
throw (RuntimeException) cause;
}
if (cause instanceof Error) {
throw (Error) cause;
}
if (cause instanceof Exception) {
throw (Exception) cause;
}
throw new UnexpectedError("Unknown exception received", 
cause);
}
}
}

--- HEARTBEATIMPL.JAVA 

@Stateless
@Interceptors   ({xxx.xxx.xxx.core.aspect.aop.ErrorInterceptor.class})
@Local  ({Heartbeat.class})
@Remote ({Heartbeat.class})

@LocalBinding   (jndiBinding="local:xxx/xxx/core/aspect/remote/Heartbeat")
@RemoteBinding  (jndiBinding="remote:xxx/xxx/core/aspect/remote/Heartbeat")

public final class HeartbeatImpl extends Object 
implements Heartbeat {

public final boolean isDatabaseAlive() throws Exception {

if (true) {
throw new Exception("Foo bar!!!");  // TO TEST ERROR 
HANDLER
}
try {
if (dataSource == null) {
return false;
}
Connection conn = dataSource.getConnection();
if (conn == null) {
return false;
}
conn.close();
return true;
}
catch (SQLException e) {
e.printStackTrace();
return false;
}
catch (RuntimeException e) {
e.printStackTrace();
return false;
}
}
}

-- STACK TRACE (Note:  error is forced by code above) ---

2006-07-05 15:12:32,392 ERROR 
[org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/mortrac].[jsp]]
 Servlet.service() for servlet jsp threw exception
java.lang.Exception: Foo bar!!!
at 
xxx.xxx.xxx.core.aspect.remote.HeartbeatImpl.isDatabaseAlive(HeartbeatImpl.java:52)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:112)
at 
org.jboss.ejb3.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:166)
at 
org.jboss.ejb3.interceptor.EJB3InterceptorsInterceptor.invoke(EJB3InterceptorsInterceptor.java:63)



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

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

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] - Re: getResourceAsStream returns null when invoked from an EJ

2006-07-05 Thread lafr
We use this with JBoss-4.0.4 in a similar way.
You may try is without the leading slash in the resource's name. If I remember 
correct, this is not needed | not allowed.
The resouce is searched along the class path.
If it's in a subdirectory, e.g. META-INF then "META-INF/config.properties" has 
to be used.

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

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

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: Misunderstanding of how @In works.

2006-07-05 Thread petemuir
Try changing


  |   @In(create=true)
  |   private CalculatorBean cb;
  | 

to


  |   @In(create=true, value=calculator)
  |   private CalculatorBean cb;
  | 

Seam uses the name of the component variable as the name of the context 
variable by default; in the code you gave the context variable cb is unknown to 
Seam.

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

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

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 I make jbpm web admin console to work in jbpm-bpe

2006-07-05 Thread [EMAIL PROTECTED]
Actually this issue had already been brought to my attention at JBoss World. I 
created BPEL-196 for tracking purposes. Thanks for providing details.

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

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

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] - Global caching

2006-07-05 Thread jboss2005_01
Hello everybody,


I've searching around for the last two weeks trying to find a solution for the 
following set-up. What I would like to achieve is a set-up where 4 JBoss 
instances work together in a clustered environment. Two nodes are actually 
serving client requests while two other nodes are being hot-standby being 
Apache working as software loadbalancer. This works just great and is up and 
running. So no difficulties concerning this matter.

Now I would like to extends the configuration by setting up a fifth JBoss 
instance running the default configuration that needs to serve like a 
centralized, cluster-wide cache. And this is where difficulties appear. 
Browsing  the Wiki has showed me (due to two articles written by Manik Surtani) 
that I need to set-up a TreeCache on this fifth machine together with a 
TcpCacheServer. Each node then synchronizes with the global cache by using the 
TcpDelegatingCacheLoader. The TreeCache on JBoss instance 5 can then be backed 
by a JDBCCacheLoader to persist the cached data.

As described in this article, I have installed a default JBoss instance wich I 
extended with jboss-cache.jar and jgroups.jar in it's default lib folder to 
provice caching functionality. I'm using JBossCache 1.3.0 together with the 
JGroups version provided with JBoss 4.0.2 on a JBoss 4.0.2 configuration. In 
fact, all my JBoss nodes are also running 4.0.2. I configured both the 
TreeCache and the TcpCacheServer in a HttpCache-service.xml file (located 
below) and copied this one to the deploy folder together with a mysql-ds.xml 
file because my TreeCache uses the JDBCCacheLoader.

A first strange thing appeared when starting the AS. I got an error message 
stating that the datasource was not bounded alltough it is available in the 
deploy folder. As far as I know, xxx-ds.xml files are always deployed before 
xxx-service.xml files under normal deployment order configuration. Can anyone 
explain what the reason for this behaviour might be? Anyway I solved it by 
using a deploy.last folder that contains my xxx-service.xml file which solved 
the problem.

A second problem I have is with the TcpCacheServer. As soon as this service is 
started by the AS, it seems to freeze. The web-console in fact is blocking, so 
I dont' have the possibility to do anything with the default JBoss 
configuration. Does anyone have the same behaviour in this circumstances? If 
so, did anyone found a solution for this one. I know I must be doing something 
wrong within this set-up but I can't figure out what. Any help would be greatly 
appreciated off course and any assistance for finding a solution would result 
in a neat article within the Wiki describing this entire configuration.

Below some of the configuration files I used within my attempt to set-up this 
configuration.
The JBoss instance serving as cache has the following service definition file 
called HttpCache-service.xml


  | 
  | 
  | 
  | 
  | 
  | jboss:service=Naming
  | jboss:service=TransactionManager
  | 
  | org.jboss.cache.JBossTransactionManagerLookup
  | 
  | PESSIMISTIC
  | 
  | REPEATABLE_READ
  | 
  | LOCAL
  | 
  | TRUE
  | 
  | 5000
  | 
  | 
  | 
  | TRUE
  | /
  | FALSE  

  | 
  | 
org.jboss.cache.loader.JDBCCacheLoader
  | 
  | 
cache.jdbc.datasource=java:/HttpCacheDS
  | 
  | 
true
  | 
false
  | false
  | 
  | 
  | 
  | 
  | 
  |
   
  | jboss.cache:service=HttpCache-->   
   
  | ${jboss.bind.address:localhost}
  | 7500
  | 
  | 
  | 
  | 

Each JBoss cluster node (running the all configuration) has a modified 
tc5-cluster-service.xml file that should (if I understand everything correct) 
use the global cache to synchronize with:


  | 
  | 
  | 
  | 
  | 
  | jboss:service=Naming
  | jboss:service=TransactionManager
  | 
  | org.jboss.cache.JBossTransactionManagerLookup
  | 
  | REPEATABLE_READ
  | 
  | LOCAL
  | 
  | 1
  | 
  | false
  | 
  | false
  | 
  |  

[JBoss-user] [JBoss Seam] - Re: i18n gotcha suggested by Seam manual

2006-07-05 Thread dbatcn
Some more issues in internationalization for the unwary uninitiated:  It's 
common in Java to use the period character to separate words in resource 
property names, e.g.:

repeat.password=Repeat Password

Unfortunately, this gets interpreted (by JSF, I think) as a series of 
properties, so it looks for the "repeat" property of the messages bundle when 
you use it like:



anonymous wrote : 
  | 11:39:44,796 ERROR [STDERR] Jul 5, 2006 11:39:44 AM 
com.sun.facelets.FaceletViewHandler handleRenderException
  | SEVERE: Error Rendering View[/register.xhtml]
  | javax.faces.el.PropertyNotFoundException: /register.xhtml @42,92 
value="#{messages.repeat.password}": Bean: java.lang.String, property: password
  | at 
com.sun.facelets.el.LegacyValueBinding.getValue(LegacyValueBinding.java:58)
  | at javax.faces.component.UIOutput.getValue(UIOutput.java:75)
  | at 
org.apache.myfaces.renderkit.RendererUtils.getStringValue(RendererUtils.java:225)
  | ...
  | 

Trying to change the period to a dash doesn't work either (it gets interpreted 
as subtraction):

repeat-password=Repeat Password



anonymous wrote : 
  | 11:45:28,968 ERROR [STDERR] Jul 5, 2006 11:45:28 AM 
com.sun.facelets.FaceletView
  | Handler handleRenderException
  | SEVERE: Error Rendering View[/register.xhtml]
  | java.lang.NumberFormatException: For input string: "repeat"
  | at 
sun.misc.FloatingDecimal.readJavaFormatString(FloatingDecimal.java:1224)
  | at java.lang.Double.valueOf(Double.java:447)
  | at java.lang.Double.(Double.java:539)
  | at 
com.sun.el.lang.ELArithmetic$DoubleDelegate.coerce(ELArithmetic.java:137)
  | at com.sun.el.lang.ELArithmetic.coerce(ELArithmetic.java:362)
  | at com.sun.el.lang.ELArithmetic.subtract(ELArithmetic.java:285)
  | at com.sun.el.parser.AstMinus.getValue(AstMinus.java:44)
  | at 
com.sun.el.ValueExpressionImpl.getValue(ValueExpressionImpl.java:192)
  | at 
com.sun.facelets.el.TagValueExpression.getValue(TagValueExpression.java:71)
  | at 
com.sun.facelets.el.LegacyValueBinding.getValue(LegacyValueBinding.java:56)
  | at javax.faces.component.UIOutput.getValue(UIOutput.java:75)
  | at 
org.apache.myfaces.renderkit.RendererUtils.getStringValue(RendererUtils.java:225)
  | at 
org.apache.myfaces.renderkit.html.HtmlLabelRenderer.encodeBegin(HtmlLabelRenderer.java:105)
  | at 
javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:307)
  | at 
com.sun.facelets.tag.jsf.ComponentSupport.encodeRecursive(ComponentSupport.java:232)
  | at 
com.sun.facelets.tag.jsf.ComponentSupport.encodeRecursive(ComponentSupport.java:239)
  | at 
com.sun.facelets.tag.jsf.ComponentSupport.encodeRecursive(ComponentSupport.java:239)
  | at 
com.sun.facelets.tag.jsf.ComponentSupport.encodeRecursive(ComponentSupport.java:239)
  | at 
com.sun.facelets.FaceletViewHandler.renderView(FaceletViewHandler.java:554)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:352)
  | at javax.faces.webapp.FacesServlet.service(FacesServlet.java:107)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  | ...
  | 

Camel-casing, e.g.

repeatPassword=Repeat Password



does work as a workaround, as one might expect.

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

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

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] - Error in named query: SchedulerSession.deleteTimersForProces

2006-07-05 Thread [EMAIL PROTECTED]
I am using jbpm3.1 with Jboss4.0.3sp1 and hibernate3.I am getting the error 
while deploying the application. Can some body please help me with this 
issue.This issue in on JIRA.
Error in named query: SchedulerSession.deleteTimersForProcessInstance
org.hibernate.hql.ast.QuerySyntaxError: unexpected token: t near line 3, column 
48 [

  delete from org.jbpm.scheduler.exe.Timer t
  where t.processInstance = :processInstance

  ]
at 
org.hibernate.hql.ast.ErrorCounter.throwQueryException(ErrorCounter.java:63)
at 
org.hibernate.hql.ast.QueryTranslatorImpl.parse(QueryTranslatorImpl.java:215)
at 
org.hibernate.hql.ast.QueryTranslatorImpl.doCompile(QueryTranslatorImpl.java:127)
at 
org.hibernate.hql.ast.QueryTranslatorImpl.compile(QueryTranslatorImpl.java:83)
at 
org.hibernate.impl.SessionFactoryImpl.getQuery(SessionFactoryImpl.java:427)
at 
org.hibernate.impl.SessionFactoryImpl.checkNamedQueries(SessionFactoryImpl.java:388)
at org.hibernate.impl.SessionFactoryImpl.(SessionFactoryImpl.java:291)
at 
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1005)
at 
org.jbpm.db.JbpmSessionFactory.buildSessionFactory(JbpmSessionFactory.java:168)
at org.jbpm.db.JbpmSessionFactory.(JbpmSessionFactory.java:107)
at 
org.jbpm.db.JbpmSessionFactory.buildJbpmSessionFactory(JbpmSessionFactory.java:124)
at 
org.jbpm.db.JbpmSessionFactory.buildJbpmSessionFactory(JbpmSessionFactory.java:120)
at 
org.jbpm.db.JbpmSessionFactory.buildJbpmSessionFactory(JbpmSessionFactory.java:116)
at 
com.ustrust.service.bpm.repository.impl.CommonBPMRepositoryImpl.(CommonBPMRepositoryImpl.java:48)
at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
at 
sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
at 
sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
at java.lang.reflect.Constructor.newInstance(Constructor.java:274)
at 
org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:100)
at 
org.springframework.beans.BeanUtils.instantiateClass(BeanUtils.java:76)
at 
org.springframework.beans.factory.support.SimpleInstantiationStrategy.instantiate(SimpleInstantiationStrategy.java:49)
at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.instantiateBean(AbstractAutowireCapableBeanFactory.java:453)
at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:333)
at 
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:226)
at 
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:147)
at 
org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:275)
at 
org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:318)
at 
org.springframework.web.context.support.AbstractRefreshableWebApplicationContext.refresh(AbstractRefreshableWebApplicationContext.java:134)
at 
org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:230)

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

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

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: Seam reverse engineering tool

2006-07-05 Thread patrickvankann
I have tried to download the windows bundles from 
http://labs.jboss.com/portal/jbosside/downloads/nightly but each link appears 
broken. For example:

http://download.jboss.org/jbosside/builds/nightly/200602282339-nightly/bundle/JBossIDE-200602282339-nightly-Bundle-win32.zip

Should I try elsewhere?

Thanks in advance.

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

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

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] - NullPointerException and No conversation context active

2006-07-05 Thread andrew.rw.robinson
Environment:
Facelets 1.0.14
MyFaces 1.1.4 Snapshot
Seam 1.0.1 GA

Problem:
I have having an exception in the RESTORE VIEW of my page. My page flow is this:
1) User hits a listing page with a data table. User clicks a command link in a 
row of the table containing a tomahawk updateActionListener.
2) Action is fired that starts a conversation (@Begin) (this never happens 
because of the error)
3) Navigate to the details page

Here is the exception output:
12:55:43,415 ERROR [PhaseListenerManager] Exception in PhaseListener 
RESTORE_VIEW(1) afterPhase
  | java.lang.NullPointerException
  | at 
org.jboss.seam.contexts.PageContext.getAttributeMap(PageContext.java:103)
  | at org.jboss.seam.contexts.PageContext.(PageContext.java:40)
  | at org.jboss.seam.contexts.Lifecycle.resumePage(Lifecycle.java:323)
  | at 
org.jboss.seam.jsf.AbstractSeamPhaseListener.restoreAnyConversationContext(AbstractSeamPhaseListener.java:39)
  | at 
org.jboss.seam.jsf.SeamPhaseListener.afterPhase(SeamPhaseListener.java:63)
  | at 
org.jboss.seam.jsf.SeamExtendedManagedPersistencePhaseListener.afterPhase(SeamExtendedManagedPersistencePhaseListener.java:55)
  | at 
org.apache.myfaces.lifecycle.PhaseListenerManager.informPhaseListenersAfter(PhaseListenerManager.java:89)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.restoreView(LifecycleImpl.java:181)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:66)
  | at javax.faces.webapp.FacesServlet.service(FacesServlet.java:137)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.myfaces.webapp.filter.ExtensionsFilter.doFilter(ExtensionsFilter.java:144)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter.java:30)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamExceptionFilter.doFilter(SeamExceptionFilter.java:45)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  | at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:524)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  | at 
org.apache.catalina.authenticator.SingleSignOn.invoke(SingleSignOn.java:419)
  | at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  | at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
  | at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
  | at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
  | at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
  | at 
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
  | at java.lang.Thread.run(Thread.java:595)
  | 12:55:43,428 DEBUG [DebugPhaseListener] The phase RESTORE_VIEW(1) has 
completed.
  |   FacesContext.responseComplete(): false
  | 12:55:43,434 ERROR [PhaseListenerManager] Exception in PhaseListener 
RESTORE_VIEW(1) afterPhase
  | java.lang.NullPointerException
  | at 
org.apache.myfaces.renderkit.html.util.AutoScrollPhaseListener.afterPhase(AutoScrollPhaseListener.java:52)
  | at 
org.apache.myfaces.lifecycle.PhaseListenerManager.informPhaseListenersAfter(PhaseListenerManager.java:89)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.restoreView(LifecycleImpl.java:181)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:66)
  | at javax.faces.webapp.FacesServlet.service(FacesServlet.java:137)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173

[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: unprocessed jstl tags

2006-07-05 Thread patrickvankann
I had this problem also (The standard tags were not being processed, but no 
error was thrown). However, I was able to resolve it by ensuring that my 
web.xml had was defined according to the servlets 2.4 xsd.

In other words, insure that your web.xml has this line at the top.

http://java.sun.com/xml/ns/j2ee";
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee web-app_2_4.xsd"
version="2.4">

Originally I had the 2.2 dtd declared.

Other than that, you need to just ensure that you have the latest jstl.jar and 
standard.jar in your WEB-INF/lib and reference the taglib as described in your 
JSP pages as described above. I hope this helps.

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

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

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: Cannot Render: Object Not Found

2006-07-05 Thread barddzen
Any response to this yet?

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

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

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: Configuring Tomcat to support JSTL

2006-07-05 Thread rdoust
So, the problem was that the jsp pages that didn't work had an extension of 
jspf instead of jsp. Adding a servlet-mapping entry to Tomcat's web.xml file 
solved the problem.
Thanks to all who tried to help.

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

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

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 Eclipse IDE (users)] - Re: Cannot create debug-configuration

2006-07-05 Thread Hilwi
I didn't see your last post becase it was on the secon page of the topic - so 
sorry for my last post...

I now have installed WTP and now I can open the JBoss-View - thank you for your 
help!

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

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

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: Deployment exploded war to jboss cluster

2006-07-05 Thread mittalr
Thanks a lot Scott,

I was reading the link. At the end it says

"One way to solve would be to archive the contents of the exploded directory 
and farm deploy the archive instead (users can currently do this on their own). 
"

Does this archive has to be J2EE compliant or I can just make use of folder 
structure with out WEB-INF directory ?

Thanks
Rajesh Mittal

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

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

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: Misunderstanding of how @In works.

2006-07-05 Thread c_eric_ray
To add some insight...

I want to use the CalculatorBean to hold the data entered in the form and have 
it injected into the CalculatorAction. This way the calculate method can access 
the data in the bean to perform the actual calculations. This makes sense to me 
and seams (pun intended) logical to me. 

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

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

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: Weblogic 91 and POJO Cache

2006-07-05 Thread sphinxmember
Hi ,

Got it working with both Pojo and Tree Cache.
I didnt notice that it was throwing this exception on the admin server
org.jboss.cache.statetransfer.StateTransferGenerator_1241] - failed initialing 
state transfer byte[]
java.lang.NoClassDefFoundError: org/jboss/invocation/MarshalledValueOutputStream


After putting the relevant jar in the classpath , the second member of the 
cache cluster replicated the state on its startup.

Thanks a lot.

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

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

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] - Misunderstanding of how @In works.

2006-07-05 Thread c_eric_ray
I'm doing the following and it's just not working for me. I think I don't quite 
understand how to use the @In annotation. Any suggestions? I apologize for the 
long post, but I wanted to show the right amount of information. Thanks.

Here's the error...

 javax.faces.el.EvaluationException: /calculator.xhtml @42,132 
action="#{calculate.calculate}": javax.ejb.EJBException: 
org.jboss.seam.RequiredException: In attribute requires value for component: 
calculate.cb

Code looks like this...
@Name("calculate")
  | @Stateful
  | public class CaclulateAction implements Calculate {
  |   
  |   @In(create=true)
  |   private CalculatorBean cb;
  |   
  |   @DataModel
  |   private List cbList;
  |
  |   public String calculate() {
  | double tmp = Math.pow(1. + cb.getGrowthRate() / 12., 12. * (cb.getEnd() 
- cb.getStart()) + 1);
  | double result = cb.getSaving() * 12. * (tmp - 1) / cb.getGrowthRate();
  | 
  | cb.setResult(result);
  | cbList.add(cb);
  | 
  | return "/calculator.jsf";
  |   }
  | }

simple bean to hold the data...
@Name("calculator")
  | @Scope(ScopeType.CONVERSATION)
  | public class CalculatorBean {
  | 
  | getters/setters
  | }

portion of calculator.xhtml file

  | 
  | 
  |   Start Age 
  |   
  | 
  | 
  |   End Age 
  |   
  | 
  | 
  |   Growth Rate 
  |   
  | 
  | 
  |   Monthly Savings 
  |   
  | 
  | 
  |   
  |   
  | 
  |   
  | 
  |   
  |   
  | 
  |   
  | 
  |   
  | 
  |   
  |   
config files and descriptors...

  | --- components.xml ---
  | 
  | 
  | 
  | JsfCalculator/#{ejbName}/local
  | 
  | 
  | 
  | 
  | 
  | 
  | --- faces-config.xml ---
  | 
  | 
  | 
  | com.sun.facelets.FaceletViewHandler
  | 
  | 
  | 
  | 
  | 
  | org.jboss.seam.jsf.SeamPhaseListener
  | 
  | 
  | 
  | 
  | 
  | 
  | --- web.xml ---
  | 
  | 
  | Faces Servlet
  | javax.faces.webapp.FacesServlet
  | 1
  | 
  | 
  | 
  | 
  | Faces Servlet
  | *.jsf
  | 
  | 
  | 
  | 
  | 
  | 
  | org.jboss.seam.servlet.SeamListener
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | org.apache.myfaces.webapp.StartupServletContextListener
  | 
  | 
  | 
  | 
  | javax.faces.STATE_SAVING_METHOD
  | client
  | 
  | 
  | 
  | 
  | javax.faces.DEFAULT_SUFFIX
  | .xhtml
  | 
  | 
  | 
  | facelets.DEVELOPMENT
  | true
  | 
  | 
  | 
  | Set this to true for strict JSF RI 
validation
  | com.sun.faces.validateXml
  | true
  | 
  | 
  | 
  | Set this to true to have JSF RI verify all 
appliation objects
  | com.sun.faces.verifyObjects
  | true
  | 
  |   
  |   
  | javax.faces.application.CONFIG_FILES
  | /WEB-INF/faces-config.xml
  |   
  | 
  | 
  | 
  | calculator.jsf
  | 
  | 
  | 

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

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

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] - Re: Any idea why ELs, like ${user.email}, wouldn't work in J

2006-07-05 Thread SmokingAPipe
Not really.  EL is part of JSP 2.0 and has nothing to do with JSTL.  Also, 
displaying things immediately using EL without needing a c:out tag is quite 
handy.  So, any ideas on this?  Is EL somehow turned off by JBoss?


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

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

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: Request parameter arrays?

2006-07-05 Thread bkyrlach
This is now fixed in CVS.

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

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

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: Maven2 and JBoss Seam DVD Store demo

2006-07-05 Thread oranheim
The components.xml was placed under /src/test/resources/WEB-INF. Here is my 
configuration:


  | 
  | 
  | 
  | true
  | true
  | jboss-seam-dvd-1.0/#{ejbName}/local
  | 
  | 
  | 
  | 
  | 12
  | 
  | 
  | 
  | 
  | 
  | 


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

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

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] - Re: Problem while deploying JBoss Seam on Tomcat 5.5.17

2006-07-05 Thread [EMAIL PROTECTED]
Use the Jems installer, see the getting started document on the JBoss Seam 
product page

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

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

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] - Re: Any idea why ELs, like ${user.email}, wouldn't work in J

2006-07-05 Thread PeterJ
Shouldn't you first reference the standard tag libraries in your jsp page, such 
as:

<%@ taglib prefix="c" uri="http://java.sun.com/jstl/core"%>

and then use the core 'out' function, such as:

Welcome, ! 

And you will need jstl.jar and standard.jar in WEB-INF/lib.

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

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

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: Configuring Tomcat to support JSTL

2006-07-05 Thread rdoust
I have found that the problem only happens on one page! I'm very excited. Just 
have to find out what's wrong with that page now.

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

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

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: Reverse engineering & seam

2006-07-05 Thread RuiRosado
Thank you Aristides. That was a good hint.
I am one step (=jsf-page) further. When I fill in a form for finding or 
creating, I get another error. Going to check that now, but if you have any new 
hints ... Anyway, I will post my findings here.

Rui



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

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

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] - Any idea why ELs, like ${user.email}, wouldn't work in JBoss

2006-07-05 Thread SmokingAPipe
I have got my application working within JBoss so that it shows a signup form 
and a login form with JSF, and can now store the new users using EJB, and I now 
have an authorization filter to protect access to the /protected/* pages.  
That's all good.

But within those pages, I created a index.jsp file and I used a line like this:

Welcome, ${user.firstName}!

where "user" is stored in the session scope.  Instead of evaluating the EL, it 
literally outputs "Welcome, ${user.firstName}!".

Any idea what could be going wrong here?

Thanks


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

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

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: Deployment exploded war to jboss cluster

2006-07-05 Thread ScottMarlowNovell
Hi Rajesh,

No, you cannot deploy exploded war(s) to the Jboss cluster.  You could either 
build the war each time as you suggest or you could use non-clustered 
deployment on a shared file system (e.g. instead of using farm folder, use 
alternative deploy folder that is shared between server machines).

The issue was reported via http://jira.jboss.com/jira/browse/JBAS-1239

You can vote for the issue to be fixed if you like.

Scott

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

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

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 I make jbpm web admin console to work in jbpm-bpel?

2006-07-05 Thread jiehuan_li
I installed jbpm-3.1.1 on jboss as 4.0.4 GA patch 1, and it worked fine after I 
updated ehcache-1.1 to ehcache-1.2 under jbpm.sar.  I was able to launch the 
jbpm web app at http://localhost:8080/jbpm to run the demo app and to monitor 
processes, however the administration tab gives a page with only the word 
"TODO" on it.  Then I copied jbpm-bpel-1.1-beta1.sar to deploy directory, 
things in bpel works fine, but when I try to access http://localhost:8080/jbpm 
again, it throws the following exception:

  | 14:03:08,869 ERROR [[jsp]] Servlet.service() for servlet jsp threw exception
  | java.lang.NullPointerException
  | at org.jbpm.JbpmContext.setActorId(JbpmContext.java:459)
  | at 
org.jbpm.web.JbpmContextFilter.doFilter(JbpmContextFilter.java:81)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at org.jbpm.webapp.filter.LogFilter.doFilter(LogFilter.java:59)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  | at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  | at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  | at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
  | at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
  | at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
  | at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
  | at 
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
  | at java.lang.Thread.run(Thread.java:595)
  | 

I wonder what I need to do to make both jbpm app and jbpm-bpel work together.  
The deeper reason for me to ask this is that I may have dead processes hanging 
in jbpm-bpel due to unavailable web services at run-time and I'll have to 
manually push things through to end the processes.  Jbpm web admin console 
seems to allow me to do the manual push through, but I haven't been able to 
make it work with jbpm-bpel.  Any help would be highly appreciated.

Jiehuan

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

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

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   >