[JBoss-user] [JBoss Seam] - Re: Does anyone know of an automatic Seam-JSF form generator

2006-07-10 Thread [EMAIL PROTECTED]
jtucker wrote : My understanding of the current hibernate application 
generation tool (I assume that's the one you are talking about) is that the 
generation happens at build-time, whereas I am talking about runtime 
generation. But perhaps in future the Seam application generator could generate 
this code :)
  | 
  | I think we could still get the information fairly portably at runtime using 
EL and the Seam or JSF VariableResolver.
  | 
  | As an example, something like this might wire up a property to display a 
menu with a list of options from a managed bean.
  | 
  | 
  |   | @UI(type=UIType.SelectOneMenu, items=#{selectItems.propOptions})
  |   | public String getProperty() {}
  |   | 

How I would approach this is to write a JSF control that can iterate over 
properties of a bean in the same way h:dataTable iterates over elements of a 
list.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Can Seam be configured to support JSP and Facelets in an

2006-07-10 Thread [EMAIL PROTECTED]
right

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: @PreUpdate not being called on Seam @Entity

2006-07-10 Thread [EMAIL PROTECTED]
Emmanuel doesn't monitor this list. Ask in HEM or EJB3 forums.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: Changing Ports (two nodes, same machine, 4.0.4)

2006-07-10 Thread [EMAIL PROTECTED]
Do you see bindingservice-plugin.jar in your lib directory?

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Seam mailer component

2006-07-10 Thread [EMAIL PROTECTED]
Could you add a Wiki page with that ?

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - JBoss Seam IDE proposal

2006-07-10 Thread [EMAIL PROTECTED]
We are thinking about how to extend the JBoss Eclipse IDE to support Seam.

If you have interest with that and ideas to share, please look at and 
participate to this other post in the JBoss Eclipse IDE forum:
http://jboss.com/index.html?module=bbop=viewtopicp=3956511

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss AOP] - Re: dynamic interceptor scope

2006-07-10 Thread [EMAIL PROTECTED]
Hi,

With the old API interceptors get appended to everything on the object. In 
this case you would need to do some filtering in the aspect. e.g.


  | Object invoke(Invocation inv) throws Throwable
  | {
  |if (inv instanceof FieldInvocation){
  |   //Do work
  |}
  |return inv.invokeNext();
  | }
  | 

With the new weaving in AOP 2, you can be more selective about what you 
attach.


  |   AdviceBinding binding2 = new AdviceBinding(get(* 
org.jboss.test.aop.dynamicgenadvisor.POJO-i), null);
  |   String name2 = binding2.getName();
  |   binding2.addInterceptor(MyInterceptor.class);
  | 
  |   Advised advised = ((Advised)obj);
  |   InstanceAdvisor advisor = advised._getInstanceAdvisor(); 
  |   advisor.getDomain().addBinding(binding2);
  | 

This code exists in head and will be released as an alpha in the 
not-too-distant future. The old API is still supported in AOP 2, but will 
probably be deprecated in the future, maybe in AOP 3?

BTW I want to make AOP 2 use JBoss 5 and use JBoss Retro to be able to support 
JDK 1.4. This means that the annotation compiler will be retired.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: SEAM Booking demo on Glassfish (Appserver 9.0)

2006-07-10 Thread [EMAIL PROTECTED]
Yep, Roger Kitain from Sun has sent me a bunch of stuff to get Seam examples 
deploying out of the box on gf, using ant deploy.glassfish. Sorry I did not yet 
get a chance to integrate this stuff.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: entity beans binding to stateless context

2006-07-10 Thread [EMAIL PROTECTED]
balamg wrote : as per the documentation, entity beans may never be bound to 
stateless context. 
  | why is this so ? if i want to update an entity bean on a per-request basis 
then i could create a SLSB and inject the entity bean and update it from the 
action method of the SLSB. ?

You _can_ bind an entity bean to the request context.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: entity beans binding to stateless context

2006-07-10 Thread [EMAIL PROTECTED]
balamg wrote : thanks. are the cached entity beans (in the session 
/conversation context) attached to the underlying persistence session between 
requests.

Yes if

(a) the entity bean is conversation scoped
(b) you use a seam-managed PC or a conversation-scoped SFSB with an extended PC

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss Seam example working in JBoss Portal 2.4 BETA1

2006-07-10 Thread [EMAIL PROTECTED]
You can use the JEMS installer with the portal configuration (instead of 
ejb3).

Then you can try the portal example of Seam.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss AOP] - Re: dynamic interceptor scope

2006-07-10 Thread [EMAIL PROTECTED]
Ok, just to make sure I understand. Are you saying that I can do dynamic 
interception now without any prepare xml or prepare annotation?

For example, in PojoCache, I'd know exactly what is the POJO to attach and I 
want to intercept all the fields anyway. So in theory, I can construct the 
AdviceBinding at runtime.

Re: 1.4 compatibility, I am ok with it since this is purely for 2.0 (with 
JDK1.5 only).

Thanks!

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss AOP] - Re: dynamic interceptor scope

2006-07-10 Thread [EMAIL PROTECTED]
You still need to prepare the joinpoints. The reason the introduced methods get 
intercepted is that when weaving in the introductions we weave in hooks for aop 
simpilar to AOP.

This should have read:
anonymous wrote : 
  | BTW I want to make AOP 2 use JDK 5 and use JBoss Retro to be able to 
support JDK 1.4. This means that the annotation compiler will be retired.
  | 

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Using JCE crypto in EJBs

2006-07-10 Thread [EMAIL PROTECTED]
wussykye-

Try accessing your cert file using a full system path to your cacert file 
within your EJB to make sure this is not an issue with locating the cacert file.

Also, did you try getting an input stream to the cert file in your EJB and make 
sure the file is actually being located and read.


AFAIK, JBoss does not specifically block access to any crypto related files

Thanks
Sohil

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Authenticating user in servlet

2006-07-10 Thread [EMAIL PROTECTED]
Jochen-

With your custom Authenticator approach,

did you try doing a browser redirect that sends back the same exact request 
information back maybe minus the deviceid information, once the authentication 
is successfull and the user's identity is sucessfully established within the 
Authenticator?

I am thinking once the user's identity is established in the container, 
re-sending the browser request should not break your servlet anymore with 
streaming issues



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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: java.lang.ClassNotFoundException: org.jboss.portal.port

2006-07-10 Thread [EMAIL PROTECTED]
do you know what class is refering to WebAppRegistry?

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: @In vs. @EJB

2006-07-10 Thread [EMAIL PROTECTED]
@EJB is EJB injection.  For a stateful bean, you will get a new instance 
created when your other been is created.   Think of it as a private instance 
that Seam knows nothing about - nobody else can inject that instance.  For 
stateful components, you are more likely to want instances to live in a 
seam-managed context.  (converstion, session, whatever)  To et that, use @In.  

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: Failed to read payload

2006-07-10 Thread [EMAIL PROTECTED]
http://jira.jboss.org/jira/browse/JBSER-83

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Seam mailer component

2006-07-10 Thread [EMAIL PROTECTED]
This is great like this. thanks for sharing your components !

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Can't get a conversational stateful bean to work

2006-07-10 Thread [EMAIL PROTECTED]
Is onLoad() returning null in the cases where @Begin is failing?  The 
conversation interceptor interprets null as a failure condition.  

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: java.lang.ClassNotFoundException: org.jboss.portal.port

2006-07-10 Thread [EMAIL PROTECTED]
WebAppRegistry has been renamed to PortletApplicationRegistry in 2.4. Are you 
using WebAppRegistry directly in your code? Also, did you update your 
deployment descriptors?


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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Messaging] - Re: Failed to read payload

2006-07-10 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBSER-83

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Need help with ds.xml/datasource and Seam Injection

2006-07-10 Thread [EMAIL PROTECTED]
I don't think we create a datasource component.  You might be forced to fall 
back on EJB3 injection.  For example:


  | @Resource(name=jdbc/whatever, mappedName=java:/DefaultDS)
  | private javax.sql.DataSource ds;
  | 



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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Help on converting to myfaces/tiles + JSF + EJB3 + Seam

2006-07-10 Thread [EMAIL PROTECTED]
Right, you should definitely not use javax.faces.CONFIG_FILES to reference 
/WEB-INF/faces-config.xml.

I don't know what your other exceptions are about, I have never seen them 
before. Probably not related to Seam.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: dataTable with method execution per row

2006-07-10 Thread [EMAIL PROTECTED]
trouby wrote : but since JSF/Seam limitations(or am I wrong?), I can't pass 
parameters to methods and execute them 

This is a limitation of JSTL-EL. In our experimental JSF fork, Stan has 
actually implemented method parameter support, but note that we have no current 
plans to productize this work.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: extended persistence context

2006-07-10 Thread [EMAIL PROTECTED]
No, you could use an EJB3 container-managed extended persistence context in a 
stateful session bean.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Accessing a protected JSF page causes

2006-07-10 Thread [EMAIL PROTECTED]
You do not need pages.xml at all, it is an optional file!

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: How to tweak output based on HTTP header for wired/mobil

2006-07-10 Thread [EMAIL PROTECTED]
For tweaking, a servlet filter seems the right approach. Perhaps you might 
like to take a look at SiteMesh for this kind of work? If so, let me know how 
well sitemesh integrates with Seam...

I also added this issue, though it is probably not what you want:

http://jira.jboss.com/jira/browse/JBSEAM-299

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Long running transaction - multiple save points?

2006-07-10 Thread [EMAIL PROTECTED]
I think your approach with merge() in a non-transactional method is the correct 
one. HEM should _not_ throw an exception if the PC is an extended PC. So either 
(a) your PC is not an extended PC and it should be or (b) this is a bug in HEM.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Is Master-Detail possible in Seam

2006-07-10 Thread [EMAIL PROTECTED]
FrustratedBySeam wrote : The next problem is that when I delete a child row, 
the action is persisted to the db. Is there a way to stop this. 

One way to stop this is to use TransactionType.NOT_SUPPORTED

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Breaking changes to pageflow

2006-07-10 Thread [EMAIL PROTECTED]
Try beginning the conversation from a Seam page action.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Seam mailer component

2006-07-10 Thread [EMAIL PROTECTED]
Nice. It might be worth including this in Seam.

Can commons-email also be used for processing incoming emails? If so, could get 
something decent be combining this with JCA message inflow mapped to a 
message-driven bean.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Can't get a conversational stateful bean to work

2006-07-10 Thread [EMAIL PROTECTED]
Any non-null result that does not have an explicit navigation rule defined is 
ignored by the navigation handler So just return success.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Seam mailer component

2006-07-10 Thread [EMAIL PROTECTED]
Do we have a component registry?  It might be interesting to start collecting 
some of these to give seam developers more tools to choose from.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: entity beans binding to stateless context

2006-07-10 Thread [EMAIL PROTECTED]
You must retrieve the entity from the conversation-scoped PC, and then whenever 
a transaction commits, changes to the entity will be flushed to the database.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: How to use JAX-WS with Seam?

2006-07-10 Thread [EMAIL PROTECTED]
Not at present no, sorry. 

Basically, for now, just use the capabilities that are built in to EJB3.

Seam 1.5 will provide deep integration with the WS/ESB layer.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: problem with running a Seam application

2006-07-10 Thread [EMAIL PROTECTED]
What version of myfaces are you using?

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Ajax¤JSF wit h Seam

2006-07-10 Thread [EMAIL PROTECTED]
I have not looked at Ajax4JSf before, so I can't help you with your immediate 
problem - try using your debugger.

Our plan for partial rendering in JSF was to implement something probably quite 
similar to Ajax4JSF on top of the work that Jacob/Adam/Ed have been doing. 
Actually I was going to work on that stuff over the next couple of weeks and 
release it as Seam 1.1.

However, I will take a closer look at Ajax4JSF and see if it is a better 
starting point.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: @In vs. @EJB

2006-07-10 Thread [EMAIL PROTECTED]
bambata wrote : So, in case of a stateless Bean Seam uses for Injection via 
@In a common
  |  JNDI-lookup to the containers registry(ENC) ?
  | 
  | 

In the case of a SLSB, @In does a JNDI lookup (global or ENC). In the case of a 
JavaBean, it does a new.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Seam mailer component

2006-07-10 Thread [EMAIL PROTECTED]
The whole area of processing email is an important one that I wanted to get 
sorted out, but it just keeps getting pushed and pushed...

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Need help with ds.xml/datasource and Seam Injection

2006-07-10 Thread [EMAIL PROTECTED]
Right, but EJB3 injection is just perfect here, no need for anything new, I 
guess...

Of course, it would be -totally- trivial to create a manager component for a 
datasource, but I don't see the need.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Implementation question. ConversationContext.

2006-07-10 Thread [EMAIL PROTECTED]
This is all designed to minimize the traffic involved in replicating changes 
across a cluster.

Your proposal would require replicating the entire conversation on each request 
to the server. 

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Default scope for JavaBeans

2006-07-10 Thread [EMAIL PROTECTED]
The docs are wrong.

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

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


-
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=lnkkid=120709bid=263057dat=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! - NOT WORKING

2006-07-10 Thread [EMAIL PROTECTED]
oabidian wrote : Right click and remove from server. Does not remove it from 
the disk (removes it from the view but not disk). Anyhow, I am giving up on it. 
I will wait until a stable release is available (JBoss Eclipse IDE).
  | Thanks for the replies.

Thanks for reporting this, oabidan. I had thought I had fixed this problem but 
upon delving deeper I found some upstream coad caching something that I wasn't 
aware of. Thanks again. 

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: selectBooleanCheckbox with a dataTable

2006-07-10 Thread [EMAIL PROTECTED]
Check the Seam startup log, to make sure that all your components are actually 
getting installed.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Quick Question: Propagate from nested conversation to pa

2006-07-10 Thread [EMAIL PROTECTED]
Note that the correct way to handle this problem today is to put a mutable 
component in the parent conversation context, and set a property value from the 
child conversation.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Breaking changes to pageflow

2006-07-10 Thread [EMAIL PROTECTED]
Add a @Begin annotation to the page action method.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Help on converting to myfaces/tiles + JSF + EJB3 + Seam

2006-07-10 Thread [EMAIL PROTECTED]
facelets has ui:composition/ui:define which lets you do the stuff that tiles is 
mostly used for. I understand that tiles has some extra functionality but are 
you sure you need it?

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: selectBooleanCheckbox with a dataTable

2006-07-10 Thread [EMAIL PROTECTED]
So then it sounds like a pure-jsf problem, nothing to do with Seam, right?

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Problems with pages.xml...

2006-07-10 Thread [EMAIL PROTECTED]
If the page action begins the conversation, there is already a conversation  - 
so you should not have a @Begin annotation on the form action method.

This is not in any way contrary to the documentation.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Problems with pages.xml...

2006-07-10 Thread [EMAIL PROTECTED]
OK then, but you typed:

anonymous wrote : However, when submitting the form on the page, the following 
exception is thrown

Is it thrown when you render the page, or when you submit the form?

Anyway, AFAICT, the exception is being thrown because you already have a 
long-running conversation associated with the request when the @Begin method is 
called.

Remove the id=1 bit, I'm sure the exception still occurs.

(If it goes away, then yes, that would be a bug.)

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: How to use Annotation attributes that are variables

2006-07-10 Thread [EMAIL PROTECTED]
In the CVS version of Seam, the right way to do this is to call the built-in 
Seam component named businessProcess.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Help on converting to myfaces/tiles + JSF + EJB3 + Seam

2006-07-10 Thread [EMAIL PROTECTED]
So my suggestion is to try using the built-in tiles-like features of facelets.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Servlet regarded as ServiceEndPoint

2006-07-10 Thread [EMAIL PROTECTED]
Sure, go ahead ;)

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Doc/Info on HOW JPortal is Implemented?

2006-07-10 Thread [EMAIL PROTECTED]
IceWolf20 wrote : Is there a way in JPortal to directly map a JSP to a class 
as there is in Jetspeed with the MyPortlet.xreg (register and binds all Action 
classes to JSP's).
  | 

No, and I'm not familiar with why or how this works in JS. Makes as much sense 
as binding a JSP to a Servlet.

IceWolf20 wrote : Can this same methodology be applied to a JPortal portlet?  
Can I use request variables of lists from the database to build a JSP?

Yes. Set your List as a parameter and retrieve if in the JSP. 


  | class:
  | request.setAttribute(somelist, someList);
  | 
  | jsp:
  | List blah = (List) request.getAttribute(somelist);
  | 

IceWolf20 wrote : How can I get JPortal to execute a specific method inside 
the Action class without having to parse through the expected parameters from 
the portlet inside the processAction class (if at all)?

You can't. All actionUrls post to the processAction, and from there you call 
your specific method.

You mention Action Class a lot. Not sure if you mean the actual portlet 
class, or some other thing thats JS specific.


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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: ERROR IN org.jboss.portal.core.CoreController Object Nor

2006-07-10 Thread [EMAIL PROTECTED]
Did you try: 
http://wiki.jboss.org/wiki/Wiki.jsp?page=AvoidMySQL5DataTruncationErrors

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Problems with pages.xml...

2006-07-10 Thread [EMAIL PROTECTED]
Right, i think what you are telling me is that the page action is called twice: 
once when we first navigate to the page, and again when we submit the form.

The second time blows up, b/c it tries to start a conversation when one already 
exists. Right?

Page actions are called *every* time a view-id is rendered, not just during GET 
requests. 

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Problems with pages.xml...

2006-07-10 Thread [EMAIL PROTECTED]
BTW, the problem is easily fixed by using @Begin(join=true)

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: How to tweak output based on HTTP header for wired/mobil

2006-07-10 Thread [EMAIL PROTECTED]
Sorry?

@In FacesContext facesContext

works.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Problems with pages.xml...

2006-07-10 Thread [EMAIL PROTECTED]
anonymous wrote : Does @Begin(join=true) still invoke the code in the annotated 
method if you're joining an existing conversation?

Yes it does. I assumed that your method was basically a no-op.

anonymous wrote : I'm now guessing that the documentation was speaking of a 
user who wasn't in a conversation at all, joining a still running conversation 
that the user had left without closing earlier during the user session. 

Right.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss Portal 2.4.0 CR1 and facelets/myfaces

2006-07-10 Thread [EMAIL PROTECTED]
Some of the descriptors have changed in 2.4. Look at the security-contraint 
portion in the -object.xml here: 
http://docs.jboss.org/jbportal/v2.4/reference-guide/en/html/xmldescriptors.html#d0e2611

You can configure security for these pages using the admin portlet as well.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [News Announcements] - Re: List Change Announcement: List server move.

2006-07-10 Thread [EMAIL PROTECTED]
Our new lists are officially up and running at lists.jboss.org.



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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: SQL Server 2005 Snapshot Isolation - HowTo

2006-07-10 Thread [EMAIL PROTECTED]
If you can do this via a connection property, then you can effectively do it 
for the entire pool. I would imagine this is a property that can be set 'up 
front' on the JDBC connection is this correct? 



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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: SQL Server 2005 Snapshot Isolation - HowTo

2006-07-10 Thread [EMAIL PROTECTED]
If this can't be done via the connection property, you could always develop 
your own custom interceptor that sets the property on the Handle. That would 
introduce an 'aspect' like behavior allowing you to turn it on and off and not 
liter your code. 



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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss AOP] - Re: Interceptor ordering relative to EJB3 transaction interc

2006-07-09 Thread [EMAIL PROTECTED]
Instead of using weaving, you can modify ejb3-interceptors-aop.xml

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: JMX-console fails with mustang?

2006-07-09 Thread [EMAIL PROTECTED]
The issue is bigger than the jmx-console itself:
http://jira.jboss.com/jira/browse/JBAS-3381

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss AOP] - dynamic interceptor scope

2006-07-09 Thread [EMAIL PROTECTED]
Kabir,

Is it possible that the dynamic interceptor has specific granularity of FIELD 
only for example. Here is what I meant. I have this jboss-aop.xml setup for 
PojoCache:


  |prepare expr=field(* 
@org.jboss.cache.pojo.annotation.PojoCacheable-*) /
  | 
  |!-- Observer and Observable to monitor field modification --
  |bind pointcut=
  |   set(* @org.jboss.cache.pojo.annotation.PojoCacheable-*)
  |   
  |  interceptor 
class=org.jboss.aspect.patterns.observable.SubjectInterceptor/
  |/bind
  | 
  |introduction class=@org.jboss.cache.pojo.annotation.PojoCacheable
  |   mixin
  |interfacesorg.jboss.aspect.patterns.observable.Subject/interfaces
  |  classorg.jboss.aspect.patterns.observable.SubjectImpl/class
  |  constructionnew 
org.jboss.aspect.patterns.observable.SubjectImpl(this)/construction
  |   /mixin
  |/introduction
  | 

So you see, I declare any @PojoCacheable POJO as prepare but I also introduce 
it with a Subject interface that has a notifyObservers api.

Anyway, when I do this at runtime:

  |private void _attachInterceptor(Object pojo, InstanceAdvisor advisor, 
Interceptor cacheInterceptor,
  |  Observer observer)
  |{
  |   advisor.appendInterceptor(cacheInterceptor);
  |}
  | 
adding a CacheInterceptor dynamically (I just want to interceptor for FIELD 
access), what happens then is when notifyObservers get called, it will invoke 
the CacheInterceptor as well (as in MethodInvocation). In other words, 
appendInterceptor has the effect of adding nor just to FieldInvocation but also 
MethodInvocation.

Is there anyway around it?




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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: problem with running a Seam application

2006-07-09 Thread [EMAIL PROTECTED]
Looks OK. How about faces-config.xml?

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

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


-
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=lnkkid=120709bid=263057dat=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-09 Thread [EMAIL PROTECTED]
http://download.jboss.com/jbosside/builds/nightly/buildResults.html

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: @Out(jected) list Scope problem

2006-07-09 Thread [EMAIL PROTECTED]
Or else mark the instance variable @In(required=false) @Out

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

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


-
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=lnkkid=120709bid=263057dat=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-09 Thread [EMAIL PROTECTED]
Currently pageflows and nested conversations do not work elegantly together. 
There is a JIRA issue already.

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

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


-
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=lnkkid=120709bid=263057dat=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-09 Thread [EMAIL PROTECTED]
Yes, this is a fixed bug.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: 'edit' object through datatable page

2006-07-09 Thread [EMAIL PROTECTED]
Then use @Factory instead, I suppose. That way you can outject to conversation 
context.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Quick Question: Propagate from nested conversation to pa

2006-07-09 Thread [EMAIL PROTECTED]
No easy way at present, please add a feature request to JIRA. It is an obvious 
thing to want to do...

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: conversationId is missed in the URL

2006-07-08 Thread [EMAIL PROTECTED]
JSF actions use a POST, and the conversation is automatically propagated with 
that data.  The only time time you need the conversationId in the URL is when 
you do a GET.  (if you redirect after a POST, then the redirect filter will add 
the conversationId for the GET that follows, so that might be why you are 
thinking you should need it)

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Breaking changes to pageflow

2006-07-08 Thread [EMAIL PROTECTED]
Have your start-node transition directly to a decision node.  When the process 
is signaled, you will go through the decision node and, I assume, to a page 
node for display.  If you are in the situation mentioned where you need use 
start-page, you I guess you'd need to find a way to inject the actual process 
instance somewhere and signal it.

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security JAAS/JBoss] - Re: Login Configuration Enhancement

2006-07-08 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBAS-3378

It won't happen soon though.

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Hibernate 2nd lvl Cache for EJB3

2006-07-08 Thread [EMAIL PROTECTED]
Now are the errors showed up in both nodes or just the originating node?


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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: PojoCache - collection gets corrupted

2006-07-08 Thread [EMAIL PROTECTED]
I will need additional log to see what's the problem. Pulling the cable should 
have direct effect on the cluster group membership and the message replication 
timeout (possibly).

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

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


-
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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Need help annotating entity beans

2006-07-07 Thread [EMAIL PROTECTED]
Try:

  |   | h:outputText value=#{search.details.SISSystemSpecsList[0].oSVersion} 
/
  | 

(with a uppercase S since it is followed by a uppercase letter, if i remember 
well, that's the rule)

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: JBPM_LOG: Howto enable, Turning on BPEL log by process e

2006-07-07 Thread [EMAIL PROTECTED]
Bertrand,

You can enable logs by following these steps:

1. Open src/config/jbpm.cfg.xml

2. Configure the logging service:
jbpm-configuration
  | 
  |  jbpm-context
  |   !-- other services --
  |   service name=logging 
factory=org.jbpm.logging.db.DbLoggingServiceFactory /
  |  /jbpm-context
  | 
  | /jbpm-configuration

3. Rebuild the service archive by calling any of the build.service.xxx target 
of the ant build file in the distribution base directory

4. Enjoy :)

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: JBPM_LOG: Howto enable, Turning on BPEL log by process e

2006-07-07 Thread [EMAIL PROTECTED]
Note that the previous instructions are for jBPM BPEL beta 1.

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re:

2006-07-07 Thread [EMAIL PROTECTED]
You apparently run another cluster, for a total of 2 in your WL instance

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: jbossws + standalone tomcat

2006-07-07 Thread [EMAIL PROTECTED]
Sorry, this is an oversight in the release build that did not show up in QA. I 
updated the download

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re:

2006-07-07 Thread [EMAIL PROTECTED]
There are 2 JChannel.connect() calls, can you set a breakpoint in 
JChannel.connect() (get the JGroups src) ? Then you could look at the call 
stack and see *where* the connect() methods are called.

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Problems in processing of xs:any

2006-07-07 Thread [EMAIL PROTECTED]
Hi Domenic,

I am reaching out to you to get a better understanding of your WS-RM effort and 
the possible integration points with JBossWS. Currently we are busy with JAXWS 
and EE5 certification of our WS stack. Once this is done (probably end of 
Q3/2006) we are going to look into WS-RM possibly leveraging existing 
code/experience. If you like we could meet on skype and discuss possible 
cooperation options WRT WS-RM.

Cheers


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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Servlet regarded as ServiceEndPoint

2006-07-07 Thread [EMAIL PROTECTED]
I know there was a discussion a while ago. After looking into the the sources i 
now remember:


  | ServiceEndpointPublisher:155 ff
  | 
  |  // Check if it is a real servlet that we can ignore
  | 
  | if (servletClassName.endsWith(Servlet))
  | {
  |log.info(Ignore servlet-class that ends with 'Servlet':  
+ servletClassName);
  |continue;
  | }
  | 

JBossWS expects the 'real' Servlet's classname to end with 'Servlet'. This may 
not be the most elegant solution, but at this deployment stage we don't have 
control over the classload and therefore can't do 'instance of'.

Just rename your servlet classes to *Servlet.java and everything should be 
fine.

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Exception while sending/receiving param using web-servic

2006-07-07 Thread [EMAIL PROTECTED]
JBossWS currently supports JAXRPC-1.1. JAX-WS is on the roadmap. 

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: JBossWS 1.0.2 release date slippage?

2006-07-07 Thread [EMAIL PROTECTED]
The release date was set to 30-Jun by mistake. It should have been 31-Jul right 
from start.

Normally we aim for a bi-monthly release cycle

31-Aug: jbossws-1.0.3   
31-Oct: jbossws-1.0.4
etc

The jbossws-1.0.2 release is an interim release dedicated to performance and 
minor issues. It is just before QA and might actually be release over the 
course of the next couple of weeks. 

IOW, you can rely on 31-Jul for jbossws-1.0.2 at the latest

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Error Calling web service

2006-07-07 Thread [EMAIL PROTECTED]
[url]
http://www.jboss.com/index.html?module=bbop=viewforumf=217
[/url]

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: seam application error:

2006-07-07 Thread [EMAIL PROTECTED]
You need to install JBoss AS using the JEMS installer, see the WIki, 
installation guide or getting started document.

(Or update your libraries to EJB3 CR 8)

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss BseCode

2006-07-07 Thread [EMAIL PROTECTED]
You need to use anoncvs.forge.jboss.com (anonymous user with pserver connection)

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: JBoss BseCode

2006-07-07 Thread [EMAIL PROTECTED]
You can also get it from the download page:
http://labs.jboss.com/portal/jbossportal/download/index.html

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Multiple network interface problem

2006-07-07 Thread [EMAIL PROTECTED]
Hi

I have a server with an external (internet) nic and an internal (lan) nic. 

When i access the jndi naming service from the internal lan it returns the 
external IP/Address of the server and not the lan address on which it was 
contacted. 

How can I configure JNDI to return the server IP/address appropriate to the 
network from which the JNDI lookup was made. 


Jules

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JNDI/Naming/Network] - Re: Multiple network interface problem

2006-07-07 Thread [EMAIL PROTECTED]
Sorry should have mentioned that I am using 

jboss-4.0.4.GA

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [News Announcements] - JBPM 3.0.4 released

2006-07-07 Thread [EMAIL PROTECTED]
We are pleased to announce the release of JBPM 3.0.4 and JBPM process designer 
3.0.10.

The new releases can be found at the following location on sourceforge:

http://sourceforge.net/project/showfiles.php?group_id=70542

Release notes are as follows:


Release Notes - JBoss jBPM - Version jBPM 3.0.4

Bug

[JBPM-331] - Synchronization problems during reading jbpm.varmapping.properties
[JBPM-665] - JVM hangs because of inappropriate error handling


Feature Request

[JBPM-685] - made jbpm.byte.block.size configurable



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

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

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=lnkkid=120709bid=263057dat=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! - NOT WORKING

2006-07-07 Thread [EMAIL PROTECTED]
oabidan:
  
  I'd like to hear what you're doing such that undeploy does not work. It works 
for me, and I even receive console output declaring that it has undeployed. 

Thanks.

- Rob

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: Retry: JBoss AS/Firebird: Hibernate Dialect must be expl

2006-07-07 Thread [EMAIL PROTECTED]

  | ?xml version=1.0 encoding=UTF-8?
  | persistence
  |persistence-unit name=titan
  |   jta-data-sourcejava:/FirebirdDS/jta-data-source
  |   properties
  |  property name=hibernate.hbm2ddl.auto value=create-drop/
  |  property name=hibernate.dialect 
value=org.hibernate.dialect.FirebirdDialect/
  |   /properties
  |/persistence-unit
  | /persistence 
  | 

The reason Hibernate is 'intruding' is the your Persistence Provider, 
*Hibernate*, is telling you that he cannot automatically obtain type mappings 
and metadata for your platform of choice: *Firebird*.

Also, I believe the mechanism for the Firebird JDBC configuration has changed 
recently, but I have to confirm this. 




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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: transactions and distributed transactions in ejb3

2006-07-07 Thread [EMAIL PROTECTED]
Hi, your English is just fine!

The issue is you are trying to acquire a transaction in a component that 
manages transactions for you. 

Remove the 


  | 
  | manager.getTransaction().begin();   
  | manager.getTransaction().commit();
  | 
  | 

and the associated rollback. 

For the distributed (multi DB) transaction you just need two XA datasources. 
Please see

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

to learn how to set up XA datasources. 





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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Re: Cold Deployment

2006-07-07 Thread [EMAIL PROTECTED]
Yes, just a distributed deployment.  There is an issue that prevents placing 
something in a node that is not running and then having it deploy when the node 
starts.

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

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

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=lnkkid=120709bid=263057dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


  1   2   3   4   5   6   7   8   9   10   >