[JBoss-user] [Beginners Corner] - Re: BEA Connection Pools

2006-04-28 Thread aschbacher
Thanks for your answer.  But I have one more question.
How could I access these connection pools?
Via a DataSource?
Or also via the DriverManager?
thanks in advance
Karl


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - Entity bean helper functions possible?

2006-04-28 Thread TrippCCN
Is it possible to add a helper function to an Entity bean that is not a getter 
or setter?

For example, are the two methods at the bottom of this code valid?  If so, how 
do I display their values inside jsf?  I tried #{member.getAge} but that didn't 
work


  | package org.cnow.object;
  | 
  | import static org.jboss.seam.ScopeType.SESSION;
  | 
  | import java.io.Serializable;
  | import java.util.Calendar;
  | import java.util.Collection;
  | import java.util.Date;
  | import java.util.GregorianCalendar;
  | import javax.persistence.CascadeType;
  | 
  | import javax.persistence.Entity;
  | import javax.persistence.FetchType;
  | import javax.persistence.GeneratedValue;
  | import javax.persistence.Id;
  | import javax.persistence.OneToMany;
  | import javax.persistence.Table;
  | import javax.persistence.Transient;
  | import org.hibernate.validator.Length;
  | import org.hibernate.validator.Email;
  | import org.jboss.seam.annotations.Name;
  | import org.jboss.seam.annotations.Scope;
  | 
  | @Entity
  | @Name(member)
  | @Scope(SESSION)
  | @Table(name=members)
  | public class Member implements Serializable
  | {
  | private int id;
  | private String first_name;
  | private String last_name;
  | private String email;
  | private String address_1;
  | private String address_2;
  | private String city;
  | private String state;
  | private String zip_code;
  | private String phone;
  | private String password;
  | private boolean receive_newsletter;
  | private Date birthdate;
  | private int referred_by;
  | private char gender;
  | private Date joined_date;
  | private int campaign_id;
  | 
  | private CollectionMemberImage member_images;
  | 
  | public Member(int id, String first_name, String last_name, String 
email, String password) {
  | this.id = id;
  | this.first_name = first_name;
  | this.last_name = last_name;
  | this.email = email;
  | this.password = password;
  | }
  | 
  | public Member() {}
  | 
  | @Id @GeneratedValue
  | public int getId() {
  | return id;
  | }
  | 
  | public void setId(int id) {
  | this.id = id;
  | }
  | 
  | @Length(min=1, message=Please provide your first name)
  | public String getFirst_name() {
  | return first_name;
  | }
  | 
  | public void setFirst_name(String first_name) {
  | this.first_name = first_name;
  | }
  | 
  | public String getLast_name() {
  | return last_name;
  | }
  | 
  | public void setLast_name(String last_name) {
  | this.last_name = last_name;
  | }
  | 
  | @Email
  | public String getEmail() {
  | return email;
  | }
  | 
  | public void setEmail(String email) {
  | this.email = email;
  | }
  | 
  | public String getAddress_1() {
  | return address_1;
  | }
  | 
  | public void setAddress_1(String address_1) {
  | this.address_1 = address_1;
  | }
  | 
  | public String getAddress_2() {
  | return address_2;
  | }
  | 
  | public void setAddress_2(String address_2) {
  | this.address_2 = address_2;
  | }
  | 
  | public String getCity() {
  | return city;
  | }
  | 
  | public void setCity(String city) {
  | this.city = city;
  | }
  | 
  | public String getState() {
  | return state;
  | }
  | 
  | public void setState(String state) {
  | this.state = state;
  | }
  | 
  | public String getZip_code() {
  | return zip_code;
  | }
  | 
  | public void setZip_code(String zip_code) {
  | this.zip_code = zip_code;
  | }
  | 
  | public String getPhone() {
  | return phone;
  | }
  | 
  | public void setPhone(String phone) {
  | this.phone = phone;
  | }
  | 
  | // Figure out how to best validate this for use in both login and 
register
  | @Length(min=4, message=Password must be at least 4 characters.)
  | public String getPassword() {
  | return password;
  | }
  | 
  | public void setPassword(String password) {
  | this.password = password;
  | }
  | 
  | public boolean isReceive_newsletter() {
  | return receive_newsletter;
  | }
  | 
  | public void setReceive_newsletter(boolean receive_newsletter) {
  | this.receive_newsletter = receive_newsletter;
  | }
  | 
  | public Date getBirthdate() {
  | return birthdate;
  | }
  | 
  | public void setBirthdate(Date birthdate) {
  | this.birthdate = birthdate;
  | }
  | 
  | public int getReferred_by() {
  | return referred_by;
  | }
  | 
  | public void 

[JBoss-user] [EJB 3.0] - Re: em.refresh() throws an error at me

2006-04-28 Thread kh2ouija
Just ignore the previous post; it happens even when deleting within the same 
PersistenceContext.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: forums portlet watch forums sending email

2006-04-28 Thread tomerbd2
OK i managed to workaround it, i just installed the application on my local 
windows machine (instead of the previous linux machine isntalled on) and i have 
no exceptions however i dont receive any maisl on my watched forums... my smtp 
host is defined correctly on the mail-service.xml here are the logs of the mail 
service load

anonymous wrote : 
  | 09:51:45,405 INFO  [STDOUT] DEBUG: JavaMail version 1.3.1
  | 09:51:45,405 INFO  [STDOUT] DEBUG: java.io.FileNotFoundException: 
c:\jdk1.5.0_01
  | \jre\lib\javamail.providers (The system cannot find the file specified)
  | 09:51:45,405 INFO  [STDOUT] DEBUG: !anyLoaded
  | 09:51:45,405 INFO  [STDOUT] DEBUG: not loading resource: 
/META-INF/javamail.prov
  | iders
  | 09:51:45,405 INFO  [STDOUT] DEBUG: successfully loaded resource: 
/META-INF/javam
  | ail.default.providers
  | 09:51:45,405 INFO  [STDOUT] DEBUG: Tables of loaded providers
  | 09:51:45,405 INFO  [STDOUT] DEBUG: Providers Listed By Class Name: 
{com.sun.mail
  | 
.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTra
  | nsport,Sun Microsystems, Inc], 
com.sun.mail.imap.IMAPStore=javax.mail.Provider[S
  | TORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], 
com.sun.mail.pop3.
  | POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun 
Microsy
  | stems, Inc]}
  | 09:51:45,405 INFO  [STDOUT] DEBUG: Providers Listed By Protocol: 
{imap=javax.mai
  | l.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], 
pop3=j
  | avax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems, 
Inc]
  | , 
smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Mi
  | crosystems, Inc]}
  | 09:51:45,405 INFO  [STDOUT] DEBUG: successfully loaded resource: 
/META-INF/javam
  | ail.default.address.map
  | 09:51:45,405 INFO  [STDOUT] DEBUG: !anyLoaded
  | 09:51:45,405 INFO  [STDOUT] DEBUG: not loading resource: 
/META-INF/javamail.addr
  | ess.map
  | 09:51:45,405 INFO  [STDOUT] DEBUG: java.io.FileNotFoundException: 
c:\jdk1.5.0_01
  | \jre\lib\javamail.address.map (The system cannot find the file specified)
  | 09:51:45,420 INFO  [MailService] Mail Service bound to java:/Mail
  | 09:51:45,514 INFO  [LayoutDeployment] create new layout(s), found in :  
portal
  | 09:51:45,608 INFO  [LayoutDeployment] done creating new layout(s), found in 
:  p
  | ortal
  | 09:51:45,670 INFO  [ThemeDeployment] create new theme(s), found in :  portal
  | 09:51:45,686 INFO  [ThemeDeployment] done creating new theme(s), found in : 
 por
  | tal
  | 09:51:45,780 INFO  [MyFacesGenericPortlet] MyFaces already initialized
  | 09:51:45,780 INFO  [MyFacesGenericPortlet] PortletContext 
'C:\temp\jboss-portal-
  | 2.2.1-bundled\server\default\.\deploy\jboss-portal.sar\portal-core.war\' 
initial
  | ized.
  | 09:51:46,373 INFO  [LayoutDeployment] create new layout(s), found in :  
/portal
  | 09:51:46,373 INFO  [LayoutDeployment] done creating new layout(s), found in 
:  /
  | portal
  | 10:02:50,405 INFO  [LayoutDeployment] destroying layout(s), found in :  
portal
  | 10:02:50,405 INFO  [LayoutDeployment] done destroying layout(s), found in : 
 por
  | tal
  | 10:02:50,421 INFO  [ThemeDeployment] destroying theme(s), found in :  portal
  | 10:02:50,421 INFO  [ThemeDeployment] done destroying theme(s), found in :  
porta
  | l
  | 10:02:50,436 INFO  [LayoutDeployment] destroying layout(s), found in :  
/portal
  | 10:02:50,436 INFO  [LayoutDeployment] done destroying layout(s), found in : 
 /po
  | rtal
  | 10:02:50,436 INFO  [MailService] Mail service 'java:/Mail' removed from JNDI
  | 10:02:50,467 INFO  [STDOUT] DEBUG: JavaMail version 1.3.1
  | 10:02:50,467 INFO  [STDOUT] DEBUG: java.io.FileNotFoundException: 
c:\jdk1.5.0_01
  | \jre\lib\javamail.providers (The system cannot find the file specified)
  | 10:02:50,483 INFO  [STDOUT] DEBUG: !anyLoaded
  | 10:02:50,483 INFO  [STDOUT] DEBUG: not loading resource: 
/META-INF/javamail.prov
  | iders
  | 10:02:50,483 INFO  [STDOUT] DEBUG: successfully loaded resource: 
/META-INF/javam
  | ail.default.providers
  | 10:02:50,483 INFO  [STDOUT] DEBUG: Tables of loaded providers
  | 10:02:50,483 INFO  [STDOUT] DEBUG: Providers Listed By Class Name: 
{com.sun.mail
  | 
.smtp.SMTPTransport=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTra
  | nsport,Sun Microsystems, Inc], 
com.sun.mail.imap.IMAPStore=javax.mail.Provider[S
  | TORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], 
com.sun.mail.pop3.
  | POP3Store=javax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun 
Microsy
  | stems, Inc]}
  | 10:02:50,483 INFO  [STDOUT] DEBUG: Providers Listed By Protocol: 
{imap=javax.mai
  | l.Provider[STORE,imap,com.sun.mail.imap.IMAPStore,Sun Microsystems, Inc], 
pop3=j
  | avax.mail.Provider[STORE,pop3,com.sun.mail.pop3.POP3Store,Sun Microsystems, 
Inc]
  | , 
smtp=javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Mi
  | crosystems, Inc]}
  | 10:02:50,483 INFO  

[JBoss-user] [Clustering/JBoss] - Re: Deploying EJB 3 ear via Farming

2006-04-28 Thread MarcReis
Hi, 
no I did not, that is what is confusing me also.
The deploy dir contains nothing but the elements that come with the default 
deploy dir (no personal stuff at all, I cleared all out and used a clean 
install made out of the all and ejb 3.0 cluster folders, to make sure there is 
nothing I have overseen). 
I then start both servers, one after the other. And both find each other 
nicely. Then I drop my testEJB.ear  into the /farm folder of node 1 (which is 
until now empty on both nodes). Node 1 then starts to deploy nicely and at the 
end does its push to the cluster, node 2 receives this push and starts 
deploying also and then the already bound exception is thrown for the 
interfaces, since they are already in the JNDI - Tree, which seems logically, 
since HAJindi is supposed to provide them to all in the cluster (or ?). I 
thought what would happen automatically is, that the second node would 
register that, and then just link to the same bindings.




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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Beginners Corner] - Exception while stopping

2006-04-28 Thread AnubisMan
Hi,

I am stopping my JBoss (started with all configuration) and getting following 
exception :

11:47:07,326 ERROR [UILServerILService] Exception occured when trying to stop 
UIL Service:
  | javax.naming.NameNotFoundException: ConnectionFactory not bound

Please, help to find the problem.

Best regards,
Aram.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: EJB3 webservice tutorial

2006-04-28 Thread Dust_Puppy
i answer my own post as usual =)
i solved this by adding the service-ref to a application client and lookup the 
webservices throw that.. 

/Anders

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - Size of Farming Buffer

2006-04-28 Thread AnubisMan
Hi,

I had a problem with farming which you can see in topic FarmDeployment 
Configuration.

I have at last found that the problem is in transfer buffer size, because I 
tried to deploy web application which was 234KB of size and farming worked 
perfect that time.
But I have problem with my real EAR application which is 3MB of size. Farming 
worked, but could not transfer all file (farming transfered only 1,5MB).

Please, help to find configuration for transfer buffer size.

Best,
Aram.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Beginners Corner] - Re: XDoclet Error

2006-04-28 Thread anuj_patel
ey rsood.  I hope you downloaded the xdoclet1.2.3 package from xdoclet's 
official site.  When you get this package then, right click on your project, 
click on properties.  Go to java build path.  Here in the Libraries tab click 
on Add Library Button.  Select User Library Option here and click on next.  
Then click on User Libraries Button.  Then Click on New button.  Give the name 
of Library 'Xdoclet1.2.3' (It can be anything you want.).
Select the library that you have made and then click on Add Jars button.
It would open up the file dialog.  Go the the path where you have stored the 
xdoclet's package and in one the folders of that package you would find the 
jars that are needed.  So go to that folder and Select All jars.

After this library is created click on OK.  Then it would go back to 'Select a 
library' step of the wizard.  Select the newly created library AND MY FRIEND 
YOUR PROJECT WOULD GET ROLLINGG.



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - Master node detection

2006-04-28 Thread AnubisMan
Hi,

Is it possible to detect which one of nodes in the cluster is the master node???

In my tests I have found that one of my test computers every time becomes the 
master node and no metter if it is started the first or the second.

Help to find the answer!

Best regards,
Aram.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Master node detection

2006-04-28 Thread [EMAIL PROTECTED]
If you go into ClusterPartition with jmx-console, you see a *view*. The first 
member of the view is always the master node. If the second node becomes the 
master node, then the nodes didn't cluster, didn't find each other

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: EJB3 remote client

2006-04-28 Thread gareth.mahon
I would also love to hear the answer to this one.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Master node detection

2006-04-28 Thread AnubisMan
Thanks for your response,

But how can I go into ClusterPartition with jmx-console???
I couldn't find something like this in my jmx-console.

What service do you open from jmx-console???

Best regards,
Aram.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Master node detection

2006-04-28 Thread [EMAIL PROTECTED]
1) run.sh -c all
2) in jmx-console: access jboss:service=DefaultPartition
3) The attribute is CurrentView

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Master node detection

2006-04-28 Thread AnubisMan
Are you talking about this message ???
28.04.06 12:45 : Partition object created
  | 28.04.06 12:45 : Initializing partition
  | 28.04.06 12:45 : Starting partition
  | 28.04.06 12:45 : New view: [10.37.13.52:1099] with viewId: 0 (old view: 
[10.37.13.52:1099] )
  | 28.04.06 12:45 : setState called on partition
  | 28.04.06 13:02 : New view: [10.37.13.40:1099, 10.37.13.52:1099] with 
viewId: 1 (old view: [10.37.13.52:1099])
Does this mean that node on IP 10.37.13.40 is the master node???

Best regards,
Aram. 

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Master node detection

2006-04-28 Thread AnubisMan
Sorry, but I couldn't find the attribute you said:

[EMAIL PROTECTED] wrote : 3) The attribute is CurrentView
Maybe my configuration is not normal

Could you please send my your clustering configuration files

Best regards,
Aram.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - Share JbpmContext between wars

2006-04-28 Thread rafaelboss
Hi,
i need to share the same JbpmContext between diferents web aplicattions 
(different wars), or at least share the session or some variables.. 
there is a way to make this??

Thanks in advance, 
Rafael.


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Security Framework w/Seam

2006-04-28 Thread drVillo

Well, Acegi seems to have a JBoss adapter as well. Unfortunately I haven't had 
the time to look at it.
But looking at it from another point of view: what is that j2ee security is 
lacking that you would need Acegi for? I'm no expert of  Acegi but at a first 
glance it seems to address the same problems of the J2EE security components...

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Master node detection

2006-04-28 Thread [EMAIL PROTECTED]
// Does this mean that node on IP 10.37.13.40 is the master node??? 

Yes

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Master node detection

2006-04-28 Thread [EMAIL PROTECTED]
Use run.sh -c *all*, then you'll see it

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: forums portlet watch forums sending email

2006-04-28 Thread bdaw
please look at comments in this isse: 
http://jira.jboss.com/jira/browse/JBPORTAL-334

You can also setup it in the running portal using jmx-console and 
portal:service=Module,type=Mail service

it's rather hard to test it on windows machine as you need SMTP server

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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)] - ECLIPSE IDE - @JoinTable problem

2006-04-28 Thread sierras
Writing an entity bean like this one

@Entity
public class .{

/* some properties */

/* CHILDREN */

private Set setInformationSystemUsers;

@ManyToMany
@JoinTable(name=nn)
public Set getUsers() 
{ 
return setInformationSystemUsers;
}

}

I get an editor error like The attribute name is undefined for the annotation 
type @JoinTable.

And trying to get editor's help (ctrl-space bar) I get a message like The 
annotation @JoinTable is disallowed for this location.

Does anyone know if this is a bug or that I simply don't know how to write EJB3 
entitites? And the sollution... please.

thanks in advance

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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)] - Err I made a Mistake

2006-04-28 Thread msvaraprasad
Hi,

I have downloaded JBossIDE 1.5.1 GA (Windows Version) and extacted the zip 
file. I have downloaded and Installed JBoss AS vaersion JBoss-4.0.4.CR2 usjing 
the Jboss installer jar file. later when I started a new EJB 3.0 project I was 
told to select a JBoss Configuration. Then I created a new JBoss 4.0.x 
Configuration. Here Comes the problem:

  The selected configuration (New_Configuration) does not contain the 
expected EJB3 libraries. Please install JBoss with EJB3 enabled, or try another 
configuration  - JBossIDE.

 well I have downloaded  jboss-EJB-3.0_RC6-PFD  and extracted it to my JBoss 
Install Location. 

 Please tell me how can I overcome this problem.

 M.S.Vara Prasad
 [EMAIL PROTECTED]
 +91 92475 76508

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Converstaion context destroyed, why?

2006-04-28 Thread baz
Hello Gavin,
here comes the complete stacktrace:
anonymous wrote : 
  | 10:21:26,234 ERROR org.jboss.seam.servlet.SeamExceptionFilter: uncaught 
exception handled by Seam
  | javax.servlet.ServletException: No conversation context active
  | at javax.faces.webapp.FacesServlet.service(FacesServlet.java:123)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamExceptionFilter.doFilter(SeamExceptionFilter.java:45)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter.java:23)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:129)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  | at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  | at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
  | at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
  | at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:667)
  | at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
  | at 
org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
  | at 
org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
  | at java.lang.Thread.run(Thread.java:595)
  | 10:21:26,234 DEBUG org.jboss.seam.util.Naming: JNDI InitialContext 
properties:{java.naming.factory.initial=org.jnp.interfaces.LocalOnlyContextFactory,
 java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
  | 10:21:26,234  INFO org.jboss.seam.servlet.SeamExceptionFilter: killing 
transaction
  | 10:21:26,234 DEBUG org.jboss.seam.util.Naming: JNDI InitialContext 
properties:{java.naming.factory.initial=org.jnp.interfaces.LocalOnlyContextFactory,
 java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
  | 10:21:26,234 DEBUG org.jboss.seam.contexts.Lifecycle: After request, 
destroying contexts
  | 10:21:26,234 DEBUG org.jboss.seam.contexts.Lifecycle: destroying event 
context
  | 10:21:26,234 DEBUG org.jboss.seam.contexts.Lifecycle:  End web request
  | 10:21:26,234 ERROR 
org.apache.catalina.core.ContainerBase.[Catalina].[localhost].[/baz].[Faces 
Servlet]: Servlet.service() for servlet Faces Servlet threw exception
  | java.lang.IllegalStateException: No conversation context active
  | at org.jboss.seam.ScopeType.getContext(ScopeType.java:88)
  | at org.jboss.seam.Component.newInstance(Component.java:1160)
  | at org.jboss.seam.Component.getInstance(Component.java:1107)
  | at org.jboss.seam.Component.getInstance(Component.java:1090)
  | at 
org.jboss.seam.jsf.SeamVariableResolver.resolveVariable(SeamVariableResolver.java:44)
  | at 
com.sun.facelets.el.LegacyELContext$LegacyELResolver.getValue(LegacyELContext.java:134)
  | at com.sun.el.parser.AstIdentifier.getValue(AstIdentifier.java:44)
  | at com.sun.el.parser.AstValue.getTarget(AstValue.java:41)
  | at com.sun.el.parser.AstValue.isReadOnly(AstValue.java:104)
  | at 
com.sun.el.ValueExpressionImpl.isReadOnly(ValueExpressionImpl.java:221)
  | at 
com.sun.facelets.el.TagValueExpression.isReadOnly(TagValueExpression.java:82)
  | at 
com.sun.facelets.el.LegacyValueBinding.isReadOnly(LegacyValueBinding.java:82)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.recursivelyHandleComponentReferencesAndSetValid(LifecycleImpl.java:473)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.recursivelyHandleComponentReferencesAndSetValid(LifecycleImpl.java:483)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.recursivelyHandleComponentReferencesAndSetValid(LifecycleImpl.java:483)
  | at 

[JBoss-user] [JBoss/Spring Integration] - Re: JBoss Hibernate+Spring Application Deployment (JNDI Prob

2006-04-28 Thread gigsvoo
I have the same problem with you. Mind to share with me the details on how you 
get things working? Thanks

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Fileupload

2006-04-28 Thread elfuhrer
Marcio, something does not make sense in here. Your jsp will not be able to 
render the tomahawk tags if the tomahawk.jar is not included in the WEB-INF/lib 
directory. JSP tags cannot be accessed from the classpath of the EAR. 
I have followed your same EAR structure and the JSP files won't work unless the 
tomahawak libraries are in the WEB-INF/lib as stated above. 

I had to put the tomahawk library back into the WEB-LIB/lib and I get again the 
conversion exception again. 

  | 11:55:57,312 ERROR [[/training]] Cannot set value for expression 
'#{FileUpload.file}' to a new value of type 
org.apache.myfaces.custom.fileupload.UploadedFileDefaultFileImpl
  | javax.faces.el.EvaluationException: Cannot set value for expression 
'#{FileUpload.file}' to a new value of type 
org.apache.myfaces.custom.fileupload.UploadedFileDefaultFileImpl
  | at 
org.apache.myfaces.el.ValueBindingImpl.setValue(ValueBindingImpl.java:304)
  | at javax.faces.component.UIInput.updateModel(UIInput.java:226)
  | at javax.faces.component.UIInput.processUpdates(UIInput.java:165)
  | at javax.faces.component.UIForm.processUpdates(UIForm.java:85)
  | at 
javax.faces.component.UIComponentBase.processUpdates(UIComponentBase.java:428)
  | at 
javax.faces.component.UIViewRoot.processUpdates(UIViewRoot.java:153)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.updateModelValues(LifecycleImpl.java:277)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:81)
  | at javax.faces.webapp.FacesServlet.service(FacesServlet.java:106)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.myfaces.component.html.util.ExtensionsFilter.doFilter(ExtensionsFilter.java:122)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamExceptionFilter.doFilter(SeamExceptionFilter.java:45)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  | at 
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:54)
  | at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:174)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  | at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  | at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
  | at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
  | at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
  | at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
  | at 
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
  | at java.lang.Thread.run(Thread.java:595)
  | Caused by: javax.faces.el.EvaluationException: 
com.sag.training.FileUploadBean$$EnhancerByCGLIB$$3c703dc9
  | at 
org.apache.myfaces.el.PropertyResolverImpl.setValue(PropertyResolverImpl.java:155)
  | at 
org.apache.myfaces.el.ValueBindingImpl.setValue(ValueBindingImpl.java:269)
  | ... 33 more
  | Caused by: javax.faces.el.EvaluationException: Bean: 
com.sag.training.FileUploadBean$$EnhancerByCGLIB$$3c703dc9, property: file
  | at 
org.apache.myfaces.el.PropertyResolverImpl.setProperty(PropertyResolverImpl.java:372)
  | at 
org.apache.myfaces.el.PropertyResolverImpl.setValue(PropertyResolverImpl.java:148)
  | ... 34 more
  | Caused by: java.lang.IllegalArgumentException: argument type mismatch
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native 

[JBoss-user] [Clustering/JBoss] - Re: Master node detection

2006-04-28 Thread AnubisMan
I am sorry,

I'm starting JBoss 4.0.3 on Windows XP.
This kind of command doesn't work on my computers.

Best regards, Aram.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: DAO-JDBC vs. EJB3

2006-04-28 Thread Luntain
Better w8 till final release.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Application client: JNDI name?

2006-04-28 Thread Juergen.Zimmermann
THere was a typo. Using the default JNDI binding convention works fine.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: EJB3 RC6: tutorial

2006-04-28 Thread Juergen.Zimmermann
Client and server are on the same machine. Only JBoss  4.0.4CR2 (no other 
version), and JBOSS_HOME is set to the root directory.

The steps I made
1) cd /webservice
2) ant ejbjar
3) start JBoss in a separate shell
4) ant run

What do you mean with client is out of sync with the server?

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Master node detection

2006-04-28 Thread [EMAIL PROTECTED]
run.bat -c all then

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Master node detection

2006-04-28 Thread AnubisMan
Thank you very much for your response,

But are you shure that this command is valid, because I'm getting this message

// run.bat: unused non-option argument: then

What is the version of your JBoss???
Maybe this argument is for another version???

Best regards, Aram.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Optional OneToOne not honoured on SQL Server 2005

2006-04-28 Thread ejb3workshop
I found this article on the web, which shed some light on the problem. Seems 
like a bug (aka feature) of SQL Server.

http://www.sqlmag.com/Article/ArticleID/25259/sql_server_25259.html

and 

http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=48614



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Converstaion context destroyed, why?

2006-04-28 Thread baz
Hello,
now i have found out that the binding attribute does not work even on an Input 
component.
I was used to use this code:

  | 
  | t:inputText value=#{protokollErstellungname}  
binding=#{protokollErstellung.protocolNameInput} id=protname 
styleClass=inputtext
  | 
  | --
  | private UIInput protocolNameInput;
  | 
  | 
getFacesContext().addMessage(protocolNameInput.getClientId(getFacesContext()),
  | Utils.getMessage(msgProtocolExist, 
new String[] { name }, FacesMessage.SEVERITY_ERROR));
  | 
This code is decoupled from the concrete ClientId. I can put my component on 
any place of a page without destroying functionality.
(JSF generate an assembled id of the ids of the component and its parents)
 As long as i can not use the binding attribute i have to use the myfaces 
attribute 'forceId'. But this does not delete the dependency from bean to 
component.

With binding the page designer can choose which component he will bind to a 
specific bean (provided that bean offers a corresponding getter/setter pair)
Wíthout binding the page designer must change both, the bean and the page, to 
get a component message rendered at the correct place.

Will there be a solution? How can a bean determine the id for a component in 
Seam?

Ciao,
Carsten

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

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


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


[JBoss-user] [EJB 3.0] - Re: Optional OneToOne not honoured on SQL Server 2005

2006-04-28 Thread ejb3workshop
This might also be of interest

http://groups.google.co.uk/group/microsoft.public.sqlserver.server/browse_thread/thread/e4a0d0f81f4ef42/7d9c3c9461435c9e?lnk=stq=%22SQL+Server%22+Unique+Key+constraint+NULLrnum=5hl=en#7d9c3c9461435c9e

It seesm pretty clear to be isolated to SQL Server, so not strickly speaking 
related to this forum. Yet in the context of EJB3 this poses a (significant) 
limitation. The freedom achieved with EJB3 entities is restricted and this is a 
problem which should be relevant to this forum.

Alex
ejb3workshop.com

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: EJB3 RC6: tutorial

2006-04-28 Thread Juergen.Zimmermann
JAVA_HOME was set to Java SE 6beta. Setting it to 5.0_06 solved the problem.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Installation, Configuration Deployment] - Adding saxon jar to ear file

2006-04-28 Thread eddie07
Hi,

I am using saxon8.jar within jboss. With jboss3.2.x I solved this by adding an 
entry to application.xml of the ear file. 
But this doesn't work with jboss 4.0.3 what I am using now. I learned (in this 
forum) that this is not the correct way to include a jar file. So I tried 
adding it to the manifest file of the jar which is using saxon:


  | Class-Path: saxon8.jar
  | 

or


  | Class-Path: . saxon8.jar
  | 


But my application still doesn't use saxon. What am I doing wrong?
What is the correct way to include such jars in my application?

I also tried to put saxon8.jar into the endorsed directory of my java/jre/lib 
directory, but then jboss doesn't start because it doesn't recognize it's own 
configuration xml files.

Eddie


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: MyFaces Portlet crashes

2006-04-28 Thread gruenewa
Thanks for your response. I have submitted a report in the myfaces forum. 
People there guess it is a problem with jasper (tomcats jsp engine) that cann't 
process the given jsp. Looks like I should run my applications with JSF RI.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Messaging, JMS JBossMQ] - configuring jbossmq with ibmmq

2006-04-28 Thread patnaik
Hi all,
i need a inforamtion like i am using jboss as application server and i am 
trying to connect to ibm mq series i know the request queue name and response 
queue name .
But can you please help what are the configuration i need to talk to ibm 
mqseries.
Do i need to configure jndi name or only i will provide the provider ul and 
request queue name and response queue name.
Please mail me .

Thanks in Advance,
Susant Patnaik

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Installation, Configuration Deployment] - Re: JBoss configuration for WorkManager

2006-04-28 Thread petrilla
Sorry for the relance but i need help please, it very important for me...

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - java.sql.SQLException: The database is already in use by ano

2006-04-28 Thread pganesh81
Hi,
I tried creating a new web application for deploying a process definition in 
Sun server using the HSQL database. Upon execution of the method - 
deployProcessDefinition in a class file, it throws an SQLException shown below. 
Anyone please help in sorting this problem

[#|2006-04-28T14:55:05.062+0530|WARNING|sun-appserver-pe8.2|org.hibernate.cfg.SettingsFactory|_ThreadID=11;|Could
 not obtain connection metadata
java.sql.SQLException: The database is already in use by another process: 
[EMAIL PROTECTED] 
=D:\JBPM\jbpm-starters-kit-3.1\jbpm-server\server\jbpm\data\hypersonic\localDB.lck,
 exists=true, locked=false, valid=false, fl =sun.nio.ch.FileLockImpl[0:16 
exclusive valid]]: java.security.AccessControlException: access denied 
(java.io.FilePermission 
D:\JBPM\jbpm-starters-kit-3.1\jbpm-server\server\jbpm\data\hypersonic\localDB.lck
 delete)
at org.hsqldb.jdbc.Util.sqlException(Unknown Source)
at org.hsqldb.jdbc.jdbcConnection.(Unknown Source)
at org.hsqldb.jdbcDriver.getConnection(Unknown Source)
at org.hsqldb.jdbcDriver.connect(Unknown Source)
at java.sql.DriverManager.getConnection(DriverManager.java:525)
at java.sql.DriverManager.getConnection(DriverManager.java:140)
at 
org.hibernate.connection.DriverManagerConnectionProvider.getConnection(DriverManagerConnectionProvider.java:110)
at 
org.hibernate.cfg.SettingsFactory.buildSettings(SettingsFactory.java:72)
at 
org.hibernate.cfg.Configuration.buildSettings(Configuration.java:1859)
at 
org.hibernate.cfg.Configuration.buildSessionFactory(Configuration.java:1152)
at 
org.jbpm.persistence.db.DbPersistenceServiceFactory.getSessionFactory(DbPersistenceServiceFactory.java:90)
at 
org.jbpm.persistence.db.DbPersistenceService.getSessionFactory(DbPersistenceService.java:74)
at 
org.jbpm.persistence.db.DbPersistenceService.getSession(DbPersistenceService.java:79)
at 
org.jbpm.persistence.db.DbPersistenceService.getGraphSession(DbPersistenceService.java:216)
at org.jbpm.JbpmContext.getGraphSession(JbpmContext.java:427)
at org.jbpm.JbpmContext.deployProcessDefinition(JbpmContext.java:166)
at UserBean.deployProcessDefinition(UserBean.java:89)


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - MBeans and Spring In JBoss

2006-04-28 Thread gigsvoo
Hi there,

I am implementing JBoss MBeans to work together with hibernate and 
springframework.

Here is my mbean code in hibernate-service.xml at 
{JBOSS_HOME}\server\default\conf:


  | mbean code=org.jboss.hibernate.jmx.Hibernate 
  |name=jboss.har:service=Hibernate
  | 
  |attribute 
name=SessionFactoryNamejava:/hibernate/SessionFactory/attribute
  | 
  | !-- Datasource settings --
  | attribute 
name=DatasourceNamejava:jdbc/emsConnectionPool/attribute
  | attribute 
name=Dialectorg.hibernate.dialect.Oracle9Dialect/attribute
  | 
  | !-- Caching --
  | attribute 
name=CacheProviderClassorg.hibernate.cache.HashtableCacheProvider/attribute
  | 
  | !-- Logging --
  | attribute name=ShowSqlEnabledtrue/attribute
  | 
  | !-- Scan for mapping file --
  | attribute name=ScanForMappingsEnabledtrue/attribute
  | 
  | /mbean
  | 

this is my springframework entry:


  | bean id=sessionFactory 
class=org.springframework.jndi.JndiObjectFactoryBean
  | property name=jndiName
  | valuejava:/hibernate/SessionFactory/value
  | /property
  | /bean
  | 

and my error stack trace:


  | 2006-04-28 18:25:30,515 DEBUG 
[org.springframework.beans.factory.support.DefaultListableBeanFactory] Invoking 
BeanPostProcessors before initialization of bean 'sessionFactory'
  | 2006-04-28 18:25:30,515 DEBUG 
[org.springframework.beans.factory.support.DefaultListableBeanFactory] Invoking 
afterPropertiesSet() on bean with name 'sessionFactory'
  | 2006-04-28 18:25:30,515 DEBUG [org.springframework.jndi.JndiTemplate] 
Looking up JNDI object with name [java:/hibernate/SessionFactory]
  | 2006-04-28 18:25:30,531 DEBUG 
[org.springframework.beans.factory.support.DefaultListableBeanFactory] 
Retrieving dependent beans for bean 'sessionFactory'
  | 2006-04-28 18:25:30,531 INFO  
[org.springframework.beans.factory.support.DefaultListableBeanFactory] 
Destroying singletons in factory 
{org.springframework.beans.factory.support.DefaultListableBeanFactory defining 
beans 
[sessionFactory,gov.mohr.ems.core.entity.logic.DefaultQueryMethod,gov.mohr.ems.core.entity.logic.ORMEngine];
 root of BeanFactory hierarchy}
  | 2006-04-28 18:25:30,531 ERROR 
[org.springframework.web.context.ContextLoader] Context initialization failed
  | org.springframework.beans.factory.BeanCreationException: Error creating 
bean with name 'sessionFactory' defined in ServletContext resource 
[/WEB-INF/applicationcontext.xml]: Initialization of bean failed; nested 
exception is javax.naming.NameNotFoundException: hibernate not bound
  | javax.naming.NameNotFoundException: hibernate not bound
  | at org.jnp.server.NamingServer.getBinding(NamingServer.java:514)
  | at org.jnp.server.NamingServer.getBinding(NamingServer.java:522)
  | at org.jnp.server.NamingServer.getObject(NamingServer.java:528)
  | at org.jnp.server.NamingServer.lookup(NamingServer.java:252)
  | at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:610)
  | at org.jnp.interfaces.NamingContext.lookup(NamingContext.java:572)
  | at javax.naming.InitialContext.lookup(InitialContext.java:351)
  | at 
org.springframework.jndi.JndiTemplate$1.doInContext(JndiTemplate.java:123)
  | at org.springframework.jndi.JndiTemplate.execute(JndiTemplate.java:85)
  | at org.springframework.jndi.JndiTemplate.lookup(JndiTemplate.java:121)
  | at org.springframework.jndi.JndiTemplate.lookup(JndiTemplate.java:146)
  | at 
org.springframework.jndi.JndiLocatorSupport.lookup(JndiLocatorSupport.java:86)
  | at 
org.springframework.jndi.JndiObjectLocator.lookup(JndiObjectLocator.java:104)
  | at 
org.springframework.jndi.JndiObjectFactoryBean.afterPropertiesSet(JndiObjectFactoryBean.java:125)
  | at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.invokeInitMethods(AbstractAutowireCapableBeanFactory.java:1091)
  | at 
org.springframework.beans.factory.support.AbstractAutowireCapableBeanFactory.createBean(AbstractAutowireCapableBeanFactory.java:396)
  | at 
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:233)
  | at 
org.springframework.beans.factory.support.AbstractBeanFactory.getBean(AbstractBeanFactory.java:145)
  | at 
org.springframework.beans.factory.support.DefaultListableBeanFactory.preInstantiateSingletons(DefaultListableBeanFactory.java:277)
  | at 
org.springframework.context.support.AbstractApplicationContext.refresh(AbstractApplicationContext.java:313)
  | at 
org.springframework.web.context.support.AbstractRefreshableWebApplicationContext.refresh(AbstractRefreshableWebApplicationContext.java:139)
  | at 
org.springframework.web.context.ContextLoader.createWebApplicationContext(ContextLoader.java:246)
  | at 

[JBoss-user] [JBoss jBPM] - Re: Comment redeployer l'exemple

2006-04-28 Thread ferdaous
Hi luca
I drop the the jsp page ,after that I point my internet explorer at 
http:\\localhost:8080\jBPM
the graphical interface doesn't appear ,it appear just the folders in the 
folder jBPM\server\jBPM\deploy 
there other thing to do before pointing at http:\\localhost:8080\jBPM
  mercii


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - JBossMessageEndpointFactory

2006-04-28 Thread S0d0
Hi,

I have JBoss 4.0.4CR2 installed and I have tried to configure
JMS JCA 1.5 message inflow.
Problem is that class org.jboss.ejb3.mdb.inflow.JBossMessageEndpointFactory 
class is missing... Which jar should contain it?

-Sodo-



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: how can I modify the websale exemple

2006-04-28 Thread ferdaous
I read the doc  http://wiki.jboss.org/wiki/Wiki.jsp?page=JbpmGettingStarted 
I khnow how I define my own process ,but I want Modify the graphical interface 
(the default GUI of jBPM) .
   
  Merci

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - Dynamically generate form elements

2006-04-28 Thread drVillo
Hi

probably this is not a strictly Seam related question, but here it is...

Displaying a form i need to display the proper input type (textarea, 
checkbox,radio etcetc) based on the type of the element. 
One possibility I see is to use for example jstl tags to create an if-else 
sequence. Given that the possible types are limited and fixed this doesn't
seem to be a problem. 
Nevertheless it doesn't appeal me much, so I'd like to hear your opininon about 
this...

Another possibility could be having a method like getFormElement(Type)
that would add the element through 



  | facesContext.getViewRoot().findComponent(theform).getChildren();
  | ...
  | 

But doing this I loose readability of the page code, providing a flexibility 
that probably is not needed...


Any hint?

Cheers
Francesco

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: @SoapBinding annotation

2006-04-28 Thread JANDO
paper57 wrote : Is the @SOAPBinding annotation supported yet?  I cannot get 
any change in the generated WSDL by varying any of the parameters?
  | 
  | I've got the latest from CVS
  | 
  | @WebService { ... }
  | @SOAPBinding (style=SOAPBinding.Style.RPC,use=SOAPBinding.Use.ENCODED)
  | @Stateless
  | public class {  }
  | 
  | generates an RPC/literal WSDL file, similar results with document/*.
  | 
  | 

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Clustering without EJB

2006-04-28 Thread JerryGauth
Clustering is independent of EJB's.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - async event execution

2006-04-28 Thread akakunin
It is possible in jBPM to make async event execution? 
For example I added event for task-assign to send email to actorId, but I want 
to do in parallel with main jBPM process execution. Is it possible to implement 
by some way?

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Installation, Configuration Deployment] - Re: Deploying application with 3rd Party Libraries

2006-04-28 Thread sim085
Thanks very much,

I will read those links and see what am I doing wrong :) thanks :)

regards,
sim085

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: JBossMessageEndpointFactory

2006-04-28 Thread [EMAIL PROTECTED]


that class you mention is in JBOSS HEAD CVS.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Comment redeployer l'exemple

2006-04-28 Thread lfaggioli
Hi!

maybe drop was not the best word I could use: I meant drag and drop - you 
should copy your jsp inside jbpm.war.

Everytime you copy or modify something under the deploy dir, JBoss 
automatically deploys the file (in this case a web application). If you modify 
a war, the web application first gets undeployed and then redeployed, and this 
operation usually takes few seconds. 
Because of that, if you point your browser right away to your webapp, you might 
get an error (HTTP Status 404 - The requested resource (/jbpm/) is not 
available). Do you get this error?

One more thing, your URL looks like http:\\localhost:8080\jBPM: be carefull 
since Tomcat is case sensitive - in order to have the application context 
jBPM, your file under deploy must be jBPM.war, and not jbpm.war or JBPM.war 
or whatever, otherwise you get again the HTTP 404 error.

Let me know if you need more help
luca 

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: async event execution

2006-04-28 Thread Saviola
Hi, akakunin!
Since version 3.1 of jBPM there is possibility for asynchronous execution of 
nodes.
You can read more here:
http://docs.jboss.com/jbpm/v3/userguide/asynchronouscontinuations.html

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: JBossMessageEndpointFactory

2006-04-28 Thread S0d0
Sorry... My mistake... I found it now ... :)

-Sodo-



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: JBossMessageEndpointFactory

2006-04-28 Thread S0d0
Is there document available what should I change in
standardjboss.xml to use JCA 1.5 message inflow with EJB3?


-Sodo-



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Testimonials] - open-VA 1.0 released

2006-04-28 Thread [EMAIL PROTECTED]
After a hard work the open-VA team released open-VA.

We feel very happy with this event, and we hope open-VA can help you in all 
related to validating digital certificates and signatures.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Beginners Corner] - Re: Getting a relative path

2006-04-28 Thread jaleyba
Please, could somebody give me a clue in this matter ?


Thanks in advance

J


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Installation, Configuration Deployment] - Changing files in the classes folder of a war.

2006-04-28 Thread srivathsak
Hi 
   I am building a jmx application and have a xyz.war in the 
server/default/deploy/WEB-INF/  folder. Now when i am trying to dynamically 
change some of the properties in a file using my jmx application I am not able 
to see the corresponding replication in the application.
Is this because of the fact that I have placed the changed file in the 
WEB_INF folder when the jbosss is running.
   Can anyone tell me the reason for this...and try to help me in solving 
this problem

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - Custom type: org.jboss.ws.WSException

2006-04-28 Thread Juergen.Zimmermann
I'm using JBoss 4.0.4CR2 with EJB3 enabled.

My webservice has a method using a custom type (a JavaBean on the server side). 
The client throws a stack trace (see below). What should I do? What's going 
wrong?

The WSDL looks as follows:

  | ?xml version=1.0 encoding=UTF-8?
  | definitions name='KundenverwaltungWSBeanService' 
targetNamespace='http://ws.hska.de/jaws' 
xmlns='http://schemas.xmlsoap.org/wsdl/' 
xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' 
xmlns:tns='http://ws.hska.de/jaws' xmlns:xsd='http://www.w3.org/2001/XMLSchema'
  |  types
  |   schema elementFormDefault='qualified' 
targetNamespace='http://ws.hska.de/jaws' 
xmlns='http://www.w3.org/2001/XMLSchema' 
xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' 
xmlns:tns='http://ws.hska.de/jaws' 
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
  |complexType name='KundeWS'
  | sequence
  |  element name='art' nillable='true' type='string'/
  |  element name='id' type='long'/
  |  element name='nachname' nillable='true' type='string'/
  |  element name='rabatt' type='int'/
  |  element name='vorname' nillable='true' type='string'/
  | /sequence
  |/complexType
  |   /schema
  |  /types
  |  message name='KundenverwaltungWSBean_deleteKunde'
  |   part name='long_1' type='xsd:long'/
  |  /message
  |  message name='KundenverwaltungWSBean_deleteKundeResponse'/
  |  message name='KundenverwaltungWSBean_findKunde'
  |   part name='long_1' type='xsd:long'/
  |  /message
  |  message name='KundenverwaltungWSBean_findKundeResponse'
  |   part name='result' type='tns:KundeWS'/
  |  /message
  |  message name='KundenverwaltungWSBean_findNachname'
  |   part name='long_1' type='xsd:long'/
  |  /message
  |  message name='KundenverwaltungWSBean_findNachnameResponse'
  |   part name='result' type='xsd:string'/
  |  /message
  |  portType name='KundenverwaltungWSBean'
  |   operation name='deleteKunde' parameterOrder='long_1'
  |input message='tns:KundenverwaltungWSBean_deleteKunde'/
  |output message='tns:KundenverwaltungWSBean_deleteKundeResponse'/
  |   /operation
  |   operation name='findKunde' parameterOrder='long_1'
  |input message='tns:KundenverwaltungWSBean_findKunde'/
  |output message='tns:KundenverwaltungWSBean_findKundeResponse'/
  |   /operation
  |   operation name='findNachname' parameterOrder='long_1'
  |input message='tns:KundenverwaltungWSBean_findNachname'/
  |output message='tns:KundenverwaltungWSBean_findNachnameResponse'/
  |   /operation
  |  /portType
  |  binding name='KundenverwaltungWSBeanBinding' 
type='tns:KundenverwaltungWSBean'
  |   soap:binding style='rpc' 
transport='http://schemas.xmlsoap.org/soap/http'/
  |   operation name='deleteKunde'
  |soap:operation soapAction=''/
  |input
  | soap:body namespace='http://ws.hska.de/jaws' use='literal'/
  |/input
  |output
  | soap:body namespace='http://ws.hska.de/jaws' use='literal'/
  |/output
  |   /operation
  |   operation name='findKunde'
  |soap:operation soapAction=''/
  |input
  | soap:body namespace='http://ws.hska.de/jaws' use='literal'/
  |/input
  |output
  | soap:body namespace='http://ws.hska.de/jaws' use='literal'/
  |/output
  |   /operation
  |   operation name='findNachname'
  |soap:operation soapAction=''/
  |input
  | soap:body namespace='http://ws.hska.de/jaws' use='literal'/
  |/input
  |output
  | soap:body namespace='http://ws.hska.de/jaws' use='literal'/
  |/output
  |   /operation
  |  /binding
  |  service name='KundenverwaltungWSBeanService'
  |   port binding='tns:KundenverwaltungWSBeanBinding' 
name='KundenverwaltungWSBeanPort'
  |soap:address location='REPLACE_WITH_ACTUAL_URL'/
  |   /port
  |  /service
  | /definitions
  | 

And now the stack trace:

  | org.jboss.ws.WSException: Cannot obtain java type mapping for: 
{http://ws.hska.de/jaws}KundeWS
  |at 
org.jboss.ws.metadata.JSR109MetaDataBuilder.buildParameterMetaDataRpc(JSR109MetaDataBuilder.java:314)
  |at 
org.jboss.ws.metadata.JSR109MetaDataBuilder.setupOperationsFromWSDL(JSR109MetaDataBuilder.java:189)
  |at 
org.jboss.ws.metadata.JSR109ClientMetaDataBuilder.buildMetaDataInternal(JSR109ClientMetaDataBuilder.java:213)
  |at 
org.jboss.ws.metadata.JSR109ClientMetaDataBuilder.buildMetaData(JSR109ClientMetaDataBuilder.java:89)
  |at org.jboss.ws.jaxrpc.ServiceImpl.init(ServiceImpl.java:89)
  |at 
org.jboss.ws.jaxrpc.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:157)
  |at 
org.jboss.ws.jaxrpc.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:128)
  |at de.hska.ws.client.Main.main(Main.java:22)
  | --- Nested Exception ---
  | org.jboss.ws.WSException: Cannot obtain java type mapping for: 
{http://ws.hska.de/jaws}KundeWS
  |at 
org.jboss.ws.metadata.JSR109MetaDataBuilder.buildParameterMetaDataRpc(JSR109MetaDataBuilder.java:314)
  |at 

[JBoss-user] [Beginners Corner] - Re: Getting a relative path

2006-04-28 Thread anders.hedstrom
I guess you could use this:

System.getProperty(jboss.server.config.url);

or

org.jboss.system.server.ServerConfigLocator.locate().getServerConfigURL();

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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/JBoss] - EHCache

2006-04-28 Thread Juergen.Zimmermann
I want to use EHCache for JBoss 4.0.4CR2. Where should ehcache.xml be placed?

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: ECLIPSE IDE - @JoinTable problem

2006-04-28 Thread sierras
Even though the documentations says another thing put...


@JoinTable( table = @Table(name = JOIN_ORG_ISU),
joinColumns = [EMAIL PROTECTED](name = Organization_ID_GEN)},
inverseJoinColumns = [EMAIL PROTECTED](name = 
InformationSystemUser_ID_GEN)} )


Maybe my documentation is not up todate.



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Tomcat, HTTPD, Servlets JSP] - Re: env-entry elements not bound with virtual hosts (externa

2006-04-28 Thread dduchaine
Simpler question here:

Is it possible to deploy an exploded directory which has the .war structure 
outside the jboss deploy/ directory?

Part of the answer is yes because we currently have a working webapp (jsp 
compilation, execution and reloading) deployed this way BUT services provided 
by JBoss such as JNDI and JAAS are not visible to the application.

Where should we look?

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Messaging, JMS JBossMQ] - JBossMQ + MQSeries 5.1 (not Websphere MQ)

2006-04-28 Thread JBossBeginner
Dear all, 

I get in trouble since a few days to find a way to make a MQSeries queue 
compliant with a JBossMQ queue. I have a MQSeries (V 5.1) trasmisson queue in a 
remote app. that connects to another MQ queue in my app. I would like to take 
out MQSeries from my app and use JBoss queues. Unfortunately, MQSeries doesn't 
support JMS... Is there anyway to do this ? I have search for a long time on 
this site and on the internet for any kind of information, but nothing is 
explained :-( . I would really appreciate if someone can help me find a 
solution, I'm a beginner and this project is very important for me. 

Thanks a lot !

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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 and JBossCache Mbean service in Weblogic 8.1

2006-04-28 Thread [EMAIL PROTECTED]
I haven't tried deploying this as an MBean in WebLogic, although I can't 
imagine this would be a difficult thing.  BEA's e-docs has examples on 
deploying MBeans in WebLogic.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Security Framework w/Seam

2006-04-28 Thread perwik
[EMAIL PROTECTED] wrote : anonymous wrote : Actually what I'm interested in 
is the ability to have users in groups and permissions on single objects bound 
to those groups.
  | 
  | I don't understand. How is what you are describing different to 
@RolesAllowed in EJB3?
  | 


  | @RolesAllowed(ContentAdmin)
  | public void doSomething() {}
  | 
would only let you check if the current user belongs to one of the groups 
(roles) that you allow to access that  method (in this case ContentAdmin). This 
would require that you have all roles defined at compile time. I don't want 
that at all. I want

  | @RequiredPermission(name=ContentPermission type=read)
  | public void doSomething() {}
  | 
And then I'm free to create groups, put users into them and assign permissions 
to those groups as needed at runtime. This would allso make it possible to do 
something like

  | authz:acl domainObject=${content} hasPermission=read
  | Only show this if the user is authorized to see it.
  | /authz:acl
  | 
(This was taken from the Acegi Reference Guide)
All of this is very possible to do with JAAS, but it looks like some things are 
still missing in JBoss Security.

I'm not saying that we should use Acegi instead of JAAS, I didn't even know 
Acegi existed until yesterday when I read this thread.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: TransactionManager Name not bound?

2006-04-28 Thread sarojk
No, I am running my application as standalone, i.e. not inside jboss as 
ear/war.  But I start jboss before running my application as it uses jndi 
service.
Am I doing wrong something?
Thanks
Saroj

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Deploying EJB 3 ear via Farming

2006-04-28 Thread MarcReis
It seems to be a problem of my Test ear file. We deployed a larger application 
made out of jar, har, ejb3 and ear files and they were distributed fine (none 
are market @clustered though).

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Binding to a bean in a jsp page

2006-04-28 Thread drVillo

Have you checked that the jstl implementation is within your classpath?
if you use the jakarta impl. ensure that the standard.jar is there...

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Tomcat, HTTPD, Servlets JSP] - Re: env-entry elements not bound with virtual hosts (externa

2006-04-28 Thread j2ee_junkie
Are these JNDI and JAAS services available to your application if you deploy in 
$JBOSS_SERVER/deploy directory?

Also, I am not sure, but I think setting up JNDI references is a two step 
process.  The web.xml elements specify how to map resources from names that are 
deployment specific to names used by application.  Then you must also map from 
the server environment name to your deployment environment name.  See 
http://tomcat.apache.org/tomcat-5.5-doc/jndi-resources-howto.html for more 
details.

Finally, I would try to look at TRACE logging of the Deployer and JNDI actions 
to see how things are getting bound(or not bound).

hope this is helpful, cgriffith[/url]

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Fileupload

2006-04-28 Thread marcioendo
I am not sure this is the case, but I am not using JSP. I am using JSF. 

And I forgot to list the contents of my WAR:

web.war/WEB-INF:


  | drwxr-xr-x  3 endo users  160 2006-04-27 11:58 facelets/ -- ignore this, 
just for html templates
  | -rw-r--r--  1 endo users  886 2006-04-27 16:58 faces-config.xml
  | -rw-r--r--  1 endo users  336 2006-04-24 14:10 jboss-web.xml
  | drwxr-xr-x  2 endo users  144 2006-04-24 11:12 lib/
  | -rw-r--r--  1 endo users  15K 2006-04-11 17:50 tomahawk.taglib.xml
  | -rw-r--r--  1 endo users 5.1K 2006-04-24 14:10 web.xml
  | 

web.war/WEB-INF/lib

  | total 360K
  | -rw-r--r--  1 endo users  21K 2006-04-12 15:07 el-api.jar
  | -rw-r--r--  1 endo users  96K 2006-04-12 15:07 el-ri.jar
  | -rw-r--r--  1 endo users 239K 2006-04-12 15:07 jsf-facelets.jar
  | 

And inside the WAR META-INF I have the same exact same MANIFEST.MF listed for 
the ejb.jar.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Dynamically generate form elements

2006-04-28 Thread drVillo
Ok, I have been trying the jstl way...

Nevertheless I have been running into the following problem:

In my jsp I have


  | %@ taglib uri=http://java.sun.com/jsp/jstl/core; prefix=c %
  | ...
  | 
  | h:dataTable var=question value=#{section.questions}
  | h:column
  | h:outputText value=#{question.text}/br
  | c:choose
  | 
  | c:when test=${question.radio}
  | h:selectOneRadio 
value=#{register.selection[question]} required=true
  |   layout=pageDirection
  | f:selectItems value=#{question.answerTypes}/
  | /h:selectOneRadio
  | /c:when
  | c:otherwise
  | h:outputText value=#{question.type}/
  | /c:otherwise
  | /c:choose
  | /h:column
  | /h:dataTable
  | 

and actually question.isRadio() returns true.
The problem is that it always takes the otherwise branch. I don't really 
understand what's the problem, it's almost the same that the dvd example does 
(same libraries as well).

Can it be of me using jsps instead of facelets? Is it supposed to matter anyway?

Thanks for any hint on this!

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Installation, Configuration Deployment] - Configure JBoss to use xerces instead of xercesImpl

2006-04-28 Thread donnvalencia
Can JBoss be configured to use xerces.jar instead of the endorsed 
xercesImpl.jar?

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Security Framework w/Seam

2006-04-28 Thread drVillo
perwik wrote : 
  | I don't understand. How is what you are describing different to 
@RolesAllowed in EJB3?
  | 


  | @RolesAllowed(ContentAdmin)
  | public void doSomething() {}
  | 
would only let you check if the current user belongs to one of the groups 
(roles) that you allow to access that  method (in this case ContentAdmin). This 
would require that you have all roles defined at compile time. I don't want 
that at all. I want

  | @RequiredPermission(name=ContentPermission type=read)
  | public void doSomething() {}
  | 
And then I'm free to create groups, put users into them and assign permissions 
to those groups as needed at runtime. This would allso make it possible to do 
something like

  | authz:acl domainObject=${content} hasPermission=read
  | Only show this if the user is authorized to see it.
  | /authz:acl
  | 
(This was taken from the Acegi Reference Guide)
All of this is very possible to do with JAAS, but it looks like some things are 
still missing in JBoss Security.

I'm not saying that we should use Acegi instead of JAAS, I didn't even know 
Acegi existed until yesterday when I read this thread.


Well, AFAIK what you are talking about is the difference between logical and 
application roles. 
ContentAdmin is a role known to the application, configured with


  | security-role
  | descriptioncontent admin/description
  | role-nameContentAdmin/role-name
  | /security-role
  | 

and used like


  | method-permission
  | role-nameContentAdmin/role-name
  | method
  | ...
  | /method
  | /method-permission
  | 
  | 

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Security Framework w/Seam

2006-04-28 Thread drVillo
Sorry for the bad formatting:S

I was adding that if using JAAS, your LoginModule is responsible of mapping 
principals coming from your identity manager to the application roles.

Cheers
Francesco

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: SeamExtendedManagedPersistencePhaseListener

2006-04-28 Thread g.tomassoni
I found a (very) temporary workaround to the transaction-still-there: don't use 
the SeamExtendedManagedPersistencePhaseListener.

I had somewhere a servlet filter adding transactional behaviour to http 
requests. It basicly wraps a transaction begin/commit around an http request, 
rolling the transaction back on exceptions. I just put this servlet on top of 
the SeamServlet and used SeamPhaseListener instead of the extended one. It 
works more or less (didn't try with jBPM), but please don't ask me exactly why.

Gavin, I see there is a SeamTransactionManagedPersistencePhaseListener, which 
sounds close the the temporary kludge I applied. I would like to give it a try, 
but it seems to me that's not referenced in any doc. Defining it as a 
PhaseListener in my app, I got this:


  | 2006-04-28 15:57:25,921 DEBUG [org.jboss.seam.util.Naming] JNDI 
InitialContext 
properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory,
 java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
  | 2006-04-28 15:57:25,937 DEBUG 
[org.jboss.seam.jsf.SeamTransactionManagedPersistencePhaseListener] Starting 
transaction prior to RESTORE_VIEW phase
  | 2006-04-28 15:57:25,937 DEBUG [org.jboss.seam.util.Naming] JNDI 
InitialContext 
properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory,
 java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
  | 2006-04-28 15:57:25,953 DEBUG [org.jboss.seam.contexts.Lifecycle]  Begin 
web request
  | 2006-04-28 15:57:25,968 DEBUG [org.jboss.seam.contexts.Lifecycle] Session 
started
  | 2006-04-28 15:57:26,046 DEBUG [org.jboss.seam.Component] instantiating Seam 
component: localeSelector
  | 2006-04-28 15:57:26,046 DEBUG 
[org.jboss.seam.jsf.SeamTransactionManagedPersistencePhaseListener] Flushing 
persistence contexts after INVOKE_APPLICATION phase
  | 2006-04-28 15:57:26,062 DEBUG [org.jboss.seam.util.Naming] JNDI 
InitialContext 
properties:{java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory,
 java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces}
  | 2006-04-28 15:57:26,109 ERROR [org.jboss.seam.servlet.SeamExceptionFilter] 
uncaught exception handled by Seam
  | javax.servlet.ServletException: Could not flush to database
  | at javax.faces.webapp.FacesServlet.service(FacesServlet.java:152)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
it.mycomp.myapp.web.filter.ClientCacheDisableFilter.doFilter(ClientCacheDisableFilter.java:43)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamRedirectFilter.doFilter(SeamRedirectFilter.java:23)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.jboss.seam.servlet.SeamExceptionFilter.doFilter(SeamExceptionFilter.java:45)
  | at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  | at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  | at 
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:54)
  | at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:174)
  | at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:432)
  | at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
  | at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  | at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  | at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  | at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
  | at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
  | at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
  | at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
  | at 
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
  | at java.lang.Thread.run(Thread.java:595)
  | 2006-04-28 15:57:26,281 DEBUG [org.jboss.seam.util.Naming] JNDI 
InitialContext 

[JBoss-user] [JBossWS] - Resolving problems with inheritance

2006-04-28 Thread klaus_erber
Hello,

at the moment, we are evaluating the new JBossWS webservice stack for a new 
project to use it instead of a self deployed AXIS context.

First of all: Thank you for the great work!

For the test, we have a CVS/SVN version of JBoss-4.0.4.GA/JBossWS from 
2006-04-25

We run into problems, when we try to use inheritance in our parameter und 
result types. For example:

we have as JSR181 conforming class:


  | package de.spiegel.red.service.ws.auth;
  | @WebService( name=AuthentifizierungJws,
  | targetNamespace=http://auth.ws.service.red.spiegel.de;,
  | serviceName=AuthentifizierungJws)
  | @SOAPBinding(
  | style=SOAPBinding.Style.RPC,
  | use = SOAPBinding.Use.LITERAL)
  | @Stateless
  | public class AuthentifizierungJwsServiceBean extends CoreJwsServiceBean
  | implements AuthentifizierungJws
  | {
  | ...
  | 
  |@WebMethod
  | public LoginErgebnis login(LoginParam loginParam)
  | {
  | ...
  | }
  | }
  | 
The class LoginParam:


  | package de.spiegel.red.service.ws.auth;
  | public class LoginParam extends CoreParamWSO implements 
java.io.Serializable {
  | ...
  | }
  | 

and the base class:


  | package de.spiegel.red.service.ws;
  | public class CoreParamWSO implements java.io.Serializable {
  | private JwsParam jwsParam;
  | ...
  | 
  | public JwsParam getJwsParam() {
  | return jwsParam;
  | }
  | 
  | public void setJwsParam(JwsParam jwsParam) {
  | this.jwsParam = jwsParam;
  | }
  | }
  | 

That results in the following WSDL, using the wstools:


  | definitions name='AuthentifizierungJws' 
targetNamespace='http://auth.ws.service.red.spiegel.de' 
xmlns='http://schemas.xmlsoap.org/wsdl/' 
xmlns:ns1='http://ws.service.red.spiegel.de/jaws' 
xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' 
xmlns:tns='http://auth.ws.service.red.spiegel.de' 
xmlns:xsd='http://www.w3.org/2001/XMLSchema'
  |  types
  |   schema targetNamespace='http://auth.ws.service.red.spiegel.de' 
xmlns='http://www.w3.org/2001/XMLSchema' 
xmlns:ns1='http://ws.service.red.spiegel.de/jaws' 
xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' 
xmlns:tns='http://auth.ws.service.red.spiegel.de' 
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
  |import namespace='http://ws.service.red.spiegel.de/jaws'/
  |complexType name='JwsParam'
  | sequence
  |  element name='clientVersion' nillable='true' type='string'/
  |  element name='tan' nillable='true' type='string'/
  |  element name='trace' nillable='true' type='boolean'/
  | /sequence
  |/complexType
  |...
  |complexType name='LoginParam'
  | complexContent
  |  extension base='tns:CoreParamWSO'
  |   sequence
  |element name='organisation' nillable='true' type='string'/
  |element name='password' nillable='true' type='string'/
  |element name='token' nillable='true' type='string'/
  |element name='userclientname' nillable='true' type='string'/
  |element name='username' nillable='true' type='string'/
  |element name='webserviceclientname' nillable='true' type='string'/
  |   /sequence
  |  /extension
  | /complexContent
  |/complexType
  |...
  |   /schema
  |   schema targetNamespace='http://ws.service.red.spiegel.de/jaws' 
xmlns='http://www.w3.org/2001/XMLSchema' 
xmlns:ns2='http://auth.ws.service.red.spiegel.de' 
xmlns:soap11-enc='http://schemas.xmlsoap.org/soap/encoding/' 
xmlns:tns='http://ws.service.red.spiegel.de/jaws' 
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
  |import namespace='http://auth.ws.service.red.spiegel.de'/
  |complexType name='CoreParamWSO'
  | sequence
  |  element name='jwsParam' nillable='true' type='tns:JwsParam'/
  | /sequence
  |/complexType
  |...
  |complexType name='JwsParam'
  | sequence
  |  element name='clientVersion' nillable='true' type='string'/
  |  element name='tan' nillable='true' type='string'/
  |  element name='trace' nillable='true' type='boolean'/
  | /sequence
  |/complexType
  |...
  |   /schema
  |  /types
  |  message name='AuthentifizierungJws_login'
  |   part name='LoginParam_1' type='tns:LoginParam'/
  |  /message
  |  message name='AuthentifizierungJws_loginResponse'
  |   part name='result' type='tns:LoginErgebnis'/
  |  /message
  |  ...
  |  portType name='AuthentifizierungJws'
  |   operation name='login' parameterOrder='LoginParam_1'
  |input message='tns:AuthentifizierungJws_login'/
  |output message='tns:AuthentifizierungJws_loginResponse'/
  |   /operation
  |   ...
  |  /portType
  |  binding name='AuthentifizierungJwsBinding' 
type='tns:AuthentifizierungJws'
  |   soap:binding style='rpc' 
transport='http://schemas.xmlsoap.org/soap/http'/
  |   operation name='login'
  |soap:operation soapAction=''/
  |input
  | soap:body namespace='http://auth.ws.service.red.spiegel.de' 

[JBoss-user] [JBoss Seam] - Re: Entity bean helper functions possible?

2006-04-28 Thread ariggz
I believe they will work with #{member.age} and #{member.genderString}.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Messaging, JMS JBossMQ] - Re: trouble with durable JMS subscribers

2006-04-28 Thread rveerla
Hi all,

I have figured the root of the problem for both the issues. in case if this 
helps some newbie with the same kind of trouble im posting the solution here.

First thing is every time I ran the client, Jboss is treating the durable 
subscriber as from a new client, so in reality we need to create one durable 
subscriber, and this subscriber can be re-used any number of times(creating it 
and closing it) in the same run. and this solved the other problem too.



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Messaging, JMS JBossMQ] - trouble looking up the queue name in a webservice using axis

2006-04-28 Thread rveerla
Hi all,

I have succesfully created console applications which can write, read to queues 
and topics, but im trying to create a webservice with a similar logic. I am 
using axis on jboss, but when i perform the context.lookup method, it is not 
able to resolve the queue name, let me post the code snippet here to make it 
clear.

Context ctx = new InitialContext();

cf_callset = 
(QueueConnectionFactory)ctx.lookup(XAConnectionFactory);
cf_resultset = (TopicConnectionFactory) 
ctx.lookup(XAConnectionFactory);

m_callSetQueue = (Queue)ctx.lookup(CallSetQueue);

m_resultSetTopic = (Topic)ctx.lookup(ResultSetTopic);

ok now, looking at the code, if the JNDI look up failed it would have thrown 
exception saying that it couldnt find the XAConnectionFactory. but it throws 
the Exception when looking up CallSetQueue.

Im not sure where the problem lies.
 
any help will be greatly appreciated. 

Thanks

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - Seam and JSF Object Converters

2006-04-28 Thread js8523
Hi All 

I thought you would be interested in Jacob Hookom's post on JSF Object 
converters. 

http://weblogs.java.net/blog/jhook/archive/2006/04/possible_jsf_co_1.html

I believe (correct me) Seam is half way towards this utopia with its Datamodel 
, but as discussed before needs the selectitem side of it. 

We have already had a conversation about automatic conversions, but I thought 
his blog would be very good input. 

Many thanks, 

James 



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Security Framework w/Seam

2006-04-28 Thread perwik
I don't really understand if that was a comment to what I wrote or something 
else, but to clarify: I wouldn't ever want to have anything to do with the 
names of roles anywhere in my code or xml-files since those names are not known 
before an admin creates them through the application. The only thing I want to 
define is Permissions. A permission can have a name, like ContentPermission, 
and actions, like read, write, delete, create. The only thing I want to 
specify in the code is what Permission is required. How that Permission then is 
mapped to a User (through a Role or directly) is entirely up to the security 
system, I dont want to have to care about that then.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Tomcat, HTTPD, Servlets JSP] - Re: JNDI env-entry + env not bound

2006-04-28 Thread ipojman
I have the same issue - did you ever solve the problem?

I think this is because when you deploy something directly in tomcat, it's not 
using jboss's JNDI context. So i would think you could simply define the 
resource in the server.xml itself. But apparently that doesn't work either ... 

still working on it.


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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/Spring Integration] - Re: JBoss Hibernate+Spring Application Deployment (JNDI Prob

2006-04-28 Thread Warlock
Hi,

you have to use the .har Deployer tool. Package your persistence layer 
containing all hibernate related stuff (.hbm.xml and the appropriate classes) 
together in the .har file and specify to load it in jboss-app.xml. place the 
jboss-app.xml file inside the .ear file or directory in the META-INF directory.

Here is the content of the jboss-app.xml file:

  | jboss-app
  |module
  |   harhibernatestuff.har/har
  |/module
  | /jboss-app
  | 

Then you must name your deployment descriptor correctly. Before jboss version 
4.0.3RC2 it was hibernate-service.xml and after jboss-service.xml.
The hibernate-service.xml or jboss-service.xml must be placed in the META-INF 
directory of the .har file.

Here is the content of my jboss-service.xml:

  | server
  | mbean code=org.jboss.hibernate.jmx.Hibernate 
name=jboss.har:service=Hibernate
  | attribute name=DatasourceNamejava:/DataSource/attribute
  | attribute 
name=SessionFactoryNamejava:/hibernate/SessionFactory/attribute
  | attribute 
name=Dialectorg.hibernate.dialect.MySQLInnoDBDialect/attribute
  | attribute 
name=CacheProviderClassorg.hibernate.cache.HashtableCacheProvider/attribute
  | attribute name=Hbm2ddlAutoupdate/attribute
  | attribute name=ShowSqlEnabledtrue/attribute
  | /mbean
  | /server
  | 

To use together with Spring you have to place the file applicationContext.xml 
of Spring inside of xxx.ear/xxx.war/WEB-INF containing the following lines to 
connect the Hibernate MBean:


  | bean id=sessionFactory 
class=org.springframework.jndi.JndiObjectFactoryBean
  | property 
name=jndiNamevaluejava:/hibernate/SessionFactory/value/property
  | /bean
  | 

Don't forget to specify the datasource at first (inside xxx-ds.xml, where xxx 
stands for the specific database string e.g. mysql, mssql, ...).

Try these settings and tell me about further problems.

Best regards
Manuel Lamotte

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Comment redeployer l'exemple

2006-04-28 Thread ferdaous
Thank you Luca ,
I see the changement in the GUI of WEBSALE example .
The second step we must validate the transition from a database 
for example to detect that the task create new web sale order is done  in the 
websale example we must accede to a database where the item and quantity and 
adress are stocked.
In fact ,we have an application of entreprise management .I have to assit this 
management by a workflow .so the task is done in this application and the 
workflow app have to detect the process advance provide the database of the app 
of management .
where I have to change in the jsp page .
 excuse me for my bad english , 
   merci   

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - Problems with running the portal after instal

2006-04-28 Thread lukemcar
I am having problems with running the portal after installing it.

This is the message it is displaying on the console:

  | 09:35:01,437 ERROR [URLDeploymentScanner] Incomplete Deployment listing:
  | 
  | --- MBeans waiting for other MBeans ---
  | ObjectName: portal:service=CMS
  |   State: CONFIGURED
  |   I Depend On:
  | jboss.cache:service=InvalidationManager
  | jboss.jca:service=DataSourceBinding,name=NoTxPortalDS
  |   Depends On Me:
  | portal:service=Tree
  | 
  | ObjectName: portal:service=Tree
  |   State: CONFIGURED
  |   I Depend On:
  | portal:service=CMS
  |   Depends On Me:
  | portal:service=Module,type=Security
  | 
  | ObjectName: portal:service=Module,type=Security
  |   State: CONFIGURED
  |   I Depend On:
  | portal:service=Hibernate
  | portal:service=Tree
  | 
  | --- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
  | ObjectName: jboss.jca:service=DataSourceBinding,name=NoTxPortalDS
  |   State: NOTYETINSTALLED
  |   Depends On Me:
  | portal:service=CMS

I am new to Jboss so I do not know how to address this problem. I installed the 
Jboss AS with the Windows installer and followed the instructions with 
deploying the portal. So I don?t understand why it is having problems.  The 
print out says the Mbean that is the root cause is 
jboss.jca:service=DataSourceBinding,name=NoTxPortalDS and I have no idea what 
that is and how to fix it. 

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Problems with running the portal after instal

2006-04-28 Thread [EMAIL PROTECTED]
It would be helpful if you give the version of Portal you are using and which 
database you have configured.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: how can I modify the websale exemple

2006-04-28 Thread kukeltje
then modify it... 

If you look at at least some of the docs and the code, then you see an ant 
build file, and surprisingly one task to create a war file. Even if there was 
no ant file, you could always have unzipped the war file, added you changed jsp 
and zip it again.



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: java.sql.SQLException: The database is already in use by

2006-04-28 Thread kukeltje
if the jboss/jbpm server is already running, deploying via a file based url dos 
not work. There can only be one. This is not a jboss/jbpm/hibernate issue, but 
a hsqldb.

if you make sure one is running and listening on a port, make sure deployment 
is done via that port by configuring the hsqldb url.


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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 bean helper functions possible?

2006-04-28 Thread [EMAIL PROTECTED]
And you might need to use @Transient.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Security Framework w/Seam

2006-04-28 Thread [EMAIL PROTECTED]
I might be being dense, but I still don't understand how (ContentPermission, 
read) is any different to having the role ReadContent.

My somewhat hazy understanding of this stuff is that a role is not meant only 
for modelling user groups but also for modelling permissions. ie. you can 
assign roles to roles, etc.

But now I am speaking about stuff I don't really understand properly, and I 
should really point Scott over here...

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - Problem using the SecureIdentityLoginModule to encrypt datas

2006-04-28 Thread dtauzell
I followed instructions to setup and configure my datasouce to use the 
SecureIdentityLoginModule.  

When my application tried to access a connection it get:
2006-04-28 10:07:11,020 DEBUG 
[org.jboss.resource.security.SecureIdentityLoginModule] Failed to decode 
password
javax.crypto.IllegalBlockSizeException: Input length (with padding) not multiple
 of 8 bytes
at com.sun.crypto.provider.SunJCE_h.a(DashoA6275)

I used the program (org.jboss.resource.security.SecureIdentityLoginModule) to 
encrypt my password an placed that into my application policy:

application-policy name = EncryptDBPassword
   
  login-module code = org.jboss.resource.security.SecureIdentityLoginM
odule
 flag = required
   module-option name = usernamecomsrw/module-option
   module-option name = password22b53669e0c66d/module-option
   module-option name = managedConnectionFactoryNamejboss.jca:se
rvice=LocalTxCM,name=RxHubTxDS/module-option
 /login-module
  
/application-policy

I am running jboss 3.2.6

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Converstaion context destroyed, why?

2006-04-28 Thread [EMAIL PROTECTED]
As discussed in other threads (and now in the FAQ), you cannot call a 
conversation-scope component during the JSF RESTORE_VIEW phase. Use a component 
from some other scope.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Dynamically generate form elements

2006-04-28 Thread [EMAIL PROTECTED]
Mixing JSTL with JSF in JSP usually does not work very well. Seriously consider 
using facelets instead.


BTW, this might be a good case for a JSF custom component.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] [Tomcat, HTTPD, Servlets JSP] - Re: env-entry elements not bound with virtual hosts (externa

2006-04-28 Thread j2ee_junkie
I am sorry if I am miss-leading.  I am not sure what exactly your application 
is not able to access.  My post before assumes that you are having trouble 
setting a resource reference.  However, after reading your post again, as well 
as the other thread 
(http://www.jboss.com/index.html?module=bbop=viewtopict=80616), I am sure I 
am way off base.

That said, I would still look at TRACE logging to see what is happening when 
war is deployed.

If you have any other info, let us know so we can help,
cgriffith

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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] - Casting/narrowing local/remote interfaces of same bean insta

2006-04-28 Thread hjones
Hi,

does anybody know, how I can get both the local and the remote interface
for one single SFSB instance? The SFSB of which I am talking is created by 
another SLSB. This SLSB initializes the SFSB via the local interface. 
Thereafter I would like to return the remote interface of the SFSB to the 
remote client.

I am using EJB3 and create the bean via

  | IXyzBeanLocal localRef  = (IXyzBeanLocal)ctx.lookup(LOCAL_JNDI_NAME);
  | 
(ctx is the InitialContext) How can I get the remote interface of the instance 
referenced by localRef?
If I use

  | IXyzBeanRemote remoteRef = (IXyzBeanRemote)ctx.lookup(REMOTE_JNDI_NAME);
  | 
a second instance is created, which is not what I intend.

Does anybody know how to cast or narrow?

Regards,
Matthias


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Comment redeployer l'exemple

2006-04-28 Thread lethrech
er

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Problem using the SecureIdentityLoginModule to encrypt d

2006-04-28 Thread dtauzell
Update

I changed the password to 'password', re-ran the encryption utility and it is 
working. The old password was only 5 characters. Does it need to be larger?



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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: Comment redeployer l'exemple

2006-04-28 Thread lethrech
hi
firdaws i have the same problem, i changed the file header1.jsp, after i 
deployed the application under eclipse (a web application .war), but i get the 
following message:
Directory Listing For /

Filename Size  Last Modified

Apache Tomcat/5.5
 
i wait for reponse, it s very important for me
think s in advence


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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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: SeamExtendedManagedPersistencePhaseListener

2006-04-28 Thread [EMAIL PROTECTED]
anonymous wrote : I had somewhere a servlet filter adding transactional 
behaviour to http requests. It basicly wraps a transaction begin/commit around 
an http request, rolling the transaction back on exceptions.

If you try to mix your own tx management with Seam tx management, you will 
break stuff. No wonder you have been having problems.

You are mean to use SEMPPL together with SeamServletFilter, and you will get 
all the tx management you will need. Don't add other stuff on top.

STMPPL is frankly not recommended, since SEMPPL is better. (And it is not 
currently being tested anywhere, and I don't guarantee it will be there 
forever.) However, I think I've fixed the NPE you encountered.

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

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


---
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make 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   >