[jboss-user] [JBoss jBPM] - Re: Problems with deploying process with mail nodes or eleme

2007-07-11 Thread rossputin
point taken :-)
I will investigate with the latest version

thanks

Ross


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062801
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Is it possible to access the outer instance of a Seam Co

2007-07-11 Thread [EMAIL PROTECTED]
Ahyes, that's true, didn't think of that.

I dunno, tough problem to solve then. Report it in JIRA I guess.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062805
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: numbering of portlet instances in management portlet use

2007-07-11 Thread [EMAIL PROTECTED]
Solved: http://jira.jboss.com/jira/browse/JBPORTAL-1568

Thanks for the report it will be in 2.6.1

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062806
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Seam 2.0 is tightly coupled with Hibernate validator

2007-07-11 Thread thejavafreak
Thanks gavin. I think it would be best for users just to instantiate 
hibernate-validator component via components.xml

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062808
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS JBossMQ] - which version of JMS is supported by JBoss 4.2...?

2007-07-11 Thread MuhammedRafi
Hi,
   Which version of JMS is supported by JBoss 4.2, currently I am using JMS 
1.1 with JBoss 4.2 but I am getting SocketException and NamingException... 
anyone please help me in this regard...

Thank you



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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062809
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: How is done the authentication for the JBPM console ?

2007-07-11 Thread mailinator
Hi,
thanks for replying.

What do you mean by the security domain maps this app to this domain ?

Regards,

O.M.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062810
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Seam 2.0.0 B1 validateAll

2007-07-11 Thread FabBoco
Pete,

I have created a simplified test code for you.


  | ?xml version=1.0 encoding=iso-8859-15?
  | !DOCTYPE xsl:stylesheet [
  | !ENTITY nbsp   !-- NO-BREAK SPACE --
  |   ]
  | trh:html
  | xmlns=http://www.w3.org/1999/xhtml;
  | xmlns:ui=http://java.sun.com/jsf/facelets;
  | xmlns:h=http://java.sun.com/jsf/html;
  | xmlns:f=http://java.sun.com/jsf/core;
  | xmlns:s=http://jboss.com/products/seam/taglib;
  | xmlns:tr=http://myfaces.apache.org/trinidad;
  | xmlns:trh=http://myfaces.apache.org/trinidad/html;
  | xmlns:a4j=https://ajax4jsf.dev.java.net/ajax;
  | 
  | 
  | trh:head
  | meta http-equiv=Content-Type content=text/html; charset=iso-8859-15 /
  | titleAsse/title
  | 
  | link href=styles/default.css rel=stylesheet type=text/css /
  | link href=styles/trinidad.css rel=stylesheet type=text/css /
  | 
  | script language=JavaScript
  | //![CDATA[
  | //]]
  | /script
  | 
  | /trh:head
  | trh:body 
  | f:loadBundle basename=messages var=msgs /
  | tr:form id=form usesUpload=false defaultCommand=go 
  | s:validateAll
  | tr:panelPage id=panelPage
  | 
  | trh:tableLayout borderWidth=0 width=100%
  | 
  | trh:rowLayout width=100% 
  | trh:cellFormat styleClass=formFieldLabel tr:outputLabel for=nome 
 value=#{msgs.form_Asse_nome} //trh:cellFormat
  | trh:cellFormat 
  | tr:inputText id=nome value=#{asse.nome}  required=true   
 /
  | /trh:cellFormat
  | /trh:rowLayout
  | 
  | /trh:tableLayout
  | 
  | trh:tableLayout borderWidth=0 width=100%
  | trh:rowLayout width=100% 
  | trh:cellFormat halign=right width=50%
  | tr:commandButton id=go styleClass=button 
text=#{msgs.Application_buttonNew}  action=#{AsseManager.processCreate} /
  | /trh:cellFormat
  | /trh:rowLayout
  | /trh:tableLayout
  | /tr:panelPage
  | /s:validateAll
  | /tr:form
  | /trh:body
  | /trh:html
  | 



  | 
  | @Entity
  | @Name(asse)
  | @Scope(CONVERSATION)
  | @Table(name = Asse)
  | @Security(rolesAnabledToCreate = {NCCV, Amministratore}, 
rolesAnabledToEdit = {NCCV, Amministratore}, rolesAnabledToDelete = 
{Amministratore})
  | public class Asse implements Serializable
  | {
  | 
  | private static final long   serialVersionUID= 0;
  | 
  | private Longid;
  | 
  | private String  nome;
  | 
  | private ListMisuramisuras;
  | 
  | private Obiettivo   obiettivo;
  | 
  | @Length(max=2)
  | public String getNome()
  | {
  | return nome;
  | }
  | 
  | public void setNome(String nome)
  | {
  | this.nome = nome;
  | }
  | 
  | @Transient
  | public static long getSerialVersionUID()
  | {
  | return serialVersionUID;
  | }
  | 
  | public boolean equals(Object obj)
  | {
  | if (obj == null)
  | return false;
  | 
  | if (!(obj instanceof Asse))
  | return false;
  | 
  | Asse tmp = (Asse) obj;
  | 
  | if (id != null  tmp.getId() != null  id.longValue() == 
tmp.getId().longValue())
  | return true;
  | 
  | return false;
  | }
  | 
  | public void setMisuras(ListMisura misuras)
  | {
  | this.misuras = misuras;
  | }
  | 
  | public void addMisuras(Misura misuras)
  | {
  | if (this.misuras == null)
  | this.misuras = new Vector();
  | 
  | this.misuras.add(misuras);
  | }
  | 
  | public void removeMisuras(Misura misuras)
  | {
  | if (this.misuras == null)
  | return;
  | 
  | this.misuras.remove(misuras);
  | }
  | 
  | public void removeAllMisuras()
  | {
  | this.misuras = new VectorMisura();
  | }
  | 
  | public void setObiettivo(Obiettivo obiettivo)
  | {
  | this.obiettivo = obiettivo;
  | }
  | 
  | @OneToMany(targetEntity = Misura.class, cascade = {CascadeType.REFRESH, 
CascadeType.REMOVE}, fetch = FetchType.LAZY, mappedBy = asse)
  | public ListMisura getMisuras()
  | {
  | return misuras;
  | }
  | 
  | @ManyToOne(targetEntity = Obiettivo.class, cascade = 
{CascadeType.REFRESH}, fetch = FetchType.LAZY)
  | public Obiettivo getObiettivo()
  | {
  | return obiettivo;
  | }
  | 
  | @Id
  | @GeneratedValue(strategy = GenerationType.AUTO)
  | public Long getId()
  | {
  | return id;
  | }
  | 
  | public void setId(Long id)
  | {
  | this.id = id;
  | }
  | }
  | 
  | 


  | @Stateful
  | @Name(AsseManager)
  | @Scope(ScopeType.CONVERSATION)
  | @Synchronized
  | public class AsseManagerBean implements Serializable, 

[jboss-user] [JBoss Seam] - Re: jbpm configuration problem

2007-07-11 Thread thejavafreak
I've this problem too in glassfish v2 and seam 2

But I think the problem is on the glassfish and not seam.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062812
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


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

2007-07-11 Thread rajinikanth11
Have u resolved this issue, I am getting similar error message with web 
services. Please help me if you find a solution. Quick response is appreciated. 

Please send me a response to my personal ID: [EMAIL PROTECTED]

Thank you in advance



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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062813
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Hibernate validator @CreditCardNumber not working

2007-07-11 Thread milli
Hi,

I'm using seam 1.2.1 and tried it with both Jboss AS 4.0.5 and 4.2. The 
hibernate validator @CreditCardNumber is not validating the credit card number 
form input.

I did look deep in to it and found out the hibernate-annotations.jar used by 
JBoss has validator classes in it. But I do not see CreditCardNumber class in 
the jar file. I think JBoss(both 4.0.5 and 4.2) is using an old version 
hibernate-validator classes. Even other validators like @Digits etc. are not 
part of it. 

Has anyone come across this issue? How do I use the latest version of 
hibernate-validator? I tried updating the one used by Jboss but it didn't seem 
to like it. I hoped 4.2 might be using the latest one but it does not either.

I tried adding the jar in WEB-INF/lib of my application but it does not work 
either.



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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062814
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: start-state

2007-07-11 Thread [EMAIL PROTECTED]
Node-execution ActionHandlers should typically not call signal() but 
leaveNode(). The differences are minor though, if I remember correctly signal() 
only wraps leaveNode() adding the before-signal and after-signal event 
handling. But normally these events should not be handled on the node level.

Thanks,
Koen

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062815
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: start-state

2007-07-11 Thread [EMAIL PROTECTED]
As for skipping the start-state. You can start the process in any node from 
jPDL 3.2 on. Just do not model a start-state and add  initial=true as an 
attribute on the node (state, mail-node, process-state, etc) that you want to 
be the first node in the process-definition.

Regards,
Koen

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062816
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Problem with multiple end-states

2007-07-11 Thread [EMAIL PROTECTED]
Multiple end-states should work fine. Is there any proof of the contrary?

Regards,
Koen

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062817
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: Upgrade to last nightly build - HOW

2007-07-11 Thread baz
anonymous wrote : Can i just unzip last nightly over my current installation
I do not know the answer.
Look in the wiki 
(http://wiki.jboss.org/wiki/Wiki.jsp?page=InstallingJBossToolsNightlyBuilds) 
There is a description of how to install JBoss Tools as an extension location.
If you do that, you are able to easily switch between nightly builds.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062818
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Problems with deploying process with mail nodes or eleme

2007-07-11 Thread [EMAIL PROTECTED]
Ross,

The xml will not be validated against the schema if you manually remove the 
reference that has been generated by the visual designer (by editing the source 
tab). But anyway, mail is only supported since 3.2 AFAIR, so you might have to 
switch to the latest release anyway if you want mail.

Regards,
Koen

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062819
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Still can not access JBossWS1.2.1 user guide.

2007-07-11 Thread maping1208
Both url don't available: 
http://jbws.dyndns.org/mediawiki/index.php/JAX-WS_User_Guide 
http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_Endpoint_Configuration 
. 
 


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062820
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: problem to start a taskinstance

2007-07-11 Thread [EMAIL PROTECTED]
Please list your version array and provide some more info on what you are 
trying to achieve. It looks like your client program runs against a jbpm 
database from another version.

Regards,
Koen

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062821
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - SQLGrammarException after deploy

2007-07-11 Thread uygarmetu
Hi guys,

I am developing a small enterprise application using EJB3.0 and JSF, and I plan 
to use JBoss as my AS. I use Oracle's JDeveloper as my IDE at the moment and my 
DB is Oracle DB. When deploying my application with JDev's embedded OC4J AS, 
everything works fine, there is not any problem.

I tried to pack and deploy my application to JBoss but faced with problems. 
First, I got the $ProxyXX ClassCastException when looking up remote stateless 
EJBs from JNDI. I solved this problem by changing CallByValue sections to 
true in the jboss-service.xml and ear-deployer.xml configurations.

Now I do not get that ClassCastExceptionError but this time I get an SQL Error 
from Oracle which I suppose stems from JBoss's naming the remote entity beans 
such as ENTITYBEAN0_.PROPERTY. In my case the exception is like this one:

10:04:32,096 WARN  [JDBCExceptionReporter] SQL Error: 904, SQLState: 42000
10:04:32,096 ERROR [JDBCExceptionReporter] ORA-00904: MYENTITY0_.TYPE: 
invalid identifier

10:04:32,189 ERROR [STDERR] javax.ejb.EJBException: 
javax.persistence.PersistenceException: 
org.hibernate.exception.SQLGrammarException: could not execute query... 

I do not know why there is a 0 (zero) at the end of the entity name MYENTITY, 
and I suspect this exception is related to that.

I would be very pleased if you can give your opinions on this problem...

Thank you.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062822
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Problems with Dashboard on 2.6 GA

2007-07-11 Thread angelo.dangelo
Hi all,
when I try to access to Dashboard as user I retrieve the error:
HTTP Status 403- Access to the specified resource () has been forbidden.
Whereas, if I try to access as admin then the Management Portlet is shown.
I found this problem with JBoss Portal 2.6 GA both on AS 4.0.5 and 4.2.0.

Regards
Angelo

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062824
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: JBoss AS - shutdown.sh -S fails

2007-07-11 Thread [EMAIL PROTECTED]
You could store usernames/passwords on LDAP or a DB (or a file). By default no 
passwords are enabled if you use the .zip distro, but it seems you are using 
the installer.

PS
Milao Ellinika, alla oli i douleia ginetai sta Agglika.



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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062825
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Problem with multiple end-states

2007-07-11 Thread fewagewasd
Is there any way to tell jbpm to wait in the state and execute the action when 
I call signal()?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062826
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - SQLGrammarException after deploy

2007-07-11 Thread uygarmetu
Hi guys,

I am developing a small enterprise application using EJB3.0 and JSF, and I plan 
to use JBoss as my AS. I use Oracle's JDeveloper as my IDE at the moment and my 
DB is Oracle DB. When deploying my application with JDev's embedded OC4J AS, 
everything works fine, there is not any problem.

I tried to pack and deploy my application to JBoss but faced with problems. 
First, I got the $ProxyXX ClassCastException when looking up remote stateless 
EJBs from JNDI. I solved this problem by changing CallByValue sections to 
true in the jboss-service.xml and ear-deployer.xml configurations.

Now I do not get that ClassCastExceptionError but this time I get an SQL Error 
from Oracle which I suppose stems from JBoss's naming the remote entity beans 
such as ENTITYBEAN0_.PROPERTY. In my case the exception is like this one:

10:04:32,096 WARN  [JDBCExceptionReporter] SQL Error: 904, SQLState: 42000
10:04:32,096 ERROR [JDBCExceptionReporter] ORA-00904: MYENTITY0_.TYPE: 
invalid identifier

10:04:32,189 ERROR [STDERR] javax.ejb.EJBException: 
javax.persistence.PersistenceException: 
org.hibernate.exception.SQLGrammarException: could not execute query... 

I do not know why there is a 0 (zero) at the end of the entity name MYENTITY, 
and I suspect this exception is related to that.

I would be very pleased if you can give your opinions on this problem...

Thank you.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062828
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB/JBoss] - Re: method-permission being ignored

2007-07-11 Thread [EMAIL PROTECTED]
You most probably need to define a security domain in the jboss specific 
descriptor.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062830
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Out of Memory Leaks

2007-07-11 Thread alexeinov
holtak wrote : we also had PermGen problems
  | 
  | Can confirm that JRocket helps with PermGen problems.
  | 
  | You could try SUN JVM 1.6.0 update1 - it suspiciously works here untill now 
but maybe the server wasn`t just stressed enough and there seams to be no 
significant change in the SUN changelog regarding this issue...
  | 
  | 

We also tried JRocket and are using it now in development and testing 
environment. It really solves the PermGen issue because there is no separate 
Permanent Generation of a garbage collectable memory in JRockit JVM, but it 
does not solve memory leaks that exist in somewhere in container or application 
code. Memory still leaks, the allocated heap grows, and after all, OutOfMemory 
condition still occures, though the system survives many more hot deploy cycles.

The ultimate solution to the problem would be an application and an application 
container that do not leak memory. The problem is there, not in the Java VM, or 
the memory configuration parameters. The system is leaking - it will crash 
sooner or later no matter what JVM or how much memory is configured.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062831
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Curious Bug in 2.6 GA - Adding window properties

2007-07-11 Thread nystaa
Using 2.6 GA bundled.


When trying to add a window property of some window some where with the key 
name starting with letters a-s (upper or lower) you get an exception:
 Cause: javax.portlet.PortletException: Expected submitted value of type 
Boolean for Component : {Component-Path : [Class: 
javax.faces.component.UIViewRoot,ViewId: 
/WEB-INF/jsf/editProperties.xhtml][Class: 
javax.faces.component.html.HtmlForm,Id: 
_id55jbpns_2fadmin_2fdefault_2fAdminPortletWindowsnpbj][Class: 
javax.faces.component.html.HtmlSelectBooleanCheckbox,Id: 
_id111jbpns_2fadmin_2fdefault_2fAdminPortletWindowsnpbj]}
  | Message: Expected submitted value of type Boolean for Component : 
{Component-Path : [Class: javax.faces.component.UIViewRoot,ViewId: 
/WEB-INF/jsf/editProperties.xhtml][Class: 
javax.faces.component.html.HtmlForm,Id: 
_id55jbpns_2fadmin_2fdefault_2fAdminPortletWindowsnpbj][Class: 
javax.faces.component.html.HtmlSelectBooleanCheckbox,Id: 
_id111jbpns_2fadmin_2fdefault_2fAdminPortletWindowsnpbj]}
  | StackTrace:
  | 
  | javax.portlet.PortletException: Expected submitted value of type Boolean 
for Component : {Component-Path : [Class: 
javax.faces.component.UIViewRoot,ViewId: 
/WEB-INF/jsf/editProperties.xhtml][Class: 
javax.faces.component.html.HtmlForm,Id: 
_id55jbpns_2fadmin_2fdefault_2fAdminPortletWindowsnpbj][Class: 
javax.faces.component.html.HtmlSelectBooleanCheckbox,Id: 
_id111jbpns_2fadmin_2fdefault_2fAdminPortletWindowsnpbj]}
  | at 
org.apache.myfaces.portlet.MyFacesGenericPortlet.handleExceptionFromLifecycle(MyFacesGenericPortlet.java:253)
  | at 
org.apache.myfaces.portlet.MyFacesGenericPortlet.facesRender(MyFacesGenericPortlet.java:399)
  | at 
org.apache.myfaces.portlet.MyFacesGenericPortlet.doView(MyFacesGenericPortlet.java:265)
  | at javax.portlet.GenericPortlet.doDispatch(GenericPortlet.java:133)
  | at javax.portlet.GenericPortlet.render(GenericPortlet.java:306)
  | at 
org.jboss.portal.faces.portlet.JSFMetaBridgePortlet.render(JSFMetaBridgePortlet.java:125)
  | ..

This does not happen with properties that the key starts with letters t-z.

looks like it is somehow linked to the alphabetical position of the added key 
in relation to already existing window properties Partial refresh and Region 
order. The key names that produced the exception are located before these 
properties in the list and the ones that did not generate the exception are 
located after these native properties.

Can someone confirm this?
Maybe I`m hallucinating...

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062833
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossCache] - Transactions

2007-07-11 Thread aditsu
Let's say I have a machine running a jboss cache (C) and another one running an 
application (A). A conencts to C through some kind of custom API. How can I 
make it so that A can call multiple API methods within a single transaction in 
C?
E.g. this could be a scenario:
- A starts a transaction
- A calls a method that modifies a cache node in C
- A calls a method that modifies another node in C
- A tries to commit the transaction
- the first node can be modified successfully, but the second one throws an 
exception
- C rolls back the whole transaction because the second node change failed

If I only rely on transactions in C, then either the first method has to start 
a transaction, or A needs to call another API method first that starts a 
transaction. How would the second method know it is part of the same 
transaction, and how can A then commit the same transaction? Are transactions 
associated with threads in machine C? Does that mean the whole sequence of API 
calls has to be executed on the same dedicated thread in C? Or is it possible 
to send the transaction reference across the API? Will there be conflicts if 
multiple threads in A are doing this at the same time?

Or, is it possible to use a distributed transaction manager to solve this 
problem? How would that work, and how would the code in A and the code in C 
know they're part of the same transaction?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062834
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: Problems with Dashboard on 2.6 GA

2007-07-11 Thread nystaa
Using 2.6 GA

Nope .. don`t have that.. neither as admin nor as a simple user.

Make sure that if you are using an external DS that a freshly created DB was 
created by 2.6 GA , meaning don`t use the DB from CR1/2/3 . maybe that will 
help.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062837
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB/JBoss] - Re: CORBA DSI server under JBoss

2007-07-11 Thread lzap
I have studied JBoss-IIOP but it seems I cant use this JMX module for my 
purpose. I need to develop a CORBA-SOAP bridge for JBoss using DSI/DII 
interfaces and I am not sure how to do the CORBA side. Should it be an JMX 
module or other component?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062835
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: How is done the authentication for the JBPM console ?

2007-07-11 Thread kukeltje
java:/jaas/jbpm is defined in login-config.xml. The  security-domain in 
jboss-web.xml tells jboss to use this specific config (so the query defined in 
login-config.xml is used)


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062838
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: start-state

2007-07-11 Thread kukeltje
Koen, thanks. I knew there was something like this, but could not find it A 
jira issue for adding this to the docs  should be filed I think,.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062840
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: PermGen Space reaching Maximum Limit

2007-07-11 Thread alexeinov
I experimented hot deploying jboss-seam-booking demo to the standard 
installation of jems-installer-1.2.0.GA (JBoss 4.0.5)
I tried Seam 1.1.6.GA and 1.2.1.GA; in both cases I observed growing allocated 
PermGen memory, a growing number of loaded classes, and finaly OutOfMemory.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062841
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB/JBoss] - Re: CORBA DSI server under JBoss

2007-07-11 Thread [EMAIL PROTECTED]
You have mix things up. If you want to create a corba server object using 
whatever technique (e.g. DSI), the jboss/ejbs/invokers have nothing to do with 
it.

You can just reuse the ORB (i.e. jacorb) that already exists in jboss to create 
your corba server object, and wrap it with a JMX mbean so it becomes 
manageable/loadable in the jboss runtime.

For example, try to find out how the corba naming service is implemented in 
jboss. (essentially another corba servant).

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062842
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: Curious Bug in 2.6 GA - Adding window properties

2007-07-11 Thread [EMAIL PROTECTED]
I can reproduce it.

Do you mind filing a Jira ? http://jira.jboss.com so that we don't forget to 
look at fixing it.

Thanks for the report !

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062843
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: Problem with multiple end-states

2007-07-11 Thread kukeltje
estaub wrote : kukeltje wrote : multiple end states are not supported 
afaik
  | 
  | Ronald,
  | Are you sure?  Why?
  | 

I thought I remembered someone doing this before and not getting it to work, 
but since Koen says it should work, it might (my AFAIK was added because I was 
not completely sure)

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062844
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Re: task instance in start state

2007-07-11 Thread kukeltje
it is indeed not in the docs and maybe it should be possible to have a swimlane 
at a start task.  IMO it should be possible. So please file a jira issue for 
this.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062845
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB/JBoss] - Re: CORBA DSI server under JBoss

2007-07-11 Thread lzap
Yes this is very good idea, I would like to reuse JBoss ORB. Ok I will look at 
the corba naming service but I still have a questions:

a) should I develop JMX module or EJB stateless session bean with only one 
instance allowed? the second option is giving portability to other EJB 
servers...

b) is it good idea to built on top of JBoss ORB? I have read something about 
discontiuting the support for JBoss ORB in version 5.0 (because of avalon 
framework dependencies)

c) can I use JBoss ORB IR (interface registry) too? it would be great to expose 
my dynamic classes (via DSI) in the IR.

Thanks for help.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062846
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB/JBoss] - Minimal configuration with IIOP

2007-07-11 Thread lzap
Hello,

I would like to have the minimal server configuration with JBoss IIOP JMX 
module. It depends on Naming service according to the deployment descriptor but 
I am getting NoClassDefFoundException: javax.ejb.spi.HandleDelegate.

What JMX modules should I install to have the minimal configuration for playing 
with CORBA?

Thanks

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062847
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: java.lang.out of memory error permgen space

2007-07-11 Thread alexeinov
saeediqbal1 wrote : Is it safe to use JRockit with Seam?Thanks.
What is safe? 

I'm using JRockit with Seam, it works. It cannot solve memory leak problems 
that exist in your application, container or libs though.

JRockit survives longer if a ClassLoader is leaking because it holds all 
allocated objects in the same heap. The dreaded PermGen error does not occure 
in it since there's no separate PermGen. 

Sun's JVM has two allocation areas: heap and non-heap, PermGen is a section of 
non-heap area. When a ClassLoader leaks, PermGen runs out of megabytes quickly, 
and here you are: Out Of Memory PermGen error.

When a ClassLoader leaks in JRockit, it leaks in a main heap allocation area, 
which is much bigger, hence it takes longer time to exhaust it.

It's not safe to run leaking code, and JRockit does not make it safer, though 
you get more time between crashes.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062850
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: Curious Bug in 2.6 GA - Adding window properties

2007-07-11 Thread nystaa
DIDO ;)

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062853
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: CMS portlet customization HELP

2007-07-11 Thread shtainberg
There is a hsqldb-ds.xml file in server/default/depoloy ...



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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062854
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re:

2007-07-11 Thread palin
chris05atm wrote : 22:03:04,797 WARN  [PolicyMetaDataBuilder] Cannot get 
service '{xmlapi_1.0}FindImplService' from the given wsdl definitions!  
Eventual policies attached to this service won't be considered.
  |   | 
  | 
This is actually a warning; it says that the policy deployer was not able to 
get '{xmlapi_1.0}FindImplService' from the given wsdl definition, i.e. most 
probably the provided wsdl file doesn't match with the service metadata 
obtained from the annotated classes. For this reason eventual policies (cfr. 
WS-PolicyAttachment specs) won't be considered. But I think you don't care 
this, at least at the moment, since you have no attached policies.

chris05atm wrote : Considering a possible bug? in the raw soap generation I 
moved onto using a client created from wsconsume. Same error so this is maybe a 
WSDL issue... but the WSDL looks correct and the files are generated from the 
WSDL so now I'm really confused. A possible deployment problem?
  | 

Do you mean the annotated server classes were generated starting from 
wsconsume, i.e. using a top-down development strategy 
http://jbws.dyndns.org/mediawiki/index.php?title=JAX-WS_User_Guide#Top-Down_.28Using_wsconsume.29
 ? If not, I would try this...
Bye
Alessio Soldano
http://www.javalinux.it

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062855
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Class type issue

2007-07-11 Thread lcoetzee
I have made some progress with your suggestion.. (e.g. implemented a facelets 
function). Unfortunately the getEntityClass returns the base class and not the 
inherited class.. e.g


  |  Executing deproxy on csir.structure.par.Topic_$$_javassist_226 
--csir.structure.par.Topic

In this case the deproxy should have shown 
  |  Executing deproxy on csir.structure.par.Topic_$$_javassist_226 
--csir.structure.par.CMSTopic

Any idea of how to get the inherited type out of the proxied class ?

Thanks

L


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062856
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Messaging] - which version of JMS is supported by JBoss 4.2...?

2007-07-11 Thread MuhammedRafi
Hi 

Anyone please tell me the compatible version of JMS for JBoss AS 4.2, I have 
used JMS 1.1 and encountered some exceptions so please suggest me in this 
regard..

thank you.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062857
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB/JBoss] - Re: CORBA DSI server under JBoss

2007-07-11 Thread lzap
I mean enterprise application client instead of EJB stateless session bean. EJB 
bean cannot include corba services because is created by the client...

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062858
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Class type issue

2007-07-11 Thread [EMAIL PROTECTED]
There is a method call in Hibernate, somewhere, perhaps a static method on the 
class named Hibernate.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062860
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - [bpel] Information about a deployed process

2007-07-11 Thread rainstar79
Hi,
I want to get more information about my process running on the bpel engine, 
e.g. displaying details on a website about the execution of a certain BPEL 
process.
Is this possible via the jbpm API?
I created the following Code Snippet, but the jbpmContext instance is always 
null:

  | JbpmContext jbpmContext = 
JbpmConfiguration.getInstance().getCurrentJbpmContext();
  | 
  |   System.out.println(jbpmContext =  + jbpmContext);
  |   if (jbpmContext != null) {
  |   try {
  |   Iterator taskInstancesIterator = 
jbpmContext.getTaskList().iterator();
  |   while (taskInstancesIterator.hasNext()) {
  | writer.print(br/br/br/);
  | TaskInstance taskInstance = 
(TaskInstance)taskInstancesIterator.next();
  | writer.print(taskInstance.getName() =  + 
taskInstance.getName());
  | writer.print(taskInstance.getDescription() =  + 
taskInstance.getDescription());
  | writer.print(taskInstance.getPriority() =  + 
taskInstance.getPriority());
  | writer.print(taskInstance.getCreate() =  + 
taskInstance.getCreate());
  | writer.print(taskInstance.getDueDate() =  + 
taskInstance.getDueDate());
  | writer.print(taskInstance.getEnd() =  + 
taskInstance.getEnd());
  | writer.print(taskInstance.getId() =  + 
taskInstance.getId());
  | writer.print(taskInstance.getStart() =  + 
taskInstance.getStart());
  | writer.print(taskInstance.hasEnded() =  + 
taskInstance.hasEnded());
  | writer.print(taskInstance.isBlocking() =  + 
taskInstance.isBlocking());
  | writer.print(taskInstance.isCancelled() =  + 
taskInstance.isCancelled());
  | writer.print(taskInstance.isLast() =  + 
taskInstance.isLast());
  | writer.print(taskInstance.isOpen() =  + 
taskInstance.isOpen());
  | writer.print(taskInstance.isSignalling() =  + 
taskInstance.isSignalling());
  | writer.print(taskInstance.getComments() =  + 
taskInstance.getComments());
  |   }  
  |   } catch (Exception e) {
  | e.printStackTrace();
  |   } finally {
  | jbpmContext.close();
  |   }
  |   } else;

Thanks for your help.
Cheers Rainer

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062861
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Seam 2.0 beta ResourceBundle

2007-07-11 Thread Kruno
Could someone please explain:
What is the difference between: org.jboss.seam.core.ResourceBundle and
org.jboss.seam.international.ResourceBundle


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062862
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Problems with seam and icefaces (sending emails)

2007-07-11 Thread kosl
You ned to install all the applications that are usually deployed with the mail 
example. Furthermore you should configure your smtp server in 
WEB-INF/components.xml file. Hope this helps.

Cheers,

k.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062863
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Jboss ws - Access data from a table

2007-07-11 Thread leo5abi
Hello,

I am building a WS using JBOSS WS to access data from a Oracle Table.
I created an Entity bean to acces the Table and then use a stateless session 
bean to control the EB and also use it as a webservice Endpoint. 

When i try to fetch all records from table (approx 1500 records) using 
Webservice it take 2 minutes to display data. I have Verified with the server 
log that time between Incoming Soap Message and Outgoing Soap Message is not  
20 sec .Does that mean that it is Soap Response(HTTP) that take so much time? 
Any tips to reduce this.

Also how can i minimize the Debug in server log for soap message. Now it 
display the entire soap message Response in the server.log

/Amit

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062864
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: CMS portlet customization HELP

2007-07-11 Thread [EMAIL PROTECTED]
It seems that you played and destroyed stuff from JBoss AS, your errors 
mentionned here don't seem related. I would suggest that you reinstall JBoss AS.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062865
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Class type issue

2007-07-11 Thread lcoetzee
Hmm... trying:


  | Class? deproxied = org.hibernate.Hibernate.getClass(clazz);

results in :

Executing deproxy on csir.structure.par.Topic_$$_javassist_21 --java.lang.Class

which is not quite what I had in mind ;-). I need to get the subclass of Topic.

L



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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062868
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - JBossTools with Eclipse v3.3.0

2007-07-11 Thread rpalmer
Hi,

I have tried with several of the JBoss Tools nightly builds and as yet have not 
been able to get any options for adding a JBoss server so I can start and stop 
JBoss within eclipse and help with debugging etc.

I know that the main feature I need for this is the JBoss AS Tools part but I 
can't seem to get the options to appear anywhere or I am just simply looking in 
the wrong place.

I have installed the nightly release;

JBossTools-200707101658-nightly-ALL-win32.zip

and also have the following installed and see no errors within the Eclipse 
Manage Configuration screen;

DTP SDK 1.5.0.200706222
EMF-SDO SDK 2.3.0.v2007062000
GEF SDK 3.3.0.v20070620
PDT SDK 1.0.0.V20070611-2 (Used for PHP debugging)
Subclipse 1.2.3 (SVN Source control)
WTP (WST) SDK 2.0.0.v200706041905
XSD SDK 2.3.0v200706262000
Zend Debugger Feature 5.2.6.v20070603

Running eclipse with -debug doesn't show anything to realy help, here is the 
output;

Start VM: -Xms40m
-Xmx256m
-XX:MaxPermSize=256m
-Djava.class.path=C:\Eclipse 
3.3\eclipse\plugins\org.eclipse.equinox.launcher_1.0.0.v20070606.jar
-os win32
-ws win32
-arch x86
-showsplash C:\Eclipse 
3.3\eclipse\\plugins\org.eclipse.platform_3.3.0.v20070613\splash.bmp
-launcher C:\Eclipse 3.3\eclipse\eclipse.exe
-name Eclipse
--launcher.library C:\Eclipse 
3.3\eclipse\plugins\org.eclipse.equinox.launcher.win32.win32.x86_1.0.0.v20070523\eclipse_1017a.dll
-startup C:\Eclipse 
3.3\eclipse\plugins\org.eclipse.equinox.launcher_1.0.0.v20070606.jar
-debug
-vm C:\Program Files\Java\jre1.5.0_11\bin\client\jvm.dll
-vmargs
-Xms40m
-Xmx256m
-XX:MaxPermSize=256m
-Djava.class.path=C:\Eclipse 
3.3\eclipse\plugins\org.eclipse.equinox.launcher_1.0.0.v20070606.jar
Install location:
file:/c:/Eclipse 3.3/eclipse/
Configuration file:
file:/c:/Eclipse 3.3/eclipse/configuration/config.ini loaded
Configuration location:
file:/c:/Eclipse 3.3/eclipse/configuration/
Framework located:
file:/c:/Eclipse 3.3/eclipse/plugins/org.eclipse.osgi_3.3.0.v20070530.jar
Framework classpath:
file:/c:/Eclipse 3.3/eclipse/plugins/org.eclipse.osgi_3.3.0.v20070530.jar
Splash location:
C:\Eclipse 
3.3\eclipse\\plugins\org.eclipse.platform_3.3.0.v20070613\splash.bmp
Debug options:
file:/C:/Eclipse 3.3/eclipse/.options not found
Time to load bundles: 16
Starting application: 953
Application Started: 7125

I hope someone may be able to help point me in the right direction.

Many thanks

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062869
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Problems with seam and icefaces (sending emails)

2007-07-11 Thread [EMAIL PROTECTED]
The application kosl put up at that address is a test case to show me where the 
problem is.  Yes, it doesn't work.  It's not supposed to work!

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062870
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Problems with seam and icefaces (sending emails)

2007-07-11 Thread shasho

The only thing that I changed in the application I downloaded from  
www.mimuw.edu.pl/~barter/exampleear.zip  is the definition of 
mail:mail-session... in WEB-INF/components.xml.

Now, I suspect that I need also to change some configuration in the Jboss 
itself. The seam references mention something about updating the file 
deploy/mail-service.xml (section 16.3.1.1) of the reference. But it didn't work 
for me

Any help?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062867
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: seam v2.0beta takes ages to start on WebSphere v6.1.0.9

2007-07-11 Thread [EMAIL PROTECTED]
Oops.  Ok, I think this is because we started parsing ejb-jar.xml in Seam2, 
which, if it has a dtd in it, we will attempt to resolve.  I've pinged Norman.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062873
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: CMS portlet customization HELP

2007-07-11 Thread shtainberg
I allready tried it:
rm -Rf JBOSS_INSTALL_DIR
unzip the binaries and than deploy for the cms portlet i played with.
Am i missing something ? Any debug idias i can use ?

10x!

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062874
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Problems with seam and icefaces (sending emails)

2007-07-11 Thread shasho


We have different problems . He got java.lang.NullPointerException...
I got No Factories configured for this Application..  

Looking at previous posts in this forum I suspect that my problem is Jboss 
configuration problem 

His example is taken from the seam examples. The only different is deploying it 
with IceFaces 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062875
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Seam 2 B1 - Ending a process instance fails.

2007-07-11 Thread [EMAIL PROTECTED]
It's a build from about 1 week before 3.2.1.GA was released I think (3.2.1.GA 
wasn't released in time for our BETA).  Seam 2.0.0.CR1 should have 3.2.1.GA in.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062876
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Client side validation - how to update error messages?

2007-07-11 Thread [EMAIL PROTECTED]
Not with Seam.  Perhaps with Ajax4jsf - ask on the ajax4jsf forum :)

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062878
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: drag and drop persistance

2007-07-11 Thread cpage
ok, the news:

the bundle version works perfectly with HSQL but i have the same problems with 
an Oracle DB.
(driver: oracle-10.2-classes14.jar)

i look into the table JBP_OBJECT_NODE, and some informations are missing:
i don't have any line about dashboard :

dashboard:myUser . everything is missing.

so, i can't access to the dashboard.
when i click on the link dashboard, i am redirect to the default or admin page.

any idea ?




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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062879
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: CMS portlet customization HELP

2007-07-11 Thread [EMAIL PROTECTED]
do you restart JBoss AS after deploying the cms portlet ? i don't think it 
hot-redeploys too well.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062880
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB/JBoss] - Re: CORBA DSI server under JBoss

2007-07-11 Thread lzap
Oh it seems the JMX module is the only way to create services under JBoss. 
Sorry for my strange posts...

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062882
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: Problems with Dashboard on 2.6 GA

2007-07-11 Thread cpage
are you using an Oracle DB ?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062883
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss/Spring Integration] - Re: jboss-spring.xml beans location

2007-07-11 Thread loumaus
hi alesj .. 

if i post you a properly logfile ... 
and provide you some excerpts of the code .. 

would you be able to help me solving the problem .. 

fact for me is:

1. my spring package gets properly deployed during deployment.. 
   implementing the ApplicationContextAware interface in my service target 
class allows me to see all implemented beans, which are six.

2. in the spring context, the two target beans are properly bound together
Autowiring by type from bean name 'catalogService' via property 'catalogDao' 
to bean named 'catalogDao'

So .. the deployment on the jboss 4.0.5 is working perfectly, no problems no 
error messages

3. i call the stateless session bean. 
3.1 the private catalogService object is properly injected by the correct 
implementation of of this service which is located in my jboss-spring.xml file. 

3.2 the catalog service is called  which works fine as well. 

3.3 my target method calls the setApplicationContext again in order to display 
all bound beans. This time I receive an empty result list which means that no 
beans are bound.  

It looks to me as if the stateless using the @Spring is able to inject a single 
class / implementation grabbed out of the spring context, but is not able to 
get the defined and deployed complete context .

I could investigate more by now but wanted to have your opinion on this first 
of all. 

main question is .. 
are you guys sure that the while injecting a stateless bean the complete 
deployed spring context is grabbed and used ??

thanks for your help



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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062885
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: drag and drop persistance

2007-07-11 Thread [EMAIL PROTECTED]
Oracle driver, what a surprise.

One day they will learn to write a proper jdbc driver and we will all be happy. 

We are all quite busy with other issues, do you have some time to look deeper 
into that problem ? That would help us a lot.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062886
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Seam 2.0.0.BETA1 Ajax4JSF 1.1.1 problem (bug?)

2007-07-11 Thread [EMAIL PROTECTED]
p2auljr - please try against CVS. msystems - thanks for the test case.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062889
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Security JAAS/JBoss] - How declare user type inside ejb-jar.xml !!!!

2007-07-11 Thread changemylife
Hi all!
  I use jboss-4.0.5.GA, EJB 3.0. I have a problem with declare permissions in 
ejb-jar.xml file:
  I have a BeanA, and it has method 
   public void print(myObject tmp);
  So, inside my ejb-jar.xml, how I declare print method ?
   method-permission id=NewLabTestOrder 
  |role-namePhysician/role-name
  |method
  |ejb-nameBeanA/ejb-name
  | method-nameprint/method-name
  | method-params
  | method-param ???/method-param
  |  /method-params
  |/method
  |  /method-permission

Please guide to me !

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062890
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: drag and drop persistance

2007-07-11 Thread cpage
i'm on it.
i will try with the last driver and i'm looking to the generated SQL request.



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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062892
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Scopes problem

2007-07-11 Thread amitev
I tried to set the scope of the backing bean (SFSB) to PAGE, than i got the 
exception :)

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062893
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: drag and drop persistance

2007-07-11 Thread [EMAIL PROTECTED]
Great ! Thanks a lot !

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062897
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Deploying EJB3.0 Project in jboss-5.0.0.Beta2

2007-07-11 Thread AnuSree
Hai all,

I'm using jboss-5.0.0.Beta2 and Eclipse 3.3.0 .

I'm using Add or Remove project feature (Right clicking server view) of Eclipse 
for deployment.

while deploying EJB3.0 project the Eclipse console shows the project is 
deployed correctly without any error.

But when running the project the changes are not reflecting.the server runs 
with the Old version of the project.jar file which deployed before server 
startup or with the first deployment after server startup.

A server restart is needed every time to making changes take effect.


I'm also tried with Ant build script and manually copying jar to deploy 
folder,but have the same problem..

Is there any other way to Deploy the project correctly from eclipse. .


Can someone help me? pleaseee .


thanks
Anu 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062900
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Re: Datatype mapping to Oracle datatypes

2007-07-11 Thread Darquerus
Is there a general way to define my own datatype mappings?

I cannot set on 250 attributes the annotations for the datatype and the length 
per hand. ^^

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062901
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Scopes problem

2007-07-11 Thread [EMAIL PROTECTED]
As I said

[EMAIL PROTECTED] wrote : I don't believe the EJB3 spec allows you to serialize 
SFSBs out of the container. You could just make it a regular Seam JavaBean 
component.

So, to clarify.  No, you can't put an SFSB in PAGE scope.  Yes, you can put an 
entity into PAGE scope.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062904
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss/Spring Integration] - Re: jboss-spring.xml beans location

2007-07-11 Thread loumaus
My fault .. sorry .. 

forgot to add this magic line:
@Interceptors(SpringLifecycleInterceptor.class)

greetings and thanks for your patience

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062905
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: Problems with Dashboard on 2.6 GA

2007-07-11 Thread angelo.dangelo
yes, I'm using Oracle Database 10g Express Edition Release 10.2.0.1.0

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062906
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: CMS portlet customization HELP

2007-07-11 Thread shtainberg
Yep, i restarted.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062907
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss/Spring Integration] - Re: jboss-spring.xml beans location

2007-07-11 Thread alesj
:-)

Initially I've used AOP interceptor defined in ejb3-interceptors-aop.xml (or 
some similar name).

So I didn't have to worry about setting this EJB3 style interceptor.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062908
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS JBossMQ] - Re: which version of JMS is supported by JBoss 4.2...?

2007-07-11 Thread [EMAIL PROTECTED]
Maybe (just maybe) this question has been asked and answered before?
e.g. http://www.jboss.com/index.html?module=bbop=viewtopict=109321

Or maybe you are the only person in the world that has had that problem?
Unlikely if it is a real problem.

Anyway, I've started a whole new FAQ for 4.2.x on the WIKI
http://wiki.jboss.org/wiki/Wiki.jsp?page=JBoss42FAQ
and this is the first entry. :-)

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062910
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss AOP] - Re: jboss aop

2007-07-11 Thread [EMAIL PROTECTED]
The best thing to do is probably to take a look at how the AspectXMLLoader 
translates the xml into the different internal representations
http://anonsvn.jboss.org/repos/jbossas/projects/aop/trunk/aop/src/main/org/jboss/aop/AspectXmlLoader.java

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062912
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Nested conversations - potential bug in Manager.beginNes

2007-07-11 Thread enzhao
There are a lot of nested conversations in my application and I've been 
struggling with the conversation states for days (especially when a son 
conversation begins exactly inside a method which is annotated as @End in the 
mother conversation). This fix can help me enormously, I'm really looking 
forward to the fix!!


Regards,
Ellen 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062911
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - org.jboss.seam.web.isUserInRole issue

2007-07-11 Thread lcoetzee
Hi,

with this mornings update of Seam (Wed Jul 11 07:56:18 SAST 2007) it seems as 
if the isUserInRole functionality has stopped working.

I see the following in the log file:

  | 2007-07-11 12:28:26,092 INFO  [org.jboss.seam.init.Initialization] two 
components with same name, higher precedence wins: 
org.jboss.seam.web.isUserInRole
  | 

Dont know if that is the problem.

I use the standard JAAS functionality (not the Seam security stuff... a 
migration task for somewhere in the future).

Any ideas ?

Thanks

L


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062914
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Persistence Exception

2007-07-11 Thread uygarmetu
Hi guys,

I am developing a small enterprise application using EJB3.0 and JSF, and I plan 
to use JBoss as my AS. I use Oracle's JDeveloper as my IDE at the moment and my 
DB is Oracle DB. When deploying my application with JDev's embedded OC4J AS, 
everything works fine, there is not any problem.

I tried to pack and deploy my application to JBoss but faced with problems. 
First, I got the $ProxyXX ClassCastException when looking up remote stateless 
EJBs from JNDI. I solved this problem by changing CallByValue sections to 
true in the jboss-service.xml and ear-deployer.xml configurations.

Now I do not get that ClassCastExceptionError but this time I get an SQL Error 
from Oracle which I suppose stems from JBoss's naming the remote entity beans 
such as ENTITYBEAN0_.PROPERTY. In my case the exception is like this one:

10:04:32,096 WARN  [JDBCExceptionReporter] SQL Error: 904, SQLState: 42000
10:04:32,096 ERROR [JDBCExceptionReporter] ORA-00904: MYENTITY0_.TYPE: 
invalid identifier

10:04:32,189 ERROR [STDERR] javax.ejb.EJBException: 
javax.persistence.PersistenceException: 
org.hibernate.exception.SQLGrammarException: could not execute query... 

I do not know why there is a 0 (zero) at the end of the entity name MYENTITY, 
and I suspect this exception is related to that.

More interesting thing is that the queries are valid and executed properly by 
embedded OC4J server, but JBoss throws this exception...

I would be very pleased if you can give your opinions on this problem...

Thank you.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062915
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: EntityHome usage recommended?

2007-07-11 Thread denis-karpov
What ever you do, you will need some functionality in your application that is 
already in EntityHome. At least, I suggest you to examine sources of it and 
catch the ideas and approaches . Then you can try to reuse it.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062917
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [EJB 3.0] - Re: Persistence Exception

2007-07-11 Thread uygarmetu
Sorry guys,

I discovered that it is not related to JBoss, but it is related to the version 
of my database tables.

I updated my database and the problem disappeared.

Thanks.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062918
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Installation, Configuration DEPLOYMENT] - Re: SQLGrammarException after deploy

2007-07-11 Thread uygarmetu
Sorry guys,

I discovered that it is not related to JBoss, but it is related to the version 
of my database tables.

I updated my database and the problem disappeared.

Thanks.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062919
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Beginners Corner] - Re: SQLGrammarException after deploy

2007-07-11 Thread uygarmetu
Sorry guys,

I discovered that it is not related to JBoss, but it is related to the version 
of my database tables.

I updated my database and the problem disappeared.

Thanks.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062920
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: org.jboss.seam.web.isUserInRole issue

2007-07-11 Thread lcoetzee
Hmmmseems the names have changed.

Changing:
#{org$jboss$seam$web$isUserInRole['ServiceTopicManager']}
into 
#{isUserInRole['ServiceTopicManager']}

Solves the problem.

L


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062921
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Scopes problem

2007-07-11 Thread amitev
So i have to outject #{project} i page scope like @Out(scope=PAGE) ?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062923
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: Scopes problem

2007-07-11 Thread amitev
BTW i suggest something similar to be putted in a sample project

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062924
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: how to skip login.jsp when using ldap

2007-07-11 Thread bvogt
for portal 2.4 we needed the same...

One solution could be modifying: core/src/resources/portal-server-war/login.jsp

like:

%
  |   final String userIDHeaderAttribute = userID;
  |   String userIDHeaderValue = request.getHeader(userIDHeaderAttribute);
  |   
  |   if ((userIDHeaderValue != null)  (userIDHeaderValue.length()  0))
  |   {
  | %  
  | body OnLoad=document.loginform.submit();
  |BLogging in.../B
  |form method=post action=%= response.encodeURL(j_security_check) 
% name=loginform id=loginForm target=_top
  |   input type=hidden name=j_username value=%= userIDHeaderValue 
%/
  |   input type=hidden name=j_password value=/
  |/form
  | /body
  | %
  |   }
  |   else
  |   {
  | 

and rebuild the portal.sar afterwards

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062922
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Javassist user questions] - modify startApp in midlet

2007-07-11 Thread dastner
hi,
i am trying to rename the original startApp of a midlet and create a new 
startApp method. i get this error when i copy the signature of the original 
startApp method using CtNewMethod.copy ie cannot find 
javax.microedition.midlet.MIDlet. it would be nice if you could help me out 
with this. thanks 

ali.


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062929
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Portal] - Re: CMS portlet customization HELP

2007-07-11 Thread [EMAIL PROTECTED]
Post your full stack trace.

But you really just redeploy portal-core.sar ? Try without doing modification 
first maybe.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062930
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Tools (users)] - Re: EJB3 functionality

2007-07-11 Thread kkoster
Yes, there is if you are creating a new project. However, since JBoss Tools is 
targeted at Eclipse 3.3 and the older JBoss IDE plugin doesn't seem to like 
Eclipse 3.3  the move the Eclipse 3.3 necessitates an import of projects from 
Eclipse 3.2. The import facility does seem to offer any conversion of the old 
EJB3 project to the new JBoss Tools project type. So, it seems the only way to 
get a pre-existing JBossIDE EJB3 project into JBoss Tools is to reconstruct it 
from scratch. 

Or am I missing something.

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062931
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [Messaging, JMS JBossMQ] - Re: Connection not authorized to addMessages to destination

2007-07-11 Thread [EMAIL PROTECTED]
Do you have any intention of reading the documentation to understand how this 
works?

Let me not explain it by asking you some questions?

Which roles is the MDB running under?
Is it the roles of the default user since you don't specify a user/password 
(unauthenticated)?
What is the unauthenticated user?
Is it 'guest?
What roles does guest have?
Does any of those roles have create authority on the topic?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062934
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: selectOneMenu and selectItems problem

2007-07-11 Thread mttu
[EMAIL PROTECTED] wrote : Any output from h:messages?


Hi, 
message from h:messages is:

value is not valid

but why ?

 the Converter class:


  | @Name(CompanyConverter)
  | @Converter
  | public class CompanyConverter implements javax.faces.convert.Converter, 
Serializable {
  | 
  | @Logger
  | private Log log;
  | 
  | @In(required = false)
  | ListCompany companies;
  | 
  | /*
  |  * @see 
javax.faces.convert.Converter#getAsObject(javax.faces.context.FacesContext,
  |  *  javax.faces.component.UIComponent, java.lang.String)
  |  */
  | public Object getAsObject(FacesContext arg0, UIComponent arg1, String 
string) throws ConverterException {
  | if (string == null || string.length() == 0) {
  | return null;
  | }
  | 
  | long id = Long.valueOf(string).longValue();
  | log.info([getAsObject] string -  + string);
  | log.info([getAsObject] id -  + id);
  | log.info([getAsObject] companies -  + companies);
  | if (companies != null) {
  | for (Company referenceData : companies) {
  | if (referenceData.getId() == id) {
  | log.info([getAsObject] returning -  
+ referenceData);
  | return referenceData;
  | }
  | }
  | }
  | log.info([getAsObject] returning - null );
  | return null;
  | }
  | 
  | /*
  |  * @see 
javax.faces.convert.Converter#getAsString(javax.faces.context.FacesContext,
  |  *  javax.faces.component.UIComponent, java.lang.Object)
  |  */
  | public String getAsString(FacesContext arg0, UIComponent arg1, Object 
obj) throws ConverterException {
  | log.info([getAsString] obj -  + obj);
  | if (obj == null) {
  | return null;
  | }
  | Company company = (Company) obj;
  | log.info([getAsString] company -  + company);
  | return String.valueOf(company.getId());
  | }
  | 
  | }
  | 

Both methods return not null values.

Any idea ?

Thanks, 
Mttu


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062936
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossCache] - Re: Transactions

2007-07-11 Thread [EMAIL PROTECTED]
Using a distributed TM may work and is worth trying out, as I'd imagine this is 
the correct approach, provided C is configured with a 
TransactionManagerLookup that knows how to get a handle on the distributed TM.

A simpler approach may be not to use a custom API to communicate between A and 
C at all, but instead do do something like this:

Let B be another cache instance, which runs in the same JVM as A.  A always 
talks to B, never directly to C.  So this way transactional scope is maintained 
regardless of which TM you use.

Now B can be tuned with an aggressive eviction policy so it does not maintain 
much state at all in memory so it doesn't impact the machine very much.  B is 
also configured with a TcpCacheLoader pointing at C.  C runs with a 
TcpCacheServer, which acts as a backing cache to B.  So all the cache state is 
really held in C, but B acts as the API front end for interacting with the 
cache.

  



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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062937
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss Seam] - Re: seam v2.0beta takes ages to start on WebSphere v6.1.0.9

2007-07-11 Thread titou09
Michael, the app is packaged in the classic ear/war way, if the proxy is 
correctly configured, it works.
However, as Pete stated it, this parsing stuff is new with seam2 and I don't 
think this is aceptable that, on startup, the application makes hundreds of 
call on internet to validate all the ejb-jar.xml files it finds (present on the 
classpath?). On production, our servers are even not allowed to do that!
I'll wait for the status on this. If you think this is a WAS problem, just tell 
me with the relevant information. As you know Michael I have an acces to IBM to 
open PMRs if needed. 
Thx for your help and analysis and also for that great product


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062938
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossWS] - Re: Generate WSDL (From JBoss Eclipse IDE or Command line)

2007-07-11 Thread rudyfell
i have the same problem running wstools from the eclipse ide in linux. I am 
therefore using the comand line which is working well. 

About the error you receive when using the command line

  | Exception in thread main java.lang.NoClassDefFoundError: 
javax/jws/soap/SOAPBinding$ParameterStyle
  | at 
org.jboss.ws.tools.helpers.ToolsHelper.handleJavaToWSDLGeneration(ToolsHelper.java:105)
  | at org.jboss.ws.tools.WSTools.process(WSTools.java:133)
  | at org.jboss.ws.tools.WSTools.generate(WSTools.java:69)
  | at org.jboss.ws.tools.WSTools.generate(WSTools.java:119)
  | at org.jboss.ws.tools.WSTools.main(WSTools.java:58)
  | 

i think its because you have not added jboss-wsclient.jar to build path since 
it contains the javax.jws.soap package. Therefore adding this to your project 
should make it work. It can be found in the 
com.eviware.soapui.jbosside.wstools_0.4.1/lib which is under eclipse/plugins. 

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062943
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBoss jBPM] - Newbie question...

2007-07-11 Thread graman
Is there any opportunity to get TaskInstance by Token?


  | Token token = ...
  | final Collection taskInstances = 
token.getProcessInstance().getTaskMgmtInstance().getUnfinishedTasks(token);
  | for (Object taskInstance : taskInstances) {
  | if (((TaskInstance) 
taskInstance).getTask().getTaskNode().getName().equals(token.getNode().getName()))
 {
  |   return (TaskInstance)taskInstance;
  | }
  |   }

Am I right? Are there any limitations with such aproach?

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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062945
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JBossCache] - Re: Exception occured during transaction commit - JBoss tree

2007-07-11 Thread [EMAIL PROTECTED]
Basically an exception is caught when attempting to prepare the transaction, 
and before I can log the exception WL's TM throws an exception first since I 
call setRollbackOnly() on the transaction before I throw the exception.

What seems to happen though is calling setRollbackOnly() generates it's own 
exception.

What version of WL are you using?


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

Reply to the post : 
http://www.jboss.com/index.html?module=bbop=postingmode=replyp=4062946
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


  1   2   3   4   >