[jboss-user] [JBoss jBPM] - Re: [newbie] problem with hibernate mapping while trying to

2007-07-04 Thread syngolis
Your object is stored in jbpm_bytearray/block because there is no hibernate 
mapping for it, that means, unknown serializeable objects are stored as 
byte-array. (This behaviour is declared in jbpm.varmapping.xml)

I tired a similar scenario some time ago. I am not sure if it fits exactly your 
needs but maybe this helps:

1. Create table in your jbpm-db, e.g. jbpm_test
2. Create mapping class for test: com/test/Test.java
3. Create hibernate mapping file: com/test/Test.hbm.xml
4. Put mapping into your hibernate.cfg.xml: 
5. Put all into your ear/war
Thats all...

Now you should be able to create/use objects of type test in your process, 
which are taken/stored in your table. In variableinstance, only references to 
your table are stored.

I am not sure but in your example you use package dgbdatamodel. hibernate 
tells you Resource: com/dgbdatamodel/Student.hbm.xml not found. So maybe you 
should change your package to com.dgbdatamodel.

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

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


[jboss-user] [JBoss Seam] - New to seam: How to choose proper context and achieve extern

2007-07-04 Thread mmakundi
Hi!

Here is what I am trying to do:
1. I need a page that loads its dataTable contents from db fresh every time I 
access the page.
2. The items in the dataTable need to be clickable and bookmarkable in the 
future; this is why s:link was chosen. According to my experience, @Scope(PAGE) 
does not cut it with s:link elements, as the parameters are passed on as null.
3. My business items allow clicking a link, but instead of directly linking the 
user to the external url I want to record the click-count first. So intuitively 
I thought I could just return the url from the click-counting action.

The solutions I have tried are the following:
1. Page scope seems to have the right idea: the dataTable contents are 
refreshed from db each time the page is refreshed. However, page context seem 
to have problems with requirement 2 -- or am I doing something else wrong?
2. If I use Session scope, the s:link works fine and passes the actual 
objects as parameters to the desired method recordLinkClickAndRedirect(). 
However, with Session scope the dataTable does not get fresh data in a new 
page-refresh, because the session is still alive. I can actually make this 
happen by binding the @Destroy and @Remove annotations to my 
recordLinkClickAndRedirect() method, but it seams like a hack and I would 
rather not do that if there is a better way.
3. I have not found a way to redirect from within my 
recordLinkClickAndRedirect() method, but intuitively it seems like there should 
be a way as this is how navigation can normally be affected.

Here are my code snipplets:

::: from items.xhtml

!-- content --
ui:define name=content


h1Latest business items/h1

h:outputText value=No items found on this round. Please 
refresh page to check again!
rendered=#{businessItems == null or 
businessItems.rowCount==0} /
h:dataTable var=businessItem value=#{businessItems}
rendered=#{businessItems.rowCount0}
h:column
#{businessItem.description}
s:link value=#{businessItem.externalLinkURL}

action=#{itemViewer.recordLinkClickAndRedirect(businessItem)} /
/h:column
/h:dataTable

/ui:define

::: from ItemViewer.java

@Stateless
@Scope(ScopeType.PAGE)
@Name(itemViewer)
public class ItemViewer implements LocalInterface {
  @PersistenceContext
  private EntityManager entityManager;

  @DataModel
  @SuppressWarnings(unused)
  private List businessItems;

  /**
   * This method TODO
   * 
   */
  @Factory(businessItems)
  @SuppressWarnings(unchecked)
  public void getFreshBusinessItems() {
businessItems = (List) entityManager
.createQuery(select b from businessItem b);
  }

  /**
   * This method records that the link has been clicked and redirects the
   * browser to the specific link.
   * 
   * @param businessItem
   * @return
   */
  public String recordLinkClickAndRedirect(BusinessItem businessItem) {
businessItem.incrementClicks();
return businessItem.getExternalLinkURL();
  }

  /**
   * This method is required by some scopes, e.g., Session scope.
   */
//  @Destroy
//  @Remove
  public void destroyAndRemove() {
// n.a.
  }
}


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

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


[jboss-user] [JBoss Portal] - portlet with eCommerce style assets

2007-07-04 Thread lionelp
Does JBoss Portal support some kind of concept of assets with cms type 
functionality. 

I need to create a e-commerce style portlet that allows a user to choose two 
products see the total cost and buy. 

Each product would have a number of attributes such as description, features 
etc.

Its not that complicated. I could just store the products in the database but I 
need to allow admin users to edit the description and feature list with a 
similar approach to cms module where you get a wysiwyg edit and approval work 
flow.

Any thoughts on how this can be done in JBoss Portal?

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

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


[jboss-user] [JBossWS] - web service returns list?

2007-07-04 Thread patel_123

   hi

i am using JAX-WS RI 2.0_03-b24-fcs version.
i want to know JAX WS 2.0 supports list interface.can web service return list?

could any one help me in this?
thanks in advance.



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

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


[jboss-user] [JBoss Seam] - Re: ResourceBundle in Database

2007-07-04 Thread Zerg-Spirit
Ok thanks.
I don't know if I did it the right way though, but it seems to be working, and 
I tryed to follow peter's steps (page1) as much as possible.


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

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


[jboss-user] [JBoss Messaging] - Re: PingTimerTask broken pipe

2007-07-04 Thread ron_sigal
1. Each JBossMessaging connection has a control: thread associated with it on 
the client side.  I've tried to reproduce the phenomenon of control threads 
outliving the messaging connection, but so far I haven't been able to.

2. I noticed that a new Timer is being created on the client side for each 
messaging connection.  That wasn't my intention, and I'll fix it, but these 
Timers have daemon threads.  Looking at the code, I don't see how the only 
TimerTask scheduled on each would not be canceled when the messaging connection 
is closed.

I'm not saying there isn't a problem somewhere in the bisocket transport that 
is causing these threads to remain alive, but I haven't found one yet.

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

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


[jboss-user] [EJB 3.0] - separate Entity Beans

2007-07-04 Thread witterkoer
hi, 

on a workin ear, i tryied to separate my Entity Beans into a jar, added this 
one to my project libpath, but i've got this error : 

18:07:08,515 INFO [EntityBinder] Bind entity 

com.satis.specific.bpoccitane.archive.standard.search.data.ArchRequestForSearch 
on table VARCH 
REQUESTFINDWITHPERIMETER 
18:07:08,562 WARN [ServiceController] Problem starting service 

persistence.units:ear=satis.ear,jar=satis.jar,unitName=SatisDatabase 
java.lang.TypeNotPresentException: Type org.jboss.seam.annotations.Name not 
present 
at 
sun.reflect.generics.factory.CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:98)
 
at 
sun.reflect.generics.visitor.Reifier.visitClassTypeSignature(Reifier.java:107) 
at 
sun.reflect.generics.tree.ClassTypeSignature.accept(ClassTypeSignature.java:31) 
at sun.reflect.annotation.AnnotationParser.parseSig(AnnotationParser.java:351) 
at 
sun.reflect.annotation.AnnotationParser.parseAnnotation(AnnotationParser.java:175)
 
at 
sun.reflect.annotation.AnnotationParser.parseAnnotations2(AnnotationParser.java:69)
 
at 
sun.reflect.annotation.AnnotationParser.parseAnnotations(AnnotationParser.java:52)
 
at java.lang.Class.initAnnotationsIfNecessary(Class.java:2998) 
at java.lang.Class.getAnnotations(Class.java:2980) 
at 
org.hibernate.reflection.java.JavaAnnotationReader.getAnnotations(JavaAnnotationReader.java:29)
 
at 

org.hibernate.reflection.java.EJB3OverridenAnnotationReader.initAnnotations(EJB3OverridenAnnotationReader.java:275)
 
at 

org.hibernate.reflection.java.EJB3OverridenAnnotationReader.getAnnotation(EJB3OverridenAnnotationReader.java:249)
 
at 
org.hibernate.reflection.java.JavaXAnnotatedElement.getAnnotation(JavaXAnnotatedElement.java:36)
 
at 
org.hibernate.cfg.AnnotationBinder.processElementAnnotations(AnnotationBinder.java:1474)
 
at org.hibernate.cfg.AnnotationBinder.bindClass(AnnotationBinder.java:699) 
at 
org.hibernate.cfg.AnnotationConfiguration.processArtifactsOfType(AnnotationConfiguration.java:353)
 
at 
org.hibernate.cfg.AnnotationConfiguration.secondPassCompile(AnnotationConfiguration.java:265)
 
at org.hibernate.cfg.Configuration.buildMappings(Configuration.java:1034) 
at 
org.hibernate.ejb.Ejb3Configuration.buildMappings(Ejb3Configuration.java:1015) 
at 
org.hibernate.ejb.EventListenerConfigurator.configure(EventListenerConfigurator.java:154)
 
at 
org.hibernate.ejb.Ejb3Configuration.createEntityManagerFactory(Ejb3Configuration.java:751)
 
at 
org.hibernate.ejb.Ejb3Configuration.createContainerEntityManagerFactory(Ejb3Configuration.java:350)
 
at 
org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFactory(HibernatePersistence.java:119)
 
at 
org.jboss.ejb3.entity.PersistenceUnitDeployment.start(PersistenceUnitDeployment.java:264)
 
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) 
at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) 
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 
at java.lang.reflect.Method.invoke(Method.java:585) 
at 
org.jboss.ejb3.ServiceDelegateWrapper.startService(ServiceDelegateWrapper.java:99)
 
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalStart(ServiceMBeanSupport.java:289)
 
at 
org.jboss.system.ServiceMBeanSupport.jbossInternalLifecycle(ServiceMBeanSupport.java:245)
 
at sun.reflect.GeneratedMethodAccessor4.invoke(Unknown Source) 
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 
at java.lang.reflect.Method.invoke(Method.java:585) 
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
 
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94) 
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86) 
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264) 
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659) 
at 
org.jboss.system.ServiceController$ServiceProxy.invoke(ServiceController.java:978)
 
at $Proxy0.start(Unknown Source) 
at org.jboss.system.ServiceController.start(ServiceController.java:417) 
at sun.reflect.GeneratedMethodAccessor7.invoke(Unknown Source) 
at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
 
at java.lang.reflect.Method.invoke(Method.java:585) 
at 
org.jboss.mx.interceptor.ReflectedDispatcher.invoke(ReflectedDispatcher.java:155)
 
at org.jboss.mx.server.Invocation.dispatch(Invocation.java:94) 
at org.jboss.mx.server.Invocation.invoke(Invocation.java:86) 
at 
org.jboss.mx.server.AbstractMBeanInvoker.invoke(AbstractMBeanInvoker.java:264) 
at org.jboss.mx.server.MBeanServerImpl.invoke(MBeanServerImpl.java:659) 
at org.jboss.mx.util.MBeanProxyExt.invoke(MBeanProxyExt.java:210) 
at $Proxy49.start(Unknown Source) 
at org.jboss.ejb3.JmxKernelAbstraction.install(JmxKernelAbstraction.java:82) 
at org.jboss.ejb3.Ejb3Deployment.startPersistenceUnits(Ejb3Deployment.java:626) 
at 

[jboss-user] [JBoss Seam] - Re: SSL Security in seam

2007-07-04 Thread rapowder
I already solved the problem!

Thank you anyway :)

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

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


[jboss-user] [JBossWS] - Re: WS security : Unprocessed 'mustUnderstand' header elemen

2007-07-04 Thread Abatecruento
I checked and the only annotation provided in the version of Jboss I'm using is 
@PortComponent.

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

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


[jboss-user] [Security JAAS/JBoss] - Re: JAAS, login configuration + Hi everybody

2007-07-04 Thread purbano
Of course I can:


  |security-constraint
  | display-nameMy Security Constraint/display-name
  | web-resource-collection
  |   web-resource-nameProtected Area/web-resource-name
  |   !-- Define the context-relative URL(s) to be protected --
  |   url-pattern/view/*/url-pattern
  |   url-pattern/documentation/*/url-pattern
  |   url-pattern/control/*/url-pattern
  | 
  |   !-- If you list http methods, only those methods are protected --
  |   http-methodDELETE/http-method
  |   http-methodGET/http-method
  |   http-methodPOST/http-method
  |   http-methodPUT/http-method
  | /web-resource-collection
  | auth-constraint
  |   !-- Anyone with one of the listed roles may access this area --
  |   role-nameAdministrators/role-name
  |   role-nameRoute Managers/role-name
  | /auth-constraint
  | 

About the second question, I know that the login module has a public Group[] 
getRoleSets() function, but I think it is not being called, according to the 
logs.

Thank you for your response,

Pablo J.

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

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


[jboss-user] [JBoss Tools (users)] - Re: Plugins installation odyssey

2007-07-04 Thread krasig
Some Jboss GURUs here?

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

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


[jboss-user] [JBoss Tools (users)] - Re: Plugins installation odyssey

2007-07-04 Thread krasig
If you want to test your new product, you must tell us how to install it!

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

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


[jboss-user] [JBoss Seam] - Re: Securing components

2007-07-04 Thread rapowder
I solved the problem, actually in my login page I was correctly calling 
id.authenticate() and id.addRole() right after authentication, but inside the 
delete() method I was checking the role with a misspelled String (stupid 
me).

Thank you anyway :)

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

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


[jboss-user] [Security JAAS/JBoss] - Re: JAAS, login configuration + Hi everybody

2007-07-04 Thread purbano
I forgot to say that the URL pattern I'm trying to access is /view/*.

And I also lost a /security-constraint at the end of the code :S It is the 
only missing tag.

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

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


[jboss-user] [JBossWS] - Re: WS security : Unprocessed 'mustUnderstand' header elemen

2007-07-04 Thread davideling
Are you developing JAX-WS Web Service or JAX-RPC Web Service?

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

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


[jboss-user] [Performance Tuning] - No Managed Connections Available

2007-07-04 Thread milind.uc
I am getting the error   No Managed Connections  Available while using the 
application. I made the database connectivity using datasource .I am using the 
mysql as a datbase . There is no any particular time  of this error occurence. 
It will come  after using it more than 7 -8 ourse or might be after using 
application continusollsy more than one dayes. I try to close every connection 
. In my application some part uses the connection using driver manager with 
mysql  and I dont know whether they closed but I closed every connection opend 
by datasource also the resultsets and statements ...


My datasource file is like below:




  | 
  | 
  | 
  | ?xml version=1.0 encoding=UTF-8?
  | 
  | !-- $Id: mysql-ds.xml,v 1.3 2004/09/15 14:37:40 loubyansky Exp $ --
  | !--  Datasource config for MySQL using 3.0.9 available from:
  | http://www.mysql.com/downloads/api-jdbc-stable.html
  | --
  | 
  | datasources
  |   local-tx-datasource
  | jndi-nameDBConnection/jndi-name
  | use-java-contextfalse/use-java-context 
  | 
connection-urljdbc:mysql://etp-05-02:3306/millind_demo?autoReconnect=true/connection-url
  | driver-classcom.mysql.jdbc.Driver/driver-class
  | user-nameroot/user-name
  | passwordroot/password
  |  max-pool-size60/max-pool-size
  |   min-pool-size10/min-pool-size
  |   blocking-timeout-millis5000/blocking-timeout-millis
  |   idle-timeout-minutes15/idle-timeout-minutes
  |   !-- correspondinasdg type-mapping in the standardjbosscmp-jdbc.xml 
(optional) --
  |   metadata
  |  type-mappingmySQL/type-mapping
  |   /metadata
  |   /local-tx-datasource
  | 
  | /datasources
  | 


and I got the error of ::

of No manged connection availbale within the configured blocking timeout 
of(5000ms)

In most of my progrma I used the simple query statemnet in some we used 
prepared statements..



I know this error may be because of some open connection so I am going to 
chechk it again. but I am felling there some other problem with mysql and jboss 
configuration files..

Also as I am using the connection pooling still we need to close evey coneecion 
watchfully ,, so is it means that connection polling not works that what we 
thought concpetually that is there is no. of connection available whihc we 
mwtnion in the dataconnection file.

And yes, I used the java-conetxt  = false  becasue my application is desktop 
allpication in java swing and we are using the java messaging service to 
transfer the data so thats why to used the3 datasource connection I used 
false




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

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


[jboss-user] [JBossWS] - Re: WS security : Unprocessed 'mustUnderstand' header elemen

2007-07-04 Thread Abatecruento
I'm developing JAX-RPC.

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

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


[jboss-user] [EJB/JBoss] - forever problem! right way to create and deploy bean

2007-07-04 Thread henry _h
Hi,
i am new in Beans issue. I have a stateless Hellowrod Session bean.
(MyBean.java, MyBeanRemote )
and a Client, MyBeanCleint.
With eclipse i export/deploy the Project as Jar file to Jboss 4.0.5
(Left click project - export- jar file)
So i have a created jar file MyBean.jar in Jboss.
When i run the client i become ?Mybean not bound exception? from the 
naming server!
?All files? which i have in my project are (project is according to the book 
sample 
created as general java project):
1-sever.MyBean.java
2.server.MyBeanRemote.java
3-client.MyBeanClient.java

Here is my client code:
//
public class MyBeanClient {

public static void main(String[] args) {
try {
Properties p = new Properties();
p.put(Context.INITIAL_CONTEXT_FACTORY,

org.jnp.interfaces.NamingContextFactory);
p.put(Context.URL_PKG_PREFIXES,
org.jboss.naming:org.jnp.interfaces);
p.put(Context.PROVIDER_URL, jnp://localhost:1099);
Context ctx = new InitialContext(p);
Object ref = ctx.lookup(MyBean);
MyBeanRemote mbr = (MyBeanRemote) PortableRemoteObject
.narrow(ref, MyBeanRemote.class);

System.out.println( mbr.sayHello());
} catch (NamingException e) {
e.printStackTrace();
}
}

Please help me
thanks


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

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


[jboss-user] [JBoss Tools (users)] - Re: Plugins installation odyssey

2007-07-04 Thread baz

I can not understand where you have problems. The complete suite is easily 
installable. If you have problems look in the wiki. There is a page about 
installation of the nightlys.

And why do you have the requirement, that you must install only the plugins you 
use? Eclipse runs fine, even if you do not use some of its plugins.

We do not have time to fenter with the dependencies between the plugins. So we 
unzip eclipse-jee-europa-win32.zip and make an eclipse extension site out of a 
nightly. Everything installs fine, even for 
JBossTools-200707031655-nightly-ALL-win32.zip iwe installed today. But we have 
to edit some feature.xml files according to
http://jira.jboss.org/jira/browse/JBIDE-500 

If you want only a specific plugin, then try it. 

My opinion in this case is: The 'Jboss GURUs' should spent there time to 
stabilize and extend JBoss Tools. When it is ready, than there is time to make 
a dokumentation about installation of individual plugins. 

Surely, i have spend much time (more than a day) in figuring out, how to 
install the nightlys. So i have augmented the wiki page about installation of 
the nightlys with my gained knowledge. 


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

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


[jboss-user] [EJB 3.0] - Re: service=EJB3 + is already registered

2007-07-04 Thread wolfc
Maybe this bug is affecting you:
http://jira.jboss.com/jira/browse/EJBTHREE-962

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

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


[jboss-user] [JBoss Seam] - Re: s:selectItems

2007-07-04 Thread [EMAIL PROTECTED]
http://jira.jboss.com/jira/browse/JBSEAM-1242

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

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


[jboss-user] [JBoss jBPM] - jbpm jpdl designer

2007-07-04 Thread redchina5
Hi all:

   I'm a beiginner of jbpm and studing how to make a plugin like jpdl designer. 
Where could I find the source code of jbpm jpdl designer?

   Thank you very much.

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

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


[jboss-user] [JBoss Portal] - Re: JBoss AS 4.2.0GA + JBoss Portal 2.6 + JSF 1.2 + JSFPortl

2007-07-04 Thread [EMAIL PROTECTED]
Ok si i tried a basic JSF portlet (the one available on the Sun RI portlet 
bridge website)
https://jsfportletbridge.dev.java.net/files/documents/5355/59371/guessnumberportlet.war

It worked out of the box. Can you check again your application ?

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

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


[jboss-user] [JBoss Portal] - JBoss Portal 2.6 and redirect

2007-07-04 Thread marakov
Hello. In my project I use JBoss Portal 2.6. In JBoss Portal 2.6 CR2 for 
redirect to other resource I used code:

  | FacesContext ctx = FacesContext.getCurrentInstance();
  | ExternalContext ex = ctx.getExternalContext();
  | ex.redirect(ex.encodeActionURL(some path));
  | ...
  | ctx.responseComplete();
  | 
When I'm trying to use this code in JBoss Portal 2.6 GA it doesn't work.
Thinks for help.

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

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


[jboss-user] [JBoss Portal] - Re: portlet with eCommerce style assets

2007-07-04 Thread [EMAIL PROTECTED]
You would need to create the portlet. You can be inspired by the code of the 
CMS admin if you want to.

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

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


[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6 and redirect

2007-07-04 Thread [EMAIL PROTECTED]
With no error, we cannot help ;)

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

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


[jboss-user] [JBossWS] - Re: WS security : Unprocessed 'mustUnderstand' header elemen

2007-07-04 Thread davideling
Now I understand why You don't use annotations.

I'm sorry, but I cannot help you with JAX-RPC Web service
and WS-Security.

I'm quite sure You have to configure the skeleton artifacts creation
at first step but i don't know how.

Bye


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

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


[jboss-user] [JBoss Portal] - Re: DatabaseServerLoginModule

2007-07-04 Thread [EMAIL PROTECTED]
Why don't you use: org.jboss.portal.identity.auth.DBIdentityLoginModule that 
you commented out ?
You can edit the SQL queries in it.

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

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


[jboss-user] [JBoss jBPM] - Problem with Deployment (FileUploadException)

2007-07-04 Thread grdzeli_kaci
hi all,
i have problem with deployment, can anybody help me, is this known issue ?
i found this problem here in this forum but i can't resolve this problem yet,
http://www.jboss.com/index.html?module=bbop=viewtopicp=4050482#4050482
http://www.jboss.com/index.html?module=bbop=viewtopicp=3951326#3951326
when i tried to deploy process archive i got this error:


  | 23:54:49,552 ERROR [STDERR] 
org.apache.commons.fileupload.FileUploadException: the request was rejected 
because no multipart boundary was found
  | 23:54:49,554 ERROR [STDERR] at 
org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:324)
  | 23:54:49,554 ERROR [STDERR] at 
org.apache.commons.fileupload.FileUploadBase.parseRequest(FileUploadBase.java:268)
  | 23:54:49,554 ERROR [STDERR] at 
org.jbpm.webapp.servlet.ProcessUploadServlet.handleRequest(ProcessUploadServlet.java:87)
  | 23:54:49,555 ERROR [STDERR] at 
org.jbpm.webapp.servlet.ProcessUploadServlet.service(ProcessUploadServlet.java:63)
  | 23:54:49,555 ERROR [STDERR] at 
javax.servlet.http.HttpServlet.service(HttpServlet.java:810)
  | 23:54:49,555 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:252)
  | 23:54:49,555 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | 23:54:49,555 ERROR [STDERR] at 
org.jbpm.webapp.filter.LogFilter.doFilter(LogFilter.java:59)
  | 23:54:49,555 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | 23:54:49,555 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | 23:54:49,555 ERROR [STDERR] at 
org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
  | 23:54:49,555 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)
  | 23:54:49,555 ERROR [STDERR] at 
org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)
  | 23:54:49,555 ERROR [STDERR] at 
org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)
  | 23:54:49,555 ERROR [STDERR] at 
org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
  | 23:54:49,555 ERROR [STDERR] at 
org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:175)
  | 23:54:49,555 ERROR [STDERR] at 
org.apache.catalina.authenticator.AuthenticatorBase.invoke(AuthenticatorBase.java:432)
  | 23:54:49,555 ERROR [STDERR] at 
org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:74)
  | 23:54:49,555 ERROR [STDERR] at 
org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
  | 23:54:49,556 ERROR [STDERR] at 
org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
  | 23:54:49,556 ERROR [STDERR] at 
org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
  | 23:54:49,556 ERROR [STDERR] at 
org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
  | 23:54:49,556 ERROR [STDERR] at 
org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
  | 23:54:49,556 ERROR [STDERR] at 
org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
  | 23:54:49,556 ERROR [STDERR] at 
org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
  | 23:54:49,556 ERROR [STDERR] at 
org.apache.tomcat.util.net.MasterSlaveWorkerThread.run(MasterSlaveWorkerThread.java:112)
  | 23:54:49,556 ERROR [STDERR] at java.lang.Thread.run(Thread.java:595)
  | 



___
Regards,
Paata.

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

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


[jboss-user] [JBoss Portal] - Re: theme css problem

2007-07-04 Thread [EMAIL PROTECTED]
The phalanx theme is an old theme that has not been carefully tested.

Actually only renaissance and maple themes are safe to use.

If you can fix the CSS and propose a patch it would be great.

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

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


[jboss-user] [EJB 3.0] - Re: Calling rmi server running in Weblogic 6.x from Jboss 4.

2007-07-04 Thread jinchuriki
Hi guys, any luck for me?

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

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


[jboss-user] [JBoss Seam] - Re: s:selectItems

2007-07-04 Thread cormet
Thanks, pete...As another workaround, I used custom converter and solved the 
problem.

Cheers

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

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


[jboss-user] [JBoss Seam] - Re: Problem with Seam 1.2.1 and Trinidad 1.0.1

2007-07-04 Thread [EMAIL PROTECTED]
You don't need this jar with trinidad, onyl with adf faces.

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

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


[jboss-user] [JBoss jBPM] - Re: How can I get start Date?

2007-07-04 Thread slogger
Thank you very much for you answers! :))
I allready solved this task.
I hope that it will documented in a short time.

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

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


[jboss-user] [JBoss jBPM] - Re: process instance and groups

2007-07-04 Thread kukeltje
file a jira issue for this behaviour to be changed.. give it low priority and 
assign it to 3.3 (but it still could be rejected)... there is a workaround I 
think to after the start, re-assign it. Not sure if that works

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

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


[jboss-user] [JBoss jBPM] - Re: Problem with Deployment (FileUploadException)

2007-07-04 Thread cahimoped
Your servlet get something but apparently the content isn't multipart.

How do you use it? From the web-console? the GPD?

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

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


[jboss-user] [JBoss jBPM] - Re: JBPM-BPEL 1.1-beta1 and JBOSS AS 4.0.4 helloworldservice

2007-07-04 Thread alpinorthoffice
Hi 
I am trying to install jboos-bpel1.1-beta3
I have build the sar file and deployed it in jboss as but I get the following 
error:

10:20:12,002 INFO  [NamingHelper] JNDI InitialContext properties:{}
10:20:12,012 FATAL [DatasourceConnectionProvider] Could not find datasource: 
java:/JbpmBpelDS
javax.naming.NameNotFoundException: JbpmBpelDS not bound

I don't know what I am doing wrong.
jbpm-bpel-ds.xml is inside the sar archive
JBoss AS= 4.0.5 GA

Thanks!

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

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


[jboss-user] [JBoss jBPM] - Re: process instance and groups

2007-07-04 Thread syngolis
A workaround could either be a nodeenter-event in start-state with an 
actionhandler. But I didn't test that. So i am not sure...

In my opinion, it is the correct behaviour of an workflow management system. If 
an initatior starts a workflow, usually he has to set some parameters for the 
workflow to process. But at least the possibility to create an other behaviour 
in some cases would be good.

I'll create the jira later.



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

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


[jboss-user] [JBoss jBPM] - Re: jbpm jpdl designer

2007-07-04 Thread syngolis
Download the CVS sources as explained on wiki page. The sources for designer 
are included.

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

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


[jboss-user] [JBoss jBPM] - Re: How to set Token name?

2007-07-04 Thread cahimoped
You can always get the root token. So it doesn't need a name.
For all other tokens you may create the name can be set in the constructor.

I think a setname method would be pretty useless...

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

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


[jboss-user] [Installation, Configuration Deployment] - Re: StackOverflow in deployment

2007-07-04 Thread charlieparker2k7
no, i've not resolved the problem. I've traied to chage metod 
AOPClassPool.getResourceName: for replace special chars i don't use replaceAll 
but a custom method but now the stacktrace error is: 

at javassist.ClassPool.get0(ClassPool.java:433)
at javassist.ClassPool.get(ClassPool.java:413)
at 
org.jboss.aop.deployment.ScopedJBossClassPool.getCached(ScopedJBossClassPool.java:185)
at javassist.ClassPool.get0(ClassPool.java:433)
at javassist.ClassPool.get(ClassPool.java:413)


I think that the cause of errors is the large number of class. I've a project 
with, more or less, 400 classes. Also you ?

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

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


[jboss-user] [JBoss Messaging] - Re: JBoss Messaging suitable for these requirements?

2007-07-04 Thread knoxville
Ok, thanks Tim.

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

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


[jboss-user] [JBoss jBPM] - Error invoking doc/lit/wrapped (EJB3 POJO SLSB) endpoints fr

2007-07-04 Thread mreis
We have problems to invoke doc/lit/wrapped (EJB3 POJO SLSB) endpoints from a 
bpel process (if we however publish the endpoint as rpc/lit everything works 
fine).

the bpel process definition:
?xml version=1.0 encoding=UTF-8?
  | process name=HelloWorld targetNamespace=urn:samples:review
  |   xmlns=http://schemas.xmlsoap.org/ws/2004/03/business-process/;
  |   xmlns:tns=urn:samples:review
  |   xmlns:char=http://services.planets-project.eu/ifr/characterisation;
  |   xmlns:bpel=http://schemas.xmlsoap.org/ws/2004/03/business-process/;
  |   xmlns:xsi=http://www.w3.org/2001/XMLSchema-instance;
  |   
xsi:schemaLocation=http://schemas.xmlsoap.org/ws/2003/03/business-process/
  |   http://schemas.xmlsoap.org/ws/2003/03/business-process/;
  |   
  |   !--  import importType=http://schemas.xmlsoap.org/wsdl/; 
location=hello.wsdl namespace=urn:samples:review/
  | import importType=http://schemas.xmlsoap.org/wsdl/; 
location=interface/SimpleCharacterisationService.wsdl 
namespace=http://services.planets-project.eu/ifr/characterisation/
  | --
  |   
  |   partnerLinks
  | !-- establishes the relationship with the caller agent --
  | partnerLink name=caller partnerLinkType=tns:Greeter-Caller
  |   myRole=Greeter /
  |   partnerLink name=characterizePL partnerLinkType=tns:Characterize
  |   partnerRole=CharacterizeRole /
  |   /partnerLinks
  | 
  |   variables
  | !-- holds the incoming message --
  | variable name=request messageType=tns:nameMessage /
  | !-- holds the outgoing message --
  | variable name=response messageType=tns:greetingMessage /
  | variable name=FileURL 
messageType=char:SimpleCharacterisationService_characteriseFile /
  | variable name=CharResponse 
messageType=char:SimpleCharacterisationService_characteriseFileResponse /  
  |   /variables
  | 
  |   sequence
  | 
  | !-- receive the name of a person --
  | receive operation=sayHello partnerLink=caller 
portType=tns:Greeter
  |   variable=request createInstance=yes /
  |   
  | assign
  |   copy
  | from variable=request part=name/
  | to variable=FileURL part=characteriseFile/
  |   /copy
  | /assign
  | 
  | !-- Charcterize a File --
  | invoke name=characteriseFile operation=characteriseFile 
partnerLink=characterizePL
  |   portType=char:SimpleCharacterisationService inputVariable=FileURL
  |   outputVariable=CharResponse
  |   !--  correlations
  | correlation set=atmInteraction pattern=in initiate=yes /
  |   /correlations--
  | /invoke
  | 
  | 
  | assign
  |   copy
  | from variable=CharResponse part=characteriseFileResponse/
  | to variable=response part=greeting/
  |   /copy
  | /assign
  | 
  | !-- reply with the greeting --
  | reply operation=sayHello partnerLink=caller portType=tns:Greeter
  |   variable=response /
  |   /sequence
  | 
  | /process

the wsdl of the (overall/wrapping) process:
?xml version=1.0 encoding=UTF-8?
  | definitions targetNamespace=urn:samples:review
  |   xmlns=http://schemas.xmlsoap.org/wsdl/;
  |   xmlns:tns=urn:samples:review
  |   xmlns:xsd=http://www.w3.org/2001/XMLSchema;
  |   xmlns:plt=http://schemas.xmlsoap.org/ws/2004/03/partner-link/;
  |   xmlns:char=http://services.planets-project.eu/ifr/characterisation;
  | 
  |   
  |   import 
namespace=http://services.planets-project.eu/ifr/characterisation; 
location=interface/SimpleCharacterisationService.wsdl /
  | 
  |   !-- characterizes the relationship between the greeter and its caller --
  |   plt:partnerLinkType name=Greeter-Caller
  | plt:role name=Greeter portType=tns:Greeter/
  |   
  | !-- the Caller does not provide services to the Greeter,
  |   this is why we omit the Caller role --
  |   /plt:partnerLinkType
  |   
  | !-- defines the relationship between the process and the 
Characterization process --
  |   plt:partnerLinkType name=Characterize
  | plt:role name=CharacterizeRole 
portType=char:SimpleCharacterisationService/
  |   
  |   /plt:partnerLinkType
  | 
  |   !-- carries the name of a person --
  |   message name=nameMessage
  | part name=name type=xsd:string /
  |   /message
  | 
  |   !-- carries the greeting --
  |   message name=greetingMessage
  | part name=greeting type=xsd:string /
  |   /message
  | 
  |   !-- describes the interface presented to callers --
  |   portType name=Greeter
  | operation name=sayHello
  |   input message=tns:nameMessage /
  |   output message=tns:greetingMessage /
  | /operation
  |   /portType
  | 
  | 
  | 
  | /definitions

the wsdl of the doc/lit/wrapped endpoint to be invoked:
definitions name='SimpleCharacterisationService' 
targetNamespace='http://services.planets-project.eu/ifr/characterisation' 
xmlns='http://schemas.xmlsoap.org/wsdl/' 
xmlns:soap='http://schemas.xmlsoap.org/wsdl/soap/' 

[jboss-user] [JBoss jBPM] - First Thought about BAM

2007-07-04 Thread fady.matar
I will try in here to post some ideas about Business Activity Monitoring 
short-named as BAM and gather all the feedback from the community in order to 
be able to implement a BAM tool that can be incorporated to future versions of 
the jBPM Web Console

Let's get started...

The growing interest in Business Process Management (BPM) which made the 
understanding of relationships between business activities and real-time IT 
operations led into the emergence of Business Activity Monitoring. 
At the current state there is no standard definition of BAM. BAM can be used to 
identify the reflection of data to become usable information that can be used 
in businesses to:

Monitor the overall and the fine-grained detailed performance of business 
operations.
Identify bottlenecks, thresholds, failures and exceptions
Track the execution of processes and distinguish between failures and 
accomplishments.

BAM addresses the tasks identified above and addresses them in real-time mode 
by using the data and build out of them valuable information that can be 
addressed to optimize business operations.
The main focus of BAM of the past few years has been solely based on building 
reports out of the data gathered in BPM tasks and this has been a rewarding 
approach to monitor the performance. However businesses understand that 
efficiency alone is not sufficient to survive the market, the aim is excellence 
to increase revenues and market shares.

BAM is all about a vital monitoring and measurement of business activity across 
systems and business processes. The business process describes the different 
tasks required to fulfill the specified activity, business transactions are 
actual execution instances of processes, and process events relate to 
occurrences within the transactions such as a transaction completing a step or 
an error occurring. BAM is focused on these transactions and events, 
concentrating on a number of keywords I will be explaining at a later point in 
time.

I'm waiting for everybody's feedback.

Cheers!

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

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


[jboss-user] [JBoss jBPM] - Re: jBPM or pages.xml overloading / extending / composition

2007-07-04 Thread kukeltje
utiba_davidr wrote : Does this mean that there is not as yet a solution to my 
problem? Yes

utiba_davidr wrote : Or does it mean I should tackle my problem differently 
in the mean time?Yes

utiba_davidr wrote :  If so, would you be able to kindly provide an example 
of how you would tackle based on the following scenario:Sorry, would take to 
much of my private time to investigate this, maybe someone else can help out


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

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


[jboss-user] [JBoss jBPM] - console : NullPointerException when examining process instan

2007-07-04 Thread gogoasa
Hello,

I click examine on a process instance in the console and I get the exception 
below. Anybody understands what could be wrong ?

Thanks.


  | java.lang.NullPointerException
  | java.lang.String.compareTo(String.java:998)
  | java.lang.String.compareTo(String.java:90)
  | 
org.jboss.gravel.data.action.SortActionListener$ELComparator.compare(SortActionListener.java:144)
  | java.util.Arrays.mergeSort(Arrays.java:1284)
  | java.util.Arrays.sort(Arrays.java:1223)
  | java.util.Collections.sort(Collections.java:159)
  | 
edu.emory.mathcs.backport.java.util.Collections.sort(Collections.java:31)
  | 
org.jboss.gravel.data.action.SortActionListener.processAction(SortActionListener.java:91)
  | javax.faces.event.ActionEvent.processListener(ActionEvent.java:77)
  | 
javax.faces.component.UIComponentBase.broadcast(UIComponentBase.java:758)
  | javax.faces.component.UICommand.broadcast(UICommand.java:368)
  | 
org.jboss.gravel.action.handler.ResponseActionsHandler.onComponentPopulated(ResponseActionsHandler.java:24)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.apply(ComponentHandler.java:180)
  | 
com.sun.facelets.tag.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:47)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.applyNextHandler(ComponentHandler.java:314)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.apply(ComponentHandler.java:169)
  | 
com.sun.facelets.tag.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:47)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.applyNextHandler(ComponentHandler.java:314)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.apply(ComponentHandler.java:169)
  | 
org.jboss.gravel.common.handler.CollectionHandler.applyNextHandler(CollectionHandler.java:155)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.apply(ComponentHandler.java:169)
  | 
com.sun.facelets.tag.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:47)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.applyNextHandler(ComponentHandler.java:314)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.apply(ComponentHandler.java:169)
  | 
com.sun.facelets.tag.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:47)
  | 
org.jboss.gravel.action.handler.CheckRoleHandler.apply(CheckRoleHandler.java:128)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.applyNextHandler(ComponentHandler.java:314)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.apply(ComponentHandler.java:169)
  | 
com.sun.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:49)
  | com.sun.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:25)
  | com.sun.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:248)
  | com.sun.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:294)
  | com.sun.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:273)
  | 
com.sun.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:143)
  | com.sun.facelets.tag.ui.DecorateHandler.apply(DecorateHandler.java:105)
  | 
com.sun.facelets.tag.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:47)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.applyNextHandler(ComponentHandler.java:314)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.apply(ComponentHandler.java:169)
  | 
com.sun.facelets.tag.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:47)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.applyNextHandler(ComponentHandler.java:314)
  | 
com.sun.facelets.tag.jsf.ComponentHandler.apply(ComponentHandler.java:169)
  | com.sun.facelets.tag.ui.DefineHandler.apply(DefineHandler.java:58)
  | 
com.sun.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:128)
  | 
com.sun.facelets.impl.DefaultFaceletContext$TemplateManager.apply(DefaultFaceletContext.java:306)
  | 
com.sun.facelets.impl.DefaultFaceletContext.includeDefinition(DefaultFaceletContext.java:279)
  | com.sun.facelets.tag.ui.InsertHandler.apply(InsertHandler.java:68)
  | 
com.sun.facelets.tag.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:47)
  | 
com.sun.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:49)
  | 
com.sun.facelets.tag.CompositeFaceletHandler.apply(CompositeFaceletHandler.java:47)
  | com.sun.facelets.compiler.EncodingHandler.apply(EncodingHandler.java:25)
  | com.sun.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:248)
  | com.sun.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:294)
  | com.sun.facelets.impl.DefaultFacelet.include(DefaultFacelet.java:273)
  | 
com.sun.facelets.impl.DefaultFaceletContext.includeFacelet(DefaultFaceletContext.java:143)
  | 
com.sun.facelets.tag.ui.CompositionHandler.apply(CompositionHandler.java:113)
  | 
com.sun.facelets.compiler.NamespaceHandler.apply(NamespaceHandler.java:49)
  | 

[jboss-user] [JBoss jBPM] - Re: Assigning a task to-{group, rolebased, ...}

2007-07-04 Thread [EMAIL PROTECTED]
Petia,

The installation of the GPD is not very hard though. If you have version 3.2.1 
of the jbpm-jpdl-suite and version 3.2.2 of the Eclipse SDK, just extract the 
eclipse archive in the jbpm-jpdl-3.2.1\designer folder.

Regards,
Koen

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

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


[jboss-user] [JBoss jBPM] - Re: Assigning a task to-{group, rolebased, ...}

2007-07-04 Thread cahimoped
All this is classic Eclipse plugins crap. Unzip your GPD archive and point the 
Ecplise plugin for new local site. And you need to have some others plugins 
installed before GPD can work.

To begin with jbpm 3.2.1 I suggest you take the suite version from sourceforge. 
It contains everything. All you need to do is unzip it somewhere, launch the 
server with the start.bat or start.sh and it should work directly.

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

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


[jboss-user] [JBoss jBPM] - Re: First Thought about BAM

2007-07-04 Thread kukeltje
Hi, 

Have a look at http://wiki.jboss.org/wiki/Wiki.jsp?page=JbpmBAM and lets get 
that up-to-date with the feedback here... 


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

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


[jboss-user] [JBoss jBPM] - Re: Problem with Deployment (FileUploadException)

2007-07-04 Thread [EMAIL PROTECTED]
I assume you are using an older version of the GPD with a newer version of the 
jbpm-console or something like that. List your specific version matrix please.

Regards,
Koen

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

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


[jboss-user] [JBoss jBPM] - Re: First Thought about BAM

2007-07-04 Thread fady.matar
We'll start in here to collect feedback of the community and move a more or 
less mature documentation to the wiki pages. 

I'm working on that already.

Cheers

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

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


[jboss-user] [JBoss jBPM] - Re: Sub TaskInstance of a TaskInstance

2007-07-04 Thread saha.saptarshi
I forgot to mention that I am using jpdl 3.0.

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

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


[jboss-user] [JBoss jBPM] - Re: process instance and groups

2007-07-04 Thread ricardomarques
Don't have sure that's the correct scenario, but the one who creates an 
instance could be different from the one who works on it.

If there is a jdl feature for this on process design it should be available on 
the engine level.

Or not..


syngolis, can u later post here the url for the jira issue please, i want to 
follow that :)

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

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


[jboss-user] [JBoss Seam] - wap/wml

2007-07-04 Thread seammm
Hi - Has anybody used seam with a wap/wml application? There is a rumor about a 
wap renderkit on tobago forums but I am yet to see the library anywhere.. 
Thanks.

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

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


[jboss-user] [JBoss jBPM] - Re: First Thought about BAM

2007-07-04 Thread kukeltje
Good work, but this page, besides not being linked to from anywhere obvious 
afaict) IS already the result from feedback in the community many months ago. 


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

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


[jboss-user] [JBoss jBPM] - Variables in MailAction

2007-07-04 Thread syngolis
Hi,
i got a question about the usage of jbpm-context-variables in mails.

If i set an mail-action:
mail name=MailAction actors=; to=[EMAIL PROTECTED] 
template=jbpm.mail.templates.xml
  | subjectSample/subject
  | textProcessId: #{processInstance}/text
  | /mail  

I get something like this:
anonymous wrote : ProcessId: [EMAIL PROTECTED]
(not very helpful)

Is it possible to access for example Id or name of the variables??

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

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


[jboss-user] [JBoss jBPM] - Re: First Thought about BAM

2007-07-04 Thread fady.matar
That was a feedback I gathered with Tom, if you think anything else needs to be 
appended please let us know

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

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


[jboss-user] [JBoss Seam] - Re: ResourceBundle in Database

2007-07-04 Thread Zerg-Spirit
Just one question though, I'm trying to retrieve the connection String to the 
Database (aswell as user and password) used by Hibernate (and set in the 
persistence-xml) dynamically, so that I just have to change it there later on 
(since I'll use plain java to access my db with my resource bundle).
How to do that? I've seen no methods to do that in the EntityManager.

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

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


[jboss-user] [JBoss Seam] - Seam2 Beta s:formattedText bug?

2007-07-04 Thread jcruise
if the value property is null then you get an NPE from the renderer e.g.


  | java.lang.NullPointerException
  | at java.io.PrintWriter.write(PrintWriter.java:401)
  | at 
com.sun.faces.renderkit.html_basic.HtmlResponseWriter.write(HtmlResponseWriter.java:495)
  | at 
org.jboss.seam.ui.renderkit.FormattedTextRendererBase.doEncodeBegin(FormattedTextRendererBase.java:24)
  | at 
org.jboss.seam.ui.util.cdk.RendererBase.encodeBegin(RendererBase.java:79)
  | at 
javax.faces.component.UIComponentBase.encodeBegin(UIComponentBase.java:785)
  | at 
org.ajax4jsf.framework.renderer.RendererBase.renderChild(RendererBase.java:280)
  | at 
org.ajax4jsf.framework.renderer.RendererBase.renderChildren(RendererBase.java:262)
  | at 
org.richfaces.renderkit.TabRendererBase.encodeChildren(TabRendererBase.java:113)
  | at 
javax.faces.component.UIComponentBase.encodeChildren(UIComponentBase.java:809)
  | at 
org.ajax4jsf.framework.renderer.RendererBase.renderChild(RendererBase.java:282)
  | at 
org.ajax4jsf.framework.renderer.RendererBase.renderChildren(RendererBase.java:262)
  | at 
org.richfaces.renderkit.html.TabPanelRenderer.doEncodeChildren(TabPanelRenderer.java:272)
  | at 
org.richfaces.renderkit.html.TabPanelRenderer.doEncodeChildren(TabPanelRenderer.java:267)
  | 

Cheers
J

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

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


[jboss-user] [JBoss jBPM] - Re: First Thought about BAM

2007-07-04 Thread kukeltje
In my opinion, it is good enough to get started with some initial 
implementation. If you have that, the chances are that you/we will gather much 
more feedback.


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

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


[jboss-user] [JBoss jBPM] - Re: process instance and groups

2007-07-04 Thread syngolis
Jira created: http://jira.jboss.com/jira/browse/JBPM-1009



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

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


[jboss-user] [JBoss jBPM] - Re: Variables in MailAction

2007-07-04 Thread kukeltje
Correct, the toString() of ProcessInstance is not implemented.

http://docs.jboss.com/jbpm/v3/userguide/mail.html

just use #{variableName}




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

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


[jboss-user] [JBoss Seam] - Could not destroy component

2007-07-04 Thread toni
Hi,

have read about the problem with components vanishing before the http sessions 
ends.

I have left the sfsb timeout at 30 min, set the http session timeout to 20 and 
the conversation timeout to 60 min.

I still get the error Could not destroy component. Is this because of the 
conversation timeout of 60 min? I thought that every conversation is being 
destroyed, when the http session ends?!

Also I was wondering how to interpretate the sfsb timeout. Will my sfsb be 
removed, even if its involved in some batch processing for a longer preriod 
than 30 minutes? For example a database update?

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

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


[jboss-user] [JBoss jBPM] - Re: Sub TaskInstance of a TaskInstance

2007-07-04 Thread kukeltje
Not sure about how complete the support for subprocesses in jBPM 3.0 is, but 
the basics are not different.

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

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


[jboss-user] [JBossCache] - Re: jbosscache MBeans not appearing in jconsole

2007-07-04 Thread FredrikJ
If you are using the regular cache you can follow this thread:

http://www.jboss.com/index.html?module=bbop=viewtopict=106118


If you are using pojocache you can use a similar pattern:

MBeanServer mbs = getMBeanServer();
  | mbs.registerMBean(new PojoCacheJmxWrapper(cache), pojoCacheName);

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

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


[jboss-user] [JBoss jBPM] - Re: jbpm jpdl designer

2007-07-04 Thread redchina5
thx a lot, let me hava a try.

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

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


[jboss-user] [JBoss Portal] - Images

2007-07-04 Thread qwerty979
I use portal 2.6. I create a new layout, in the layout I have inserted one 
image, but I do not know where to copy the image in the webapp, helpme.
Thank 
Sergio

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

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


[jboss-user] [JBoss jBPM] - Re: First Thought about BAM

2007-07-04 Thread fady.matar
This is in progress, I'm lining up the foundations and the skeleton application 
is already there 


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

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


[jboss-user] [JBoss jBPM] - Re: First Thought about BAM

2007-07-04 Thread kukeltje
Cool, good luck.

Is it fully new code or is some framework (e.g. Pentaho) being used... 
Personally I'd opt for the latter

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

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


[jboss-user] [JBoss jBPM] - Re: Variables in MailAction

2007-07-04 Thread syngolis
Ok. Then i have to use a workaround, e.g. an expression to set the variables 
content...

Thanks!

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

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


[jboss-user] [JBoss jBPM] - Re: Variables in MailAction

2007-07-04 Thread kukeltje
uhhmm... how is that a 'workaround'? 

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

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


[jboss-user] [Installation, Configuration Deployment] - connection speed problems

2007-07-04 Thread kuvera
We have a linux server behind a firewall, with JBoss 4.2 GA. All clients are 
remote on the internet, with ADSL connections. One network is behind a 
firewall, and there are simple connections, too.

Now I measure the times of EJB roundtrips on a simple connection. Normally they 
are around 200 ms, which is acceptable. But quite often this time is up to 4-5 
seconds (a simple EJB call with little to do!), and not too much network 
traffic on the client and server networks.

Have others experienced this? Do ports 1098,1099,3873 suffer from some kind of 
bad priority? What can be done?


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

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


[jboss-user] [JBoss Seam] - Re: node enter and assign localvariabile to the task instanc

2007-07-04 Thread szaccaria
I resolve with this code


  | import org.jbpm.context.exe.ContextInstance;
  | import org.jbpm.graph.exe.Token;
  | import org.jbpm.taskmgmt.def.TaskControllerHandler;
  | import org.jbpm.taskmgmt.exe.TaskInstance;
  | 
  | public class AssegnaSuperVisoreAlTaskInstance implements 
TaskControllerHandler {
  | 
  | private static final long serialVersionUID = 1L;
  | 
  | public void initializeTaskVariables(TaskInstance taskInstance, 
ContextInstance contextInstance, Token token) {
  | 
  | taskInstance.setVariableLocally(supervisore, 
org.jboss.seam.core.TaskInstance.instance().getActorId());
  | 
  | }
  | 
  | public void submitTaskVariables(TaskInstance arg0, ContextInstance 
arg1, Token arg2) {
  | 
  | }
  | 
  | }
  | 

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

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


[jboss-user] [JBoss Seam] - Re: Seam cannot find my components

2007-07-04 Thread stephenwilliams
Hi

I am having this problem when deploying an expanded ear on a linux machine with 
the same server version. 



my structure looks like...

  | 04.07.2007  11:28   443.432 antlr-2.7.6.jar
  | 04.07.2007  11:28   546.498 antlr-3.0ea8.jar
  | 04.07.2007  11:2836.846 commons-jci-core-1.0-406301.jar
  | 04.07.2007  11:2810.802 commons-jci-janino-2.4.3.jar
  | 04.07.2007  11:28   635.207 drools-compiler-3.0.5.jar
  | 04.07.2007  11:28   550.976 drools-core-3.0.5.jar
  | 04.07.2007  11:2829.309 el-api.jar
  | 04.07.2007  11:2899.659 el-ri.jar
  | 04.07.2007  11:28   383.546 janino-2.4.3.jar
  | 04.07.2007  11:28   665.529 jboss-seam.jar
  | 04.07.2007  11:28   603.060 jbpm-3.1.4.jar
  | 04.07.2007  11:28DIR  META-INF
  | 04.07.2007  11:28   139 security.drl
  | 04.07.2007  11:28   358.843 stringtemplate-2.3b6.jar
  | 04.07.2007  11:28DIR  MyProject.jar
  | 04.07.2007  11:28DIR  MyProject.war



my jar has a seam.properties and the classes that I need to be loaded.

The deployment works on my local machine but not on my web-server that has an 
exact copy of my local server on it. 

Could someone please give me a hint towards what could be going wrong.

Cheers!

  | 2007-07-04 11:01:14,488 DEBUG [org.jboss.seam.deployment.Scanner] found: 
com/
  | 2007-07-04 11:01:14,488 DEBUG [org.jboss.seam.deployment.Scanner] found: 
com/algodes/
  | 2007-07-04 11:01:14,488 DEBUG [org.jboss.seam.deployment.Scanner] found: 
com/algodes/server/
  | 2007-07-04 11:01:14,488 DEBUG [org.jboss.seam.deployment.Scanner] found: 
com/algodes/server/Authenticator.class
  | 2007-07-04 11:01:14,489 DEBUG [org.jboss.seam.deployment.ComponentScanner] 
found component class: com/algodes/server/Authenticator.class
  | 2007-07-04 11:01:14,491 DEBUG [org.jboss.seam.deployment.ComponentScanner] 
could not load class: com.algodes.server.Authenticator
  | java.lang.ClassNotFoundException: com.algodes.server.Authenticator
  | at java.net.URLClassLoader$1.run(URLClassLoader.java:200)
  | 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)
  | 

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

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


[jboss-user] [JBoss jBPM] - Re: Variables in MailAction

2007-07-04 Thread syngolis
if i am not able to access attributes like processInstanceId or TaskId from 
within #{variable} I have to set it before the mail is sent, e.g.:

  event type=node-enter
  |  script
  | expression
  | TokenId = executionContext.getToken().getId(); 
  | /expression
  | variable name='TokenId' access='write' mapped-name='TokenId' /
  |  /script 
  |   /event
After that I can use #{TokenId} in mail-text. That was the meaning of 
workaround. (Workaround for my problem)

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

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


[jboss-user] [JBoss jBPM] - Re: First Thought about BAM

2007-07-04 Thread fady.matar
we're starting from scratch. I agree Pentaho is a good solution we will look 
into the details and how it can be integrated with JBPM and JBoss Seam since 
the new web console is being built on top of it.

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

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


[jboss-user] [JBoss Seam] - Doctype declaration missing in generated source

2007-07-04 Thread jamesdonnelly256
Hi,

We're using Jboss 4.0.5.GA with Seam 1.1.6.GA.

I have an XHTML page which contains a doctype declaration as normal:

!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:h=http://java.sun.com/jsf/html;
xmlns:f=http://java.sun.com/jsf/core;
xmlns:ice=http://www.icesoft.com/icefaces/component;



When the page gets rendered, the doctype has been stripped out.

I need to have it in the generated source as the browser does not render 
correctly otherwise.

Thanks,

James

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

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


[jboss-user] [JBoss jBPM] - Re: How to set Token name?

2007-07-04 Thread j.wozniakowski
As I said - I need to set root token name. This is a business requirement, not 
only for developers use. 

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

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


[jboss-user] [EJB 3.0] - Re: @Clustered! How to check if its working?

2007-07-04 Thread chapata_gunner
Did a little more research...

If i put the code that I used to put in a Servlet inside a normal Java file and 
execute it ... Everything works properly. So it seems that in order for 
LoadBalancing to work properly we need to execute the calls from a separate 
JVM. Is that correct?

Can anyone please confirm it?

Also is there any way to move past this restriction?


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

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


[jboss-user] [Clustering/JBoss] - Re: EJB 3.0 Session Bean (Stateless) Cluster

2007-07-04 Thread chapata_gunner
Did a little more research...
http://www.jboss.org/index.html?module=bbop=viewtopicp=4059988#4059988

If i put the code that I used to put in a Servlet inside a normal Java file and 
execute it ... Everything works properly. So it seems that in order for 
LoadBalancing to work properly we need to execute the calls from a separate 
JVM. Is that correct?

Can anyone please confirm it?

Also is there any way to move past this restriction?


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

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


[jboss-user] [Security JAAS/JBoss] - SSO/Advanced use of ClientLoginModule

2007-07-04 Thread gcompienne
Hello,

I am looking at how I could have an external client passing security 
credentials to the JBoss server (for example situation where I attempt to use 
an EJB). Usually the solution would be to pass the credentials to the 
InitialContext or use ClientLoginModule.

However, I can't pass these credentials as what I have is either a Kerberos 
token or something like the response to a digest challenge. 

So, is there any SSO module or more advanced version of the ClientLoginModule 
that would allow this kind of scenarios??

Thanks for your help.

Regards,

Gilles.

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

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


[jboss-user] [JNDI/Naming/Network] - JNDI Connection Problem! jboss.bind.address always 127.0.0.1

2007-07-04 Thread cjc
Hi,
I'm using JBoss 4.0.5.GA and now i wont to migrate to 4.2.0.GA. I'm using
some java bigger 1.5.

My architectuer looks like

PC A) eth0: 192.168.200.210 (dbserver)
Jboss4.0.5.GA
MySQL

PC B) eth1: 192.168.200.211 and eth0: INET (XXX.XXX.XXX.XXX)
Tomcat 5.5

My jndi.propterties on PC B looks like:

  | java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
  | java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
  | java.naming.provider.url=jnp://dbserver:1099
  | 

All that works greate with 4.0.5.GA. But under 4.2.0.GA dosn't!!!
I edit the file conf/jboss-service.xml and make all Bindings where
$(jboss.bind.address) is using to Empty == ALL but the result was
that telnet can connect to dbserver:1099 but get a address 127.0.0.1 to go 
forward. So my Tomcat cannont establich jndi Connections?

If i add the parameter -Djboss.bind.address=0.0.0.0 it changed nothing!
Even jboss.bind.address=dbserver or the IP.

If im just to stupid read right the manual say me where to look!

Do I have to use the bind-service.xml to do that?

regards
cjc

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

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


[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6 and redirect

2007-07-04 Thread marakov
??. I haven't any error in log file. When I try to redirect, I observe a blank 
page and after refresh this page I go back to preview page.
I want to mark: this trouble I have after installing JBoss Portal 2.6 GA.

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

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


[jboss-user] [Remoting] - JNDIDetector removes detections

2007-07-04 Thread aih1013
Hello!

I have a custom clustering system built on top of JBoss Remoting 2.2.0.SP4. It 
uses HAJndi and JNDIDetector to manage and discover nodes. HAJndi is hosted on 
cluster coordinators. Everything has worked fine until we had gone to 
pre-production state.

The network load has increased, and central nodes began to treat slave nodes as 
dead and remove them from the registry. However at this moment, the slave nodes 
communicate with the coordinators without any problem. So this is not a 
hardware failure. Also, I can setup TCP connection from a coordinator node to 
the lost slave node by telnet at the moment of failures.

Below you can see a quote from the log. It seems the slave and the master race 
with each other to remove/insert detection object to JNDI. 

anonymous wrote : 
  | 2007-07-04 10:04:50,406 DEBUG 
[org.jboss.remoting.detection.jndi.JNDIDetector] Removed detection Detection 
([EMAIL PROTECTED])
  | 2007-07-04 10:05:56,848 DEBUG 
[org.jboss.remoting.detection.jndi.JNDIDetector] Removed detection Detection 
([EMAIL PROTECTED])
  | 2
  | 

The first thing I've found during Remoting code review is small timeout for 
connection validation and only 1 retry number.  I'm going to patch the code and 
check if this will solve the problem. But I suppose there was a cause why the 
timeout is so small. And this does not seem as an appropriate solution anyway. 

I have another unusual artifact in slaves log:
anonymous wrote : 
  | 2007-07-04 00:00:56,447 INFO  
[org.jboss.remoting.transport.socket.MicroSocketClientInvoker] Received version 
254: treating as end of file
  | 2007-07-04 00:00:56,447 INFO  
[org.jboss.remoting.transport.socket.MicroSocketClientInvoker] Received version 
254: treating as end of file
  | 

May be this connected with the first problem? What is this? 

Any hints or advances ?

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

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


[jboss-user] [Remoting] - Config for EJB3 over servlet-invoker with compression

2007-07-04 Thread MarcReis
Hi,

I am trying to get compression for the http communication between client and 
server.
We are using JBoss 4.2.0.
The communication over HTTP via the servlet-invoker works fine.
Now we wanted to add compression to it. So there are two points that I see were 
this could be done (three with apache in mind).(My primary question upfront: 
what am I missing for the CompressionMarshaller to work?)

1.) Add the compression=force attribute in the jboss-web(tomcat) config for 
the http connector. (- seems like application/octet-streams don?t get zipped)
2.) Use the 
org.jboss.remoting.marshal.compress.CompressingMarshaller/CompressingUnMarshaller
 (- probably missing some config, nothing happens here)  in the ejb3 connector.

For one I am wondering which would be best practice (if both is possible). In 
general I want to compress all there is.
I have tried numerous config permutations, but none offer the result I would 
expect.

Concerning the CompressingMarshaller it seems that I am missing some more 
config. I guess I need to somehow tell the servlet-invoker to talk gzip, since 
there is no difference with defining the CompressingMarshaller and normal 
communication.
When tomcat compression is enabled, it seems that some data is compressed, but 
the main payload is transmitted as application/octet-stream and does not seem 
to get compressed
I sniffed the communication with wire shark to see what is happening down 
there. Just using the CompressionMarshaller shows no sign of gzip?ed data 
anywhere, so I guess I am somehow bypassing it.

Sincerely Marc

The config in ejb3-deployer/META-INF/jboss-service.xml
?
  | mbean code=org.jboss.remoting.transport.Connector
  |   
name=jboss.remoting:type=Connector,name=DefaultEjb3Connector,handler=ejb3
  |   dependsjboss.aop:service=AspectDeployer/depends
  |   attribute 
name=InvokerLocatorservlet://${jboss.bind.address}:8080/servlet-invoker/ServerInvokerServlet/attribu
  | te
  |   attribute name=Configuration
  | handlers
  | handler 
subsystem=AOPorg.jboss.aspects.remoting.AOPRemotingInvocationHandler/handler
  | /handlers
  | attribute name=dataType 
isParam=trueserializable/attribute
  | attribute name=marshaller isParam=true
  | 
org.jboss.remoting.marshal.compress.CompressingMarshaller
  | /attribute
  | attribute name=unmarshaller isParam=true
  | 
org.jboss.remoting.marshal.compress.CompressingUnMarshaller
  | /attribute
  |  /attribute
  |  /mbean
  | ?

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

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


[jboss-user] [Clustering/JBoss] - Re: change default partition name

2007-07-04 Thread klejs
[EMAIL PROTECTED] wrote : In jboss.xml, for each clustered bean:
  | In the next EJB3 release, if you just use the plain @Clustered annotation 
(no attribute), it will default to the partition named by system property 
jboss.partition.name (i.e. the property that's set by the -g startup switch.)

Which release of JBoss did you mean by saying In the next EJB3 release? Was 
that JBoss 4.2.0?

Thanks in advance

/K

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

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


[jboss-user] [JBoss Seam] - Re: Seam2 Beta s:formattedText bug?

2007-07-04 Thread [EMAIL PROTECTED]
That looks more like a bug in the write() method of the JSF RI. Apparently its 
calling a PrintWriter with null.

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

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


[jboss-user] [JBoss jBPM] - Re: Variables in MailAction

2007-07-04 Thread kukeltje
That is not what I meant and what you asked.

#{processInstance.id}, #{token.id} etc...  should also work... or maybe 
#{task.token.id} just learn EL a little... and look at the jBPM api



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

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


[jboss-user] [JBossWS] - HalloWorld Problem

2007-07-04 Thread florian79
I got exceptions by tring a hallo world example
I use: jboss-4.2.0.GA with jbossws-1.2.1.GA (default WS)

My EJB- endpoint:


  | import javax.ejb.Stateless;
  | import javax.jws.WebMethod;
  | import javax.jws.WebResult;
  | import javax.jws.WebService;
  | import javax.jws.soap.SOAPBinding;
  | 
  | //@WebService
  | @WebService(name=HalloWorldWS)
  | //@WebService(name=HalloWorldWS,serviceName=HalloWorldWSService)
  | @SOAPBinding(style = SOAPBinding.Style.RPC, use = SOAPBinding.Use.LITERAL)
  | //@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = 
SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.BARE)
  | //@SOAPBinding(style = SOAPBinding.Style.DOCUMENT, use = 
SOAPBinding.Use.LITERAL, parameterStyle = SOAPBinding.ParameterStyle.WRAPPED)
  | @Stateless
  | public class HalloWorldWSImpl implements HalloWorldWS
  | {
  | @WebMethod(operationName=getHalloWorld)
  | @WebResult(name=hallo)
  | public final String getHalloWorld()
  | {
  | return Hallo Welt;
  | }
  | 
  | }
  | 

and my client unit test code:

  | private void initByService() throws Exception
  | {
  | String strURL = 
http://localhost:8080/HalloWorldWSImplService/HalloWorldWSImpl;;
  | String strQName = HalloWorldWSImpl;
  | URL url = new URL(strURL + ?wsdl);
  | QName qname = new QName(strURL,strQName);
  | Service service = Service.create(url, qname ); //here I get the 
exception!!! 
  | HalloWorldWS mySessionBean = service.getPort(HalloWorldWS.class);
  | }
  | 

By using the SOAPBinding: 
@SOAPBinding(style = SOAPBinding.Style.RPC, use = SOAPBinding.Use.LITERAL)
I get the following exception:

  | javax.xml.ws.WebServiceException: java.lang.IllegalArgumentException: local 
part cannot be null when creating a QName
  | at javax.xml.ws.Service.create(Service.java:731)
  | at 
com.dooris.ws.HalloWorldWSImplTest.initByService(HalloWorldWSImplTest.java:41)
  | at 
com.dooris.ws.HalloWorldWSImplTest.setUp(HalloWorldWSImplTest.java:22)
  | at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
  | at 
sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
  | at 
sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
  | at java.lang.reflect.Method.invoke(Method.java:585)
  | at 
org.junit.internal.runners.BeforeAndAfterRunner.invokeMethod(BeforeAndAfterRunner.java:74)
  | at 
org.junit.internal.runners.BeforeAndAfterRunner.runBefores(BeforeAndAfterRunner.java:50)
  | at 
org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:33)
  | at 
org.junit.internal.runners.TestMethodRunner.runMethod(TestMethodRunner.java:75)
  | at 
org.junit.internal.runners.TestMethodRunner.run(TestMethodRunner.java:45)
  | at 
org.junit.internal.runners.TestClassMethodsRunner.invokeTestMethod(TestClassMethodsRunner.java:71)
  | at 
org.junit.internal.runners.TestClassMethodsRunner.run(TestClassMethodsRunner.java:35)
  | at 
org.junit.internal.runners.TestClassRunner$1.runUnprotected(TestClassRunner.java:42)
  | at 
org.junit.internal.runners.BeforeAndAfterRunner.runProtected(BeforeAndAfterRunner.java:34)
  | at 
org.junit.internal.runners.TestClassRunner.run(TestClassRunner.java:52)
  | at 
org.eclipse.jdt.internal.junit4.runner.JUnit4TestReference.run(JUnit4TestReference.java:38)
  | at 
org.eclipse.jdt.internal.junit.runner.TestExecution.run(TestExecution.java:38)
  | at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:460)
  | at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:673)
  | at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:386)
  | at 
org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:196)
  | Caused by: java.lang.IllegalArgumentException: local part cannot be null 
when creating a QName
  | at javax.xml.namespace.QName.init(QName.java:164)
  | at javax.xml.namespace.QName.init(QName.java:113)
  | at 
com.ibm.wsdl.xml.WSDLReaderImpl.parseExtensibilityAttributes(WSDLReaderImpl.java:1344)
  | at 
com.ibm.wsdl.xml.WSDLReaderImpl.parseMessage(WSDLReaderImpl.java:1268)
  | at 
com.ibm.wsdl.xml.WSDLReaderImpl.parseDefinitions(WSDLReaderImpl.java:309)
  | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2265)
  | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2229)
  | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2282)
  | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2303)
  | at com.ibm.wsdl.xml.WSDLReaderImpl.readWSDL(WSDLReaderImpl.java:2335)
  | at 
org.jboss.ws.tools.wsdl.WSDLDefinitionsFactory.parse(WSDLDefinitionsFactory.java:130)
  | at 

[jboss-user] [JBoss jBPM] - Re: First Thought about BAM

2007-07-04 Thread kukeltje
I'm creating some nice SVG dasboard components (a 'dial' and line-graph) that 
can be dynamically updated with Ajax without rerendering the page... realy nice 
stuff, I'd like to commit those to Pentaho, but we could initially try using 
them separately in jBPM. If you have firefox and send me your email adres (use 
ronald (at) jbpm...org ) I'll send you a small example

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

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


[jboss-user] [JBoss Seam] - Re: Seam cannot find my components

2007-07-04 Thread stephenwilliams
I have since been able to replicate the problem on my machine by starting the 
jboss server with the run.bat file. 

If I start it with eclipse then everything works fine.

The problem now is that I don't know what the IDE is doing differently to the 
run.bat.

Does anyone else have any ideas?

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

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


[jboss-user] [JBoss Tools (users)] - Re: Plugins installation odyssey

2007-07-04 Thread [EMAIL PROTECTED]
krasig, as been said before the installation is trivial (at least for the full 
zip) and it is explained on the wiki.

If you find versioning issues in the other individual plugins then report it 
with enough information for us to reproduce in jira.

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

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


[jboss-user] [JBoss jBPM] - Re: How to set Token name?

2007-07-04 Thread kukeltje
Use the businesskey for this... this is new in jbpm 3.2 and introduced for 
relating processes to external data. You can then retrieve the processinstance 
based on this key and easily get the root token

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

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


[jboss-user] [JBoss Portal] - Re: JBoss AS 4.2.0GA + JBoss Portal 2.6 + JSF 1.2 + JSFPortl

2007-07-04 Thread viggo.navarsete
Hi Thomas,

I tried the guessnumberportlet.war and it worked out of the box as you said:)

Then I compared my war file against the guessnumberportlet, and the differences 
I found were:
1. I had a java class which extended the com.sun.faces.portlet.FacesPortlet. I 
deleted this one.
2. I didn't have anything in my faces-config.xml. Added some navigation rules 
similar to what I found in the guessnumberportlet.
3. I added a backing bean which I refererred to in faces-config.xml (didn't 
have a backing bean before, I thought that the java class which extended the 
FacesPortlet was enough.)

When deploying the war file with my new changes it finally worked:)

So, to conclude: I'm really not sure which of the steps previously mentioned 
that actually fixed it, but I have a strong feeling it had something todo with 
the java class which extended the FacesPortlet.

Thanks for all your help Thomas, it was really helpful :)

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

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


[jboss-user] [JBoss Portal] - Re: JBoss Portal 2.6 and redirect

2007-07-04 Thread [EMAIL PROTECTED]
Help us help you...
You should have read this first before posting:
http://www.jboss.com/index.html?module=bbop=viewtopict=62647

You are not telling me on which JBoss AS you are running, neither which 
jsf-portlet bridge you are using...

Seriously how do you imagine we can help you ?

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

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


[jboss-user] [JBoss Portal] - how to clean the useless table?

2007-07-04 Thread littlefish
when i use the following tag to create a region.
p:region regionName='top' regionID='top' /

it will output some useless code when render the html page from portal

the code are:
 


anybody knows how to clean it when render the portal page??

THX 

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

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


[jboss-user] [JBoss jBPM] - group list

2007-07-04 Thread ricardomarques
Hi 

Is there any way to get a group list? i had check the identity session, the 
methods are only to retrieve a group by a given name. I want to get a list of 
them. Must i write a hibernate query for this?


thanks in advance

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

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


[jboss-user] [JBoss Portal] - Re: user's group

2007-07-04 Thread maiky
I'm back !

I find the methods to get an user when I'm in a page but they return null any 
time.
I'm use : 
User user = (User) request.getAttribute(org.jboss.portal.header.USER);
in library org.jboss.portal.identity.User

What I must do ?


After, I don't find the method isUserInRole(String toto) :( what is the class 
at this method ?

Thanks.

PS: Sorry for my bad English.

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

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


[jboss-user] [JBoss jBPM] - Re: Variables in MailAction

2007-07-04 Thread syngolis
This was my ambition...Sorry for my unclearly posted question

#{processInstance.id} and #{token.id} are working!

I already tried to access the attributes in that way you did it, but with no 
effect... I tested with TaskInstance and there seems to be the problem...

#{taskInstance.id} or #{task.id} does not work!

mail name=M_MailAction actors=; to=#{receipient} 
template=jbpm.mail.templates.xml
  | subjectSubject: Mail action - mail/subject
  | textText: #{taskInstance.id}/text
  | /mail  

Result:
anonymous wrote : Text:

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

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


[jboss-user] [JCA/JBoss] - Encypted Passwords in datasources: Custom Login Module?

2007-07-04 Thread mskonda
I'm planning to use SecureIdentityLoginModule and PBEIdentityLoginModule for 
encrypting these passwords as it was mentioned on Wiki.

However, I have a particular requirement that in PBEIdentityLoginModule, the 
pbepass, salt and prefereably iteration count to be provided by secured config 
file(which can't be accessed by anone except sysadmin) rather than hardcoding 
in this login-config.xml.

So, my questions: 

Looks to me that the PBEIdentityLoginModule doesn't do this. Hence is it 
possible for me to extend this class and implement my own way? Does it break 
any existing stuff? Is it adviasable to extend this class? Is there any 
alternative?

If I have my custom class being used in this situation, does this custom class 
need to take care of login stuff too apart from the encyrption/decryption as 
other modules are doing?

Any input much appreciated.

/Madhu

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

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


  1   2   3   >