[JBoss-user] [JBoss Seam] - Re: Some thoughts about the conversations

2006-03-13 Thread armita
Any idea?

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - JIntegra problem when jboss is started as windows service

2006-03-13 Thread preddy
Hi
  I am using pegasus and JIntegra for merging and displaying images in IE. Both 
pegasus and JIntegra are working properly if I start JBoss4.0.2RC1 from command 
prompt. 
  I have installed JBoss4.0.2RC1 as windows service using wrapper.exe. Now 
the problem is that I am not able to merge and load images in IE. Following 
message is getting dispalayed in server log

J-Integra 1.5.2 Copyright (C) 1999-2001 Intrinsyc Software Inc. 
http://www.intrinsyc.com/j-integra/

JVM appears hung: Timed out waiting for signal from JVM.
JVM did not exit on request, terminated
Launching a JVM...
Wrapper (Version 3.1.2) http://wrapper.tanukisoftware.org

Thanks

  

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Re: commons-logging/log4j problem

2006-03-13 Thread Pi1
Hi, PeterJ. If you define your appeners in JBoss log4j configuration file, how 
do you separate logs among your apps. Do you specify 

 
 

...
 
 
 

so classes in package com.myapp1.* log with Appender1 and classes in 
com.myapp2.* log with Appender2? I can not do so, as my diffrent apps classes 
in packeges with the same name com.myapp.*.
Or do you use TCLFilter to filter apps by deploymentURL while logging (i have 
not even got it work with this filter)? Also i really want to keep my log4j 
properties in my own file, so user can easily adjust this settings without 
touching JBoss configuration.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Performance Tuning] - Re: How many users can jboss service at the same time?

2006-03-13 Thread rahulap
I have very similar query.

I am using PIV 3 GHz with 2GB RAM on Windows 2000 SP4/XP SP2 machine with jboss 
4.x installed. 

Client/s can send http post messages at a very high rate, say 500 
requests/minute. If that is text message (say 100 characters) which is saved in 
inbuild HSQL database table.

Can JBoss/HSQL handle this? Do i need to make any specific configuration 
changes for this setup in Jboss?

Thanks




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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - ClassCastException looking up EJB3.0 SLSB

2006-03-13 Thread khooke
I'm getting this exception when looking up an EJB3.0 Stateless Session Bean:

java.lang.ClassCastException: org.jnp.interfaces.NamingContext

I'm using JBoss 4.0.4RC1.

My SLSB is as simple as this:

  | @Stateless
  | public class AddressBookBean implements AddressBook {
  | 
  | @PersistenceContext(unitName="addressEntityManager")
  | private EntityManager manager;
  | 
  | 
  | public void addAdress(Address newAddress) 
  | {
  | manager.persist( newAddress );
  | }
  | 
  | public List retrieveAddresses() 
  | {
  | return null;
  | }
  | 
  | }
  | 

The Spring MVC Controller that is trying to look up the SLSB (I've tried using 
the JndiObjectFactoryBean to wire up the bean, but thats giving the same 
exception) is using the following code:


  | InitialContext ctx = new InitialContext();
  | AddressBook addressBook = (AddressBook) 
ctx.lookup("test1/AddressBookBean");
  | 

The ejb is deployed in test1.ear, so I'm assuming the default jndi name is 
therefore test1/AddressBookBean

I obviously get something back from JNDI, just not what I expected to get back.

I also noticed that the EJB 3.0 trailblazer refers to /remote and /local JNDI 
names, but neither of these (eg test1/AddressBookBean/local, or 
test1/AddressBookBean/remote) are bound in JNDI if I look in the JMX console.

Any ideas?

Thanks, 
Kevin Hooke


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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - help,how cache EjbHome when hot-deploy

2006-03-13 Thread targei
To  save the time for looking ejb local home or remote home from jndi server , 
I put it into a static Map in a class named ServiceLocator.
It'll be working  ok till I redepoy the ear.
After hot-depoy the ear, the static map still exists, and contains the home 
object cache. When the code in ejb get home object from the map and cast it to 
the EJBHome or EJBLocalHome, jboss report error like this:

2006-03-09 16:37:18,765 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] 
Exiting on IOE
java.io.EOFException
at 
java.io.ObjectInputStream$BlockDataInputStream.readByte(ObjectInputStream.java:2603)
at java.io.ObjectInputStream.readByte(ObjectInputStream.java:845)
at 
org.jboss.mq.il.uil2.SocketManager$ReadTask.run(SocketManager.java:279)
at java.lang.Thread.run(Thread.java:534)
2006-03-09 16:37:18,765 DEBUG [org.jboss.mq.il.uil2.SocketManager] End 
ReadTask.run
2006-03-09 16:37:18,765 DEBUG [org.jboss.mq.il.uil2.SocketManager] End 
WriteTask.run
2006-03-09 16:37:18,781 DEBUG [org.jboss.mq.il.uil2.ServerSocketManagerHandler] 
Exiting on IOE


Thanks .



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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: Problem with JAAS login caching on Jboss 3.2.8SP1 w/Tomc

2006-03-13 Thread dfantham
Please Ignore this post and view the next one with the same name - this 
contains the stakc trace of the error - this posting is too big...sorry

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: Problem with JAAS login caching on Jboss 3.2.8SP1 w/Tomc

2006-03-13 Thread dfantham
"dfantham" wrote : Please Ignore this post and view the next one - this 
contains the stakc trace of the error - this posting is too big...sorry

I am having a very bad night - this posting contains the stack trace, and the 
previous posting is incorrect - I wish there was a way to edit posts and 
delete/withdraw them if necessary.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Re: Problem with JAAS login caching on Jboss 3.2.8SP1 w/Tomc

2006-03-13 Thread dfantham
Please Ignore this post and view the next one - this contains the stakc trace 
of the error - this posting is too big...sorry

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Problem with JAAS login caching on Jboss 3.2.8SP1 w/Tomcat

2006-03-13 Thread dfantham
I am trying to upgrade from jboss 3.2.3 to Jboss 3.2.8SP1 and I am getting RMI 
authentication errors whenever the JAAS cache times out.  See the following 
below for am example(using the TRACE log settings for JAAS):

NOte: sorry about the length


  | 17:47:03,338 INFO  [AuthTilesRequestProcessor,TP-Processor1] 
--- AUTHENTICATION CHECK --
  | 17:47:03,338 INFO  [AuthTilesRequestProcessor,TP-Processor1] Request 
Recieved from : 20500::infsys at 03/13/2006 (Mon) 17:47:03
  | 17:47:03,338 INFO  [AuthTilesRequestProcessor,TP-Processor1] Request for: 
/app/absenceView.do
  | 17:47:03,338 DEBUG [AuthTilesRequestProcessor,TP-Processor1] Session ID: 
80BC91AE8F1B1B692A55F539C5873D08
  | 17:47:03,338 INFO  [AuthTilesRequestProcessor,TP-Processor1] User 
20500::infsys has correct role (absenceView) - Granting access
  | 17:47:03,339 TRACE [SecurityAssociation,TP-Processor1] getPrincipal, 
principal=20500::infsys
  | 17:47:03,339 TRACE [JaasSecurityManager$DomainInfo,TP-Processor1] destroy, 
subject=Subject:
  | Principal: 20500::infsys
  | Principal: Roles(members:roleModify, etc...)
  | , [EMAIL PROTECTED](26847353)[EMAIL PROTECTED](20500::infsys)[EMAIL 
PROTECTED](Roles(members:roleModify,tradeRespond,overtimeCodeModify,trainingClassCreate,specialAssignmentList,overtimeAssignUser,systemMonitor,base,userModify_updateOrgInfo,specialAssignmentViewOwn,specialAssignmentReview,coverageModify,allCustomers,userSysStatus,userModify_viewSecurity,trainingClassList,shiftPatternModify,tradeAvailableList,preApprovedAbsenceRecording,tradeDetail,tradeModify,absenceModify,roleSysStatus,tradeReversal,userModify,scheduleFilter,trainingDetail,groupList,scheduleList,positionProfileSysStatus,trainingViewOwn,tradePendingList,overtimeAvailableList,absenceApproveOwn,coverageExceptionView,coverageDateRules,manualChange,userModify_updateSecurity,userCreate,shiftPatternCreate,groupSysStatus,shiftPatternList,preApprovedTrade,groupModify,absencePendingList,specialAssignmentCancel,positionProfileCreate,userModify_viewOrgInfo,specialAssignmentAssign,userList,absenceReview,positionProfileModify,coverageAddRequirement,roleList,overtimeAssignView,scheduleAdd,roleUsers,scheduleModify,specialAssignmentAssignOwn,trainingClassAssign,positionProfileUserAssign,userModify_updatePrefs,coverageValidate,userProfile,absenceCreate,userAccess,positionProfileUserView,reportList,overtimeAssignOwn,coverageView,scheduleCopy,coveragePublish,specialAssignmentModify,trainingClassAssignCancel,trainingClassDelete,specialAssignmentDelete,overtimeRequestAssign,trainingAssignOwn,overtimeRequestList,tradeCreate,shiftList,absenceDayOfAbsenceRecording,specialAssignmentDetail,trainingReview,shiftModify,overtimeDeleteRequest,absenceDetail,reportSecurity,reports,specialAssignmentRole,specialAssignmentViewAll,tradeApprove,coverageModifyRequirement,schedulePublish,tradeView,positionProfileList,tradeApproveOwn,scheduleCoverage,absenceApprove,userModify_updatePersonal,overtimeVolunteer,scheduleView,trainingViewAll,absenceView,manualChangeView,specialAssignmentCreate,coverageCreate,systemAdmin,groupMembers,absenceReversal,roleCreate,coverageSysStatus,trainingClassModify,overtimeRemoveAssign,overtimeReview,shiftCreate,personalSchedule,userModify_viewPersonal,coverageList,overtimeRequest,tradeAccept,scheduleCreate,groupCreate,inbox,userModify_viewPrefs)),[EMAIL
 PROTECTED],expirationTime=1142300783766], activeUsers=0
  | 17:47:03,340 TRACE [JaasSecurityManager$DomainInfo,TP-Processor1] logout, 
subject=Subject:
  | Principal: 20500::infsys
  | Principal: Roles(members:roleModify, etc...)
  | , [EMAIL PROTECTED](26847353)[EMAIL PROTECTED](20500::infsys)[EMAIL 
PROTECTED](Roles(members:roleModify,etc...)),[EMAIL 
PROTECTED],expirationTime=1142300783766]
  | 17:47:03,340 TRACE [DatabaseServerLoginModule,TP-Processor1] logout
  | 17:47:03,340 TRACE [ClientLoginModule,TP-Processor1] logout
  | 17:47:03,340 TRACE [SecurityAssociation,TP-Processor1] clear, server=true
  | 17:47:03,340 TRACE [scheduleExpress,TP-Processor1] Begin isValid, 
principal:20500::infsys, cache info: null
  | 17:47:03,340 TRACE [scheduleExpress,TP-Processor1] defaultLogin, 
principal=20500::infsys
  | 17:47:03,340 TRACE [XMLLoginConfigImpl,TP-Processor1] Begin 
getAppConfigurationEntry(scheduleExpress), size=9
  | 17:47:03,340 TRACE [XMLLoginConfigImpl,TP-Processor1] End 
getAppConfigurationEntry(scheduleExpress), authInfo=AppConfigurationEntry[]:
  | [0]
  | LoginModule Class: org.jboss.security.auth.spi.DatabaseServerLoginModule
  | ControlFlag: LoginModuleControlFlag: required
  | Options:name=rolesQuery, value=select userRoles, 'Roles' from v_roles where 
principalID=?
  | name=principalsQuery, value=select password as passwd from v_principals 
where principalID=?
  | name=hashAlgorithm, value=MD5
  | name=dsJndiName, value=java:/PostgresDS
  | [1]
  | LoginModule Class: org.jboss.security.ClientLoginModule
  | ControlFlag: L

[JBoss-user] [Microcontainer] - Re: JavassistReflectionFactory wondering

2006-03-13 Thread [EMAIL PROTECTED]
It has been fixed in cvs.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - JBoss 4.0.2 +JBoss Portal- You cannot set autocommit during

2006-03-13 Thread andytsoy
Dear all,

JBoss 4.0.2 + JBoss Portal + Oracle

When I use JBoss Portal (localhost:8080/portal) to call my portlet to do some 
database access in my JAVA class, it will connect to Oracle database and run 
the statement ?connection.setAutoCommit(false)?( Because I may need rollback). 
When I call this statement, there is an error occur as the following:

***
java.sql.SQLException: You cannot set autocommit during a managed transaction!
at 
org.jboss.resource.adapter.jdbc.BaseWrapperManagedConnection.setJdbcAutoCommit(BaseWrapperManagedConnection.java:462)
at 
org.jboss.resource.adapter.jdbc.WrappedConnection.setAutoCommit(WrappedConnection.java:432)

***

Could any one help to suggest some solution?

If you want to get more detail. Please ask me ! Thank you!

Remarks: In JBoss, I have oracle-xa-ds.xml in the deploy folder for setting of 
oracle.


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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - JBoss Portal Themes and Netscape

2006-03-13 Thread ThorntonD
Portal 2.2.1 Naphlanx theme isn't friendly to Netscape, all versions.   
Navigation tabs are split, several styles are not rendering properly.  I didn't 
try out any of the other themes in Netscape.

Danny



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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Latest source from CVS

2006-03-13 Thread ThorntonD
I didn't add it to a project, I just added junit.jar to my CLASSPATH Windows 
environment variable.  Junit.jar may be on the CLASSPATH for your NetBeans IDE 
but not on the CLASSPATH for your Eclipse IDE.  

Someone on the dev team should debug this on a Windows XP platform by 
performing a command line build of the Portal.

Danny

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Querying VariableInstance Is Giving Me A Headache

2006-03-13 Thread julian_k
ok here is my final query.  sorry for the multiple posts, but I made some 
changes at the last second:

  |  select a.* from jbpm_variableinstance a, (select processinstance_ from
  | jbpm_variableinstance where name_ = 'XYZ' and stringvalue_ = '364834') 
subView,
  | jbpm_processinstance b, jbpm_processdefinition c, jbpm_taskinstance d
  | where a.processinstance_ = subView.processinstance_
  | AND a.name_ = 'ABC'
  | AND b.id_ = subView.processinstance_
  | AND b.end_ IS NULL
  | AND c.name_ = 'My Process'
  | AND d.token_ = a.token_
  | ORDER BY a.stringvalue_;
  | 
This final query also joins the process definition table so as to query based 
on the process definition name.  Finally it also joins the token in the 
variableinstance table to the token in taskinstance table.  The end result of 
all this is a retrieval of all tasks from a given process instance where the 
process instance contains two variables (one with a given name and value and 
the other with a given name).  The last step is to join on jbpm_taskdefinition 
to get a certain task by name.  Long story short I'll get the tasks and value 
of the variable.  If anyone's interested I'll post the final query.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Serialization error when migrating to 4.0.4 and EJB3 RC5

2006-03-13 Thread [EMAIL PROTECTED]
migrating from what to what?  Did you read the installation docs?  The client 
libs need to be patched if you are ugrading from SP1 RC3 to RC5.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Serialization error when migrating to 4.0.4 and EJB3 RC5

2006-03-13 Thread markfrench
Hi,

I have been tring to migrate code from a 4.0.3SP1 and EJB3 RC3 and each time I 
try to run my tests the following exception occurs:

Caused by: java.io.InvalidClassException: javax.ejb.EJBException; local class 
incompatible: stream classdesc serialVersionUID = 2512003687642492863, local 
class serialVersionUID = 796770993296843510
at java.io.ObjectStreamClass.initNonProxy(Unknown Source)
at java.io.ObjectInputStream.readNonProxyDesc(Unknown Source)
at java.io.ObjectInputStream.readClassDesc(Unknown Source)
at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
at java.io.ObjectInputStream.readObject0(Unknown Source)
at java.io.ObjectInputStream.defaultReadFields(Unknown Source)
at java.io.ObjectInputStream.readSerialData(Unknown Source)
at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)
at java.io.ObjectInputStream.readObject0(Unknown Source)
at java.io.ObjectInputStream.readObject(Unknown Source)
at 
org.jboss.remoting.serialization.impl.java.JavaSerializationManager.receiveObject(JavaSerializationManager.java:128)
at 
org.jboss.remoting.marshal.serializable.SerializableUnMarshaller.read(SerializableUnMarshaller.java:66)
at 
org.jboss.remoting.transport.socket.SocketClientInvoker.transport(SocketClientInvoker.java:265)

Any ideas as to the cause?  

Cheers

Mark

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Can not use PrimaryKeyJoinColumns

2006-03-13 Thread adver11
@ManyToOne
@PrimaryKeyJoinColumns({
@PrimaryKeyJoinColumn(name="DESK_ZONE"),
@PrimaryKeyJoinColumn(name="DESK_ID")
})
private Chkin_desk CHKIN_DESK;

show me:The annotation @PrimaryKeyJoinColumns is disallowed for this location

Why? How to use it?

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: Querying VariableInstance Is Giving Me A Headache

2006-03-13 Thread julian_k
ok I got it, I think...here is a query using a view and joins on the view and 
the processinstance table to get the processinstance that is not done with  
given variables...using the results I can do another query to get the tasks as 
needed:

  |  select * from jbpm_variableinstance a, (select processinstance_ from
  | jbpm_variableinstance where name_ = 'XYZ' and stringvalue_ = '364834') 
subView, 
  | jbpm_processinstance b
  | where a.processinstance_ = subView.processinstance_
  | AND a.name_ = 'ABC'
  | AND subView.processinstance_ = b.id_
  | AND b.end_ IS NULL;
  | 
WHERE I am doing a query based on two variables, one called XYZ with a value of 
364834 and another variable called ABC.  I guess one would have to create more 
views on the fly to get more data out based on a given variable name and value. 
 Does this look to be the best way?

Thanks,
Julian

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Clustering/JBoss] - FirstAvailable SLSB Load Balancing

2006-03-13 Thread littlefish
HI ALL! I got a problem on setting FirstAvailable SLSB Load Balancing.

i used three server, two server deploy slsb jar, another deploy slsb client 
ear(servlet).

i add the following code to jboss.xml:

true
 

   org.jboss.ha.framework.interfaces.FirstAvailable


   org.jboss.ha.framework.interfaces.FirstAvailable



Final, client can remote invoke the other servers. but it is not 
FirstAvailable. the client will invoke the other servers active-active.
As i would like to set the two server at active-passive. client invoke the same 
server until it having error. 

Can anyone knows the problems of my setting??THX!

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Tomcat, HTTPD, Servlets & JSP] - Re: Error when executing PetStore1.3.2 in JBoss 4.02

2006-03-13 Thread sjitesh
Hello All,

I have found that the EL expressions in JSP are not getting evaluated in 
petstore. I have tried to excute standard-examples.war (JSTL tag lib example). 
And it is working fine. And the JSP translated java source looks like below in 
caseof standard-examples.war 

--
//  c:out
org.apache.taglibs.standard.tag.rt.core.OutTag _jspx_th_c_out_11 = 
(org.apache.taglibs.standard.tag.rt.core.OutTag) 
_jspx_tagPool_c_out_value_nobody.get(org.apache.taglibs.standard.tag.rt.core.OutTag.class);
_jspx_th_c_out_11.setPageContext(_jspx_page_context);
_jspx_th_c_out_11.setParent((javax.servlet.jsp.tagext.Tag) _jspx_th_c_if_2);
_jspx_th_c_out_11.setValue((java.lang.Object) 
org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${status.count}",
 java.lang.Object.class, (PageContext)_jspx_page_context, null, false));
--
But in case of petstore the JSP translated java code looks like below for 
expressions,

--
//  c:set
org.apache.taglibs.standard.tag.el.core.SetTag _jspx_th_c_set_6 = 
(org.apache.taglibs.standard.tag.el.core.SetTag) 
_jspx_tagPool_c_set_var_value_nobody.get(org.apache.taglibs.standard.tag.el.core.SetTag.class);
_jspx_th_c_set_6.setPageContext(_jspx_page_context);
_jspx_th_c_set_6.setParent((javax.servlet.jsp.tagext.Tag) 
_jspx_th_waf_cache_0);
_jspx_th_c_set_6.setValue("${catalog.products}");
_jspx_th_c_set_6.setVar("pageResults");
--
Please check the difference in setvalue(..) method,
1. _jspx_th_c_out_11.setValue((java.lang.Object) 
org.apache.jasper.runtime.PageContextImpl.proprietaryEvaluate("${status.count}",
 java.lang.Object.class, (PageContext)

2. _jspx_th_c_set_6.setValue("${catalog.products}");


proprietaryEvaluate(..) method is not present in later case. 

Can anyone help to resolve the issue. ?

Thanks And Regards,
Jitesh


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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Querying VariableInstance Is Giving Me A Headache

2006-03-13 Thread julian_k
What is the best way to select all task instances that belong to a given 
process instance with three assigned variables.  More specifically, the three 
variables I would like to search by should have a given value and these 
variables were set when instantiating the process.  I know how to conduct this 
query based on one variable, but two or more becomes a series of queries.  Is 
there a way to do it in one query or view?

Thanks.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: invalid schema name error

2006-03-13 Thread [EMAIL PROTECTED]
Change your persistence.xml to point to a MySQL datasource, instead of the 
default HSQLDB datasource.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Microcontainer] - Re: Future Architecture?

2006-03-13 Thread bkeh12
anonymous wrote : I would think a scripting framework based deployment would be 
more approriate (bsh, groovy, ...) 
anonymous wrote : It seems that with a set of "reasonable defaults", there 
wouldn't be a need for jar files, META-INF information, and xml files. 

I an sympathy with your views.

see Scripting Support in Mustang(JDK6.0) 
http://www.ociweb.com/jnb/jnbFeb2006.html
and Bean Scripting Framework http://jakarta.apache.org/bsf/index.html

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - invalid schema name error

2006-03-13 Thread max522over
I've generated my skeleton website and I can not find nor insert into the 
database. I'm using MySql. Here is a table that I'm using:

CREATE TABLE HEALTHTRACKDB.WeanInformation(
WeanInformationID   VARCHAR (50),
CalveMarketing  VARCHAR(50),
EstimatedWeanDate   VARCHAR(50),
EstimatedWeanWeight VARCHAR(50),
PRIMARY KEY (WeanInformationID)
);

I generate code for it and deploy it. The website works fine until I try to 
retrieve or enter data into the database and I get many exceptions but I think 
this is the one that probably defines my reall problem:


2006-03-13 18:39:39,312 DEBUG [org.hibernate.jdbc.ConnectionManager] opening 
JDBC connection
  | 2006-03-13 18:39:39,312 DEBUG [org.hibernate.SQL] select 
weaninform0_.WeanInformationID as WeanInfo1_11_0_, weaninform0_.CalveMarketing 
as CalveMar2_11_0_, weaninform0_.EstimatedWeanDate as Estimate3_11_0_, 
weaninform0_.EstimatedWeanWeight as Estimate4_11_0_ from 
healthtrackdb.weaninformation weaninform0_ where 
weaninform0_.WeanInformationID=?
  | 2006-03-13 18:39:39,312 INFO  [STDOUT] Hibernate: select 
weaninform0_.WeanInformationID as WeanInfo1_11_0_, weaninform0_.CalveMarketing 
as CalveMar2_11_0_, weaninform0_.EstimatedWeanDate as Estimate3_11_0_, 
weaninform0_.EstimatedWeanWeight as Estimate4_11_0_ from 
healthtrackdb.weaninformation weaninform0_ where 
weaninform0_.WeanInformationID=?
  | 2006-03-13 18:39:39,312 DEBUG [org.hibernate.util.JDBCExceptionReporter] 
could not load an entity: [com.mfa.demo.Weaninformation#990099] [select 
weaninform0_.WeanInformationID as WeanInfo1_11_0_, weaninform0_.CalveMarketing 
as CalveMar2_11_0_, weaninform0_.EstimatedWeanDate as Estimate3_11_0_, 
weaninform0_.EstimatedWeanWeight as Estimate4_11_0_ from 
healthtrackdb.weaninformation weaninform0_ where 
weaninform0_.WeanInformationID=?]
  | java.sql.SQLException: invalid schema name: HEALTHTRACKDB in statement 
[select weaninform0_.WeanInformationID as WeanInfo1_11_0_, 
weaninform0_.CalveMarketing as CalveMar2_11_0_, weaninform0_.EstimatedWeanDate 
as Estimate3_11_0_, weaninform0_.EstimatedWeanWeight as Estimate4_11_0_ from 
healthtrackdb.weaninformation weaninform0_ where 
weaninform0_.WeanInformationID=?]
  |   | at org.hsqldb.jdbc.Util.throwError(Unknown Source)
  |   | at org.hsqldb.jdbc.jdbcPreparedStatement.(Unknown Source)
  |   | at org.hsqldb.jdbc.jdbcConnection.prepareStatement(Unknown 
Source)
  |   | at 
org.jboss.resource.adapter.jdbc.BaseWrapperManagedConnection.doPrepareStatement(BaseWrapperManagedConnection.java:346)
  |   | at 
org.jboss.resource.adapter.jdbc.BaseWrapperManagedConnection.prepareStatement(BaseWrapperManagedConnection.java:334)
  |   | at 
org.jboss.resource.adapter.jdbc.WrappedConnection.prepareStatement(WrappedConnection.java:187)
  |   | at 
org.hibernate.jdbc.AbstractBatcher.getPreparedStatement(AbstractBatcher.java:442)
  |   | at 
org.hibernate.jdbc.AbstractBatcher.getPreparedStatement(AbstractBatcher.java:368)
  |   | at 
org.hibernate.jdbc.AbstractBatcher.prepareQueryStatement(AbstractBatcher.java:105)
  |   | at 
org.hibernate.loader.Loader.prepareQueryStatement(Loader.java:1561)
  |   | at org.hibernate.loader.Loader.doQuery(Loader.java:661)
  |   | at 
org.hibernate.loader.Loader.doQueryAndInitializeNonLazyCollections(Loader.java:224)
  |   | at org.hibernate.loader.Loader.loadEntity(Loader.java:1785)
  |   | at 
org.hibernate.loader.entity.AbstractEntityLoader.load(AbstractEntityLoader.java:93)
  |   | at 
org.hibernate.loader.entity.AbstractEntityLoader.load(AbstractEntityLoader.java:81)
  |   | at 
org.hibernate.persister.entity.AbstractEntityPersister.load(AbstractEntityPersister.java:2730)
  |   | at 
org.hibernate.event.def.DefaultLoadEventListener.loadFromDatasource(DefaultLoadEventListener.java:365)
  |   | at 
org.hibernate.event.def.DefaultLoadEventListener.doLoad(DefaultLoadEventListener.java:346)
  |   | at 
org.hibernate.event.def.DefaultLoadEventListener.load(DefaultLoadEventListener.java:123)
  |   | at 
org.hibernate.event.def.DefaultLoadEventListener.proxyOrLoad(DefaultLoadEventListener.java:177)
  |   | at 
org.hibernate.event.def.DefaultLoadEventListener.onLoad(DefaultLoadEventListener.java:87)
  |   | at org.hibernate.impl.SessionImpl.fireLoad(SessionImpl.java:891)
  |   | at org.hibernate.impl.SessionImpl.get(SessionImpl.java:828)
  |   | at org.hibernate.impl.SessionImpl.get(SessionImpl.java:821)
  |   | at 
org.hibernate.ejb.AbstractEntityManagerImpl.find(AbstractEntityManagerImpl.java:102)
  |   | at 
com.mfa.demo.WeaninformationEditorBean.create(WeaninformationEditorBean.java:70)
  |   | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  |   | at 
sun.reflect.NativeMethodAcce

[JBoss-user] [JBoss Seam] - Re: Any idea about this error: Lorg/jboss/ejb3/embedded/EJB3

2006-03-13 Thread [EMAIL PROTECTED]
Yes, of course that is possible.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Any idea about this error: Lorg/jboss/ejb3/embedded/EJB3

2006-03-13 Thread [EMAIL PROTECTED]
Do you mean that you install the component in the seam.properties file instead 
of web.xml?

That would be easier.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Any idea about this error: Lorg/jboss/ejb3/embedded/EJB3

2006-03-13 Thread [EMAIL PROTECTED]
I installed the Embeddable EJB3 container (forgot to remove it from the web.xml 
file when I formed my Tomcat web.xml into the application server xml)

Its a little confusing trying to maintain a web.xml for both the app server and 
(just) tomcat; trying to update both files whenever I add or remove a pageflow 
definition.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Any idea about this error: Lorg/jboss/ejb3/embedded/EJB3

2006-03-13 Thread [EMAIL PROTECTED]
well, the usual way to install that component is by 
org.jboss.seam.core.init.componentClasses configuration property.

Um, not totally sure, I never really understood all that "canonical class name" 
stuff. ;-)

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Any idea about this error: Lorg/jboss/ejb3/embedded/EJB3

2006-03-13 Thread [EMAIL PROTECTED]
Do you mean like it is being loading by a reference in the web.xml file?

Why does it put an 'L' on the front of the class it can't find?

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss AOP] - Re: DynamicAOP not working with Examples

2006-03-13 Thread tpedone
After trying to get my own aspects to work, I went back to example and noticed 
that not all the interceptors are working when I re-deploy the jboss-aop.xml.  
In particular, ExampleSessionBean.getValue() and EarExampleServlet.service() 
are not intercepted even though they were when I first deployed the 
aopexample.ear.  I'm having a similar problem with my app.  After removing, 
then re-deploying my aop.xml file, my interceptors stop working. 

It's as if the interceptors only work only on instances that were constructed 
since re-deploying the aop.xml file (hence the value objects constructors and 
method calls are still being intercepted)

Is there a limitation as to what can be dynamically intercepted?

Thanks,

Tim

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Any idea about this error: Lorg/jboss/ejb3/embedded/EJB3

2006-03-13 Thread [EMAIL PROTECTED]
You installed the org.jboss.seam.core.ejb component when running in the 
appserver??

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Any idea about this error: Lorg/jboss/ejb3/embedded/EJB3Stan

2006-03-13 Thread [EMAIL PROTECTED]
2006-03-13 16:59:03,375 ERROR 
[org.apache.catalina.core.ContainerBase.[jboss.web].[localhost].[/varts]] 
Exception sending context initialized event to listener instance of class 
org.jboss.seam.servlet.SeamListener
  | java.lang.NoClassDefFoundError: 
Lorg/jboss/ejb3/embedded/EJB3StandaloneDeployer;
  | at java.lang.Class.getDeclaredFields0(Native Method)
  | at java.lang.Class.privateGetDeclaredFields(Class.java:2232)
  | at java.lang.Class.getDeclaredFields(Class.java:1715)
  | at org.jboss.seam.Component.initMembers(Component.java:333)
  | at org.jboss.seam.Component.(Component.java:177)
  | at org.jboss.seam.Component.(Component.java:143)
  | at org.jboss.seam.Component.(Component.java:138)
  | at org.jboss.seam.Component.(Component.java:133)
  | at 
org.jboss.seam.init.Initialization.addComponent(Initialization.java:257)
  | at 
org.jboss.seam.init.Initialization.addComponents(Initialization.java:179)
  | at org.jboss.seam.init.Initialization.init(Initialization.java:97)
  | at 
org.jboss.seam.servlet.SeamListener.contextInitialized(SeamListener.java:31)
  | at 
org.apache.catalina.core.StandardContext.listenerStart(StandardContext.java:3669)
  | at 
org.apache.catalina.core.StandardContext.start(StandardContext.java:4104)
  | at 
org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase.java:759)
  | at 
org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:739)
  | at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:524)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
  | at 
org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:150)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
  | at 
org.apache.catalina.core.StandardContext.init(StandardContext.java:5005)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.apache.commons.modeler.BaseModelMBean.invoke(BaseModelMBean.java:503)
  | at 
org.jboss.mx.server.RawDynamicInvoker.invoke(RawDynamicInvoker.java:150)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
  | at 
org.jboss.web.tomcat.tc5.TomcatDeployer.performDeployInternal(TomcatDeployer.java:280)
  | at 
org.jboss.web.tomcat.tc5.TomcatDeployer.performDeploy(TomcatDeployer.java:88)
  | at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:357)
  | at org.jboss.web.WebModule.startModule(WebModule.java:68)
  | at org.jboss.web.WebModule.startService(WebModule.java:46)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:274)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:230)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
  | at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:943)
  | at $Proxy0.start(Unknown Source)
  | at org.jboss.system.ServiceController.start(ServiceController.java:428)
  | at sun.reflect.GeneratedMethodAccessor7.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:141)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:80)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:72)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:245)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:644)
  | at org.jboss.mx.util.MBean

[JBoss-user] [JBoss Portal] - Re: Error creating new directory on CMS

2006-03-13 Thread sitongia
The portal defaults to creating tables using an embedded Hypersonic database.

You can switch to another database using the instructions in the documentation:
http://docs.jboss.com/jbportal/v2.2/user-guide/en/html/installation.html#d0e558

There are other places in the documentation that databases are described.

==Leonard

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [News & Announcements] - JBossCache 1.3.0.Beta2 released

2006-03-13 Thread [EMAIL PROTECTED]
The 1.3.0.Beta2 release of JBossCache is available from sourceforge:
http://sourceforge.net/project/showfiles.php?group_id=22866&package_id=102339&release_id=401350

Full release notes with compatibility notes and highlights are included in the 
release changelog. The summary for JBossCache-1.3.0.Beta2 is: 

Release Notes - JBoss Cache - Version 1.3.0.Beta2

Bug

[JBCACHE-491] - EvictionException in JBossCache-1.2.4
[JBCACHE-494] - Eviciton imporperly thrown when an eviction node not found
[JBCACHE-495] - LRUPolicyTest case failed
[JBCACHE-496] - Map does support key values that are not String
[JBCACHE-497] - NetworkManagementAopTest failure
[JBCACHE-498] - Replication issue with Collection proxy using Iterators


Feature Request

[JBCACHE-502] - Allow primitive arrays as params to putObject

  
Task

[JBCACHE-489] - FAQ update
[JBCACHE-499] - Use object identity in GlobalTransaction.equals()
[JBCACHE-500] - Object identity not directly used in Fqn equals() implementation


Patch

[JBCACHE-484] - Minor code clean-up for Cache head




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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - log4j problem with server.log.

2006-03-13 Thread ddevore
I have a problem with the server.log and getting output to not go to the 
server.log. 

I have looked at the wiki on logging and am trying to create an application.log 
and exception.log. I have setup the following. 


  |
  |
  |   
  |   
  |   
  | 
  |   
  |   
  | 
  |   
  | 
  |   
  |  
  |  
  | 
  |  
  |   
  |
  | 

and


  |
  |
  |   
  |   
  |   
  |
  | 

and 

   
  | 
  |   
  |   
  |
  | 

What this means to me is that an appender with the name application.log will be 
created and set to a log level of INFO rolling etc This appender will be 
associated with the application category and will write to the console  but not 
the FILE appender which is the server.log. What happens is this:

The application.log does not contain all the log entries and some of the logs 
are even incomplete such as only containing some of the log level only and not 
the log string. The log strings print to the console and print to the top of 
the server.log with a very large blank after it before the rest of the server 
log entries. If I write the categories as follows:


  |
  |
  |   
  |   
  |
  | 

The logs are not printed to the console like I would like the application.log 
is printed better but the server.log is still getting all the log entries also 
with the same very large space after the log entries which should only be going 
to the application.log.

Thanks for any help

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Web Service URL

2006-03-13 Thread jiwils
Not sure about how that is created exactly, but it has a lot to do with the EAR 
and EJB JAR file names (possibly the WAR filename, if you are not using 
EJB-backed web services).

If you added a jboss.xml deployment descriptor to your EJB JAR (and possibly 
jboss-web.xml to your WAR if you are using a non-EJB backed web service?...not 
sure) you can specify a port-component-uri tag to override this behavior.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: problem deploying simple seam app

2006-03-13 Thread [EMAIL PROTECTED]
http://www.jboss.com/index.html?module=bb&op=viewtopic&p=3926197

Where is jboss-seam.jar (should be in the EAR). Are you sure you have added 
jboss-seam.jar to the manifests of the war and ejb jars?

Try to reuse our build.xml, it works :-)

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: No Error messages when Session bean / Action not called

2006-03-13 Thread [EMAIL PROTECTED]
Turn off JDBC batch updates in Hibernate, and you will probably get a better 
exception from your JDBC driver.

This is a Hibernate problem, not related to Seam.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] NoSuchObjectLocalException when migration from 3.2.3 to 4.0.3

2006-03-13 Thread murali vivekanandan
Hi,
 
We have a CMP application(MYSQL 4.1) which works fine in 3.2.3. But when I migrate it to Jboss 4.0.3 I getting the following exception:
 
jboss javax.ejb.NoSuchObjectLocalException: Entity not found: primaryKey={somekey}.
 
even though an entity with this key exists in database.
 
Any clues?
 
Thanks,


[JBoss-user] [JBoss Seam] - Re: Could not instantiate Seam component

2006-03-13 Thread [EMAIL PROTECTED]
"rezebric" wrote : "[EMAIL PROTECTED]" wrote : But why is this happening? And 
what we must do to solve it?
  | 
  | This is a JBoss question, and nothing to do with Seam. (And no, I'm not the 
right guy to help with this stuff.)

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: h:commandLink and h:panelGroup

2006-03-13 Thread [EMAIL PROTECTED]
No, not really. We should WARN when multiple Seam components have the same 
name, however.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: NullPointerException

2006-03-13 Thread [EMAIL PROTECTED]
Related:

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

Another possibility could be that you have multiple SeamPhaseListeners, or no 
SeamPhaseListener in your application.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Can I use multiple faces-config.xml?

2006-03-13 Thread [EMAIL PROTECTED]
Related:

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

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: NullPointerException

2006-03-13 Thread [EMAIL PROTECTED]
We've seen this NPE before, and understand it to be a classloading related 
issue. Roy got it while trying to run Seam from a portlet.

Make sure you do *not* have the myfaces jars anywhere in your EAR. JBoss 
already has MyFaces built in.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: RessourceBundle for all Locals in APP-Scope

2006-03-13 Thread [EMAIL PROTECTED]
I committed that to CVS.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - ManyToMany biderectional

2006-03-13 Thread rberehoudougou
Hi,
I am experiencing the now famous ManyToMany hiberante entity manager bug. I 
have read the many post on the forum and tried the alternative : using Set 
instead of collections, using Lazy Fetch type but none of that works for me. 
The problem is as follow :

A product belongs to many Classes of Products
A Product belongs to many Famillies of Products

So, when creating a product, the product famillies and Classes can be selected.

  | 
  | import java.io.Serializable;
  | import java.util.Set;
  | import java.util.TreeSet;
  | 
  | import javax.persistence.CascadeType;
  | import javax.persistence.Column;
  | import javax.persistence.Entity;
  | import javax.persistence.FetchType;
  | import javax.persistence.GeneratedValue;
  | import javax.persistence.GenerationType;
  | import javax.persistence.Id;
  | import javax.persistence.JoinColumn;
  | import javax.persistence.JoinTable;
  | import javax.persistence.ManyToMany;
  | import javax.persistence.OneToOne;
  | import javax.persistence.Table;
  | import javax.persistence.Version;
  | 
  | import com.elina.commercialis.server.stock.classification.Classe;
  | import com.elina.commercialis.server.stock.classification.Famille;
  | 
  | @Entity
  | @Table(name = "produit")
  | public class Produit implements Serializable, Comparable
  | {
  | 
  | private long produitID;
  | 
  | private String codeProduit;
  | 
  | private String libelleProduit;
  | 
  | private Set classes;
  | 
  | private Set familles;
  | 
  | private Stock stock;
  | 
  | private long version;
  | 
  | public Produit()
  | {
  | this.stock = new Stock();
  | stock.setProduit(this);
  | classes = new TreeSet();
  | familles = new TreeSet();
  | }
  | 
  | @Version()
  | @Column(name="version")
  | public long getVersion()
  | {
  | return version;
  | }
  | 
  | public void setVersion(long version)
  | {
  | this.version = version;
  | }
  | 
  | @ManyToMany(cascade = { CascadeType.PERSIST, CascadeType.MERGE }, fetch 
= FetchType.EAGER)
  | @JoinTable(name = "classe_produit", 
  |joinColumns = { @JoinColumn(name = "produit_id") }, 
  |inverseJoinColumns = { @JoinColumn(name = 
"classe_id") })
  | public Set getClasses()
  | {
  | return classes;
  | }
  | 
  | public void setClasses(Set classes)
  | {
  | this.classes = classes;
  | }
  | 
  | @Column(name = "code_produit")
  | public String getCodeProduit()
  | {
  | return codeProduit;
  | }
  | 
  | public void setCodeProduit(String codeProduit)
  | {
  | this.codeProduit = codeProduit;
  | }
  | 
  | @ManyToMany(cascade = { CascadeType.PERSIST, CascadeType.MERGE }, fetch 
= FetchType.EAGER )
  | @JoinTable(name = "famille_produit", 
  |joinColumns = { @JoinColumn(name = "produit_id") }, 
  |inverseJoinColumns = { @JoinColumn(name = 
"famille_id") })   
  | public Set getFamilles()
  | {
  | return familles;
  | }
  | 
  | public void setFamilles(Set familles)
  | {
  | this.familles = familles;
  | }
  | 
  | @Column(name = "libelle_produit")
  | public String getLibelleProduit()
  | {
  | return libelleProduit;
  | }
  | 
  | public void setLibelleProduit(String libelleProduit)
  | {
  | this.libelleProduit = libelleProduit;
  | }
  | 
  | @Id
  | @GeneratedValue(strategy = GenerationType.AUTO)
  | @Column(name = "produit_id")
  | public long getProduitID()
  | {
  | return produitID;
  | }
  | 
  | public void setProduitID(long produitID)
  | {
  | this.produitID = produitID;
  | }
  | 
  | @OneToOne(cascade = {CascadeType.ALL})
  | @JoinColumn(name = "stock_id")
  | public Stock getStock()
  | {
  | return stock;
  | }
  | 
  | public void setStock(Stock stock)
  | {
  | this.stock = stock;
  | }
  | 
  | public boolean equals(Object obj)
  | {
  | if(obj == this)
  | return true;
  | if(!(obj instanceof Produit))
  | return false;
  | else
  | return 
this.getCodeProduit().equalsIgnoreCase(((Produit)obj).getCodeProduit());
  | }
  | 
  | public int hashCode()
  | {
  | int result = 17;
  | result = 37 * result + this.getCodeProduit().hashCode();
  | return result;
  | }
  | 
  | public String toString()
  | {
  | return this.getLibelleProduit();
  | }
  | 
  | public int compareTo(Object obj)
  | {
  | if(!(obj instanceof Produit))
  |  

[JBoss-user] [JBoss Seam] - Re: Suggestions on Scope

2006-03-13 Thread [EMAIL PROTECTED]
Your CONTINUOUS_PAGE context is just an ordinary  conversation with client-side 
state saving.

YOUR STATIC_CONVERSATION context is just a conversation that never gets ended.

I am -1 on both these things, they seem to complexify the model with very 
little added capability.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Primary Key(ID) Propagation into Objects

2006-03-13 Thread udaydustin
 
I have three objects and relationships: 

A->B->C. 

I could create a successful true one to one relation between A and B,
below is the code for that

Class A:
@Id(generator="fk") 
@GenericGenerator(name="fk", strategy = "foreign", parameters={
 @Parameter(name="property", value="b") 
})
@Column(name="ID")
public long id;

   @OneToOne(cascade=CascadeType.ALL)
   @PrimaryKeyJoinColumn
   
Class B:
@Id(generate = GeneratorType.AUTO)
@Column(name="ID")
public long id;

everthing worked fine using above, 
But  I would like to have "not true" one-to-one relation Between B and C ie 
Class C can exist independtly so I have to use auto key gen for C.
My Question is how to create a One to One relation between B and C

I tried persisting the C class I get an exception 
 "attempted to assign id from null one-to-one property"

I looked in ForeignGenerator.java it takes and requires only one property 
value. and also other classes and documentation but I could not figure out.

Any help on this would be appreciated!!!



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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Create table with ID as Auto increment

2006-03-13 Thread MrHighTech
On a side note, you might want to update your annotations. 
@Id(generatorType...) is not used anymore

@Id and @GeneratedValue are the new annotations. 

have a look at 
http://wiki.jboss.org/wiki/Wiki.jsp?page=FromJBossEJB3.0RC3ToRC4PFD


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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: New to portlets and portal

2006-03-13 Thread ilangocal
"balaji_t_ryan" wrote : Team,
  | 
  | I am new to Portlets. I want to learn creating portlets and deploying the 
portlets. Please suggest me a good tutorials.
  | 
  | I had created a post regarding this, but it is not showing up in the forum.

Balaji
Do you want to work with me? We can learn from each other

ilango

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: Error creating new directory on CMS

2006-03-13 Thread ilangocal
"sitongia" wrote : Same is happening to me, with PostgresQL 8.0 and Portal 2.4 
(CVS).
  | 
  | I've been playing with different types of generator classes in the HBM file 
WSPProp.hbm.xml, to no avail.  I'm guessing that the tables in the database are 
generated from the HBM, but the changes I make in the HBM don't make a 
difference.  I'm dropping the entire database in PostgresQL each time I test 
this.
  | 
  | ==Leonard

Hi Leonard
You mentioned tables in the database.I want these tables to be created in my 
remote database that is on the server. Where do I configure this? In fact I am  
baffled because I never created a database on my local machine nor do I 
remember having configured the PORTAL to work with my remote database. 
I am a little new to all this, so please bear with me. Thanks.

How do I specify the remote datasource so that the tables are created in the 
database on the remote machine. Well, the thing is, I created a database on my 
local machine. I should be able to create the tables on that database atleast

Thanks in advance
 

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - NoClassDefFoundError: org/jboss/web/tomcat/tc5/session/Field

2006-03-13 Thread samfra
java.lang.NoClassDefFoundError: 
org/jboss/web/tomcat/tc5/session/FieldBasedClusteredSession

Hello, 

when my *.war files are deployed with RC1 4.0.4, I got a NoClassDefFoundError 
Exception !

Why ? what do I miss ?

java.lang.NoClassDefFoundError: 
org/jboss/web/tomcat/tc5/session/FieldBasedClusteredSession
  | at java.lang.Class.getDeclaredConstructors0(Native Method)
  | at java.lang.Class.privateGetDeclaredConstructors(Class.java:2328)
  | at java.lang.Class.getConstructor0(Class.java:2640)
  | at java.lang.Class.newInstance0(Class.java:321)
  | at java.lang.Class.newInstance(Class.java:303)
  | at 
org.jboss.web.tomcat.tc5.TomcatDeployer.performDeployInternal(TomcatDeployer.java:318)
  | at 
org.jboss.web.tomcat.tc5.TomcatDeployer.performDeploy(TomcatDeployer.java:103)
  | at org.jboss.web.AbstractWebDeployer.start(AbstractWebDeployer.java:371)
  | at org.jboss.web.WebModule.startModule(WebModule.java:83)
  | at org.jboss.web.WebModule.startService(WebModule.java:61)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
  | at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
  | at sun.reflect.GeneratedMethodAccessor2.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:260)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:974)
  | at $Proxy0.start(Unknown Source)
  | at org.jboss.system.ServiceController.start(ServiceController.java:417)
  | at sun.reflect.GeneratedMethodAccessor9.invoke(Unknown Source)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:260)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
  | at $Proxy16.start(Unknown Source)
  | at 
org.jboss.web.AbstractWebContainer.start(AbstractWebContainer.java:469)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:86)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:260)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:190)
  | at $Proxy17.start(Unknown Source)
  | at org.jboss.deployment.MainDeployer.start(MainDeployer.java:1007)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:808)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:771)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
  | at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94)
  | at 
org.jboss.mx.interceptor.AbstractInterceptor.invoke(AbstractInterceptor.java:133)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.interceptor.ModelMBeanOperationInterceptor.invoke(ModelMBeanOperationInterceptor.java:142)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:260)
  | at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jbo

[JBoss-user] [JBoss Portal] - Re: prerequisites for building the Image Gallery Portlet

2006-03-13 Thread ilangocal
I answered my own question. I find that CMS is within JBoss Portal. I deployed 
Image Gallery Portlet without any problekm


thanks

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB/JBoss] - configure session bean

2006-03-13 Thread zokho
i want to generate 5000 integer number in client and set them in session bean 
in the server whithin a second i thought i can do that by multithreading and i 
already generate them by multithreading  and try to set them in the session 
bean but threre is no different in the time when i generate and set them in 
simple theread (like for(int i=0;i<5000;i++){mysess.setInt(12)})
i think i have to configure something in jboss or my session bean...!!?


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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Getting ERROR [UDP] exception=java.io.IOException on SuSe li

2006-03-13 Thread objectinc
Hi,

I dicovered a strange behaviour of jboss on SuSe linux 9.2. All I did was 
extracting the jboss to the desired folder and start the run.sh.
But the startup doesnt went fine.
During startup I get the following message, more times than I'm able to count 
;-):
22:52:47,448 ERROR [UDP] exception=java.io.IOException: Operation not 
permitted, msg=[dst: 228.1.2.3:45551, src: hamburg132:36017 (2 headers), size = 
0 bytes], mcast_addr=228.1.2.3:45551

On my other linux boxes the startup went fine. I ran out of ideas.

Please help me!

Thanks in advance.

Andreas

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Create table with ID as Auto increment

2006-03-13 Thread mdeterman
You need to set the correct hibernate dialect in your persistence.xml file 


  | 
  | 
is what you need. by default it is not MySQL.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Enity Bean Mapping

2006-03-13 Thread mdeterman
What i need to do is get one value from another enity for use and I don't need 
the whole object just one value

  | public class Object1 implements Serializable {
  |pirvate Integer id;
  |private String name;
  | 
  |public Integer getId() {return id;}
  | 
  |@Id
  |public void setId(Integer id) {this.id = id;}
  | 
  |...
  | }
  | 
  | public class Object2 implements Serializable {
  |pirvate Integer id;
  |private Integer object1Id
  |private String object1Name
  | 
  |public Integer getId() {return id;}
  | 
  |@Id
  |public void setId(Integer id) {this.id = id;}
  |
  |public Integer getObject1Id() {return object1Id;}
  | 
  |public void setObject1Id(Integer object1Id) {this.object1Id = object1Id;}
  | 
  |public String getObject1Name() {return object1Name;}
  | 
  | }

Where getObject1Name in Object2 i would like that to be the value of Object 1's 
Name by a relationship of a Object 1 can have many Object 2's but Ojbect 2's 
can only have one Object 1's.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: JBoss jBPM tutorial HelloTest.java doesn't passes the te

2006-03-13 Thread kukeltje
post the actionhandler here and the process please. This is to little 
information to give you a definitive answer. Most likely you configured a 
variable in the process to be passed to the actionhandler without adding it as 
a field or setter to the actionhandler.

Ronald

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: problem with @EJB notation

2006-03-13 Thread jelda
@EJB(beanName="CurrencyServiceSessionBean")
protected ContractService contractService

should work..

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Error 404: The requested source (/fibo) is not available

2006-03-13 Thread cypher
sgv,

docroot was included in the packaging configurations. The only thing missing is 
FiboEJB-client.jar, i didnt include that because in the tutorial it says to 
skip that section all together if your using Jboss 4.0x or higher..

I am not sure what the problem is with FiboApp.ear



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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Re: JBOSS DOM4j XPATH does it work ? need assistance

2006-03-13 Thread samfra
I renamed my dom4j.jar to dom4j.jar and jaxen...jar to jaxen.jar
and put them both into jboss/lib

it works fine

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Re: ear file deployment sequence

2006-03-13 Thread samfra
YES there is a way.

Look into jboss/deploy/conf/jboss-service.xml


  | ...
  | org.jboss.deployment.DeploymentSorter
  | ...
  | 

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Jboss+Oracle

2006-03-13 Thread genman
I mean ojdbc14.jar ...

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Beginners Corner] - Re: Jboss+Oracle

2006-03-13 Thread genman

It looks like the wrong driver version for your JVM. Try odbc14.jar 

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: Some thoughts about the conversations

2006-03-13 Thread armita
We need a model of conversation to handle various modules in the application 
and also nested modules. When entering a submodule I want the user can access 
the parent modules menu ( to avoid the back button ) in the same page when he 
was working with the child module. There could be anu level of modules in the 
applicaiton, from complete seperate modules to simple CRUD object modules.
It will be very good to have this navigation model and at the same time avoid 
having lots of objects in the conversation scope.
I am suggesting this model to  handle such a navigation:
every conversational SB could have a conversation name, and a  parent 
conversation assigned to it. In case of invocation of a @Begin method, if the 
current conversation name equals the SB's conversation name it simply joins the 
conversation, if it is not the framework will start going up in the current 
conversation stack to find a conversation wich name is the SB's parent 
conversation name, then swap to that conversation and nest a new conversation 
with the SB's conversation name. If no matching conversation found it could 
redirect to ifNotBeginOutCome with throwing a 
ParentConversationNotFoundException.
There is also a special TopLevel keyword for top level modules wich will start 
a whole new conversation. And also unnamed SBs keep working  as is.


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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossCache] - Re: Refactor jbosscache to provide an interface for transpor

2006-03-13 Thread [EMAIL PROTECTED]
Hi Nick.

There hasn't been much interest in such a feature 
(http://jira.jboss.com/jira/browse/JBCACHE-311), and as such, I'm not very keen 
on increasing prio on this one.  It would be a ncie to have, but at the moment 
a lot of the internal code relies on JGroups.  The channel is one example, but 
all invoke() calls on the interceptors take in JGroups MethodCall objects.  

There are plans to move away from MethodCalls and reduce the dependency on 
JGroups - such as http://jira.jboss.com/jira/browse/JBCACHE-468[/url] and 
[url]http://jira.jboss.com/jira/browse/JBCACHE-198 - and these will have to be 
done before we can consider making JGroups an optional transport.  That said, 
even these plans are not high priority and a bext guess on some of these would 
be around Q3 this year.

I appreciate your situation and your inability to use JGroups for whatever 
reason, but given the current workload and feature list on our plate, I don't 
realistically see JBCACHE-311 happening very soon.

Cheers,
Manik



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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Container Cached Entity Beans

2006-03-13 Thread snackerOne
It looks like this may help, but it will affect all BMP entity beans:

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

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: JBoss404CR2 not generating xsi:nil values anymore

2006-03-13 Thread lafr
I encountered the same problem here, using gsoap 2.7.6e for building the client 
app and the currenct cvs scheckout for JBoss 4.0.4.CR2.
Most elements in the wsdl file are marked as nillable=true. The wsdl and the 
mapping file is generated with wscompile 1.6.
The c++ variables are not set (==NULL), so the soap mesage doesn't include the 
element.
The validation of the message in org.jboss.xb.* gives an error/excpetion that 
the element was not found in the xml fragment.
Using JBoss 4.0.4.CR1 with org.jboss.axis.* the webservice communication worked 
perfect.


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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - Can JBoss AS run as non-root user in AIX?

2006-03-13 Thread orphyorphy
I did some searches in the Forums and look at a bunch of threads in the IC&D 
Forum but I couldn't find the answer to the question.  I have no problem
running it as root but I want to do it as a non-root user.  Does anyone know?

My env:

- AIX 5.3
- JBoss 4.0.3 SP1[/img]

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - Re: jbossj2ee-src.zip does not contain insert.sql script

2006-03-13 Thread rakehell
Nevermind. I was using Update 7 instead of Update 2. BTW, you can still use 
Update 7 if you copy the example/bank/sql from Update 2 to the corresponding 
dir in your Update 7 install.

BTW, this is the shoddiest "Getting Started" documentation I have ever 
encountered. It's full of errors and omissions. 

Rakehell



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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Getting Started Documentation] - New User please Help: Applet in Webconsole not Running

2006-03-13 Thread nemo40
After installing Jboss and running http://localhost:8080/web-console/ the 
applet on the left side doesn't start with
java.lang.NoClassDefFoundError: org/jboss/util/stream/IMarshalledValue

at java.lang.ClassLoader.defineClass0(Native Method)

at java.lang.ClassLoader.defineClass(Unknown Source)

at java.security.SecureClassLoader.defineClass(Unknown Source)

at java.net.URLClassLoader.defineClass(Unknown Source)

at java.net.URLClassLoader.access$100(Unknown Source)

at java.net.URLClassLoader$1.run(Unknown Source)

at java.security.AccessController.doPrivileged(Native Method)

at java.net.URLClassLoader.findClass(Unknown Source)

at sun.applet.AppletClassLoader.findClass(Unknown Source)

at java.lang.ClassLoader.loadClass(Unknown Source)

at sun.applet.AppletClassLoader.loadClass(Unknown Source)

at java.lang.ClassLoader.loadClass(Unknown Source)

at java.lang.ClassLoader.loadClassInternal(Unknown Source)

at java.lang.Class.forName0(Native Method)

at java.lang.Class.forName(Unknown Source)

at java.io.ObjectInputStream.resolveClass(Unknown Source)

at java.io.ObjectInputStream.readNonProxyDesc(Unknown Source)

at java.io.ObjectInputStream.readClassDesc(Unknown Source)

at java.io.ObjectInputStream.readOrdinaryObject(Unknown Source)

at java.io.ObjectInputStream.readObject0(Unknown Source)

at java.io.ObjectInputStream.readObject(Unknown Source)

at org.jboss.console.remote.Util.invoke(Util.java:87)

at 
org.jboss.console.remote.AppletRemoteMBeanInvoker.invoke(AppletRemoteMBeanInvoker.java:64)

at 
org.jboss.console.navtree.ConsoleTreeModel.loadTree(ConsoleTreeModel.java:118)

at org.jboss.console.navtree.ConsoleTreeModel.(ConsoleTreeModel.java:73)

at org.jboss.console.navtree.AdminTreeBrowser.(AdminTreeBrowser.java:77)

at org.jboss.console.navtree.AppletBrowser.start(AppletBrowser.java:65)

at sun.applet.AppletPanel.run(Unknown Source)

at java.lang.Thread.run(Unknown Source)






Also there is an exception in the servers window:
21:04:50,046 INFO  [Server] JBoss (MX MicroKernel) [4.0.4RC1 (build: CVSTag=JBos
s_4_0_4_RC1 date=200602071519)] Started in 34s:296ms
21:40:50,562 ERROR [[HTTP Invocation]] Servlet.service() for servlet HTTP Invoca
tion threw exception
java.lang.IllegalStateException
at org.apache.catalina.connector.ResponseFacade.resetBuffer(ResponseFaca
de.java:285)
at org.jboss.console.remote.InvokerServlet.processRequest(InvokerServlet
.java:124)
at org.jboss.console.remote.InvokerServlet.doPost(InvokerServlet.java:14
8)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:252)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:173)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFi
lter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(Appl
icationFilterChain.java:202)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationF
ilterChain.java:173)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperV
alve.java:213)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextV
alve.java:178)
at org.jboss.web.tomcat.security.CustomPrincipalValve.invoke(CustomPrinc
ipalValve.java:54)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(Securit
yAssociationValve.java:174)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValv
e.java:74)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.j
ava:126)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.j
ava:105)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineVal
ve.java:107)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.jav
a:148)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java
:868)
at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.p
rocessConnection(Http11BaseProtocol.java:663)
at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpo
int.java:527)
at org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWor
kerThread.java:112)
at java.lang.Thread.run(Thread.java:626)
21:44:43,578 ERROR [[HTTP Invocation]] Servlet.service() for servlet HTTP Invoca
tion threw exception
java.lang.IllegalStateException
at org.apache.catalina.connector.ResponseFacade.resetBuffer(ResponseFaca
de.java:285)
at org.jboss.console.remote.InvokerServlet.pr

[JBoss-user] [EJB 3.0] - Create table with ID as Auto increment

2006-03-13 Thread jinm
Hi All,

I'm trying to create an entity bean with an ID that auto increments on MySQL.

My ID lookes like this

@Id(generate = GeneratorType.AUTO)
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}



And everything goes fine until I deploy it and it tries to create the table

create table binary_data (id integer generated by default as identity (start 
with 1), data varbinary(255)..

MySQL is not to happy about generated by default as identity (start with 1)



Any one that can see what I'm doing wrong?

Cheers
Jan









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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: what is the best IDE to develop portlets?

2006-03-13 Thread ilangocal
"masternet" wrote : what is the best IDE to develop portlets?
  | 
  | I use Eclipse, (run packaging with Jboss IDE Eclipse)

Pray, could you explain how you use Eclipse to develop portlets. I am very 
curious and interested to know. 

thanks


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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - How to request the queue one by one from receiver?

2006-03-13 Thread chwang
Hi Folks,

When I start QueueConection in the receiver, it got all messages from queue 
through MessageLsitener. 
I wonder if there is any way to control by the request, for example. The 
receiver sent a request to ask one message, after queue get the request then 
send one to the receiver.  

Thank you.

Chwang

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - Re: No @GeneratedValue in 1.5.1GA?

2006-03-13 Thread renan_polo
Well, I somehow installed JB4.0.3SP1 instead of JB4.0.4RC1, which comes with 
the latest EJB3 "version".

That resolved the problem.

Thanks,
Renan.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Security & JAAS/JBoss] - Getting rid of the j_security_check login page

2006-03-13 Thread treespace
We are using JAAS with form based login and j_security_check on our web 
application.  We want users to login from the home page rather have them be 
intercepted when attempting to access a protected resource. We cannot put the 
j_security_check form on our home page because it appears it will only work as 
a intercept-and-forward action. 

The intercept is great for bookmarking protected resources, for example, but we 
also want explicit login. 

TIA

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - prerequisites for building the Image Gallery Portlet

2006-03-13 Thread ilangocal
Hi
I would like to know what are the prerequisites for building this portlet. 
>From the Readme file I find that there is a mention of a CMS.

thanks

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How to deploy own process

2006-03-13 Thread Dieterke
Hey, I found out together with somebody else why my process wouldn't deploy.

Apparently there was still a small error in my process definition.

However, may I suggest the developers to add more and better information to the 
Error message in Eclipse.  We had to look at the running start.bat to find out 
what went wrong.  Also some better documentation about Deploying a process 
would be appreciated very much :)

Thanks to all the people that had great ideas and time considering my problem.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Microcontainer] - Re: Future Architecture?

2006-03-13 Thread Charlie Kelly
If the deployment does become available, I suspect that it will be very popular.

It might establish a new development work-flow pattern.



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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Seam] - Re: No Error messages when Session bean / Action not called

2006-03-13 Thread kryptontri
ok i got the action being called, although i have made progress i am unable to 
update an entity's relationship, looking again at the examples.


  | 20:26:19,893 INFO  [STDOUT] ***
  | 20:26:19,893 INFO  [STDOUT] Creating new profile - [EMAIL PROTECTED]
  | 20:26:19,933 ERROR [STDERR] 13-Mar-2006 20:26:19 
com.iplay.cms.manager.ProfileAction create
  | INFO: Created profile, page = ok
  | 20:26:19,933 INFO  [STDOUT] Hibernate: insert into User (password, 
profileName, themeName, singlePageDisplay,
  | MAIN_PAGE_ID, FAQ_PAGE_ID, GALLERY_PAGE_ID, RATES_PAGE_ID, singlePage, 
email) values (?, ?, ?, ?, ?, ?, ?, ?,
  | ?, ?)
  | 20:26:19,943 WARN  [JDBCExceptionReporter] SQL Error: 0, SQLState: null
  | 20:26:19,983 ERROR [JDBCExceptionReporter] failed batch
  | 20:26:19,983 ERROR [AbstractFlushingEventListener] Could not synchronize 
database state with session
  | org.hibernate.exception.GenericJDBCException: Could not execute JDBC batch 
update
  | at 
org.hibernate.exception.SQLStateConverter.handledNonSpecificException(SQLStateConverter.java:91)
  | at 
org.hibernate.exception.SQLStateConverter.convert(SQLStateConverter.java:79)
  | at 
org.hibernate.exception.JDBCExceptionHelper.convert(JDBCExceptionHelper.java:43)
  | at 
org.hibernate.jdbc.AbstractBatcher.executeBatch(AbstractBatcher.java:202)
  | at 
org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:230)
  | at 
org.hibernate.engine.ActionQueue.executeActions(ActionQueue.java:140)
  | at 
org.hibernate.event.def.AbstractFlushingEventListener.performExecutions(AbstractFlushingEventListen
  | er.java:296)
  | at 
org.hibernate.event.def.DefaultFlushEventListener.onFlush(DefaultFlushEventListener.java:27)
  | at org.hibernate.impl.SessionImpl.flush(SessionImpl.java:1009)
  | at org.hibernate.impl.SessionImpl.managedFlush(SessionImpl.java:356)
  | at 
org.hibernate.transaction.CacheSynchronization.beforeCompletion(CacheSynchronization.java:59)
  | at 
org.jboss.tm.TransactionImpl.doBeforeCompletion(TransactionImpl.java:1488)
  | at 
org.jboss.tm.TransactionImpl.beforePrepare(TransactionImpl.java:1107)
  | at org.jboss.tm.TransactionImpl.commit(TransactionImpl.java:321)
  | at org.jboss.aspects.tx.TxPolicy.endTransaction(TxPolicy.java:175)
  | at org.jboss.aspects.tx.TxPolicy.invokeInOurTx(TxPolicy.java:87)
  | at 
org.jboss.aspects.tx.TxInterceptor$Required.invoke(TxInterceptor.java:192)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:98)
  | at 
org.jboss.aspects.tx.TxPropagationInterceptor.invoke(TxPropagationInterceptor.java:76)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:98)
  | at 
org.jboss.ejb3.stateful.StatefulInstanceInterceptor.invoke(StatefulInstanceInterceptor.java:81)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:98)
  | at 
org.jboss.aspects.security.AuthenticationInterceptor.invoke(AuthenticationInterceptor.java:78)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:98)
  | at 
org.jboss.ejb3.ENCPropagationInterceptor.invoke(ENCPropagationInterceptor.java:47)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:98)
  | at 
org.jboss.ejb3.asynchronous.AsynchronousInterceptor.invoke(AsynchronousInterceptor.java:106)
  | at 
org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:98)
  | at 
org.jboss.ejb3.stateful.StatefulContainer.localInvoke(StatefulContainer.java:190)
  | at 
org.jboss.ejb3.stateful.StatefulLocalProxy.invoke(StatefulLocalProxy.java:98)
  | at $Proxy282.create(Unknown Source)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at com.sun.el.parser.AstValue.invoke(AstValue.java:130)
  | at 
com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:274)
  | at 
com.sun.facelets.el.TagMethodExpression.invoke(TagMethodExpression.java:68)
  | at 
com.sun.facelets.el.LegacyMethodBinding.invoke(LegacyMethodBinding.java:69)
  | at 
org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:63)
  | at javax.faces.component.UICommand.broadcast(UICommand.java:106)
  | at 
javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:90)
  | at 
javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:164)
  | at 
org.apache.myfaces.lifecycle.LifecycleImpl.invokeA

[JBoss-user] [JBoss Getting Started Documentation] - Re: jbossj2ee-src.zip does not contain insert.sql script

2006-03-13 Thread rakehell
Just to keep the record straight:

I work for BEA and my opinions in no way reflects the opinions of my employer. 



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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: what is the best IDE to develop portlets?

2006-03-13 Thread ilangocal
I am a little confused by the term 'portlet framework'. I am a newbie to 
portlet and I beg to be excused for my naivette.

In order to build Portlets, are we talking of a Framework (for example, Struts 
or Webwork). I associate with these Frameworks especially because i have worked 
with them in the past.

Now are we talking of some other Framework exclusively to build Portlets? Or is 
it that I can develop Portlets using Struts or Webwork as well.

Please explain. I am very grateful to the wise persons here who kindle some 
interest in me.

thanks

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Portal] - Re: what is the best IDE to develop portlets?

2006-03-13 Thread vmarco
In addition to JSF, you can also use Tapestry 4.0 to effectively build 
portlets.  This provides the same benefits as JSF, in terms of deploying a 
project both as a web application and as a portlet.

One benefit of Tapestry is its non-JSP view structure.  This can also be 
achieved with JSF by using Facelets (a project at java.net).  I also find 
Tapestry error-handling to be very precise, as well as HTML view templates that 
can be designed using most web designer tools.

Both JSF and Tapestry are viable portlet development frameworks.

Vince




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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - Trouble creating JBoss 3.2.x debug configuration under 3.2M5

2006-03-13 Thread pwilt
I get the following error when attempting to configure a JBoss 3.2.x server 
under Eclipse 3.2M5 + JBoss 1.5.1GA:  Any ideas why?

java.lang.NoClassDefFoundError: 
org/eclipse/jdt/internal/debug/ui/launcher/JavaLaunchConfigurationTab
at java.lang.ClassLoader.defineClass1(Native Method)
at java.lang.ClassLoader.defineClass(Unknown Source)
at 
org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.defineClass(DefaultClassLoader.java:158)
at 
org.eclipse.osgi.baseadaptor.loader.ClasspathManager.defineClass(ClasspathManager.java:491)
at 
org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findClassImpl(ClasspathManager.java:461)
at 
org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClassImpl(ClasspathManager.java:420)
at 
org.eclipse.osgi.baseadaptor.loader.ClasspathManager.findLocalClass(ClasspathManager.java:403)
at 
org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.findLocalClass(DefaultClassLoader.java:186)
at 
org.eclipse.osgi.framework.internal.core.BundleLoader.findLocalClass(BundleLoader.java:338)
at 
org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:390)
at 
org.eclipse.osgi.framework.internal.core.BundleLoader.findClass(BundleLoader.java:351)
at 
org.eclipse.osgi.internal.baseadaptor.DefaultClassLoader.loadClass(DefaultClassLoader.java:81)
at java.lang.ClassLoader.loadClass(Unknown Source)
at java.lang.ClassLoader.loadClassInternal(Unknown Source)
at 
org.jboss.ide.eclipse.launcher.ui.configuration.jboss.JBoss32xTabGroup.createTabs(JBoss32xTabGroup.java:44)
at 
org.eclipse.debug.internal.ui.launchConfigurations.CreateLaunchConfigurationAction.performAction(CreateLaunchConfigurationAction.java:70)
at 
org.eclipse.debug.internal.ui.launchConfigurations.AbstractLaunchConfigurationAction$1.run(AbstractLaunchConfigurationAction.java:103)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
at 
org.eclipse.debug.internal.ui.launchConfigurations.AbstractLaunchConfigurationAction.run(AbstractLaunchConfigurationAction.java:106)
at 
org.eclipse.ui.actions.BaseSelectionListenerAction.runWithEvent(BaseSelectionListenerAction.java:167)
at 
org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:530)
at 
org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:480)
at 
org.eclipse.jface.action.ActionContributionItem$6.handleEvent(ActionContributionItem.java:433)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3287)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2907)
at org.eclipse.jface.window.Window.runEventLoop(Window.java:811)
at org.eclipse.jface.window.Window.open(Window.java:789)
at 
org.eclipse.debug.internal.ui.launchConfigurations.LaunchConfigurationsDialog.open(LaunchConfigurationsDialog.java:1321)
at org.eclipse.debug.ui.DebugUITools$1.run(DebugUITools.java:375)
at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
at 
org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:379)
at 
org.eclipse.debug.ui.DebugUITools.openLaunchConfigurationDialogOnGroup(DebugUITools.java:321)
at 
org.eclipse.debug.ui.actions.OpenLaunchDialogAction.run(OpenLaunchDialogAction.java:80)
at org.eclipse.jface.action.Action.runWithEvent(Action.java:492)
at 
org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:530)
at 
org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:480)
at 
org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:392)
at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:925)
at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3287)
at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:2907)
at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1899)
at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:1863)
at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:417)
at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:143)
at org.eclipse.ui.internal.ide.IDEApplication.run(IDEApplication.java:106)
at 
org.eclipse.core.internal.runtime.PlatformActivator$1.run(PlatformActivator.java:99)
at 
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:92)
at 
org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:68)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:374)
at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:169)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
at sun.reflect.DelegatingMethodAcces

[JBoss-user] [Installation, Configuration & Deployment] - JBoss 4.0.3SP1 Upgrade and Struts html:base problem

2006-03-13 Thread erwinrm
I've upgraded our dev JBoss installation from 3.2.3 to 4.0.3SP1.  One of the 
struts application is having a problem finding the CSS file, which is located 
in the jsp directory.  It looks like the struts tag  is resolving 
differently between the 2 versions of JBoss.

On the app's web.xml, the welcome file is listed as:
  
  | jsp/logon.jsp
  |   

The file logon.jsp has  within the html's head section.  On JBoss 
3.2.3, this expands to
 https://myhost.com/AppRoot/jsp/logon.jsp";>

On 4.0.3SP1, this expands to
https://myhost.com/AppRoot/";>

Is there a way to make JBoss 4.0.3SP1 behave like ver. 3.2.3?  I'd rather not 
have the developers change their WAR file.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Re: Specifying Database Schema

2006-03-13 Thread pdog4x4
Nevermind,

As a side note, I have smacked myself and yelled: RTFM, or at least, RTFFYI.  
Anyhow, if anyone else gets stuck doing this, I've figured out that you can 
specify SQL statements to be run upon valid connection.  Therefore, modifying 
my orace-ds.xml by looking at the WIKI where it states:

anonymous wrote : 
  |  - an sql statement that is executed against each new 
connection. This can be used to set the connection schema, etc.
  | 

I've added a line to my oracle-dx.xml that looks like:


  | ALTER SESSION SET 
current_schema=DB_ANOTHERUSER
  | 

I will not say this is the most elegant way nor it is the proper way, but it 
does work for me :-D  Anyhow, maybe it will help someone down the road!

Thanks!

Joshua Preston.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: anyone know the Username and Password for accessing the

2006-03-13 Thread zoolai
Folks, thanks for the replies to this issue.
I was able to get the SSL EJB endpoint to work by storing the generated .wsdl 
file at a separate url (a regular HTTP url) and accessing it from there in 
order to create my Service object. In this way, I avoided the realm 
authentication problems.

Then I created my Call object, using the proper SSL information and injected 
the realm credentials into its HTTP header just before executing the invoke() 
method:

 call.setUsername(HTTPS_AUTH_USERID);
 call.setPassword(HTTPS_AUTH_PASSWD);

Hope this helps.

I'm also experimenting with injecting the credentials into the initial Service 
object's HTTP header (to avoid storing the .wsdl file at a separate locatioin) 
but no joy so far.







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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Persistence,JBoss/CMP, Hibernate, Database] - Specifying Database Schema

2006-03-13 Thread pdog4x4
Hey guys,

I am running JBoss 4.0.3SP1 utilizing a poorly clustered Oracle database.  I 
have run into a problem where the user that logs into the database must use a 
different database schema than the default one.  How can I specify what 
database schema to use?

By default, if I use the user: db_username to login to the database, the schema 
it uses is DB_USERNAME.  I am however obliged to use the schema DB_ANOTHERUSER 
for one specific web application.  I must however, log in as db_username to 
perform this duty.

Below is my oracle-ds.xml which works, but does not specify the database schema 
to use, which of course causes all sorts of errors because the database schema 
in use, is not the correct one.


  | 
  | 
  | 
  |   
  | OracleDS
  | jdbc:oracle:thin:@db4:1521:DB01
  | oracle.jdbc.driver.OracleDriver
  | db_username
  | db_password
  | 
  | 
  | 
org.jboss.resource.adapter.jdbc.vendor.OracleExceptionSorter
  | 
  |   
  |  Oracle8
  |   
  |   
  | 
  | 
  | 

Any ideas?

Thanks!

Joshua Preston.


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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Installation, Configuration & Deployment] - JBoss 4.0.3SP1 Upgrade and Struts html:base problem

2006-03-13 Thread erwinrm
I've upgraded our dev JBoss installation from 3.2.3 to 4.0.3SP1.  One of the 
struts application is having a problem finding the CSS file, which is located 
in the jsp directory.  It looks like the struts tag  is resolving 
differently between the 2 versions of JBoss.

On the app's web.xml, the welcome file is listed as:
  
jsp/logon.jsp
  

The file logon.jsp has  within the html's head section.  On JBoss 
3.2.3, this expands to


On 4.0.3SP1, this expands to


Is there a way to make JBoss 4.0.3SP1 behave like ver. 3.2.3?  I'd rather not 
have the developers change their WAR file.

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss jBPM] - Re: How do I retrieve Tasks for all Actors?

2006-03-13 Thread mikeodell77
Thanks for the replies.  That is exactly what I have done.  I have a page that 
displays the information I was looking for.  I just wanted to make sure I 
hadn't missed anything before I did that.

Thanks for the replies.  If I get the time to properly extend jBPM to do this I 
will certainly submit it.

again thanks...

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Fibo tutorial

2006-03-13 Thread sgv

I have fixed it - XDoclet configurations. Had an extra / in the **/*Servlet . . 

Regard,
sgv

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [EJB 3.0] - Re: Problem with jndi lookups for a local bean with interfac

2006-03-13 Thread MrHighTech
As a further precision, the lookup I am trying to do is within a stateless bean 
that is accessed remotely.

client > access bean (remote) -> DAO (local) 

Would that change anything ?

BTW, I DO see the CustomerDAO bean deployed with (local) in the JNDI bound 
beans list.

Thanks!

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - Re: Error 404: The requested source (/fibo) is not available

2006-03-13 Thread sgv
cypher,

In the "Packaging Configurations" you missed the folder Tutorial/doc-root.

That should fix it hopefully :)

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Messaging, JMS & JBossMQ] - Hoe to handle out of memory issue?

2006-03-13 Thread chwang
Hi, Folks,

I sent tons of message to queue to check max messages the queue can hold. 
Finally I got out of memory error when Queue depth acheived 500.
I wonder how to deal with this kind of issue. because I may have more than  500 
clients send the message to the queue.   

Thank you!

Chwang

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: Error with new JBossWS

2006-03-13 Thread msell
Just as an additional comment, check out my topic that seems to be related:

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

My test case is using Apache AXIS, using "WSDL2Java" to create a client stub 
from a simple webservice that accepts a string and returns that same string.

When testing portions of the Unicode set, and AXIS generates a character 
sequence starting with an ampersand, an "invalid byte sequence" error is 
returned.

As you can see by the reply to my post, it was suggested that I have to encode 
this string before sending, however, I have not seen any reference to the 
character sequence of ampersand, pound, "x", "A0",";" being invalid anywhere 
else.

Just an observation. 

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [Microcontainer] - Re: Future Architecture?

2006-03-13 Thread [EMAIL PROTECTED]
Since the ever timeframe leaves anything as a possibility, I can guarentee at 
some time this will be supportable. Whether a single class file is a meaningful 
deployment unit is a question that will set the priority of such a deployment. 
I would think a scripting framework based deployment would be more approriate 
(bsh, groovy, ...)


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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: JBossWS performance

2006-03-13 Thread msell
The anecdotal evidence I have read indicates that generally speaking 
Document/Literal has a lower overhead compared to RPC/Encoded.

Naturally, only controlled testing can provide you with your answer. 

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBossWS] - Re: anyone know the Username and Password for accessing the

2006-03-13 Thread zoolai
By the way, the realm credentials I mentioned above have nothing to do with the 
SSL keystore information - these credentials have to be defined in the EJB 
config files (in \server\xxx\conf\props\*.properties) and directly in the 
bean's xdoclet code:
e.g.  
   @ejb.security-role-ref
 role-name="JBossAdmin"
  
   @ejb.security-identity
 description="The Manager"
 run-as="administrator"

   @ejb-permission
 role-name="JBossAdmin"

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


[JBoss-user] [JBoss Eclipse IDE (users)] - Re: FiboEJB-client.jar and FiboWeb.war steps 9.2 and 9.3 in

2006-03-13 Thread sgv

I have fixed it - XDoclet configurations. Had an extra / in the **/*Servlet . . 

Regard,
sgv

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

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


---
This SF.Net email is sponsored by xPML, a groundbreaking scripting language
that extends applications into web and mobile media. Attend the live webcast
and join the prime developer group breaking into this new coding territory!
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=110944&bid=241720&dat=121642
___
JBoss-user mailing list
JBoss-user@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/jboss-user


  1   2   3   >