[jboss-user] [JBoss Portal] - showing portlet in seam

2007-05-23 Thread rahulJava
hi all
  there is one portal example provided with seam framework. but that is not 
working when we run it. its telling that seam-portal/home.jsp is not found. 
what should be the problem. kindly help me out if u have any information or if 
u have already run it.

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

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


[jboss-user] [Clustering/JBoss] - Re: Accessing singleton MBean from a cluster node

2007-05-23 Thread saxon747
Yes, that code part is uncommented in my config and I prefer this secured 
version of course, but I think it was uncommented by defalut. (I used the 
installer version of 4.0.5 with 'ejb3-clustered' settings) 

Anyway, thanks for the help!

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

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


[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - How to map collection of entity ids

2007-05-23 Thread jamestang
Let's say Factory.java and Product.java are entity classes.
There is a one-to-many unidirectional relationship from Factory to Product.

  | @Entity
  | public class Factory implements Serializable {
  | @Id
  | private Long id;
  | 
  | // This is a collection of Product ids.  How to map this???
  | private ListLong productIds;
  | ..
  | }
  | 
  | @Entity
  | public class Product implements Serializable {
  | 
  | @Id
  | private Long id;
  | ..
  | }
  | 

My question is: how to write the mapping metadata for Factory.productIds?
(I know List Long  can't be persisted. But how can JPA solve this simple 
case?)

TIA.

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

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


[jboss-user] [JBoss Seam] - Re: Seam and Web-Services Problem

2007-05-23 Thread fbenvegna
IMPORTANT: my code is OK!

The problem is deployment: if exploded error occurs but as EAR file it's all OK!

Please JBoss Team to investigate about this strange behaviour.


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

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


[jboss-user] [Remoting] - Re: Need help debugging JBoss Remoting

2007-05-23 Thread sergeypk
Hi Ron,

actually, this exception only occurs near the point where the test suite hangs, 
so it might be useful, don't take it out just yet :)

Sergey

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

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


[jboss-user] [Remoting] - Re: Need help debugging JBoss Remoting

2007-05-23 Thread [EMAIL PROTECTED]
I'm not that efficient. :-)

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

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


[jboss-user] [JBoss Portal] - whate time the portal 2.6 CR3 can be download

2007-05-23 Thread kevnlin
whate time the portal 2.6 CR3 can be download 

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

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


[jboss-user] [JBoss jBPM] - customize jbpm-starters-kit-3.1.2 interface

2007-05-23 Thread fhpepe
Thanks for your prompt reply, 

But it doesnt work because  it's probably linked to the file: TaskBean.java.  
When i do the changes in both  Task.jsp and  TaskBean.java and redeploy the 
app.war ive got an error message.

Following lines are taken from the Taskbean.java:


public String saveAndClose() {
// save
save();

// close the task instance
String transitionButton = 
JsfHelper.getParameter(taskform:transitionButton);
log.debug(Submitted button: + transitionButton);
TaskInstance taskInstance = 
taskMgmtSession.loadTaskInstance(taskInstanceId);
if (Save and Close Task.equals(transitionButton)) {
//if (Hello.equals(transitionButton)) {
  taskInstance.end();
} else {
  taskInstance.end(transitionButton);
}

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

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


[jboss-user] [Clustering/JBoss] - Re: Cannot lookup EJBs in clustered environment

2007-05-23 Thread skymic
Thanks for the tip Brian.
I noticed now that there is no ejb3.deployer directory at all in my 
server/deploy. This must be the reason why EJB3s are not recognized and 
deployed. We will now reinstall JBoss with the EJB3-profile.

Thanks again for your quick replies.

Greetings from Switzerland

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

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


[jboss-user] [JBoss Seam] - Re: Generation of jasper reports in seam

2007-05-23 Thread d.solasa
Hi Daniel
 Thanks for ur response,i will try the same in my code .


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

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


[jboss-user] [JBoss Seam] - Re: Exploded Deployment woes on Windows

2007-05-23 Thread damianharvey
It can't unexplode the deployed project while the server is running due to 
various locks on files. It deletes what it can but leaves the locked files 
behind. Then when it tries to re-explode it all fails.

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

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


[jboss-user] [EJB 3.0] - Re: Passing array of enum to SELECT * WHERE clause

2007-05-23 Thread jefec
I'm using this solution:

public void get() {
List types = new ArrayList();
types.add(PersonType.DIRECTOR);
types.add(PersonType.STUDENT);
Query query = entityManager.createQuery(FROM Person p WHERE p.type IN 
(:types))
.setParameter(types, types);  
query.getResultList();
}

, where Person type is enum defined as :

public static enum PersonType {
STUDENT,
DIRECTOR,
...
}

What version of EJB do you have?

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

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


[jboss-user] [JBoss jBPM] - Re: customize jbpm-starters-kit-3.1.2 interface

2007-05-23 Thread mputz
app.war, error message

I don't know what you are referring to. Also, I don't see a problem when you 
change the values in both files and deploy the changed artifacts correctly.

Generally, I'd suggest to move on to jBPM 3.2, which has a much more 
sophisticated web app included.

Regards, Martin

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

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


[jboss-user] [JNDI/Naming/Network] - Re: Exception javax.naming.NameNotFoundException

2007-05-23 Thread ganesh.pol
sorry for giving late reply 
following is printed when i run the jar command

C:\devTools\jboss-4.0.1\jboss-4.0.1\server\default\deployjar -tf mfsc.ear
META-INF/
META-INF/MANIFEST.MF
META-INF/application.xml
mfsc.jar
mfsc.war

C:\devTools\jboss-4.0.1\jboss-4.0.1\server\default\deploy

_

contents of my ejb-jar.xml is same as which i posted earlier



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

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


[jboss-user] [JCA/JBoss] - Connection Pooling Issue ?

2007-05-23 Thread jsbhangra
Hi All ..

I am using Jboss Level connection pooling in my application ...
my oracle-ds.xml reads as :

 min-pool-size10/min-pool-size
  | max-pool-size500/max-pool-size
  | max-idle-timeout0/max-idle-timeout
  | blocking-timeout-millis3/blocking-timeout-millis
  | idle-timeout-minutes15/idle-timeout-minutes

 I am connecting with oracle 10g express database .

Now when i send 10 request @ 0.1 seconds  i.e.  100 request per second  to 
my exception  

after some requests  following exception occurs  :


  | [CachedConnectionManager] Closing a connection for you.  Please close them 
yourself: [EMAIL PROTECTED]
  | java.lang.Throwable: STACKTRACE
  | at 
org.jboss.resource.connectionmanager.CachedConnectionManager.registerConnection(CachedConnectionManager.java:290)
  | at 
org.jboss.resource.connectionmanager.BaseConnectionManager2.allocateConnection(BaseConnectionManager2.java:417)
  | at 
org.jboss.resource.connectionmanager.BaseConnectionManager2$ConnectionManagerProxy.allocateConnection(BaseConnectionManager2.java:842)
  | at 
org.jboss.resource.adapter.jdbc.WrapperDataSource.getConnection(WrapperDataSource.java:88)

Help me out ..
 how to handle this ..
do i need some other pooling mechanism  ?

Regards ,
Jasdeep
 ??   , ???   ??? ??? |  '??? ? ?? ???  ?? ?? 
?? |


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

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


[jboss-user] [JBoss jBPM] - Re: new instance

2007-05-23 Thread mputz
You are welcome, no problem! 

And enjoy working with jBPM ;-)

Regards, Martin

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

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


[jboss-user] [JBoss Portal] - Re: pages in dashboard

2007-05-23 Thread eagleIT
Thank you. But in my dashboard, I can't drag and drop the portlet I have 
created. Internet explorer throw this error :


  | Line : 1090
  | Char : 3
  | Error : 'Prototype.BrowserFeatures.XPath' is null or is not an object.
  | Code : 0
  | URL : http://localhost:8080/portal/auth/dashboard
  | 

I think it is the cause of the dysfunctionof the dashboard. Do you know how to 
repair this error ?

Regards.

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

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


[jboss-user] [JBoss jBPM] - Re: Seam portal

2007-05-23 Thread mputz
Wrong forum. And is not working is not very useful information either.

I'd suggest you do the following:

1. read http://wiki.jboss.org/wiki/Wiki.jsp?page=SeamPortlet
2. follow the instructions in the seam/portal example readme (note there: use 
the JEMS installer to install JBoss!)
3. if you are still having problems, you can consult the portal forum

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

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


[jboss-user] [JBoss Seam] - Re: How to update the DataModel object?

2007-05-23 Thread tangdazhu
i debug the memory and note that in ajax requests , the hibernate session is 
the same .my configuration about hibernate session in component.xml is:

core:managed-hibernate-session name=session auto-create=true
session-factory-jndi-name=java:/HibernateSessionFactory /


and in the hibernate.cfg.xml i have added the properties according the seam 
manual:
true
after_statement
org.hibernate.transaction.JBossTransactionManagerLookup
org.hibernate.transaction.JTATransactionFactory



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

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


[jboss-user] [JBoss Seam] - How to update the DataModel object?

2007-05-23 Thread tangdazhu
I am  using seam 1.2.0 and integrate it with Ajax4Jsf in the project.

My question is when i modified calculation from 1 to 2 in the page , i need to 
modify the paramters list (Annotated by DataModel) by ajax request. 
my codes are as follows:

@DataModel
private List runParameters;

@Begin(join = true)
@Factory(runParameters)
public void findRunParameters() throws ClassNotFoundException {

some codes to get the runParameters list through hibernate3
}

the action will be called by ajax is:

public void changeDropdownForCalculation(ActionEvent event) throws Exception {
..
findRunParameters();

}

now you can see that i am using findRunParameters()  to modify the list 
directly , but but i got the exception as follows:

Caused by: org.hibernate.HibernateException: identifier of an instance of 
com.ogentech.cpi.dataobjects.calculation.Calculation was altered from 1 to 2

Can someone help me?

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

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


[jboss-user] jboss-4.2.0 Trace level logging doesn't work

2007-05-23 Thread Arjen Smedes
Hi All,

Although the release notes for jboss-4.2.0 are promising in that Trace level 
logging is supported, I can't get it to work. My webapp doesn't show anything 
in trace level nor does jboss itself (when I change a level to TRACE). All of 
these messages are shown in DEBUG level.

I have even tried overwriting all log4j.jars and commons-logging.jars with 
1.2.14 and 1.1 versions, but even that doesn't work.

Am I missing something ?

Any help is appreciated.

Kind Regards,
Arjen Smedes
___
jboss-user mailing list
jboss-user@lists.jboss.org
https://lists.jboss.org/mailman/listinfo/jboss-user


[jboss-user] [JCA/JBoss] - Re: Connection Pooling Issue ?

2007-05-23 Thread vickyk
You application is not closing the connections so JBOSS JCA does it for you .
Look at this anonymous wrote : 
http://wiki.jboss.org/wiki/Wiki.jsp?page=WhatDoesTheMessageDoYourOwnHousekeepingMean

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

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


[jboss-user] [JBoss Seam] - Re: Exploded Deployment woes on Windows

2007-05-23 Thread purplehaze
I have the same problem

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

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


[jboss-user] [JBoss Portal] - Re: pages in dashboard

2007-05-23 Thread [EMAIL PROTECTED]
Which version of IE are you using ? And Are you using JBoss Portal 2.6 CR 2 ?

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

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


[jboss-user] [JBossCache] - Re: Failed to start pojo cache with JDK 1.6

2007-05-23 Thread ctof
Hi

Any idea ?
Nobody is using JBoss with jdk 1.6 ?

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

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


[jboss-user] [JBoss Portal] - Re: pages in dashboard

2007-05-23 Thread eagleIT
I use the 6.0 version of internet explorer and the 2.6 CR2 version of jboss 
portal ...

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

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


[jboss-user] [JBoss Seam] - Re: ASync calls stays in JBoss queue after restart

2007-05-23 Thread piotr.walczyszyn
I found some info here: 
http://wiki.jboss.org/wiki/Wiki.jsp?page=ChangeTheDatabase

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

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


[jboss-user] [JBoss Seam] - Re: Dte Pciker not interested in my formatter

2007-05-23 Thread hispeedsurfer
Hi have exactly the same problem and already put resource servlet to web.xml

If I pick 1st June it result in 06/01/2007 instead of 01/06/2007


  | s:decorate id=dateDecorator template=edit.xhtml
  | h:inputText value=#{specialrelease.valideToDate} id=validToDate 
required=true
  | s:convertDateTime pattern=dd/MM//
  | a:support event=onblur reRender=dateDecorator/
  | /h:inputText
  | s:selectDate for=validToDate dateFormat=dd/MM/
  | h:graphicImage url=img/dtpick.gif 
style=margin-left:5px;cursor:pointer/h:graphicImage
  | /s:selectDate
  | s:message/
  | /s:decorate
  | 

Use JBoss Seam 1.2.1
jboss-seam-ui.jar is placed in WEB-INF/lib folder

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

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


[jboss-user] [JBoss Seam] - Form, back button

2007-05-23 Thread kooudy
I have wizard, which runs in conversation. User goes through pages and fill 
additional values. Problem occur when user press BACK button a goes to previous 
page then change some value and then press submit. Values in corresponding form 
don't change according to html inputs. In form stays values from first step.

Plot:

anonymous wrote : 
  | HTML page 1
  |   - user fill 'Hello'
  |   - submit
  | 
  | HTML page 2
  |   - browser back
  | 
  | HTML page 1
  |   - change input to 'Good bye'
  |   - submit
  | 
  | HTML page 2
  |  - in form stays first input 'Hello'
  | 

What I am doing wrong?
Please help

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

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


[jboss-user] [JBossCache] - Re: Failed to start pojo cache with JDK 1.6

2007-05-23 Thread [EMAIL PROTECTED]
Not as far as we know, so far.

This is something we will investigate though.

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

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


[jboss-user] [Persistence, JBoss/CMP, Hibernate, Database] - JBOSS with TopLink

2007-05-23 Thread NiketShah
HI,

I am planning to use JBOSS in our one of the Project, In Our Project
Technology Stack we have identify Toplink for the Persistence UNIT,

Can any one confirm me How Good Toplink is Compatible with the JBOSS ?

Is there any Known issue regarding the JBOSS and Toplink Configuration ?


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

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


[jboss-user] [JBoss Seam] - Seam CVS: should jBPM work? (jbpm.function.mapper not define

2007-05-23 Thread avbentem
I've noticed that since last Friday, CVS holds a patched version of 
jbpm-1.3.4.jar, which supports setting the function mapper. This patch is 
invoked from seam.core.Jbpm#startup().

Trying to use the Todo List or DVD Store examples from CVS, I get 
org.jbpm.configuration.ConfigurationException with message:
  | name 'jbpm.function.mapper' is not defined in the configuration
when a workflow is to be started. 

I wonder if this is just work in progress, or maybe I messed up something?

In JBSEAM-842 and JBSEAM-1130  it is also noted that a new (patched) version of 
jBPM 3.2 will be needed when upgrading Seam jBPM support.

Thanks,
Arjan.

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

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


[jboss-user] [JBoss Seam] - Re: Generation of jasper reports in seam

2007-05-23 Thread d.solasa
Hi Daniel..
iTried to implement ur code but I am getting the exception as 
12:18:41,966 INFO [JasperReporter] 
Exceptionnet.sf.jasperreports.engine.JRException: 
net.sf.jasperreports.engine.JRRuntimeException: net.sf.jasperreports
ngine.JRException: Class 
net.sf.jasperreports.engine.query.JRJdbcQueryExecuterFactory should be 
compatible with net.sf.jasperreports.engine.query.JRQue
ExecuterFactory even when i tried to compile my report .so even i am unable to 
get the print object.
my code snippet is:
 InputStream input = 
this.getClass().getClassLoader().getResourceAsStream(reportName);
JasperDesign design = JRXmlLoader.load(input);
JasperReport report = JasperCompileManager.compileReport(design);
InitialContext initialContext = new InitialContext();
DataSource ds = (DataSource) initialContext.lookup(java:/claims);
conn = ds.getConnection();
JasperPrint print = JasperFillManager.fillReport(report, parameters, conn);
String fileName = D:/downloads/ireport/ + showType;
OutputStream output = new FileOutputStream(new File(fileName));
JasperExportManager.exportReportToPdfStream(print, output); 

plz help me

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

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


[jboss-user] [JBoss Seam] - Re: bug with s:fileUpload on IE6 (fine with FF or IE7)

2007-05-23 Thread zdaler
I found a page in the seamspace example called register2 that uses the 
s:fileUpload and I get the same behaviour than with my example ... meaning the 
upload does not happen in IE6 (ok with FF or IE7)

anyone on this problem ?

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

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


[jboss-user] [EJB 3.0] - Re: is there any replacement for SecurityProxy with ejb3

2007-05-23 Thread wolfc
You can use EJB 3 interceptors. (EJB3-Core Chapter 12)

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

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


[jboss-user] [JBoss Seam] - Re: Seam CVS: should jBPM work? (jbpm.function.mapper not de

2007-05-23 Thread avbentem
In fact, I get the same error for the Numberguess example, which uses jPDL 
pageflows.

Arjan.

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

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


[jboss-user] [Security JAAS/JBoss] - Re: invoker/JNDIFactory and SSO (Custom) (HTTP Tunneling to

2007-05-23 Thread jimbrady
Just to clarify, I am using JBOSS/TOMCAT 4.0.3

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

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


[jboss-user] [JBoss jBPM] - Re: how to save processinstance

2007-05-23 Thread [EMAIL PROTECTED]
Creating a jbpmContext is a lightweight operation, basically it is a wrapper 
for a Hibernate transaction.   ? I was confused before . now I see.

persistence object ? I know it is a good idea, I mean the web application 
close the context after the processinstance.close(); so the whole workflow 
instance will close, but not to commit the data after a certain node.

however, there is a problem: after one thread of instance process has ended, 
the other clients will lose the jbpmContext after the client end the context. 
The root cause is that the jbpmContext is existed in a static class.
So I changed the code from static class to a constructor one, which instance a 
new one every time when the web application thread requested. then more 
problems came because every instance of it contains a separate jbpmContext, 
thus a separate jbpmSession, thus a separate Persistence Object(PO).  The 
result turned out that different clients get different result. If one changed 
something, the other swinlane can't see any thing changed. if one want to 
getSession.flush(), he will find that tables were locked by the other 
jbpmContext.

Do jBPM only permit one jbpmContext in a web application ?

If you're thinking that you want to keep the context open across multiple user 
interactions, as Ronald said, that's generally bad web-app practice - it scales 
badly. ?? ?jbpm doesn't support in the scenario of multiple 
web-application-user interactions? 

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

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


[jboss-user] [JBoss Seam] - s:fileUpload trows error???

2007-05-23 Thread mladen.babic
Hi,

I put fileUpload on page and when  i show page it trows :

..
12:23:24,963 ERROR [STDERR] May 23, 2007 12:23:24 PM 
org.apache.myfaces.trinidadinternal.renderkit.RenderKitBase getRenderer
WARNING: Renderer 'javax.faces.Text' not found for component family 
'org.jboss.seam.ui.FileUpload'


What's wrong  with that

Best regards,
mb

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

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


[jboss-user] [JBoss jBPM] - Re: xml export

2007-05-23 Thread kukeltje
yes

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

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


[jboss-user] [JBoss Seam] - Re: Generation of jasper reports in seam

2007-05-23 Thread jazir1979
Sorry, I can't be much help with that, I've never seen anything like it.  I'm 
running my query in my own code and using a custom data source, so I've never 
dealt with these executer factory classes..  This seems to be a pure Jasper 
question, not really about using Jasper with Seam, so you may have more luck 
asking elsewhere.

One thing that you could try is compiling the report first using the jrc ant 
target instead of compiling it when you use it in your app.  You really should 
be doing that anyway.

good luck

d.solasa wrote : Hi Daniel..
  | iTried to implement ur code but I am getting the exception as 
  | 12:18:41,966 INFO [JasperReporter] 
Exceptionnet.sf.jasperreports.engine.JRException: 
net.sf.jasperreports.engine.JRRuntimeException: net.sf.jasperreports
  | ngine.JRException: Class 
net.sf.jasperreports.engine.query.JRJdbcQueryExecuterFactory should be 
compatible with net.sf.jasperreports.engine.query.JRQue
  | ExecuterFactory even when i tried to compile my report .so even i am 
unable to get the print object.
  | my code snippet is:
  |  InputStream input = 
this.getClass().getClassLoader().getResourceAsStream(reportName);
  | JasperDesign design = JRXmlLoader.load(input);
  | JasperReport report = JasperCompileManager.compileReport(design);
  | InitialContext initialContext = new InitialContext();
  | DataSource ds = (DataSource) initialContext.lookup(java:/claims);
  | conn = ds.getConnection();
  | JasperPrint print = JasperFillManager.fillReport(report, parameters, conn);
  | String fileName = D:/downloads/ireport/ + showType;
  | OutputStream output = new FileOutputStream(new File(fileName));
  | JasperExportManager.exportReportToPdfStream(print, output); 
  | 
  | plz help me

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

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


[jboss-user] [JBoss jBPM] - Re: Task Precondition - Data Existence

2007-05-23 Thread kukeltje
No, not out of the box. But since the datamodel is 'open' you can write your 
own hibernate queries for this.

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

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


[jboss-user] [JBoss jBPM] - Re: how to save processinstance

2007-05-23 Thread kukeltje
The context should not be shared!!! Open it and close it per webrequest as you 
mention further on. What do you mean by different PO's for different clients?  
Do they all work on the same processinstance at the same time? Or do you have 
multiple tasks parallel tasks for different actors? In that case the 
taskvariables are created at the moment the task is created with the values of 
processvariables of that moment. Changes in those are not reflected in the 
already created tasks.



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

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


[jboss-user] [JBossWS] - Jboss and web service client problems.

2007-05-23 Thread ollka
Hi!

I hope, this is rigth place to ask my question.

I'm trying to create hello world web service.

I use jboss 4.0.5.GA, jbossws1.2.1GA
I found this article and follow it step by step, but i could not run web 
service client not once.

My web service deployed successfully, but running client got an error.

I read somewhere, that jboss and jax-ws doesnot work with jdk1.6, so i change 
it to jdk1.5
i run jboss with jdk1.5 and compile all source files with it.
but when i'm trying to deploy service, i have error:
14:16:58,706 ERROR [MainDeployer] Could not create deployment: 
file:/home/ollka/jboss-4.0.5.GA/server/default/deploy/SecondWS.war
  | java.lang.UnsupportedClassVersionError: Bad version number in .class file
  | at java.lang.ClassLoader.defineClass1(Native Method)
  | at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
  | at 
java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
  | at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
  | at java.net.URLClassLoader.access$100(URLClassLoader.java:56)
  | at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
  | at java.security.AccessController.doPrivileged(Native Method)
  | at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
  | at java.lang.ClassLoader.loadClass(ClassLoader.java:306)
  | at java.lang.ClassLoader.loadClass(ClassLoader.java:251)
  | at 
org.jboss.ws.core.utils.JavaUtils.loadJavaType(JavaUtils.java:148)
  | at 
org.jboss.ws.metadata.umdm.ParameterMetaData.loadWrapperBean(ParameterMetaData.java:244)
  | at 
org.jboss.ws.metadata.builder.jaxws.JAXWSMetaDataBuilder.processWebMethod(JAXWSMetaDataBuilder.java:746)
  | at 
org.jboss.ws.metadata.builder.jaxws.JAXWSMetaDataBuilder.processWebMethods(JAXWSMetaDataBuilder.java:828)
  | at 
org.jboss.ws.metadata.builder.jaxws.JAXWSWebServiceMetaDataBuilder.buildWebServiceMetaData(JAXWSWebServiceMetaDataBuilder.java:122)
  | at 
org.jboss.ws.metadata.builder.jaxws.JAXWSServerMetaDataBuilder.setupProviderOrWebService(JAXWSServerMetaDataBuilder.java:49)
  | at 
org.jboss.ws.metadata.builder.jaxws.JAXWSMetaDataBuilderJSE.buildMetaData(JAXWSMetaDataBuilderJSE.java:68)
  | at 
org.jboss.ws.core.server.ServiceEndpointDeployer.create(ServiceEndpointDeployer.java:87)
  | at 
org.jboss.ws.integration.jboss42.DeployerInterceptor.createServiceEndpoint(DeployerInterceptor.java:127)
  | at 
org.jboss.ws.integration.jboss42.DeployerInterceptorJSE.createServiceEndpoint(DeployerInterceptorJSE.java:132)
  | at 
org.jboss.ws.integration.jboss42.DeployerInterceptor.create(DeployerInterceptor.java:78)
  | at 
org.jboss.deployment.SubDeployerInterceptorSupport$XMBeanInterceptor.create(SubDeployerInterceptorSupport.java:180)
  | at 
org.jboss.deployment.SubDeployerInterceptor.invoke(SubDeployerInterceptor.java:91)
  | at org.jboss.mx.server.Invocation.invoke(Invocation.java:88)
  | at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264)
  | at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
  | at $Proxy43.create(Unknown Source)
  | at org.jboss.deployment.MainDeployer.create(MainDeployer.java:969)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:818)
  | at org.jboss.deployment.MainDeployer.deploy(MainDeployer.java:782)
  | at sun.reflect.GeneratedMethodAccessor19.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.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:264)
  | at 
org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659)
  | at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210)
  | at $Proxy8.deploy(Unknown Source)
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.deploy(URLDeploymentScanner.java:421)
  | at 
org.jboss.deployment.scanner.URLDeploymentScanner.scan(URLDeploymentScanner.java:634)
  | at 

[jboss-user] [JBoss Messaging] - Re: Queue attributes not being implemented

2007-05-23 Thread Stephen.Campbell
Hi Folks,

Still having massive problems with this, this is an integral part of our 
solution which we need to implement. Do you have any other ideas about what we 
could try, or give us a small list of steps we need to do in order for the 
JBoss RedeliveryDelay to be picked up using an MDB.

In our ejb we have the transaction type set to container.

Tim in one of your previous posts you stated : -

anonymous wrote : The MDB container / JCA layer also has its own DLQ - this is 
configured (normally) in standard-jboss.xml. 
  | 
  | This will take precedence over the jboss messaging DLQ - you would need to 
turn this off, or maybe you want to use it. 

How do we turn the MDB's default values off, as i said before i dont have a 
standard-jboss.xml file.

Should also add we are using JBoss 4.0.4 GA with JBM 1.2.0sp1

Hope you can help, i really need it!

Regards,
Stephen

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

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


[jboss-user] [JBossWS] - org.jboss.ws.WSException: Cannot obtain java type mapping

2007-05-23 Thread spinergywmy
Hi,

   When I try to pass ArrayList as a result back to the client-server and I hit 
this org.jboss.ws.WSException: Cannot obtain java type mapping exception. What 
does this exception means and is it not possible to pass ArrayList as a result?

   Can anyone explain why? Thank you.

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

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


[jboss-user] [EJB 3.0] - How to Call one EJB from another remotely?

2007-05-23 Thread [EMAIL PROTECTED]
Hi all
I am trying to call one EJB in one system from another EJB residing on diferent 
system...
Both are Stateless session beans ...
I can't use No-args Intialcontext() as i need to specify the Ip address of 
other system to be looked up.
So i am using properties Dorg.omg.CORBA.ORBInitlalHost
But its not looking up..Its telling not bound...But i called it from standalone 
client remotely...

Am i wrong..?
I hope I am in right path

I hope ill get reply as fast as possible...
Gopal V 

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

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


[jboss-user] [JBoss jBPM] - customize jbpm-starters-kit-3.1.2 interface

2007-05-23 Thread fhpepe
Thanks for your advise but my process is ready and i dont have time to change 
the kit now. I customized the other commandbutton and the interface by acting 
upon the .JSP except this one  My problem is linked to the 
FacesServlet.java. 

Thanks. Regards.

You can see the error message:

description The server encountered an internal error () that prevented it from 
fulfilling this request.
exception 
javax.servlet.ServletException: Error calling action method of component with 
id taskform:transitionButton
javax.faces.webapp.FacesServlet.service(FacesServlet.java:109)

org.jbpm.webapp.filter.AuthenticationFilter.doFilter(AuthenticationFilter.java:55)
org.jbpm.web.JbpmContextFilter.doFilter(JbpmContextFilter.java:83)
org.jbpm.webapp.filter.LogFilter.doFilter(LogFilter.java:59)

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)
root cause 
javax.faces.FacesException: Error calling action method of component with id 
taskform:transitionButton

org.apache.myfaces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:74)
javax.faces.component.UICommand.broadcast(UICommand.java:106)
javax.faces.component.UIViewRoot._broadcastForPhase(UIViewRoot.java:90)
javax.faces.component.UIViewRoot.processApplication(UIViewRoot.java:164)


org.apache.myfaces.lifecycle.LifecycleImpl.invokeApplication(LifecycleImpl.java:271)

org.apache.myfaces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:86)
javax.faces.webapp.FacesServlet.service(FacesServlet.java:94)

org.jbpm.webapp.filter.AuthenticationFilter.doFilter(AuthenticationFilter.java:55)
org.jbpm.web.JbpmContextFilter.doFilter(JbpmContextFilter.java:83)
org.jbpm.webapp.filter.LogFilter.doFilter(LogFilter.java:59)

org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:81)


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

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


[jboss-user] [JBossWS] - Re: org.jboss.ws.WSException: Cannot obtain java type mappin

2007-05-23 Thread spinergywmy
Hi,

   Just to add extra info, below are the wsdl and the exception is 
org.jboss.ws.WSException: Cannot obtain java type mapping for 
{http://ws.search.ds.mymcsb.com/jaws}ArrayList:

  definitions name=SearchRemoteService 
targetNamespace=http://ws.search.ds.mymcsb.com/jaws; 
xmlns=http://schemas.xmlsoap.org/wsdl/; 
xmlns:soap=http://schemas.xmlsoap.org/wsdl/soap/; 
xmlns:tns=http://ws.search.ds.mymcsb.com/jaws; 
xmlns:xsd=http://www.w3.org/2001/XMLSchema;
- 
- schema elementFormDefault=qualified 
targetNamespace=http://ws.search.ds.mymcsb.com/jaws; 
xmlns=http://www.w3.org/2001/XMLSchema; 
xmlns:soap11-enc=http://schemas.xmlsoap.org/soap/encoding/; 
xmlns:tns=http://ws.search.ds.mymcsb.com/jaws; 
xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
- 
- 
   
  
  
  
  
- 
   
  
- 
   
  
- 
- 
   
   
  
  
- 
  soap:binding style=rpc transport=http://schemas.xmlsoap.org/soap/http; / 
- 
  soap:operation soapAction= / 
- 
  soap:body namespace=http://ws.search.ds.mymcsb.com/jaws; use=literal / 
  
- 
  soap:body namespace=http://ws.search.ds.mymcsb.com/jaws; use=literal / 
  
  
  
- 
- 
  soap:address location=http://wmyeoh:8080/beans/SearchEJB; / 
  
  
  



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

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


[jboss-user] [JBossWS] - Re: org.jboss.ws.WSException: Cannot obtain java type mappin

2007-05-23 Thread spinergywmy
complexType name=ArrayList
sequence
  element name=empty type=boolean /
  /sequence
  /complexType
  /schema
  /types

This above codes are the part of the missing part when the 2nd time I posted. 
Sorry for the incovenience.

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

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


[jboss-user] [EJB 3.0] - Re: How to Call one EJB from another remotely?

2007-05-23 Thread artd
Check the jndi path for your remote interface through the jmx console..
This works for me:


  | Properties properties = new Properties();
  | 
properties.put(java.naming.factory.initial,org.jnp.interfaces.NamingContextFactory);
  | 
properties.put(java.naming.factory.url.pkgs,=org.jboss.naming:org.jnp.interfaces);
  | 
  | properties.put(java.naming.provider.url,remotehostname:1099); 
  | Context context = new InitialContext(properties);
  | SomeRemoteInterface oRemote= 
(SomeRemoteInterface)context.lookup(/myejbs/remote/SomeRemoteBean);
  | 

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

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


[jboss-user] [EJB 3.0] - Re: How to Call one EJB from another remotely?

2007-05-23 Thread [EMAIL PROTECTED]
Hi
Thanks for your reply.
I am using Sun AS...
But i tried similar suggestion...
But Still It couldn't lookup another EJB. 

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

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


[jboss-user] [JBoss Portal] - Problem creation HelloWorldportlet

2007-05-23 Thread maiky
Hello,

First, sorry if i choose the wrong forum for my post.
If i must post in another place, i can. (notice me :) )

I recompile the Helloworld portlet that i found on the jboss depot  and when i 
try to deploy it, i have erros.

anonymous wrote : The portlet HelloWorldPortlet threw an error during init
with multi java's errors.

the ant version is 1.7 and the jboss portal version is 2.6RC2.

Jboss portal and the java(web) prog are new for me.I begin to understand how 
operate Jboss, but at this time I try to understand how create new portlet.

Tutoriels exists (another than the referencial guide's one) ? with eclipse or 
another IDE?

Thanks for your time.

PS : sorry for my bad english.



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

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


[jboss-user] [EJB/JBoss] - Entity bean keeps oppened connection

2007-05-23 Thread Ma}{iM
I have problem with pendent entity conections
From struts action I call Session bean method where I create entity. This 
entity as I see in JProfiler doesn't close.

Did anybody have similar problem?


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

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


[jboss-user] [Messaging, JMS JBossMQ] - Re: Asynchronous send to MDB

2007-05-23 Thread anil.kumar
Hi,
What I suggest is not to use threads at all...the behaviour what you are seeing 
is may be because of some logical/configuration issues.

Anil Kumar
indiatimes.com

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

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


[jboss-user] [Installation, Configuration Deployment] - How to Prevent Jboss Server to load servlet at startup.

2007-05-23 Thread shyamjig
Hi Friends,

I have intalled Jboss 4.0.* (Default) and its working fine.
But Problem is, i have 7000 Servlet in my application, which are mapped wth 
theirs repective classes in web.xml.

If i deploy my application in Jboss.. While loading my context it get stuck for 
some time (means it loading all my servlet classes) and after some time, its 
gives the error MemoryOutOfError.  Even i tried with the option of
load-on-startup0/load-on-startup
load-on-startup-1/load-on-startup with my servlet class mapping.

But still its giving error.

Does there exist any configuration to avoid, to load my servlet at server 
startup.

Regards
Shyamji




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

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


[jboss-user] [JBoss Seam] - Re: Generation of jasper reports in seam

2007-05-23 Thread d.solasa
Hi Daniel,
 i think that jboss or seam may internally supports jasper libraries ,due to 
which i m  getting  the exception.so plz me the way i follow to use jasper 
reports in seam as I didnt get clear with u r code and u way of approach. EVen 
i tried it using this way 
   
JasperRunManager.runReportToPdfStream(input,facesCtx.getResponseStream(),parameters,conn);

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

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


[jboss-user] [JBoss Seam] - HOWTO: web services in Seam 1.3 (CVS)

2007-05-23 Thread avbentem
Though Seam 1.3 is currently only available from CVS, it shows a nice way to 
use web services with JBoss. This is based on standard Java annotations and 
JBossWS 1.2.1 GA, as packaged with JBoss AS 4.2.0 GA. Seam 1.3 adds (or, work 
in progress: hopefully will add) support for conversations working across 
multiple web service requests. Nice!

Though I have not used the Seam specific things, here's a start for a 
mini-HOWTO, of course calling for comments. And welcoming Seam specific 
enhancements!

If you need conversations you'll first need a Seam 3.1 snapshot from CVS  or 
get a nightly. This only runs on JBoss 4.2.0 CR1 or later (no need for any JEMS 
installer, just unpack the download). Again: I don't know the development 
status; when not using Seam conversations then the code below can also be run 
in JBoss without Seam at all -- but that's not what this forum is about...

The new SeamBay example shows how to define the web services. Here, 
AuctionService  uses @WebService and @WebMethod annotations (and implements 
AuctionServiceRemote to comply with the @Stateless annotation). No further 
configuration in, for example, web.xml, but an additional configuration file 
META-INF/standard-jaxws-endpoint-config.xml for JBossWS. The name of this file 
could be changed using a JBoss proprietary annotation, @EndpointConfig.

After deployment, one would see the web services listed at 
http://localhost:8080/jbossws/. For JBoss 4.2.0 CR1 this gives URLs such as 
/seam-bay-seam-bay/AuctionService; in 4.2.0 CR2 and GA one gets the newer 
jbossws-1.2.1.GA, which creates URLs like 
/AuctionServiceService/AuctionService. Heiko Braun explained this in another 
forum post. 

Heiko also explained why this new mechanism might cause Multiple context root 
not supported errors, and that one can change the context path using another 
JBoss proprietary annotation, @WebContext from jbossws-core.jar. This error may 
also be caused by some left-overs after refactoring. I changed the name of my 
service using Eclipse, which left the old compiled classes in various exploded 
EAR folders. As those were then still loaded by JBoss this resulted in multiple 
services within the same application, and thus resulting in the not supported 
error.

Even when not running into errors it might be a good idea to somehow get a 
defined context path for the web service, as you do not want to have the 
clients know about a new URL when you upgrade the JBoss application server... 
Or maybe one should forget about the automatic deployment and simply go back to 
adding the web services to web.xml for better control. Any thoughts on this?

So, the following (which is not Seam specific) works just fine in AS 4.2.0 GA, 
if you include some  META-INF/standard-jaxws-endpoint-config.xml in your 
project:

package my.package;
  | import javax.jws.WebMethod;
  | import javax.jws.WebService;
  | 
  | // The Service Endpoint Interface
  | @WebService
  | public interface DeepThoughtSEI {
  | 
  |   @WebMethod
  |   public String getAnswer();
  | 
  | }

and

package my.package;
  | import javax.ejb.Stateless;
  | import javax.jws.WebMethod;
  | import javax.jws.WebService;
  | import org.jboss.ws.annotation.WebContext;
  | 
  | @Stateless
  | @WebContext(contextRoot = /guide/to/the/galaxy)
  | @WebService(endpointInterface = my.package.DeepThoughtSEI)
  | public class DeepThought implements DeepThoughtSEI {
  | 
  |   public String getAnswer() {
  | return 42;
  |   }
  |  
  |   public String getUltimateQuestionToLifeTheUniverseAndEverything() {
  | return sorry, not exposed in endpointInterface;
  |   }
  | 
  | }

This serves the WSDL at 
http://universe.tld/guide/to/the/galaxy/DeepThought?wsdl 

Note that when not specifying a value for endpointInterface then ALL methods in 
the DeepThought implementation would be exposed, unless at least one method is 
explicitly annotated in that class -- even though the interface explicitly only 
declares a single method to be exposed. In other words: the @WebMethod 
annotations in the interface are only honored when endpointInterface is used. 
But this is all not Seam specific.

More documentation at the JBoss JAX-WS User Guide.
CVS at :pserver:[EMAIL PROTECTED]:/cvsroot/jboss/jboss-seam

Enjoy,
Arjan.

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

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


[jboss-user] [JBoss Seam] - Dynamic view for s:button control?

2007-05-23 Thread anescu
Hi,

I have this situation:
1) a combo box with several values and 
2) a button.

After the user selects a specific value from the combo box, when the button is 
clicked a specific page will be displayed. (some sort of pageflow, if you 
wish). 

This could be done very easy in plain Javascript, just change the value of the 
URL used by the button, based on the current value of the combo box.

How can you implement such a feature in Seam/JSF? I tried to create a component 
to keep the current value of the combo box and use it to render the button, but 
this is not working, the button will have the initial value of the atrribute.

EX: I have a hierarchy, with 2 child classes, B and C, both extending A.
I have somewhere a link Create new A, this leads me to a page with the combo 
box, where I can choose between B and C. Then I click the button which will 
forward me to the correct edit page, either B or C.


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

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


[jboss-user] [JBoss jBPM] - do not find jbpm-enterprise.ear in the distribution

2007-05-23 Thread ataud
In the jBPM jPDL User Guide, section 5.5. Enterprise archive 
http://docs.jboss.com/jbpm/v3/userguide/deployment.html

In the deploy directory of the downloads, you can find 
jbpm-enterprise.ear. [...]

I do not find jbpm-enterprise.ear 


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

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


[jboss-user] [EJB 3.0] - Re: How to Call one EJB from another remotely?

2007-05-23 Thread jc7442
another solution:

@Resource
  SessionContext context;

...

context.lookup(...);

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

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


[jboss-user] [JBoss Seam] - Re: Dynamic view for s:button control?

2007-05-23 Thread stu2
s:button results in a get, not a post.  I think you want h:commandButton.

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

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


[jboss-user] [JBoss jBPM] - Transition for one node to another

2007-05-23 Thread vedavyas
Hi All,

In my process definition file, transition should occur from one node to another 
node. but when the control comes to the first node, its does the specified 
action and does not go the second node.

this is my process definition file

  | node name=action
  | action class=com.techm.gisv.osl.cvsportal.actions.PersistAction/
  | transition name=mail to=mail/
  | /node
  | 
  | node name=mail
  | transition name=done to=done
  | action class=com.techm.gisv.osl.cvsportal.actions.Mail/
  | /transition
  | /node
  | 

What needs to be done?

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

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


[jboss-user] [JBoss Seam] - Re: Dynamic view for s:button control?

2007-05-23 Thread anescu
I don't need a post.

I just need 2 URLs, one for each value in the combo box. As I said, in 
Javascript + Struts this would mean something like 10 lines of code.

The flow would be:
1) I select value C from combo
2) I click the button
3) I end up on the C specific page (used to add a new entity of type C, in this 
case).

So no post/page reload should happen between 1 and 2. I also would like to keep 
as simple as possible.

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

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


[jboss-user] [JBossCache] - Re: Need 2.0.0.CR1

2007-05-23 Thread ctof
Hi

This pom version has a dependency on jgroups 2.5.0-BETA2
could you upload this jar into the jboss repository please ?

Thx
Christophe

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

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


[jboss-user] [JBossWS] - Using Log4j with jbossws-1.2.1.GA

2007-05-23 Thread superomega
Hallo

with jbossws-1.2.0 I usesd server\default\conf\log4j.xml to trace the soap 
Messages:


  |!-- Enable JBossWS message tracing --
  |category name=jbossws.SOAPMessage
  | priority value=TRACE class=org.jboss.logging.XLevel/
  |/category
  | 

Now this isn't working any more.
What has changed, what can I do that it will work again?

Thank you,
Werner


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

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


[jboss-user] [JBoss jBPM] - Re: Transition for one node to another

2007-05-23 Thread mputz
anonymous wrote : What needs to be done?

Read the docu!?

see http://docs.jboss.com/jbpm/v3/userguide/processmodelling.html#nodetypenode: 
The type node serves the situation where you want to write your own code in a 
node. The nodetype node expects one subelement action. The action is executed 
when the execution arrives in the node. The code you write in the actionhandler 
can do anything you want but it is also responsible for propagating the 
execution.

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

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


[jboss-user] [JBoss jBPM] - Re: do not find jbpm-enterprise.ear in the distribution

2007-05-23 Thread mputz
What have you downloaded?

I can see jbpm-enterprise.ear in jbpm-jpdl-3.2.GA.zip/jbpm-jpdl-3.2.GA/deploy.

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

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


[jboss-user] [JBoss Seam] - Dropdown Lists in my seam application causing problem

2007-05-23 Thread d.solasa
Hi
In my seam application i am displaying the dropdownlists using jsf where i will 
   
fetch data from database.I have written a command link in my application where 
i need to go inside the action method if i click on it.Now the problem is i was 
able to go inside the method properly without dropdownlists but if using 
dropdownlists ,i was unable to enter into the method ..seems it is a bug of 
seam..
Thanx in Advance.

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

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


[jboss-user] [JBoss Seam] - Re: Dynamic view for s:button control?

2007-05-23 Thread baz
Sorry, i do not have a ready made solution for you, only some ideas.
Asyou said you will have to use javascript.
(There are many frameworks for javascript out there.)
1. I suggest to try richfaces.
You will ajaxenable the combobox in a way that you are able to rerender the 
button. 

2. Use a menu (richfaces has one)

3. Make your solution with javascript only. Surely hard to do, but possible.

4. one jsf-way to do it:
When the button is clicked an action is triggered. This action will check the 
selected value of the combobox and returns an outcome. The navigation rules of 
your application will navigate to the page which is determined by the outcome.

Hope this helps enough to get an idea for the direction to work further.

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

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


[jboss-user] [JBoss Seam] - @Length in char(1) property

2007-05-23 Thread luizruiz
Hi,

I have a table with a char(1) field. Seam-gen generates the entityBean with a 
char property and put a @Length(max = 1) annotation. It's wrong, a char always 
allows only 1. This situation always causes an error in the page: length must 
be between 0 and 1.

How to fix this?

Luiz



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

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


[jboss-user] [JBoss Seam] - UI: Filtering with drop-downs does not work

2007-05-23 Thread thephil
I am running JBoss 4.0.5 with ejb3 profile. I am using Seam 1.2.1.GA.

I have generated a CRUD Seam application with seam generate-entities. Now I 
would like to filter results for the list pages using a drop down. 

1. The list page displays parameters. Each parameter is linked to a category 
(own entity/db table). 
2. I now wanted to add a dropdown to select filter parameters based on 
category. 

However, it does not seem to work. Could somebody please help me out on this 
one? Maybe I am just thinking too complicated...

Here is what I did: 

ParameterList.java (extends EntityQuery)
I added one Line to the RESTRICTIONS array. It now looks like this: 


  | @Name(parameterList)
  | public class ParameterList extends EntityQuery {
  | 
  | private static final String[] RESTRICTIONS = {
  | lower(parameter.name) like 
concat(lower(#{parameterList.parameter.name}),'%'),
  | lower(parameter.description) like 
concat(lower(#{parameterList.parameter.description}),'%'),
  | lower(parameter.designDocument) like 
concat(lower(#{parameterList.parameter.designDocument}),'%'),
  | lower(parameter.settingsDescription) like 
concat(lower(#{parameterList.parameter.settingsDescription}),'%'),
  | parameter.paramcategory.paramcategoryId = 
#{parameterList.parameter.paramcategory.paramcategoryId},};
  | 

(I have added only the last line. Paramcategory is the category of the 
parameter.)

ParameterList.xhtml
I added the dropdown menu. I looked at the seam ui example and tried to map 
that code to my application.


  | rich:simpleTogglePanel label=Parameter search parameters 
switchType=ajax
  | 
  | [... other search fields ...]
  | 
  | s:decorate template=layout/display.xhtml
  |   ui:define name=labelsettingsDescription/ui:define
  |   h:inputText id=settingsDescription 
value=#{parameterList.parameter.settingsDescription}/
  | /s:decorate
  | 
  | [... here comes my searchfield ...]
  | 
  |s:decorate template=layout/display.xhtml
  | ui:define name=labelcategory/ui:define
  | h:selectOneMenu value=#{parameterList.parameter.paramcategory}  
  | s:selectItems value=#{paramcategoryList.resultList} 
var=category label=#{category.name} /
  | s:convertEntity /
  | /h:selectOneMenu
  | /s:decorate
  | /rich:simpleTogglePanel
  | 

If I select something from the dropdown, no filtering happens. In the logfile, 
you can see that Hibernate assembles the SELECT statement to the DB correctly:

  | 2007-05-22 13:35:31,915 DEBUG [org.hibernate.SQL] select * from ( select 
parameter0_.PARAMETER_ID as PARAMETER1_69_, parameter0_.CATEGORY_ID as 
CATEGORY8_69_, parameter0_.TYPE_ID as TYPE6_69_, parameter0_.STATUS_ID as 
STATUS7_69_, parameter0_.DESIGN_DOCUMENT as DESIGN2_69_, 
parameter0_.SETTINGS_DESCRIPTION as SETTINGS3_69_, parameter0_.NAME as NAME69_, 
parameter0_.DESCRIPTION as DESCRIPT5_69_ from MICSCONF.PARAMETER parameter0_ 
where parameter0_.CATEGORY_ID=? ) where rownum = ?
  | 
  | 2007-05-22 13:35:31,915 INFO  [STDOUT] Hibernate: select * from ( select 
parameter0_.PARAMETER_ID as PARAMETER1_69_, parameter0_.CATEGORY_ID as 
CATEGORY8_69_, parameter0_.TYPE_ID as TYPE6_69_, parameter0_.STATUS_ID as 
STATUS7_69_, parameter0_.DESIGN_DOCUMENT as DESIGN2_69_, 
parameter0_.SETTINGS_DESCRIPTION as SETTINGS3_69_, parameter0_.NAME as NAME69_, 
parameter0_.DESCRIPTION as DESCRIPT5_69_ from MICSCONF.PARAMETER parameter0_ 
where parameter0_.CATEGORY_ID=? ) where rownum = ?
  | 
  | 2007-05-22 13:35:31,915 DEBUG [org.hibernate.loader.hql.QueryLoader] 
bindNamedParameters() 3 - el5 [1]
  | 
However, no filtering happens in the result on the webpage. Also, the selection 
of the dropdown is not being preserved (after page reload, the dropdown shows 
the default category, not the one I selected earlier). 

Can anybody help me please? I am running down against wall now...


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

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


[jboss-user] [JBossWS] - Port 8080 and Web Services

2007-05-23 Thread guiturk
I can not use port 8080, so I switched to 8082. Everything works fine, but when 
deploying web services I get this:
22:05:31,812 INFO  [ServiceEndpointManager] WebService started: 
http://PVGT:8080/pharos

My web client can access the wsdl but when I try to load the service 
implmentation class using ServiceFactory, it fails:
Exception in thread main java.lang.NullPointerException
at java.lang.System.arraycopy(Native Method)
at org.apache.xerces.impl.xs.XSModelImpl.getAnnotations(Unknown Source)
at 
org.jboss.ws.metadata.wsdl.xmlschema.WSSchemaUtils.copyXSModel(WSSchemaUtils.java:737)
at org.jboss.ws.tools.JavaToXSD.parseSchema(JavaToXSD.java:180)
at 
org.jboss.ws.metadata.wsdl.WSDL11Reader.processTypes(WSDL11Reader.java:227)
at 
org.jboss.ws.metadata.wsdl.WSDL11Reader.processDefinition(WSDL11Reader.java:118)
at 
org.jboss.ws.metadata.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:145)
at 
org.jboss.ws.metadata.ServiceMetaData.getWsdlDefinitions(ServiceMetaData.java:273)
at 
org.jboss.ws.deployment.JSR109ClientMetaDataBuilder.buildMetaData(JSR109ClientMetaDataBuilder.java:110)
at 
org.jboss.ws.deployment.JSR109ClientMetaDataBuilder.buildMetaData(JSR109ClientMetaDataBuilder.java:82)
at org.jboss.ws.jaxrpc.ServiceImpl.(ServiceImpl.java:96)
at 
org.jboss.ws.jaxrpc.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:157)
at 
org.jboss.ws.jaxrpc.ServiceFactoryImpl.createService(ServiceFactoryImpl.java:128)
at PharosWebTest.main(PharosWebTest.java:29)

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

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


[jboss-user] [EJB 3.0] - Re: How to Call one EJB from another remotely?

2007-05-23 Thread ebross
Assuming 
  public class StatelessA{} and 
  public class StatelessB{}

To use StatelessB in StatelessA, try:


  | public class StatelessA{
  | 
  |  @EJB StatelessB statelessB;  
  | 
  | ...
  | 
  | } 




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

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


[jboss-user] [JBoss Seam] - Re: Dropdown Lists in my seam application causing problem

2007-05-23 Thread avbentem
anonymous wrote : ..seems it is a bug of seam.. 
If it is a bug, then it's more likely JavaServer Faces related. You'll need to 
show some code to explain what you're doing, and especially the difference 
between what works for you, and what doesn't. The samples from the Seam user 
guide work fine for me.

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

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


[jboss-user] [JBoss Seam] - s:validateAll cumulates validation error messages when used

2007-05-23 Thread petr.mk
Hello,

does anyone meet the same problem? 

When s:validateAll tag is used in form together with dispalying error 
messahes using h:messages globalOnly=false/, then the same validation 
message for one input form is cumulated. After first submit (in form is only 
one input field!) can be seen:

length must be between 10 and 255 
length must be between 10 and 255 

after second submit:

length must be between 10 and 255 
length must be between 10 and 255 
length must be between 10 and 255 

etc.

It looks like s:validateAll problem, because when s:validate/ is used, all 
is O.K.

Here is test example:

BookDetailTest.xhtml:

!DOCTYPE html PUBLIC -//W3C//DTD XHTML 1.0 Transitional//EN 
http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd;
html xmlns=http://www.w3.org/1999/xhtml;
  xmlns:ui=http://java.sun.com/jsf/facelets;
  xmlns:f=http://java.sun.com/jsf/core;
  xmlns:h=http://java.sun.com/jsf/html;
  xmlns:s=http://jboss.com/products/seam/taglib;

#{libraryMessages.border_facelets_library}
meta http-equiv=Content-type content=text/html; 
charset=windows-1250 /
meta http-equiv=Content-Language content=cs /
meta http-equiv=Expires content=0 /
meta http-equiv=Cache-Control content=no-cache /
meta http-equiv=Pragma content=no-cache /





  
f:view
h:messages globalOnly=false /
h:form id=saveform
s:validateAll
h:panelGrid columns=2 border=0 cellpadding=0 
cellspacing=2
f:facet name=header
h:outputText id=bookDetail_book 
value=#{libraryMessages.bookDetail_kniha} /
/f:facet
f:facet name=aroundInvalidField
s:span styleClass=error/
/f:facet
f:facet name=afterInvalidField
h:outputText value= *) /
/f:facet
h:outputText id=bookDetail_author 
value=#{libraryMessages.bookDetail_autor} /
s:decorate id=author
h:inputText type=text

label=#{libraryMessages.bookDetail_autor}
value=#{bookDetailBean.author}
required=true
size=30
maxlength=30 /
/s:decorate
f:facet name=footer
h:panelGroup

h:commandButton type=submit

id=savebutton

action=save

value=#{libraryMessages.bookDetail_ulozit} /

h:commandButton type=submit

id=backbutton

action=back

immediate=true

value=#{libraryMessages.bookDetail_zpet} /
/h:panelGroup
/f:facet
/h:panelGrid
/s:validateAll
/h:form
/f:view




BookDetailTestBean.java:

package cz.profinit.education.library.web.beans;

import java.io.Serializable;

import org.hibernate.validator.Length;
import org.hibernate.validator.NotNull;
import org.jboss.seam.annotations.Name;

/**
*
* Book detail implementation class.
* 
* @author $Author: pmarek $
* @version $Revision: 1.0 $
*/

@Name(bookDetailTestBean)
public class BookDetailTestBean extends LibraryBaseBean implements Serializable 
{

private static final long serialVersionUID = -1547896425866324414L;

private String author;

@NotNull
@Length(min = 10, max = 255)
public String getAuthor() {
return author;
}
public void setAuthor(String author) {
this.author = author;
}

/**
 * SaveBookListener.
 * @ cycle
 */
public String save() {
return success;
}

}


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

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

[jboss-user] [JBoss Messaging] - Invalid Selector

2007-05-23 Thread macross27
Hi all,

I got following error with JBoss messaging:

  | 15:29:00,896 WARN  [Selector] Invalid selector: 
JMSCorrelationID=1179926940029
  | java.lang.Exception: Bad Object: expected 'String' got 'Long' for 
operation: 0:EQUAL(
  |   [EMAIL PROTECTED]
  |   1179926940029
  | )
  | 
  | at 
org.jboss.jms.selector.Operator.throwBadObjectException(Operator.java:980)
  | at org.jboss.jms.selector.Operator.equal(Operator.java:214)
  | at org.jboss.jms.selector.Operator.apply(Operator.java:916)
  | at org.jboss.jms.selector.Selector.accept(Selector.java:168)
  | at 
org.jboss.jms.server.endpoint.ServerConsumerEndpoint.accept(ServerConsumerEndpoint.java:347)
  | at 
org.jboss.jms.server.endpoint.ServerConsumerEndpoint.handle(ServerConsumerEndpoint.java:233)
  | at 
org.jboss.messaging.core.local.RoundRobinPointToPointRouter.handle(RoundRobinPointToPointRouter.java:120)
  | at 
org.jboss.messaging.core.ChannelSupport.deliverInternal(ChannelSupport.java:600)
  | at 
org.jboss.messaging.core.ChannelSupport.deliver(ChannelSupport.java:306)
  | at 
org.jboss.jms.server.endpoint.ServerSessionEndpoint$2.run(ServerSessionEndpoint.java:952)
  | at 
EDU.oswego.cs.dl.util.concurrent.QueuedExecutor$RunLoop.run(QueuedExecutor.java:89)
  | at java.lang.Thread.run(Thread.java:595)
  | 

If I'm not wrong, apparently the attached systems tries to retrieve a message 
via a JMSCorrelationID which is not a string but a long. Is there a possibility 
to make this work? Of course I can't do anything in the source code of this 
attached ERP system.

Thanks for your help...

Sebastian

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

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


[jboss-user] [JBoss Seam] - I can't build seam

2007-05-23 Thread fhall
Hello every body i'm discovering seam.. after unpacking the jboss-seam-1.1.5.GA 
i run :
c:\jboss-seam-1.1.5.GA\ant

to build seam but the buid failed and i get this out put:

Buildfile: Build.xml
init:
[echo] Build JBoss Seam 1.1
select-compiler:
antlr:
Build failed
c:\jboss-seam-1.1.5.GA\build.xml:512: Invalid target: 
c:\jboss-seam-1.1.5.GA\seam-text.g

thanks for help

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

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


[jboss-user] [JBoss jBPM] - Re: Transition for one node to another

2007-05-23 Thread vedavyas
Yes i had tried it before. But if i do in this way it leads to one more issue. 
Suppose a particular actor has a more than one task in his tasklist, whichever 
task he first assigns, only that instance goes through both the nodes.

All the other tasks are lost after it is assigned

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

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


[jboss-user] [JBoss Seam] - Re: EntityQuery: showing last page with no results?

2007-05-23 Thread pampam
Hi,

I backported the changes to 1.2.1.GA, and there seams to be a small bug.

The truncateResultList should return the nr of max results and not max results 
-1.

return results.subList(0, mr-1);
should be
return results.subList(0, mr-1);

Robert

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

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


[jboss-user] [JBoss Seam] - Re: Dropdown Lists in my seam application causing problem

2007-05-23 Thread d.solasa
f:view
h:outputLabel value=#{msg.season} /
h:selectOneMenu value=#{season} id=seasonList
si:selectItems value=#{seasonValues} 
var=seasonList
label=#{seasonList.name} /
si:convertEntity 
entityClass=com.dss.web.model.SeasonModel /
/h:selectOneMenu
h:commandButton value=#{msg.pdf}  action=#{jasperReports.view}/


Now,in this case if ididnt write the code for the dropdownlist ,i was able to 
enter into View method or even if my dropdownlist values are hard coded.but if 
i am using that dropdownlist which takes values from database ,i was unable to 
go into the method itself.

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

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


[jboss-user] [JBoss Seam] - Re: EntityQuery: showing last page with no results?

2007-05-23 Thread pampam
this should of course be
return results.subList(0, mr);

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

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


[jboss-user] [JBoss jBPM] - Re: org.hibernate.TransientObjectException object references

2007-05-23 Thread warmonga
@ kukeltje and others: Don't you have any hint/suggestion for solving this 
problem?

I would appreciate any help!
Many thanks again!
Regards,
Maurice

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

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


[jboss-user] [JBoss Seam] - Re: I can't build seam

2007-05-23 Thread avbentem
What if you run
ant antlr
first?

Arjan.

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

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


[jboss-user] [JBoss Seam] - Re: Dropdown Lists in my seam application causing problem

2007-05-23 Thread damianharvey
try putting h:message/ on your page and see if you are getting any 
validation/conversion problems.

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

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


[jboss-user] [JBoss Seam] - Re: I can't build seam

2007-05-23 Thread fhall
this is the out put : 

Buildfile: Build.xml 
antlr:
Build failed 
c:\jboss-seam-1.1.5.GA\build.xml:512: Invalid target: 
c:\jboss-seam-1.1.5.GA\seam-text.g 


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

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


[jboss-user] [JBossWS] - Set WS-Configuration

2007-05-23 Thread ethan1980
Hi all,

I have created client artifacts with wsconsume from wsdl. I have a class 
service like:

package com.hp.som.handlers.webservices.impl;

import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;
import javax.xml.namespace.QName;
import javax.xml.ws.Service;
import javax.xml.ws.WebEndpoint;
import javax.xml.ws.WebServiceClient;


/**
 * JBossWS Generated Source
 * 
 * Generation Date: Tue May 22 16:55:09 CEST 2007
 * 
 * This generated source code represents a derivative work of the input to
 * the generator that produced it. Consult the input for the copyright and
 * terms of use that apply to this source code.
 * 
 * JAX-WS Version: 2.0
 * 
 */
@WebServiceClient(name = TestService, targetNamespace = 
http://som.hp.som/com/hp/som/handlers/webservices/impl;, wsdlLocation = 
WEB-INF/wsdl/TestBean.wsdl)
public class TestService_Service
extends Service
{

private final static URL TESTSERVICE_WSDL_LOCATION;

static {
URL url = null;
/*try {
url = new File(WEB-INF/wsdl/TestBean.xml).toURL();
} catch (MalformedURLException e) {
e.printStackTrace();
}*/
TESTSERVICE_WSDL_LOCATION = url;
}

public TestService_Service(URL wsdlLocation, QName serviceName) {
super(wsdlLocation, serviceName);
}

public TestService_Service() {
super(TESTSERVICE_WSDL_LOCATION, new 
QName(http://som.hp.som/com/hp/som/handlers/webservices/impl;, TestService));
}

/**
 * 
 * @return
 * returns TestService
 */
@WebEndpoint(name = TestServicePort)
public TestService getTestServicePort() {
return (TestService)super.getPort(new 
QName(http://som.hp.som/com/hp/som/handlers/webservices/impl;, 
TestServicePort), TestService.class);
}

}

...

I want configure ws-security of this mode:

TestService_Service service = new TestService_Service();
String configFilePath = initConfigFilePath(ctx);
if ( (configFilePath != null)  
(!.equals(configFilePath.trim(  {
URL securityURL = new File(configFilePath).toURL();

((ServiceExt)service).setSecurityConfig(securityURL.toExternalForm());
}

My problem is that i cant cast TestService_Service in ServiceExt for set 
security config and i want not create Service like Service.create(url,qname).

Thanks in advance.




[/img]

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

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


[jboss-user] [EJB 3.0] - Re: How can I specify the jars that contain session beans?

2007-05-23 Thread ebross
If your are deploying *.jar files that already exist in the JBoss deploy lib 
(default\lib or all\lib), remove them from your ear file. Only deploy your 
*.ear or *.jar files to JBoss.

Alternatively, you might want to copy third-party jar files to the JBoss 
deploy\lib and then remove them from yourear file.

 

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

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


[jboss-user] [JBoss Seam] - Re: Dropdown Lists in my seam application causing problem

2007-05-23 Thread d.solasa
I used h:messages globalOnly=true/ in my code upon ur advice but with no 
result ,getting the same problem

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

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


[jboss-user] [JBoss Portal] - Re: LDAP Authentication Authorization to eDirectory

2007-05-23 Thread arnieAustin
Well, THAT was an exercise in futility! :) No change what so ever. I did notice 
that the ant builds were creating the sar and wars as ZIP files. So I unzipped 
the jboss-portal.sar file to a folder in the ./deploy folder. Then I placed the 
other wars into the .sar folder. Note that I simply removed the old 
jboss-portal.sar folder for the new one, in the same jboss-as installation that 
originally came w/t bundle.

After reconfiguring the 
\jboss-portal.sar\conf\identity\ldap_identity-config.xml file, was able to boot 
the server. To no avail. 

I do see:
09:39:40,687 ERROR [LDAPUserProfileModuleImpl] No such attribute ('seeAlso') in 
entry: cn=admin,ou=APPS,ou=PEOPLE,o=IDV

Now, I can't speak to other LDAP servers, but in the case of Novell eDirectory, 
the seeAlso attribute is a list of DNs, not a text field. Is that what the 
ProfileModuleImp class is expecting? Can I map it to some other field? Say, 
description - which is a multivalued caseIgnoreString?

The log file shows:


  | 2007-05-23 09:39:30,187 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] findUserByUserName(): 
username = admin
  | 2007-05-23 09:39:30,187 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search filter: (cn={0})
  | 2007-05-23 09:39:30,187 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search filter: (cn={0})
  | 2007-05-23 09:39:30,187 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search filterArg: {0}: 
admin
  | 2007-05-23 09:39:30,187 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search ctx: 
ou=People,o=idv
  | 2007-05-23 09:39:30,187 DEBUG 
[org.jboss.portal.identity.ldap.LDAPUserModule] user uid: 
cn=admin,ou=APPS,ou=PEOPLE,o=IDV
  | 2007-05-23 09:39:30,187 DEBUG 
[org.jboss.portal.identity.ldap.LDAPUserModule] user dn: 
cn=admin,ou=APPS,ou=PEOPLE,o=IDV
  | 2007-05-23 09:39:30,203 DEBUG 
[org.jboss.portal.identity.ldap.LDAPStaticRoleMembershipModuleImpl] 
findRoles(): role = cn=admin,ou=APPS,ou=PEOPLE,o=IDV
  | 
  | 
  | I must have something misconfigured because if I read this right, 
findRoles() will never find anything like cn=admin,ou=APPS,ou=PEOPLE,o=IDV  
since that's a user object, not a group object!
  | 

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

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


[jboss-user] [JBoss Seam] - Re: Dynamic view for s:button control?

2007-05-23 Thread anescu
Hi,

tnx for the solutions.

I already implemented it with no 4 (action + navigation rules), but it would be 
more user friendly to use the richFaces dropDownMenu component (i've seen the 
demo on exadel's site).

However, when I try to use it on a page, I get this error:

anonymous wrote : rich:dropDownMenu Tag Library supports namespace: 
http://richfaces.ajax4jsf.org/rich, but no tag was defined for name: 
dropDownMenu

I'm using Seam 1.2.1 and a seam generated project, with the default libraries. 
Is this a new developed component from richFaces? 

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

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


[jboss-user] [JBoss Portal] - Deploying JBoss Portal 2.6 on JBoss AS 4.2.0

2007-05-23 Thread andreas.wiesauer
Hello,

i tried deploying JBoss Portal 2.6 CR2 on JBoss AS 4.2.0. I get some strange 
errors (see log). I configured JBoss AS to work with MySQL 5.0 as default 
database which works fine without any errors. I configured a seperate 
datasource (PortalDS; also MySQL 5.0 but a different scheme) for the portal 
(of course I copied the *-ds.xml file to server/default/deploy). 

The errors occur if i use the portal binary and if i build from SVN (trunk and 
2.6. CR2 tag). 

Do you have any ideas what's wrong?

Thanks for your help.

Best regards,
Andy


Log:

--- Incompletely deployed packages ---
[EMAIL PROTECTED] { url=file:/C:/jboss/server/default/deploy/jboss-portal.sar }
  deployer: [EMAIL PROTECTED]
  status: Deployment FAILED reason: - nested throwable: 
(java.lang.reflect.UndeclaredThrowableException)
  state: FAILED
  watch: file:/C:/jboss/server/default/deploy/jboss-portal.sar
  altDD: null
  lastDeployed: 1179932068348
  lastModified: 1179932064583
  mbeans:


PS: Can i attach files to a post (posting the whole log as text would not be 
readable).

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

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


[jboss-user] [Beginners Corner] - Re: loading classes by unregistered classloader

2007-05-23 Thread fuzebest
just an update: checked with newly released 4.2.0GA, still NPE.
If I export service from SAR(without packaging it into EAR), everithing works 
just fine upon redeployment 
Maybe this is an issue with ear classloader?

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

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


[jboss-user] [JBoss Seam] - Re: Seam CVS: should jBPM work? (jbpm.function.mapper not de

2007-05-23 Thread [EMAIL PROTECTED]
Tom Baeyens is aware of the issue and has promised to fix it asap.  If we don't 
have the new version this weekend I'll roll back the changes until it's 
available.

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

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


[jboss-user] [JBoss Portal] - Re: Deploying JBoss Portal 2.6 on JBoss AS 4.2.0

2007-05-23 Thread [EMAIL PROTECTED]
jboss portal 2.6 is not yet compatible with jboss AS 4.2.0 but we are working 
on it.

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

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


[jboss-user] [JBoss jBPM] - ADF Faces with Facelets in jBPM 3.2GA

2007-05-23 Thread webjavier
Friends:
I've install adf faces for using with facelets in jbpm start kit 3.2GA
I need to change the interface to ADF Faces but i have a problem with  the 
FaceletViewHandler, because this class is in web.xml and faces-config.xml and 
generate conflict.

faces-config.xml
application
  | view-handlercom.sun.facelets.FaceletViewHandler/view-handler
  | 
navigation-handlerorg.jbpm.webapp.application.JbpmNavigationHandler/navigation-handler
  | /application
  | 
web.xml
context-param
  | param-nameoracle.adf.view.faces.ALTERNATE_VIEW_HANDLER/param-name
  | param-valuecom.sun.facelets.FaceletViewHandler/param-value
  | /context-param

Searching in google one solution is comment that handler in faces-config.
but...
If i comment that handler in faces-config i can't navigate for xhtml's of tasks 
flow.
If i comment that handler in web.xml i can't use adf faces.

Someone help me plz.
How to obvious this handler in faces-config.xml for working fine.

PD: I have applications by running with adf faces in jbpm-suite.

Sorry with my english.

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

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


[jboss-user] [JBoss Seam] - Re: Seam is spining JVM on startup

2007-05-23 Thread mgrouch
Thanks. Examples would help.

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

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


[jboss-user] [EJB 3.0] - Re: is there any replacement for SecurityProxy with ejb3

2007-05-23 Thread gmuzzillo
Wolfc Thank you.
Now,  could you please put some example? or do you have the exact title of the 
book? thanks.


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

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


[jboss-user] [JBoss Portal] - Re: LDAP Authentication Authorization to eDirectory

2007-05-23 Thread arnieAustin
I tweaked a setting and now get:


  | 2007-05-23 10:08:39,765 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] findUserByUserName(): 
username = admin
  | 2007-05-23 10:08:39,765 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search filter: (cn={0})
  | 2007-05-23 10:08:39,765 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search filter: (cn={0})
  | 2007-05-23 10:08:39,765 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search filterArg: {0}: 
admin
  | 2007-05-23 10:08:39,765 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search ctx: 
ou=People,o=idv
  | 2007-05-23 10:08:39,765 DEBUG 
[org.jboss.portal.identity.ldap.LDAPUserModule] user uid: 
cn=admin,ou=APPS,ou=PEOPLE,o=IDV
  | 2007-05-23 10:08:39,765 DEBUG 
[org.jboss.portal.identity.ldap.LDAPUserModule] user dn: 
cn=admin,ou=APPS,ou=PEOPLE,o=IDV
  | 2007-05-23 10:08:39,765 DEBUG 
[org.jboss.portal.identity.ldap.LDAPStaticRoleMembershipModuleImpl] 
findRoles(): role = cn=admin,ou=APPS,ou=PEOPLE,o=IDV
  | 2007-05-23 10:08:39,781 DEBUG 
[org.jboss.portal.identity.ldap.LDAPRoleModule] findRoleByDN(): DN = 
cn=Administrators,ou=JBossPortal,ou=APPS,ou=GROUPS,o=IDV
  | 2007-05-23 10:08:39,781 DEBUG 
[org.jboss.portal.identity.ldap.LDAPRoleModule] role uid: 
cn=Administrators,ou=JBossPortal,ou=APPS,ou=GROUPS,o=IDV
  | 2007-05-23 10:08:39,781 DEBUG 
[org.jboss.portal.identity.ldap.LDAPRoleModule] role dn: 
cn=Administrators,ou=JBossPortal,ou=APPS,ou=GROUPS,o=IDV
  | 2007-05-23 10:08:39,875 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] findUserByUserName(): 
username = admin
  | 2007-05-23 10:08:39,875 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search filter: (cn={0})
  | 2007-05-23 10:08:39,875 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search filter: (cn={0})
  | 2007-05-23 10:08:39,875 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search filterArg: {0}: 
admin
  | 2007-05-23 10:08:39,875 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search ctx: 
ou=People,o=idv
  | 2007-05-23 10:08:39,921 DEBUG 
[org.jboss.portal.identity.ldap.LDAPUserModule] user uid: 
cn=admin,ou=APPS,ou=PEOPLE,o=IDV
  | 2007-05-23 10:08:39,921 DEBUG 
[org.jboss.portal.identity.ldap.LDAPUserModule] user dn: 
cn=admin,ou=APPS,ou=PEOPLE,o=IDV
  | 
  | 
  | But still no Admin link when admin logs in.
  | 
  | I still get Your account is disabled when ACM3 tries to log in. Log shows:
  | 
  | 
  |   | 2007-05-23 10:12:57,609 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] findUserByUserName(): 
username = acm3
  |   | 2007-05-23 10:12:57,609 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search filter: (cn={0})
  |   | 2007-05-23 10:12:57,609 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search filter: (cn={0})
  |   | 2007-05-23 10:12:57,609 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search filterArg: {0}: 
acm3
  |   | 2007-05-23 10:12:57,609 DEBUG 
[org.jboss.portal.identity.ldap.LDAPExtUserModuleImpl] Search ctx: 
ou=People,o=idv
  |   | 2007-05-23 10:12:57,625 DEBUG 
[org.jboss.portal.identity.ldap.LDAPUserModule] user uid: 
cn=ACM3,ou=AL,ou=EMPLOYEES,ou=PEOPLE,o=IDV
  |   | 2007-05-23 10:12:57,625 DEBUG 
[org.jboss.portal.identity.ldap.LDAPUserModule] user dn: 
cn=ACM3,ou=AL,ou=EMPLOYEES,ou=PEOPLE,o=IDV
  |   | 2007-05-23 10:12:57,625 DEBUG 
[org.jboss.portal.identity.DelegatingUserProfileModuleImpl] getProperty: 
portal.user.enabled
  |   | 2007-05-23 10:12:57,625 DEBUG 
[org.jboss.portal.identity.DelegatingUserProfileModuleImpl] Delegating to DB 
module
  |   | 2007-05-23 10:12:57,625 DEBUG 
[org.jboss.portal.identity.db.HibernateUserProfileModuleImpl] Processing non 
HibernateUserImpl object: class org.jboss.portal.identity.ldap.LDAPUserImpl
  |   | 
  | 
  | So I guess the next questions are:
  | 
  | 1) Can the role membership records that the portal uses in authorization 
be moved to LDAP group Objects?
  | 
  | 2) If I descend my own versions the org.jboss.portal.identity.RoleModule 
interface, where do my .class files have to be for JBoss to see them during 
boot and where do i reference them in the configuration files? 
ldap_identity-config.xml perhaps?
  | 

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

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


[jboss-user] [JBoss Seam] - Re: Dropdown Lists in my seam application causing problem

2007-05-23 Thread monkeyden
no h:form tag?

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

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


  1   2   3   >