[JBoss-user] [JBoss Seam] - Again: Dublicate ID

2006-01-12 Thread cleonhar
Hi everybody. 

I hope sombody can help me. I have a problem using the @DataModel Annotation. I 
saw some other people had the same problem and I tried also the suggestions, 
but nothing worked.

I use JBoss 4.0.3SP1 and Seam 1.0beta. I tried it with MyFaces 1.0.9 and 1.1.1 
and 1.1.2-SNAPSHOT.

Here is my VIEW:


  | 
  | http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd";>
  | http://www.w3.org/1999/xhtml";
  | xmlns:ui="http://java.sun.com/jsf/facelets";
  | xmlns:h="http://java.sun.com/jsf/html";
  | xmlns:f="http://java.sun.com/jsf/core";
  | template="../include/template.xhtml">
  | 
  | 
  | 
  | 
  | Benutzer
  | 
  | 
  | 
  | 
  | 
  | Name
  | #{u.uid}
  | 
  | 
  | Action
  | Delete
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 
  | 

I use the following Statefull Session Bean:


  | 
  | import static org.jboss.seam.ScopeType.SESSION;
  | 
  | import java.util.List;
  | 
  | import javax.ejb.Interceptor;
  | import javax.ejb.Stateful;
  | import javax.ejb.Stateless;
  | import javax.persistence.EntityManager;
  | import javax.persistence.PersistenceContext;
  | 
  | import org.apache.log4j.Logger;
  | import org.jboss.seam.annotations.In;
  | import org.jboss.seam.annotations.Name;
  | import org.jboss.seam.annotations.Out;
  | import org.jboss.seam.annotations.Scope;
  | import org.jboss.seam.annotations.datamodel.DataModel;
  | import org.jboss.seam.annotations.datamodel.DataModelSelectionIndex;
  | import org.jboss.seam.ejb.SeamInterceptor;
  | 
  | import de.mobileview.m4.core.security.User;
  | 
  | 
  | 
  | @Stateful
  | @Scope(SESSION)
  | @Name("userservice")
  | @Interceptor(SeamInterceptor.class)
  | public class UserServiceImpl implements UserService {
  | 
  |   @PersistenceContext (unitName="merlix")
  |   protected EntityManager em;
  |   private static final Logger log = Logger.getLogger(UserService.class);
  | 
  |   @DataModel
  |   private List  userlist;
  |   @DataModelSelectionIndex
  |   private int userIndex;
  |   
  |   @In(required=false)
  |   @Out(required=false)
  |   private User user;
  |   
  |   public UserServiceImpl() {
  | super();
  | log.debug("Constructor called");
  | }
  | 
  |   private void setUser()
  |{
  |   user = userlist.get(userIndex);
  |   log.info( userIndex + "=>" + user);
  |}
  |
  | public String add() {
  | em.persist (user);
  | return "success";
  | }
  | 
  |   public String update() {
  | em.merge(user);
  | return "success";
  | }
  | 
  |   public String load() {
  | //return (User)em.createQuery("from User where 
uid='"+user.getUid()+"'").getSingleResult();
  |   user=em.find(User.class,user);
  | return "success";
  |   }
  | 
  | public String delete(){
  | if (userlist==null) return "success";
  | setUser();
  | em.remove(user);
  | return "success";
  | }
  | 
  | public String refresh() {
  | em.refresh(user);
  | return "success";
  | }
  | 
  | 
  | @SuppressWarnings("unchecked")
  | public String readAll() {
  | userlist=em.createQuery("from User").getResultList();
  | return "success";
  | }
  | }
  | 

Here the faces-config:


  | 
  | 
  | http://java.sun.com/dtd/web-facesconfig_1_1.dtd";>
  | 
  | 
  | 
  | 
  | de
  | de
  | en
  | 
  | UserMessages
  | 
  |   
  | /user/user.xhtml
  | 
  | success
  | /user/user.xhtml
  | 
  | 
  | add
  | /user/adduser.xhtml
  | 
  | 
  | #{userservice.delete}
  | success
  | /user/user.xhtml
  | 
  | 
  |   
  | /user/adduser.xhtml
  | 
  | success
  | /user/edituser.xhtml
  | 
  | 
  |   
  | /user/edituser.xhtml
  | 
  | success
  | /user/edituser.xhtml
  | 
  | 
  | 
  |
  | com.sun.facelets.FaceletViewHandler
  | 
  | 
  |   
  |  

[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Can Jboss Messaging run standalone?

2006-01-12 Thread jzhuo
I know this topic. but it is for JBossMQ, how about JBoss Messaging?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: User credentials retrieval from security subject in a mu

2006-01-12 Thread [EMAIL PROTECTED]
jboss version, exact apis being used, ...

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Microcontainer] - Re: Trouble running TestNG SEAM tests using microcontainer i

2006-01-12 Thread [EMAIL PROTECTED]
Describe the setup in more detail as I don't follow the seam development on a 
daily basis. Exactly how is this being ruin in intellij?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - Re: JBoss Server shutdown failure

2006-01-12 Thread [EMAIL PROTECTED]
Remove commons-logging.jar from your war.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Re: Disabling tomcat

2006-01-12 Thread [EMAIL PROTECTED]
And the reply that said just removing the jbossweb-tomcat50.sar was what?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - error while starting jboss 3 in eclipse

2006-01-12 Thread deepakonmail
hi,
while trying to start jboss 3 in eclipse it gives the following exception.
jboss 4 is working fine. kindly provide the solution.

12:24:06,500 INFO  [Server] Starting JBoss (MX MicroKernel)...
12:24:06,515 INFO  [Server] Release ID: JBoss [WonderLand] 3.2.1 (build: 
CVSTag=JBoss_3_2_1 date=200305041533)
12:24:06,515 INFO  [Server] Home Dir: C:\jboss-3.2.1_tomcat-4.1.24
12:24:06,515 INFO  [Server] Home URL: file:/C:/jboss-3.2.1_tomcat-4.1.24/
12:24:06,515 INFO  [Server] Library URL: file:/C:/jboss-3.2.1_tomcat-4.1.24/lib/
12:24:06,515 INFO  [Server] Patch URL: null
12:24:06,515 INFO  [Server] Server Name: default
12:24:06,515 INFO  [Server] Server Home Dir: 
C:\jboss-3.2.1_tomcat-4.1.24\server\default
12:24:06,515 INFO  [Server] Server Home URL: 
file:/C:/jboss-3.2.1_tomcat-4.1.24/server/default/
12:24:06,515 INFO  [Server] Server Data Dir: 
C:\jboss-3.2.1_tomcat-4.1.24\server\default\data
12:24:06,531 INFO  [Server] Server Temp Dir: 
C:\jboss-3.2.1_tomcat-4.1.24\server\default\tmp
12:24:06,531 INFO  [Server] Server Config URL: 
file:/C:/jboss-3.2.1_tomcat-4.1.24/server/default/conf/
12:24:06,531 INFO  [Server] Server Library URL: 
file:/C:/jboss-3.2.1_tomcat-4.1.24/server/default/lib/
12:24:06,531 INFO  [Server] Root Deployemnt Filename: jboss-service.xml
12:24:06,546 INFO  [Server] Starting General Purpose Architecture (GPA)...
12:24:06,578 ERROR [Server] Failed to start
javax.management.InstanceNotFoundException: 
JMImplementation:service=LoaderRepository,name=Default
at 
com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1010)
at 
com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:804)
at 
com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
at 
org.jboss.system.server.ServerImpl.initBootLibraries(ServerImpl.java:480)
at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:316)
at org.jboss.system.server.ServerImpl.start(ServerImpl.java:272)
at org.jboss.Main.boot(Main.java:150)
at org.jboss.Main$1.run(Main.java:388)
at java.lang.Thread.run(Thread.java:595)
Failed to boot JBoss:
javax.management.InstanceNotFoundException: 
JMImplementation:service=LoaderRepository,name=Default
at 
com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.getMBean(DefaultMBeanServerInterceptor.java:1010)
at 
com.sun.jmx.interceptor.DefaultMBeanServerInterceptor.invoke(DefaultMBeanServerInterceptor.java:804)
at 
com.sun.jmx.mbeanserver.JmxMBeanServer.invoke(JmxMBeanServer.java:784)
at 
org.jboss.system.server.ServerImpl.initBootLibraries(ServerImpl.java:480)
at org.jboss.system.server.ServerImpl.doStart(ServerImpl.java:316)
at org.jboss.system.server.ServerImpl.start(ServerImpl.java:272)
at org.jboss.Main.boot(Main.java:150)
at org.jboss.Main$1.run(Main.java:388)
at java.lang.Thread.run(Thread.java:595)


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Lookup of entity bean from remote client not working

2006-01-12 Thread okiSM
Thank you for your reply, but I have one more question:

How can I access this entity EJB? Are session beans the only way (since every 
example shows that they can be "looked up")?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: JBoss IDE and Seam Development Ideas

2006-01-12 Thread [EMAIL PROTECTED]
"js8523" wrote : 4) Generate shell view backing beans and web pages from EJB3 
entity model (adding generated annotations to the EJB3 entities, then generate 
the  view backing SFSB, then the web pages), rather than just straight from the 
  database. Effectively jumping one step in you existing reverse engineering 
process. 

anonymous wrote : 
  | I guess this is conceptually possible right now, but maybe not from the UI. 
Max will tell you more.
  | 

The whole concept behind the code generation is that it is *not* tied to 
reverse engineering or any other "input" besides the Hibernate meta model. So 
just don't select to do reverse engineering and it will just work (assuming you 
enabled annotations/ejb3 on the console configuration ;)

"js8523" wrote : I feel passionately about this as I REALLY appreicate this 
framework, making developments so much easier and a little ide magic could 
really push Seam up against Spring/ Ruby on Rails in terms of setup and go type 
development. 
anonymous wrote : 
  | Yep, we really want to have tight integration with JBoss IDE. 
Unfortunately, JBoss IDE has just three guys fulltime, and they have their 
hands very full will jBPM, Hibernate, EJB3 stuff. Hopefully I can wrangle some 
more attantion from them soon ;)
  | 

Anyone with some free time should just drop me a line and I can show them where 
to start contributing ;)



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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: jBPM without database

2006-01-12 Thread [EMAIL PROTECTED]
jbpm 3.0+ also support full in memory without a database.  e.g. SEAM is going 
to use it that way for pageflow in a JSF application.

regards, tom.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: Can Jboss Messaging run standalone?

2006-01-12 Thread [EMAIL PROTECTED]
http://wiki.jboss.org/wiki/Wiki.jsp?page=IsThereAStandaloneDistributionOfJBossMQ

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Re: JMS remote subscriber clock synchronization

2006-01-12 Thread [EMAIL PROTECTED]
If there is no subscriber there is no buildup of messages.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - deploying portlets

2006-01-12 Thread altaf
hi,

i am using jboss 4.0.2 and jboss portal 2.0.1. i have taken the 
jboss-portal.sar and placed in the /deploy directory of jboss server and its 
working fine. but i want to deploy new portlets. i dont know how to deploy new 
portlets. can anyone help me as to what i should do in order to deploy new 
portlets say helloworld portlet. please help as it is very urgent.

Also can we create a new portal or do we have to deploy on existing portal.

Any help would greatly be appreciated.

thanks,
Altaf.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: What JBoss IDE version is used when making the Seam docu

2006-01-12 Thread [EMAIL PROTECTED]
Gavin,

I just had another question.

Can I use this pageflow idea to restrict what pages a user may have access to?  
Say the user is logged in, but does not carry the role needed to access a 
special page--can I determine the user's role and restrict him before the page 
is sent to him (without using the built in authentication/authorization done by 
the server container).

I think what I am trying to do (more or less) is have an action run when a page 
loads instead of when a user clicks on a button to load the page.  How would I 
do that?

:--)

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: How to implement OneToMany LAZY relationship

2006-01-12 Thread pvanonselen
Am I the only person with this problem?

I am using Jboss 4.0.3SP1 and want to use lazy relationships on a ManyToOne 
relationship.  Surely I am not the only one.

Could anyone maybe suggest an alternative to use if using the relationship 
directly is not possible from within a SessionBean.

This is the code for retrieving the relationship from the SessionBean (as 
sepcified above):


  | CoUser coUser = coUserHome.findById(assignedUserCode);  
  | coUser.getJobCardsAssignedUsers();
  | 

I have found a workarouond in the meantime using EJB QL doing a select with a 
JOIN FETCH on the ManyToOne relationship.  This is not as elegant as the  
scenario specified above.

Here is the code for the workaround:


  | @SuppressWarnings("unchecked")
  | public Collection findByAssignedUserCode(String 
assignedUserCode) {
  | 
  | try {
  | return entityManager.createQuery("select job " +
  | "from JobCard as job " +
  | "join fetch job.assignedUser as user " +
  | "where user.userCode = :userCode 
").setParameter("userCode",assignedUserCode).getResultList();
  | }
  | catch (RuntimeException re) {
  | log.error("get failed", re);
  | throw re;
  | }
  | }
  | 

As you can see this is not as nice as the first peice of code.  Any ideas, 
please help!

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Inheritance and Index. How?

2006-01-12 Thread trofimov
Use
@org.hibernate.annotations.Table(name = "TANLE_NAME, indexes = {
  | @Index(name = "idx_name", columnNames = { "name" }) 
  | ...
  | })
  | 

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Re: JBoss Application Server 4.0.3 SP1

2006-01-12 Thread rajeshchande
Hello,

I have downloaded, installed and configured JBoss AS 4.0.3SP1. When I run the 
"default" instance, everything runs fine. There are no errors.

When i run the "all" instance, i get the following error:



Microsoft Windows XP [Version 5.1.2600]
(C) Copyright 1985-2001 Microsoft Corp.

C:\Documents and Settings\131166>C:\installs\opensource\jboss-4.0.3SP1\bin\run.b
at -c all
===
.
  JBoss Bootstrap Environment
.
  JBOSS_HOME: C:\installs\opensource\jboss-4.0.3SP1\bin\\..
.
  JAVA: C:/installs/guidepost/j2sdk1.4.2_05\bin\java
.
  JAVA_OPTS:  -Dprogram.name=run.bat -Xms128m -Xmx512m
.
  CLASSPATH: C:/installs/guidepost/j2sdk1.4.2_05\lib\tools.jar;C:\installs\opens
ource\jboss-4.0.3SP1\bin\\run.jar
.
===
.
11:07:55,012 INFO  [Server] Starting JBoss (MX MicroKernel)...
11:07:55,032 INFO  [Server] Release ID: JBoss [Zion] 4.0.3SP1 (build: CVSTag=JBo
ss_4_0_3_SP1 date=200510231054)
11:07:55,042 INFO  [Server] Home Dir: C:\installs\opensource\jboss-4.0.3SP1
11:07:55,042 INFO  [Server] Home URL: file:/C:/installs/opensource/jboss-4.0.3SP
1/
11:07:55,042 INFO  [Server] Patch URL: null
11:07:55,042 INFO  [Server] Server Name: all
11:07:55,042 INFO  [Server] Server Home Dir: C:\installs\opensource\jboss-4.0.3S
P1\server\all
11:07:55,042 INFO  [Server] Server Home URL: file:/C:/installs/opensource/jboss-
4.0.3SP1/server/all/
11:07:55,042 INFO  [Server] Server Temp Dir: C:\installs\opensource\jboss-4.0.3S
P1\server\all\tmp
11:07:55,042 INFO  [Server] Root Deployment Filename: jboss-service.xml
11:07:57,215 INFO  [ServerInfo] Java version: 1.4.2_05,Sun Microsystems Inc.
11:07:57,225 INFO  [ServerInfo] Java VM: Java HotSpot(TM) Client VM 1.4.2_05-b04
,Sun Microsystems Inc.
11:07:57,225 INFO  [ServerInfo] OS-System: Windows XP 5.1,x86
11:07:58,678 INFO  [Server] Core system initialized
11:08:06,079 INFO  [WebService] Using RMI server codebase: http://TCS038095:8083
/
11:08:06,099 INFO  [Log4jService$URLWatchTimerTask] Configuring from URL: resour
ce:log4j.xml
11:08:06,820 INFO  [NamingService] Started jndi bootstrap jnpPort=1099, rmiPort=
1098, backlog=50, bindAddress=/0.0.0.0, Client SocketFactory=null, Server Socket
[EMAIL PROTECTED]
11:08:16,114 INFO  [SnmpAgentService] SNMP agent going active
11:08:17,106 INFO  [DefaultPartition] Initializing
11:08:17,376 INFO  [STDOUT]
---
GMS: address is TCS038095:3299 (additional data: 18 bytes)
---
11:08:17,416 WARN  [UDP] packet from /3.209.120.38:4517 has different version (0
224) from ours (0227). This may cause problems
11:08:17,426 ERROR [UDP] exception=java.io.InvalidClassException: org.jgroups.st
ack.IpAddress; local class incompatible: stream classdesc serialVersionUID = -19
99612243427863834, local class serialVersionUID = -8753594169997651306
at java.io.ObjectStreamClass.initNonProxy(ObjectStreamClass.java:463)
at java.io.ObjectInputStream.readNonProxyDesc(ObjectInputStream.java:152
1)
at java.io.ObjectInputStream.readClassDesc(ObjectInputStream.java:1435)
at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1
626)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
at java.io.ObjectInputStream.defaultReadFields(ObjectInputStream.java:18
45)
at java.io.ObjectInputStream.readSerialData(ObjectInputStream.java:1769)

at java.io.ObjectInputStream.readOrdinaryObject(ObjectInputStream.java:1
646)
at java.io.ObjectInputStream.readObject0(ObjectInputStream.java:1274)
at java.io.ObjectInputStream.readObject(ObjectInputStream.java:324)
at org.jgroups.protocols.PingHeader.readExternal(PingHeader.java:55)
at org.jgroups.util.Marshaller.read(Marshaller.java:77)
at org.jgroups.Message.readExternal(Message.java:491)
at org.jgroups.protocols.UDP.handleIncomingUdpPacket(UDP.java:686)
at org.jgroups.protocols.UDP$UcastReceiver.run(UDP.java:1294)
at java.lang.Thread.run(Thread.java:534)

11:08:19,419 INFO  [DefaultPartition] Number of cluster members: 1
11:08:19,419 INFO  [DefaultPartition] Other members: 0
11:08:19,419 INFO  [DefaultPartition] Fetching state (will wait for 3 millis
econds):
11:08:19,489 INFO  [HANamingService] Started ha-jndi bootstrap jnpPort=1100, bac
klog=50, bindAddress=/0.0.0.0
11:08:19,489 INFO  [DetachedHANamingService$AutomaticDiscovery] Listening on /0.
0.0.0:1102, group=230.0.0.4, HA-JNDI address=3.209.122.230:1100
11:08:22,464 INFO  [orb] ORB run
11:08:24,507 WARN  [UDP] packet from /3.209.120.38:4517 has different version (0
224) from ours (0227). This may cause problems11:08:24,557 INFO  
[CorbaNamingService] Naming: [IOR:002B49444C3A6F6
D672E6F72672F436F734E616D696E672F4E616D696E67436F6E74

[JBoss-user] [EJB 3.0] - Entity and permission

2006-01-12 Thread trofimov
How I can set permission on Entity bean?
It's possible?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: What JBoss IDE version is used when making the Seam docu

2006-01-12 Thread [EMAIL PROTECTED]
Right.

Non-persistent, single user.

vs.

Persistent, multi-user.

"Business process" is what people usually mean when they talk about "workflow" 
or "orchestration". 

"Pageflow" is what they mean when they talk about "navigation".

We will be loose here, and sometimes talk about pageflow as "orchestrating a 
user interaction", but we'll be strict in how we use the words business process 
and pageflow.


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - JSESSIONID Configuration

2006-01-12 Thread gambinopete
I have two WARS deployed in the same instance of JBOSS.  Is there a way to 
disable use of the statefull sessions (turn off the JSESSIONID) for one WAR, 
while leaving it on for the other?  One WAR has dynamic content that is 
completely stateless, and I do not want a JSESSIONID created when users hit 
that link.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: What JBoss IDE version is used when making the Seam docu

2006-01-12 Thread [EMAIL PROTECTED]
I've been struggling with the difference between a page flow and a business 
process.  Please correct me if I am wrong.

A page flow is for single user spanning over a single conversation.

A business process is for multi-user interactions over a grander time scale.

Thanks.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Weblogic to Jboss Migration Tool

2006-01-12 Thread sudeep_deshpande
Hi,

Currently I am looking for a migration tool for migrating some of my Weblogic 
(7.0 & 8.1) Applications to Jboss (4.0).

An article posted by Deepak Vohra (an XSLT Solution) is quite informative but 
does not exactly fit my bill.

Kindly let me know if anyone knows about any available tool for this.


Regards,
Sudeep

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - Re: JSP compilation errors are not going to

2006-01-12 Thread mikek753
thanks a lot.
I'll validate that after I get nightly build.

That's only one thing holds me to move to 1.5.0.

I've tried mix it with WTP - didn't work for JSP compilation - was hanging 
compiling the same JSP forever by using 99% cpu.

Could be my Web project settings that were migrated from 1.5M1 ...

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: WS & EJB3

2006-01-12 Thread swmk
this is from jboss service log;

2006-01-12 11:19:15,031 DEBUG [org.jboss.ws.tools.JavaToWSDL] generate 
[endpoint=... xxxserviceImpl,tnsURI=null,service=null,portType=null]
2006-01-12 11:19:15,031 DEBUG [org.jboss.ws.tools.JavaToWSDL11] Creating 
JavaToWSDL11 instance
2006-01-12 11:19:15,062 DEBUG [org.jboss.ws.jaxrpc.TypeMappingImpl] register: 
[EMAIL PROTECTED] 
[xmlType={.xxx..xxx.xxx.}Collection,javaType=java.util.Collection,sf=null,df=null]
2006-01-12 11:19:23,078 DEBUG 
[org.jboss.remoting.transport.socket.SocketClientInvoker] Setting 
SocketClientInvoker::enableTcpNoDelay to: true
2006-01-12 11:19:23,078 DEBUG 
[org.jboss.remoting.transport.socket.SocketClientInvoker] Setting 
SocketClientInvoker::timeout to: 60
2006-01-12 11:19:23,078 DEBUG 
[org.jboss.remoting.transport.socket.SocketClientInvoker] connect called for: 
[EMAIL PROTECTED]
2006-01-12 11:19:23,609 ERROR [org.jboss.deployment.MainDeployer] Could not 
create deployment: 
file:/C:/jboss/server/default/tmp/deploy/tmp47419XXX-Service.jar-contents/XService.ejb3

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: WS & EJB3

2006-01-12 Thread swmk
When I looked at the jboss server log, the exceptions come after or at the 
generation of wsdl of the service.

Another is, stack over flow and it comes like this;

at 
org.jboss.ws.tools.schema.SchemaTypeCreator.introspectJavaProperties(SchemaTypeCreator.java:460)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.generateNewType(SchemaTypeCreator.java:385)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.getType(SchemaTypeCreator.java:348)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.generateType(SchemaTypeCreator.java:158)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.generateType(SchemaTypeCreator.java:122)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.generateNewType(SchemaTypeCreator.java:369)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.getType(SchemaTypeCreator.java:348)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.generateType(SchemaTypeCreator.java:158)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.generateType(SchemaTypeCreator.java:122)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.introspectJavaProperties(SchemaTypeCreator.java:487)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.generateNewType(SchemaTypeCreator.java:385)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.getType(SchemaTypeCreator.java:348)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.generateType(SchemaTypeCreator.java:158)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.generateType(SchemaTypeCreator.java:122)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.introspectJavaProperties(SchemaTypeCreator.java:487)
at 
org.jboss.ws.tools.schema.SchemaTypeCreator.generateNewType(SchemaTypeCreator.java:385)

and go on.

--
Regards;
Stephen



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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Do Session Beans have to implement an interface?

2006-01-12 Thread minamoto
"glennimoss" wrote : Of course I'm just noticing that this article is almost a 
year and a half old, so things may have changed quite a bit since then. If it 
has changed, does anyone know where in the spec drafts it changed? 
  | 

See the Revision History page of the EJB 3.0 Simplified API PFD (P.58). I think 
the Public Draft dropped the feature:

anonymous wrote : Removed requirements for support of generated interfaces. 
Generation of interfaces may be supported by tools.

Miki



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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: What JBoss IDE version is used when making the Seam docu

2006-01-12 Thread [EMAIL PROTECTED]
Do it by hand for now, until this stuff is available. Its easy. The value of 
the GUI is more for visualization.

(1) A page flow can have actions if you like, or not if you like. There are 
really two approaches. The more JSFy way is that the actions are tied to the 
view, and jPDL just does navigation. The more Seamy way is that the jPDL drives 
the actions. Up to you. There are examples of both approaches in CVS. Look at 
numberguess.

(2) I actually don't know what they are for, frankly. Ask Norman :-) Hibernate 
can export the jBPM schema.

(3) @Begin(pageflow="numberGuess"), or @CreateProcess(definition="todo"), 
depending upon whether it is a page flow or a business process.


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Problem using struts with jboss portal 2.2

2006-01-12 Thread jsports
I  do  not find a error or exception in the jboss log file.



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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Problem using struts with jboss portal 2.2

2006-01-12 Thread jsports
I have study the struts demo used struts-portal-bridge in 
http://labs.jboss.com/portal/index.html?ctrl:id=page.default.downloads&project=portletswap&category=.portlets.framework
 .

The demo is  jboss portal 2.0 compliable.
Then I make a change to ensure it is jboss portal 2.2 compliable.
the portal.xml and struts-object.xml is following:
portal.xml:

  | 
  | http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd";
  |  xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance";
  |  
xsi:schemaLocation="http://java.sun.com/xml/ns/portlet/portlet-app_1_0.xsd 
/opt/SUNWps/dtd/portlet.xsd"
  |  version="1.0">
  |
  |   StrutsPortletDemo
  |   
org.apache.portals.bridges.struts.StrutsPortlet
  |   
  |  text/html
  |  VIEW
  |   
  |   
  |  StrutsPortlet Demo
  |   
  |   
  | ServletContextProvider
  | org.jboss.portal.bridge.JBossServletContextProvider
  |   
  |   
  | ViewPage
  | /Welcome.do
  |   
  |   
  | HelpPage
  | /Tour.do
  |
  |
  |
  |
  | 
  | 

struts-object.xml:

  | 
  | 
  |   
  |  overwrite
  |  
  | StrutsPortletDemoInstance
  | StrutsPortletDemo
  |  
  |   
  | 
  |   
  |   overwrite
  |  default
  | 
  | 
  | struts
  |
  |
  |StrutsPortletWindow
  |StrutsPortletDemoInstance
  |center
  |0
  |
  | 
  |
  | 
  | 
  | 


after deployed,I can see a Struts link entry(url is 
http://localhost:8080/portal/portal/default/struts;jsessionid=02DC0C01AEC6E2B1DECA00726260DE83)
 in the portal default page.
but after I click the the link,
nothing is in the new page.

what is wrong?
I am puzzled.

thanks .




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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: What JBoss IDE version is used when making the Seam docu

2006-01-12 Thread [EMAIL PROTECTED]
So we should just do it by hand then?

I'm trying to figure this stuff out right now.  I think I am starting to get 
it.  I have some plain questions--may I ask them?

(1)Is there a difference between a page flow and a process-definition with 
actions?  Is a page flow just a process-definition without actions?

(2) In the dvdstore demo, under db/jbpm there are dvd.*.sql files.  Do I need 
any of these in my project to use jbpm? or are they custom to the dvdstore?

(3) How does the start-state of a process-definition first get called?  Is that 
what Seam is taking care of (so it is like a JSF action call)?

This stuff is fun. Thanks.
Matt.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: What JBoss IDE version is used when making the Seam docu

2006-01-12 Thread [EMAIL PROTECTED]
Ahwell, hehe, this is kinda false advertising, since it is just from a 
prototype that Koen has running. Hopefully he will get time to finish that work 
and commit it for the next release of JBoss IDE.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Mapping a Map Collection

2006-01-12 Thread jsb
This looks like the same issue:
http://opensource2.atlassian.com/projects/hibernate/browse/ANN-120

I was able to get it to work by switching to the @JoinColumn relational 
strategy, but in my actual project I am using the Property entities with 
multiple owning entities so join table per owning entity makes more sense.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - What JBoss IDE version is used when making the Seam document

2006-01-12 Thread [EMAIL PROTECTED]
How come in the Seam documentation there are pictures of JBoss IDE with a Page 
button but when I download the JBoss IDE there isn't?

What JBoss IDE version is used when making the Seam documentation?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: How to make a simple EJB 3.0 client?

2006-01-12 Thread [EMAIL PROTECTED]
put a log4j.xml file in your classpath.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Entity Manager not bound exception

2006-01-12 Thread [EMAIL PROTECTED]
Cool, thanks Thorsten.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Entity Manager not bound exception

2006-01-12 Thread SunFire
I seems this is not a seam bug but a EJB3 problem and - I think - it was 
reported in JIRA and flaged as "done" in the current HEAD. Its an issue with 
the SFSB passivation/activation code.
If you want a quick workaround for the moment annotate you SFSB like this to 
avoid passivation:


  | import org.jboss.annotation.ejb.cache.Cache;
  | import org.jboss.ejb3.cache.NoPassivationCache;
  | 
  | @Cache(value=NoPassivationCache.class)
  | public class YourSFSB {
  | 
  | [...]
  | 
  | }
  | 
The required classes can be found in the jboss-annotaions-ejb3.jar and 
jboss-ejb3.jar

Cheers, Thorsten

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: RAP with JBoss jBPM from Javapolis 2005

2006-01-12 Thread vlasov01
Tom,

Thank you for the published presentations. Are you planning also publish a 
quick demo of the Rapid Application Prototyping capabilities of JBoss jBPM (BP 
from scratch in 15 minutes).

Regards,

Sergey

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - telnet to jboss-tomcat port 8009 fail (can't connect from ap

2006-01-12 Thread blindmen
Hi i have a problem connect from apache to jboss-tomcat apache. mod_jk is 
trying to communicate but tomcat is not respondig.
netstat shows that 8009 port is open but when i try to telnet there i have no 
response too. I have no firewall rule applied on linux.

Can any1 give a hint ?

thanx for any advice

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: working with jbpm

2006-01-12 Thread enazareno
Hi,

I suggest you try Koen's suggestion first. Then if you want to try other 
dbs, I assumed you have already a database that you're very comfortable with 
and you have the ide for it. Check out the jbpm-db folder under your starter's 
kit and see if its supported. These are the configurations for the different 
databases. Jbpm relies on hibernate for its perisistence, so if you know 
hibernate there wont be any problem. Configuring is not really that difficult 
but finding where jbpm looks for configurations is. There are several posts 
here regarding how to do it properly. I have done it using an unconventional 
way so my way may not be very helpful to you.

Regards,

Elmo

   

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Struts Exception

2006-01-12 Thread krishh
I am getting this error on one of my JSP 's. I dont know what is happening.
All other pages work fine but when I click on one link I get this error.
On the browser I get 
ERROR: 
Message:
null 
Exception:
javax.servlet.ServletException: BeanUtils.populate 

This is what I got from the log:

8:47:53,670 ERROR [[action]] Servlet.service() for servlet action threw 
exception
java.lang.reflect.InvocationTargetException: Cannot set rateKey
at 
org.apache.commons.beanutils.BeanUtils.setProperty(BeanUtils.java:1022)
at org.apache.commons.beanutils.BeanUtils.populate(BeanUtils.java:808)
at org.apache.struts.util.RequestUtils.populate(RequestUtils.java:1252)
at 
org.apache.struts.action.RequestProcessor.processPopulate(RequestProcessor.java:821)
at 
org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:254)
at 
org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at org.apache.struts.action.ActionServlet.doGet(ActionServlet.java:507)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:697)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
at 
org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrincipalValve.java:39)
at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:159)
at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:482)
at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:59)
at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
at 
org.jboss.web.tomcat.tc5.sso.ClusteredSingleSignOn.invoke(ClusteredSingleSignOn.java:404)
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:856)
at 
org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.processConnection(Http11Protocol.java:744)
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: java.lang.NoSuchMethodException: Property 'rateKey' has no setter 
method
at 
org.apache.commons.beanutils.PropertyUtils.setSimpleProperty(PropertyUtils.java:1782)
at 
org.apache.commons.beanutils.PropertyUtils.setNestedProperty(PropertyUtils.java:1684)
at 
org.apache.commons.beanutils.PropertyUtils.setProperty(PropertyUtils.java:1713)
at 
org.apache.commons.beanutils.BeanUtils.setProperty(BeanUtils.java:1019)
... 29 more




this error occured when I post a request, how do i make it work? and is there 
anyone faced the same problem?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: [IDE - 1.5RC2] javax.ejb.Inject - which jar?

2006-01-12 Thread xubin
http://wiki.jboss.org/wiki/Wiki.jsp?page=MigrationFromPreview5ToEJB3.0Beta 

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Portal 2.2 - null or empty portlet html fragment

2006-01-12 Thread PMO
If a portlet DoView() returns with an empty or null html fragment then the 
portal container throw an exception. 

This is unecessary as it forces me to write at least one blank.

philippe

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Building and Packaging

2006-01-12 Thread matt.hibb
I am building a simple Enterprise Application and have managed to package 
everything into a EAR file and deploy to JBOSS.

Now I have created another project, whose classes are both used by both EJB and 
WEB tiers. I am looking for the best way to package all this up into an EAR (if 
this is the best way). The only way I have got things working so far is by 
packaging this external project into another jar and adding it to the default 
server lib directort, which im quite sure is wrong.

Can anyone suggest a cleaner/proper way of doing this? or at least point me to 
some examples/docs that will explain how this should be done?

thanks

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: problem in configuring jbpm for mysql database

2006-01-12 Thread lappi_79
I made some progress, was able to get the build done.
You are right it was not the same issue.
But when I deployed the newly created jbpm.war, tomcat logs show some errors, 
does this look familiar? 
anonymous wrote : 
  | Jan 12, 2006 4:36:19 PM org.apache.catalina.startup.HostConfig deployWAR
  | INFO: Deploying web application archive jbpm.war
  | Jan 12, 2006 4:36:20 PM org.apache.catalina.core.StandardContext start
  | SEVERE: Error listenerStart
  | Jan 12, 2006 4:36:20 PM org.apache.catalina.core.StandardContext start
  | SEVERE: Context [/jbpm] startup failed due to previous errors
  | 

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Portal 2.2 - Window Name Scope

2006-01-12 Thread PMO
My mistake.  Window had two tags properties.

So, window name has the scope of the page containing the window. correct?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: subprocess doesn't pick up latest definition

2006-01-12 Thread enazareno
Hi Guy,

check out the versions of your definition. This may not be related to you 
subprocess problem, but i've noticed if you dont place a version in the process 
definition, it does not necessarily know the latest process definition. This 
has already been fixed by 3.1beta cause when you upload it automatically 
increments the versions. If you're still using 3.02 i suggest you include the 
version. you can do this by using the setVersion method in the process 
definition.

Regards,

Elmo

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: JBoss IDE and Seam Development Ideas

2006-01-12 Thread [EMAIL PROTECTED]
"js8523" wrote : 
  | 1) It would be incredible if the Seam deployment scanner was adapted to 
work at development time within a Seam project to add the elements that it 
detects  as components to a global component map (which may also include jsf 
managed beans and others!)  so that: 
  | 
  |  a) When developing .xhtml/.jsp/.jsf pages context sensitive 
autocomplete could operate. 
  | 
  |  b) JPDL development could also use the same context sensitive  
autocomplete mechanisms for any expression within the process def.

Yes, I already put a feature request for this in JBoss IDE JIRA. :-)


"js8523" wrote : c) This could also provide valuable build time debug 
facilities.

I don't understand this one?


"js8523" wrote : 4) Generate shell view backing beans and web pages from EJB3 
entity model (adding generated annotations to the EJB3 entities, then generate 
the  view backing SFSB, then the web pages), rather than just straight from the 
  database. Effectively jumping one step in you existing reverse engineering 
process. 

I guess this is conceptually possible right now, but maybe not from the UI. Max 
will tell you more.


"js8523" wrote : I feel passionately about this as I REALLY appreicate this 
framework, making developments so much easier and a little ide magic could 
really push Seam up against Spring/ Ruby on Rails in terms of setup and go type 
development. 

Yep, we really want to have tight integration with JBoss IDE. Unfortunately, 
JBoss IDE has just three guys fulltime, and they have their hands very full 
will jBPM, Hibernate, EJB3 stuff. Hopefully I can wrangle some more attantion 
from them soon ;)


"js8523" wrote : 1) You obviously have Portal integration already in hand.  

Hopefully will get done in Q1.
  
"js8523" wrote : Plug into/onto the eclipse rcp project (if thick client 
agnostic behaviour is unobtainable).   

This is more like Q3/Q4 this year. I would love it if someone with a background 
in rich clients would volunteer to help us with this one. We want to get the 
AJAX/SOAP support really truly *finished* before biting off more than we can 
chew at once.

"js8523" wrote : 3) Similar model as @Datamodel to SelectItems.  

Put it in JIRA, with a description of exactly what you wnat the API to look 
like.


Thanks for the good ideas!

Gavin

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Entity Manager not bound exception

2006-01-12 Thread [EMAIL PROTECTED]
"Rorschach" wrote : To clarify further, each SFSB (I have four) has it's own
  | 
  | 
  |   | @PersistenceContext(type=EXTENDED)
  |   | private EntityManager em;

Well, if you are using this style of injection, this question is nothing to do 
with Seam.

Notice that this is all working perfectly in the examples. So follow the 
examples. Or ask about it in EJB3 forum. 

I have not seen this problem myself.

"Rorschach" wrote : I tried using 
  |   | @In(create=true)
  |   | private EntityManager em;
  | in order to try and outject/inject the EntityManager across SFSBs...and it 
just does not work (not sure what the would have gained me anyway).  
  | 

This will only work when you have configured 
SeamExtendedManagedPersistencePhaseListener.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: problem in configuring jbpm for mysql database

2006-01-12 Thread kukeltje
ahh.. but you did not report that, so how would we have known that ;-)

Still, the real lines are more important and those differ.  Therefor I still do 
not think they are the same issue. Did you check if c:\server\default\lib 
exists on your system

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Prevent EntityManager persisting

2006-01-12 Thread [EMAIL PROTECTED]
I think what he's doing is fine.

The idea that session beans are never used in the presentation tier is oldstyle 
EJB2 thinking.

To stop a method from persisting changes, mark it 
@TransactionAttribute(NOT_SUPPORTED).

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - EJB QL subquery for finder

2006-01-12 Thread krishna505
The following declared-SQL for customized finder throws an exception

* @ejb.finder   view-type="both"
 *  signature="java.util.Collection 
findBillingInvoices(java.lang.Integer subscriptionId)"
 *  query="Overridden by jbosscmp-jdbc.xml"
 *
 * @jboss.declared-sql
 *  signature="java.util.Collection 
findBillingInvoices(java.lang.Integer subscriptionId)"
 *  distinct="true"
 *  alias="i"
 *  where="i.subscription.id={0}  and i.type=2 and 
i.id = (SELECT MAX(i2.id) FROM InvoiceLineItem AS i2 where 
i2.subscription.id={0} )"

Exception thrown


javax.ejb.FinderException: Find failed: java.sql.SQLException: ORA-00907: 
missing right parenthesis

at 
org.jboss.ejb.plugins.cmp.jdbc.JDBCAbstractQueryCommand.execute(JDBCAbstractQueryCommand.java:223)


I am using ...

JBoss 4.0.1sp1
JDK1.5.0_06
Xdoclet 1.2.3
oracle 9i


The SQL seems to be correct. Is there anything I might be missing here? I also 
tried to replace jdbc thin driver (ojdbc14.jar) with latest version of 10g, but 
I am still getting same exception. Your help is greatly appreciated.




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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Prevent EntityManager persisting

2006-01-12 Thread ejb3workshop
You are breaking MVC in a bad way. You seem to doing presentation logic inside 
a session bean. session beans are about business logic. Rather add the 
additional field on the client side rather then within the session bean itself. 

The reason the database is updated is that you are still working within the 
entity / persistent context as you are still inside the container. If you had 
to use a remote client (are you using remote or local interfaces ?) then 
perform the presentation logic in the client code.


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Conversation Timeout

2006-01-12 Thread [EMAIL PROTECTED]
BTW, the way I have been handling conversation timeouts is to use 
@Conversational on my SFSB.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Conversation Timeout

2006-01-12 Thread [EMAIL PROTECTED]
No, but I could provide something. Add it to JIRA.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JCA/JBoss] - Re: How to programmatically create datasource without config

2006-01-12 Thread hbentel
Hi

I'm also interested in this topic but this thread seems to have died away.

Are there any way to programmatically configure new datasources in JBoss 4.0?

We also use Weblogic and it's JMX api to create connection pool and datasources 
on demand without restarting the server.
It's all abstracted away, and I'm looking to implement a version for JBoss 4.0 
so we can deploy in JBoss also.

I've looked through some of the API and I've found 
org.jboss.management.j2ee.JDBCDataSource
which seems like a place to start. 
Some of the replies suggest dropping in Datasource descriptor files at runtime 
is the only way. 

thanks,
Henrik



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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Portal 2.2 - Window Name Scope

2006-01-12 Thread PMO
It seems that there is a constraint on window name to be unique in the 
"default-object.xml" file, is that correct?

I am saying this because I am getting this :

2006-01-12 23:31:17,968 DEBUG 
[org.jboss.portal.core.deployment.jboss.ObjectDeployment] Loading portal 
metadata from 
file:/E:/pmn/pmn-deploy/HIB-3-portal-2.2-jboss-4.0.3SP1/server/default/tmp/deploy/tmp50482evolab-test-exp.war/WEB-INF/test-object.xml
  | 2006-01-12 23:31:18,000 INFO  [STDOUT] 
org.jboss.portal.common.util.TooManyElementException: Too many children for 
element window
  | 2006-01-12 23:31:18,015 INFO  [STDOUT]  at 
org.jboss.portal.common.util.XML.getUniqueChild(XML.java:411)
  | 2006-01-12 23:31:18,015 INFO  [STDOUT]  at 
org.jboss.portal.core.metadata.WindowMetaData.buildMetaData(WindowMetaData.java:104)
  | 2006-01-12 23:31:18,015 INFO  [STDOUT]  at 
org.jboss.portal.core.metadata.PageMetaData.buildMetaData(PageMetaData.java:95)
  | 2006-01-12 23:31:18,015 INFO  [STDOUT]  at 
org.jboss.portal.core.metadata.PageMetaData.buildMetaData(PageMetaData.java:111)
  | 2006-01-12 23:31:18,015 INFO  [STDOUT]  at 
org.jboss.portal.core.metadata.PageMetaData.buildMetaData(PageMetaData.java:111)
  | 2006-01-12 23:31:18,015 INFO  [STDOUT]  at 
org.jboss.portal.core.metadata.PortalMetaData.buildMetaData(PortalMetaData.java:150)
  | 2006-01-12 23:31:18,015 INFO  [STDOUT]  at 
org.jboss.portal.core.deployment.jboss.ObjectDeployment.start(ObjectDeployment.java:122)
  | 2006-01-12 23:31:18,015 INFO  [STDOUT]  at 
org.jboss.portal.server.deployment.jboss.ServerDeployer.start(ServerDeployer.java:222)
  | 2006-01-12 23:31:18,015 INFO  [STDOUT]  at 
org.jboss.deployment.MainDeployer.start(MainDeployer.java:989)
  | 

I understand there is not such a constraint on page name. Correct?

I miss a real documentation and a real production release of 2.2.




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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: NullPointerException at getPortletMode()

2006-01-12 Thread sgwood

See:

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


Sherman

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - deploying jar file in jboss

2006-01-12 Thread saigiridhar
Hi,

   i have an error while deploying my "ejb jar" file in jboss.
I have copied jar file of my ejb application in the deploy directory in the 
default directory of jboss and it gave me a lot of errors.
can anyone please help me,how can i get rid of those errors.
Please help me as it is urgent.

ObjectName: jboss:service=Hypersonic,database=localDB
  State: FAILED
  Reason: java.sql.SQLException: The database is already in use by another proce
ss: [EMAIL PROTECTED] =C:\java\jboss-4.0.2\server\def
ault\data\hypersonic\localDB.lck, exists=true, locked=false, valid=false, fl =nu
ll]: java.lang.Exception:  The process cannot access the file because another pr
ocess has locked a portion of the file : C:\java\jboss-4.0.2\server\default\data
\hypersonic\localDB.lck
  Depends On Me:
jboss.jca:service=ManagedConnectionFactory,name=DefaultDS

ObjectName: jboss.web.deployment:war=jmx-console.war,id=55886126
  State: FAILED
  Reason: org.jboss.deployment.DeploymentException: Error during deploy; - neste
d throwable: (javax.naming.NameNotFoundException: comp not bound)

ObjectName: jboss.web.deployment:war=publisher.war,id=-444706156
  State: FAILED
  Reason: org.jboss.deployment.DeploymentException: Error during deploy; - neste
d throwable: (javax.naming.NameNotFoundException: comp not bound)

--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
ObjectName: jboss:service=invoker,type=pooled
  State: FAILED
  Reason: java.lang.Exception: Port 4445 is already in use
  I Depend On:
jboss:service=TransactionManager

ObjectName: jboss.web.deployment:war=jboss-ws4ee.war,id=-1155425085
  State: FAILED
  Reason: org.jboss.deployment.DeploymentException: Error during deploy; - neste
d throwable: (javax.naming.NameNotFoundException: comp not bound)

ObjectName: jboss.web.deployment:war=invoker.war,id=-689487939
  State: FAILED
  Reason: org.jboss.deployment.DeploymentException: Error during deploy; - neste
d throwable: (javax.naming.NameNotFoundException: comp not bound)

ObjectName: jboss.web.deployment:war=publisher.war,id=-444706156
  State: FAILED
  Reason: org.jboss.deployment.DeploymentException: Error during deploy; - neste
d throwable: (javax.naming.NameNotFoundException: comp not bound)

ObjectName: jboss:service=WebService
  State: FAILED
  Reason: java.lang.Exception: Port 8083 already in use.
  Depends On Me:
jboss.ejb:service=EJBDeployer
jboss.ws4ee:service=AxisService

ObjectName: jboss:service=Hypersonic,database=localDB
  State: FAILED
  Reason: java.sql.SQLException: The database is already in use by another proce
ss: [EMAIL PROTECTED] =C:\java\jboss-4.0.2\server\def
ault\data\hypersonic\localDB.lck, exists=true, locked=false, valid=false, fl =nu
ll]: java.lang.Exception:  The process cannot access the file because another pr
ocess has locked a portion of the file : C:\java\jboss-4.0.2\server\default\data
\hypersonic\localDB.lck
  Depends On Me:
jboss.jca:service=ManagedConnectionFactory,name=DefaultDS

ObjectName: jboss:service=Naming
  State: FAILED
  Reason: java.rmi.server.ExportException: Port already in use: 1098; nested exc
eption is:
java.net.BindException: Address already in use: JVM_Bind
  I Depend On:
jboss.system:service=ThreadPool

ObjectName: jboss.web.deployment:war=jbossmq-httpil.war,id=-1982844269
  State: FAILED
  Reason: org.jboss.deployment.DeploymentException: Error during deploy; - neste
d throwable: (javax.naming.NameNotFoundException: comp not bound)

ObjectName: jboss.web.deployment:war=ROOT.war,id=409514092
  State: FAILED
  Reason: org.jboss.deployment.DeploymentException: Error during deploy; - neste
d throwable: (javax.naming.NameNotFoundException: comp not bound)

ObjectName: jboss:service=invoker,type=jrmp
  State: FAILED
  Reason: java.rmi.server.ExportException: Port already in use: ; nested exc
eption is:
java.net.BindException: Address already in use: JVM_Bind
  I Depend On:
jboss:service=TransactionManager
  Depends On Me:
jboss:service=proxyFactory,target=ClientUserTransactionFactory
jboss:service=proxyFactory,target=ClientUserTransaction
jboss.jmx:type=adaptor,name=Invoker,protocol=jrmp,service=proxyFactory
jboss.jca:service=DataSourceBinding,name=DefaultDS

ObjectName: jboss.web.deployment:war=jmx-console.war,id=55886126
  State: FAILED
  Reason: org.jboss.deployment.DeploymentException: Error during deploy; - neste
d throwable: (javax.naming.NameNotFoundException: comp not bound)

Thanks in advance,
Regards,
Sai




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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=76

[JBoss-user] [JBoss jBPM] - Re: problem in configuring jbpm for mysql database

2006-01-12 Thread lappi_79
I guess I thot its the same issue, cos it occured after the same line (printed 
to console)

anonymous wrote : 
  | [deploypar] 10:19:00,313 DEBUG ProcessArchiveDeployer : committing 
transaction to deploy process ProcessDefinition(websale)
  | 

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Tomohawk sortTable strange error

2006-01-12 Thread mrausch
Woops,

I didn't realize the topic spanned two pages.



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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Tomohawk sortTable strange error

2006-01-12 Thread mrausch
Hello,

Has anyone resolved this? I am seeing the same behavior as Zealot and SunFire.

Any suggestions would be appreciated.

Thanks,
Mark

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: jBPM without database

2006-01-12 Thread suman291857
Thankf for your response!!
Will keep posted abt my progress on using hsql-inmemory db.

Kind Regards


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: problem in configuring jbpm for mysql database

2006-01-12 Thread kukeltje
Why do you think it is the same issue? I see two totally different errors. Im 
still looking for some explanation for the error of Tanmay, but your posting, 
lappi_79, looks like could be cause by a wrong reference to an non existing 
jboss config

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - Re: JSP compilation errors are not going to

2006-01-12 Thread [EMAIL PROTECTED]
A preliminary fix has been committed to CVS for this bug. Here is the JIRA 
reference with more information:

http://jira.jboss.com/jira/browse/JBIDE-258


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: jBPM without database

2006-01-12 Thread kukeltje
jbpm relies on a database for its internal activities. This does not mean you 
need a full database however. You can use hsqldb in an in-memory mode, which 
does not persist anything. So this is kind of what you might configure.

Ronald

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Conversation Timeout

2006-01-12 Thread Rorschach
Is there a way to catch an exception when your conversation has timed out?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - Re: JSP compilation errors are not going to

2006-01-12 Thread [EMAIL PROTECTED]
Hi Mike.. thanks for your observation.. I am now attempting to automatically 
add this validation builder to any J2EE 1.3/1.4 project or any project that 
tries using JSP compilation.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: problem in configuring jbpm for mysql database

2006-01-12 Thread lappi_79
I guess we are having the same issue!

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: problem in configuring jbpm for mysql database

2006-01-12 Thread lappi_79
Hi,
I followed the same article (with tomcat55 + mysql ),
https://sourceforge.net/forum/message.php?msg_id=3301077
I am stuck on step# 9 on
ant create.db -buildfile build.deploy.xml 
It created the database tables but gave this error.
Can you tell me if i went wrong someplace?
anonymous wrote : 
  | BUILD FAILED
  | C:\Downloads\jbpm-3.0.2\jbpm-3.0.2\build.deploy.xml:51: The following error 
occu
  | rred while executing this line:
  | C:\Downloads\jbpm-3.0.2\jbpm-3.0.2\build.deploy.xml:180: 
C:\server\default\lib n
  | ot found.
  | 


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - JBoss IDE and Seam Development Ideas

2006-01-12 Thread js8523
Hi All 

I thought as a change I would post some of my (whacky) ideas, rather than just 
continuing to ask questions!! So here goes.

I didn't know where to post this part of the post , JBoss IDE or here but.. 
(caution the first idea is a bit work load heavy)

Jboss-Seam IDE
== 

1) It would be incredible if the Seam deployment scanner was adapted to work at 
development time within a Seam project to add the elements that it detects  as 
components to a global component map (which may also include jsf managed beans 
and others!)  so that: 

 a) When developing .xhtml/.jsp/.jsf pages context sensitive autocomplete 
could operate. 

 b) JPDL development could also use the same context sensitive  
autocomplete mechanisms for any expression within the process def. 

 c) This could also provide valuable build time debug facilities.

This component map (to be referenced by editors) would perhaps best be served 
within eclipse WST and then plugged into by the various plug in writers, which 
would be where your Seam deployment scanner would come in. 

On a more realistic note for JBoss-Seam IDE: 
=

2) A method to add Seam capabilities to a standard (non altered) JBoss Web App 
/ JBoss EAR project (Similar to how MyEclipse handle say Struts capabilities to 
a standard Web APP). 

3) An added project template in the new Project Wizard called JBoss Seam Web 
App or JBoss Seam EAR, with options thereafter to include JBPM, pageflow, JBOSS 
PORTAL (in future). This could also help automate the creation for developers 
of microcontainer, tomcat / embeded EJB3 type projects.

4) Generate shell view backing beans and web pages from EJB3 entity model 
(adding generated annotations to the EJB3 entities, then generate the  view 
backing SFSB, then the web pages), rather than just straight from the   
database. Effectively jumping one step in you existing reverse engineering 
process. 

5) In line with the above comments I believe that to make JBoss-Seam as 
developer friendly as possible Seam should move its standard example project 
structure to something that fits in with the JBoss IDE folks. Thus facilitating 
point 1 and 2. This could also allow hot(as in as it is saved) redeployment of 
the web pages, obviously the Seam components would be a little bit more tricky!
 
This type of standardising development is obviously most relevant to a post  
Seam 1.0 as it would heavily rely on a stable base (libraries, required meta 
files etc). 

I feel passionately about this as I REALLY appreicate this framework, making 
developments so much easier and a little ide magic could really push Seam up 
against Spring/ Ruby on Rails in terms of setup and go type development. 

As Far as Seam ideas go:


1) You obviously have Portal integration already in hand.  
  
2) Plug into/onto the eclipse rcp project (if thick client agnostic behaviour 
is unobtainable).  

3) Similar model as @Datamodel to SelectItems. (The post in the forum covers 
this in a way, but a more generic method for a seam anotated entity would be 
invaluable, perhaps adding a annotation to the getter method of the getKey and 
getName method, then dynamically loading the available list from persistence). 
This would enhance the auto generated seam apps from database schema. 

There are probably a million and one ideas out there from the people that have 
been appreciating your development framework, so please destroy my ideas or add 
your own to the ever increasing work load of Gavin and Thomas. You never know 
something a tiny bit as good as Seam could be dreamt up in the discussion. 

Many thanks again, 

James 


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Servlet Exception with Jboss

2006-01-12 Thread reinerka
I just got the same problem in the following environment:

- Eclipse 3.1.1 with JBossIDE 1.5
- Fedora Core 4 Linux
- JDK 1.5.0_06
- JBoss 4.0.3SP1 (installer used with install everything)

I've been trying to follow the EJB3 Trailblaizer demo with my own Classes and 
when running the Servlet I get the same error NoClassDefFaundException for 
java.io.PrintWriter.

I created a Debug instance for 4.0.3SP1 (using the JDK5) - I'm also starting 
Eclipse with Java5.

Seems very strange since this is such a basic functionality that it should work.

Reiner

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - apache + jboss + jrun

2006-01-12 Thread mdonoso
I have apache with jrun working correctly, but when I configure the tomcat 
connector (jk) the apache does not connect with jboss. My config is:


DocumentRoot "/home/users/webprod/serv-web-2003/product/web-internet-war"
ServerName athenea.bolchile.cl
ErrorLog logs/bec-error_log
CustomLog logs/bec-access_log common

Options FollowSymLinks
AllowOverride AuthConfig
Order allow,deny
Allow from all
DirectoryIndex index.htm

DirectoryIndex index.htm
LoadModule jrun_module /tools/jrun4/lib/wsconfig/1/mod_jrun20.so

JRunConfig Verbose false
JRunConfig Apialloc false
JRunConfig Ssl false
JRunConfig Ignoresuffixmap false
JRunConfig Serverstore /tools/jrun4/lib/wsconfig/1/jrunserver.store
JRunConfig Bootstrap 127.0.0.1:51001
AddHandler jrun-handler .jsp .jws



LoadModule jk_module modules/mod_jk.so


#ServerAdmin [EMAIL PROTECTED]
DocumentRoot "/home/users/webprod/Paso"
ServerName www.bolsadeproductos.cl
ErrorLog logs/bpc-error_log
CustomLog logs/bpc-access_log common

Options FollowSymLinks
AllowOverride AuthConfig
Order allow,deny
Allow from all
DirectoryIndex index.html

Redirect / http://athenea.bolsagro.cl/bpc/
DirectoryIndex index.html index.htm
 JkWorkersFile /usr/apache2/conf/workers.properties
JkLogFile /usr/apache2/logs/mod_jk.log
JkLogLevel error
JkLogStampFormat "[%a %b %d %H:%M:%S %Y] "
JkOptions +ForwardKeySize +ForwardURICompat -ForwardDirectories
JkRequestLogFormat "%w %V %T"
JkMount /bpc/* worker_bpc
 


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - How to test portal with JBoss Portal server and Eclipse

2006-01-12 Thread fredth
Hey ppl, I just start to use JBoss AS et Portal and I would like to know if 
it's possible to test my portlets without publishing it. You know, like in 
WSAD, u have a test server and u can debug your servlet on. Is their anything 
like this for JBoss server and portal/portlets ??

Thx in advance

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Entity Manager not bound exception

2006-01-12 Thread Rorschach
It appears as if this is problem has already been reported here:

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

and here:

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

I assume you gentlemen are still working on this as there were no definiteive 
replies to those other threads.  

Sorry if mine is redundant.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: How to make a simple EJB 3.0 client?

2006-01-12 Thread fabriciobraga

I did what you told.  It seems to work fine now, but I get 2 warnings messages:


  | log4j:WARN No appenders could be found for logger 
(org.jboss.security.SecurityAssociation).
  | log4j:WARN Please initialize the log4j system properly.
  | 

Is there something more that I need to do?

Thanks,
Fabricio Braga


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Archive deployment and seam component scanner problem ?

2006-01-12 Thread SergioD
My structure is the same .

i all archive which have seam components i included the emtpy seam.properties.

In my application.xml i included the archives and they are processed by JBoss.

I see in the log that seam is scanning the ejb3 and par archive

but it doesn't active my seam component.

Any clue ?



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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - Dbugging Struts Tiles

2006-01-12 Thread johnnyren
Is there any way I can debug Struts Tiles? 

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: working with jbpm

2006-01-12 Thread forJbpm
I am using tcp -ip connections for databases
I have uncommented  lines in hsqldb-ds.xml file.
Is there anything else I need to know

Deepali

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - changing "private Package1 package;" in generated to "privat

2006-01-12 Thread ameelin
"[EMAIL PROTECTED]" wrote : add a [table name="Package" class="Package1"/] in 
reveng.xml
  | 
  | the reveng.xml editor in the just released jbosside unfortunately doesnt 
have the class attribute in the ui, but you can add it manually.
  | 
  | the next version of hibernate tools will have the class attribute.

Max what you said worked, but ran into this in code that uses Package1...
private Package1 package;

and "package" is a key/reserved word in Java
How can I tweak that?


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - @OrderBy for inheritance JOINED

2006-01-12 Thread silviu.marcu
I have:

@Entity
@Inheritance(strategy = InheritanceType.JOINED)
class A {
 int id;
int x;
}

@Entity
@Inheritance(strategy = InheritanceType.JOINED)
class B extends A {
}

@Entity
class C {
@OneToMany (cascade = {CascadeType.ALL}, fetch = FetchType.LAZY, 
  mappedBy = "c")
@OrderBy("x")
public Collection getBs() {
return bs;
}
}

THE orderBy it crashes : message the table B does not contain x column.

any solutions to orderBy using an inherited field ?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss/Spring Integration] - Re: Sample App Deployment Problems...

2006-01-12 Thread linush
I haven't received the new version from you, yet? Did you send it?

Yeah, it will be better if Mike or Bill can put the new one on the download 
site.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Defining multiple 'Service(s)' in Tomcat's server.xml

2006-01-12 Thread [EMAIL PROTECTED]
We need a testcase for this deployment scenario as well to validate updates to 
tomcat don't break this. We should have two connectors deployed using the 
node0, node1 interfaces. I don't think we parse ${x} system property refs from 
the server.xml that is needed to make this easily done. In the past we did this 
for the old embedded config and should look to see if we can integrate with the 
digester to add support for this again.


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: How to make a simple EJB 3.0 client?

2006-01-12 Thread fabriciobraga

Ops, 

there is little error at line:
ProjectService projetService = (ProjectService) ic.lookup( 
SaqueHome.class.getName());

Now making a little correction:
ProjectService projetService = (ProjectService) ic.lookup( 
ProjectService.class.getName());
  | 

Ok.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Apache2 to JBoss 4.0.3SP1 mod_jk problem

2006-01-12 Thread blindmen
Actually the problem is probably in jboss because I can't telnet to the port 
8009.
But startup log is saying that service is up, and also netstat shows that 8009 
port is open and listening ?
Could it be in security settings of linux that is refusing telnet connection ???

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: How to make a simple EJB 3.0 client?

2006-01-12 Thread tzwoenn
Yuo need the following Properties for your InitialContext:

java.naming.provider.url=localhost
java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - Re: TimerService timeout fired within timer-creation transac

2006-01-12 Thread tzwoenn
By reading the issue details I think you misunderstood me:

I was talking about a transaction, in which a timer was CREATED, but which was 
not committed yet. So the transaction might still be rolled back later, meaning 
for the timer also to be cancelled.

But... what if this timer expires in between? You can not fire a timeout for 
this timer, but have to wait until the initial transaction rolls back or 
commits. Until then you can definitely decide, whether to fire the timer.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - How to make a simple EJB 3.0 client?

2006-01-12 Thread fabriciobraga
Hello,

I'm trying to create a simples stand alone EJB 3.0 client but it jut don't work.

The client woks fine when running on Servet class, but when running a class 
with public static void main it does not work.

I'm doing something like this:




  | public class SimpleClient {
  | public static void main(String...args) throws Exception {
  | 
  | Hashtable t = new Hashtable();
  | t.put(Context.INITIAL_CONTEXT_FACTORY, 
"org.jnp.interfaces.NamingContextFactory");
  | t.put(Context.PROVIDER_URL, "localhost");
  | 
  | 
  | Context ic = new InitialContext(t);
  | ProjectService projetService = (ProjectService) ic.lookup( 
SaqueHome.class.getName());
  |  
  | }
  | }
  | 

And I got a ClassCastException: Proxy0

What am I doing wrong? Can anyone help me to wirte a simple EJB 3.0 client?

Thanks,
Fabricio Braga

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - OIL2XAConnectionFactory not bound

2006-01-12 Thread umashankar.verma
Hi,

I'm using jboss-4.0.3SP1 to deploy applications..there are few applications 
which have been configured to use OIL2 services.I have configured the required 
services (oil2-service.xml) for OIL2.When i'm shutting down the server , i'm 
giving the following exception...

14:00:09,221 ERROR [OIL2ServerILService] Exception unbinding from JNDI 
javax.naming.NameNotFoundException: 

Please find the contents of oil2-service.xml ...








  

  
jboss.mq:service=Invoker
OIL2ConnectionFactory
OIL2XAConnectionFactory
8093
6
true
  




Can any one help me on this...


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: HowTo programatically add action to transition?

2006-01-12 Thread admin
if you use runtime actions, then you don't even have to mess with the process 
definition.

Event event = processDefinition.getEvent("transition");
Action action = 
processDefinition.getAction("myActionAsDefinedInTheProcessDefinitionXml");
processInstance.addRuntimeAction(event, action);

or something like that.

if it is just to see what transitions the process takes, you also could use 
debug logging.

regards, tom.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Lookup of entity bean from remote client not working

2006-01-12 Thread tzwoenn
EJB3 entities (which are not enterprise beans any more) are not meant for being 
"looked up by a remote client" as it was possible using EJB2.1

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - PortalDS and HSQLDB Schema - HELP!

2006-01-12 Thread wowowonder
Installation:
JBOSS 4.0.3SP1
JBOSS Portal 2-2
OS: Mac OSX 10.3.9
IDE: NetBeans 5.0 Beta

My objective is to use HSQLDB and at a later date use HSQLDB Extreme as the 
database for my future web site. Also, I plan to use a Macintosh server. 

What I'd like to do is to be able to see the table structure of the JBOSS 
Portal and connect to the HSQLDB even when JBOSS is not running. 

I changed the portal-hsqldb-ds.xml to use the HSQLDB TCP connection as defined 
in hsqldb-ds.xml: 

jdbc:hsqldb:hsql://localhost:1704

Below is how portal-hsqldb-ds.xml is configured:





  

PortalDS

 jdbc:hsqldb:hsql://localhost:1704
org.hsqldb.jdbcDriver
sa


somepassword

  



Also, I defined the csm repository.xml to use RDBMS and deleted the data/portal 
and data/hypersonic folders. I then booted JBOSS and the error below was 
generated:

--- MBeans waiting for other MBeans ---
ObjectName: portal:service=TreeCache,type=persistent
  State: FAILED
  Reason: java.lang.IllegalArgumentException: not a Hibernate iterator
  I Depend On:
jboss.jca:name=PortalDS,service=DataSourceBinding
  Depends On Me:
portal:service=TreeCacheProvider,type=persistent

--- MBEANS THAT ARE THE ROOT CAUSE OF THE PROBLEM ---
ObjectName: portal:service=TreeCache,type=persistent
  State: FAILED
  Reason: java.lang.IllegalArgumentException: not a Hibernate iterator
  I Depend On:
jboss.jca:name=PortalDS,service=DataSourceBinding
  Depends On Me:
portal:service=TreeCacheProvider,type=persistent


There were other errors such as:

13:26:34,174 INFO  [DatasourceConnectionProvider] Using datasource: 
java:PortalDS
13:26:34,178 ERROR [SchemaExport] schema export unsuccessful

Any idea what is causing the error? 

Also, can someone tell me how I can boot up the HSQLDB independent of JBOSS? 
Somehow, JBOSS starts the database and shuts it down afterwards.

Thanks in advance for the help,
wowowonder

"Whoa! You must have been bookin'!"



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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss/Spring Integration] - Re: Sample App Deployment Problems...

2006-01-12 Thread alesj
Is it working with the new Spring deployer version?

I hope Bill or Mike will put the new one up (to download site) soon.


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Portal 2.2 - Transaction - CMT

2006-01-12 Thread PMO
in portlet configuration I can define a transaction tag:

 
  | 
  |  
  |  Required
  |   
  | ...
  | 

Does this mean I can consider to be in a CMT environment (JTA Transaction 
already started) and call SessionFactory.getCurrentSession(); ?


Philippe

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Management, JMX/JBoss] - BarrierController Service and Dependent Service

2006-01-12 Thread jiwils
I am using JBoss 4.0.2 with the BarrierController service in order to have some 
custom MBeans depend upon the starting of the Tomcat connectors.  Upon startup, 
everything works just as expected, but upon shutdown of the application server, 
the "stop" method of my custom MBeans is never called.

To verify that my MBean is working correctly, I removed the dependency on the 
BarrierController service (the MBean it dynamically creates), and all works as 
expected including the stop method.

I've added my BarrierController XML and a simple Test MBean code below (in case 
I am doing something crazy), but could I have happened upon a bug?  In the Test 
MBean code below, the "Stopping..." log message is never printed when the 
dependency to the BarrierController is added.


  |   
  | 
  | false
  | true
  | 
  | com.acxiom.grid.jboss.services:name=TomcatConnectors,type=Barrier
  | 
  | start
  | stop
  | 
  |   
  | 
  |   
  | 
  |   
  | 
  | 
  |   
  | 
  |   
  | 
  |   
  | 
  |   
  | 

package com.acxiom.grid.jboss.services.test;
  | 
  |  public interface TestMBean
  |  {
  |  void start();
  | 
  |  void stop();
  |  }

package com.acxiom.grid.jboss.services.test;
  | 
  | import org.apache.log4j.Logger;
  | 
  | public class Test implements TestMBean
  | {
  | Logger logger;
  | 
  | public Test()
  | {
  | logger = Logger.getLogger(getClass());
  | }
  | 
  | public void start()
  | {
  | logger.info("Starting...");
  | }
  | 
  | public void stop()
  | {
  | logger.info("Stopping...");
  | }
  | }

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss AOP] - Re: AOP Deployment

2006-01-12 Thread rbonifacio
Ok, thanks a lot.

I change the run.sh file, but, when I start JBOSS, the next erro is throw:
 
Invalid JAXP type: avaagent:pluggable-instrumentor.jar (Expected 'crimson' or 
'xerces')

Regards,

Rorigo.





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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Prevent EntityManager persisting

2006-01-12 Thread Dornus
In the mean time, I made a transient variable in the MyTable class called 
displayName.

Hopefully there is a better solution?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss/Spring Integration] - Re: Sample App Deployment Problems...

2006-01-12 Thread linush
Ales, thank you for your reply. Please send your updated example to [EMAIL 
PROTECTED] Thanks.

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss/Spring Integration] - Re: Sample App Deployment Problems...

2006-01-12 Thread alesj
Yep, I think they changed it.
At the time of writing this example I think I used 1.2.3, but I'm not sure.

I already have a new version of spring.deployer - and it uses Spring 1.2.5 
which has already changed loadBeanDefinitions method.
I can send it to you by email.


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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - Architecture Questions

2006-01-12 Thread lapoutre
Hello everybody,
I'm looking for an evolutive architecture for my application.

this is a web site that is gonna grow up rapidly.

I'd like to know where and how I can store current user sessions.

The application is not clusterised yet.
but if it happend tomorrow, I don't want to redevlop my session gestion.

my actual architecture is :
anonymous wrote : struts for view and control
  | EJB Command pattern
  | Hibernate
  | PostgreSQL
  | 


is TomcatClusteringCache performant to store and replicate sessions ??
Is that takes much resources ???

Should I prefere to store sessions in a particular database??

What king of load ballancer should I use???
have I to use the JBoss AS as load ballancer exclusively ???
Should I use an hardware load ballancer??

is there any problems with SessionID duplicate??

I know that on MS .NET the common architecture is to store session on a 
database to avoid load ballancing problems and cache replication.

If you need precisions, please ask me

thanks a lot.



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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Prevent EntityManager persisting

2006-01-12 Thread Dornus
I have the following situation...


  | @Stateless
  | public class MyClassBean implements MyClass {
  |   @PersistenceContext(unitName = "blah")
  |   EntityManager em;
  | 
  | public List doSomething(){
  |   final Query q = em.createQuery(
  | "from MyTable "
  |   );
  |   List myList = q.getResultList();
  | 
  |   // Now I wish to take myList, and change fields 
  |   // in it for display purposes only
  |   for (MyTable item : myList) {
  | item.setName("|--"+item.getName());
  |   }
  | 
  |   return myList;
  |}
  | }
  | 

When I do this, it updates the field in the database ("so the field now starts 
with "|--").   I only want that first part for display purposes.  I need to 
insert "|--" at this time, instead of later on in the code, so logically I 
thought I could alter my object temporarily without it being update in the  
database.  

I am at no time explicitly calling em.persist() or em.merge()

How do I prevent this?

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

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


---
This SF.net email is sponsored by: Splunk Inc. Do you grep through log files
for problems?  Stop!  Download the new AJAX search engine that makes
searching your log files as easy as surfing the  web.  DOWNLOAD SPLUNK!
http://ads.osdn.com/?ad_id=7637&alloc_id=16865&op=click
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


  1   2   3   >