[JBoss Seam] - Design question with facelets
by UTDrew
Hi,
I have a question about the proper way to design a project. I have an entity that the user can create, search for, and edit.
Creating the entity goes through a multi-page wizard. This is managed via a stateful session bean (WizardBean) with a conversation context and a jbpdl pageflow.
Editing the entity is on a single page. This is also managed via a stateful session bean (EditorBean).
In both of these beans I have the same variable name (ex: entity) with an @Out annotation.
Following the DRY principal, I have created a base class which contains the validation code and some other common ajax UI functions. I'm using facelets to re-use the UI for each of these. Because two different session/backing beans use these pages I created an alias variable and in the appropriate pages I use a c:set to set the variable's value before the ui:include tag. Since both backing beans export the same variable name I have not created a similar variable for the bean that is being edited/created.
My question is whether this is a good design pattern or not. I'm not sure if I should just be using one stateful bean with functionality for both create and edit and I'm not sure if it's okay for 2 different SFSB's to export the same variable name in a conversation scope (for the record the editing and creating should always happen in different conversations).
Thanks,
Drew
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118422#4118422
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4118422
18 years, 3 months
[JBoss Seam] - Re: Data disappeared when clicking on Conversation outjectio
by jacob.orshalick
"gus888" wrote : I follow Seam wiki pagination sample: manage bean is stateless bean, outject a event or page scope page, but I don't know why I didn't get results back to page. Only after I used conversation outjection, I can got results displayed on page. However, when I try to click a link on the page, the results on the page disappear immediately.
Without some code (the view, the navigation, etc), I don't think anyone is going to be able to help here...
"gus888" wrote : I did not use a long-running conversation. I use stateless bean to outject a temporary conversation. Is it correct? Thank you very much.
If you outject to the conversation, you must begin a long-running conversation to have the data available on the next request (the next click of a commandLink). Otherwise, the temporary conversation will be destroyed and your data is gone on the next request.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118420#4118420
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4118420
18 years, 3 months
[JBoss Seam] - Re: Wildcard for pages action
by mmichalek
I'm asking if there's any community interest in supporting wildcards in the from-action in pages.xml.
For example:
pages.xml:
| <navigation from-action="#{logoEditor.editLogo(*)}">
| <redirect view-id="/edit.xhtml"/>
| </navigation>
|
logoPage.xhtml:
| <h:commandLink value="LinkOne" action="#{logoEditor.editLogo(goodLogo)}"/>
|
| <h:commandLink value="LinkTwo" action="#{logoEditor.editLogo(badLogo)}"/>
|
For this example, both LinkOne and LinkTwo would navigate to /edit.xhtml because both of the actions match the #{logoEditor.editLogo(*)} pattern.
In other words, the specific variable names on an action don't matter when the navigation is evaluated because pages.xml specifies a wildcard (*) for the parameters.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118415#4118415
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4118415
18 years, 3 months
[JBoss Seam] - Weird classloading problem
by adamw
Hello,
I have a really weird problem which happens only sometimes (that's the worst kind of problems) and in different ways. The only thing the symptoms have in common is ClassDefNotFoundException.
So, I have a standard seam app, generated with seam-gen, with only one exception: I have a separate .jar with interfaces and model classes which is deployed parallerly to the .ear (I separated the interfaces and model classes so I can access the ejb services from other apps).
It work fine until recently, however I have no idea when exactly the problem started to appear (as it appears sometimes, it's hard to find the cause ...).
I noticed that the errors appear more often if a method is called on regular intervals of time, beginning with the "org.jboss.seam.postInitialization" event (I use the quartz scheduler).
So the error is one of the following:
- java.lang.NoClassDefFoundError: org/jboss/seam/Instance
- java.lang.NoClassDefFoundError: org/jboss/seam/interceptor/Proxy
- java.lang.NoClassDefFoundError: <my model class>
- java.lang.NoClassDefFoundError: <my helper model class>; this exception is thrown during deserialization of that class; instances of it are held serialized in the DB.
Here is the stack trace for the first example:
| 19:55:49,230 INFO [Initialization] done initializing Seam
| 19:55:49,264 ERROR [JobRunShell] Job DEFAULT.-4531f942:1175fe7c870:-7ffd threw an unhandled Exception:
| javax.ejb.EJBException: org.jboss.seam.InstantiationException: Could not instantiate Seam component: feedsService
| at org.jboss.ejb3.tx.Ejb3TxPolicy.handleExceptionInOurTx(Ejb3TxPolicy.java:63)
| at org.jboss.aspects.tx.TxPolicy.invokeInOurTx(TxPolicy.java:83)
| at org.jboss.aspects.tx.TxInterceptor$Required.invoke(TxInterceptor.java:191)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.tx.TxPropagationInterceptor.invoke(TxPropagationInterceptor.java:76)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.stateless.StatelessInstanceInterceptor.invoke(StatelessInstanceInterceptor.java:62)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.security.AuthenticationInterceptor.invoke(AuthenticationInterceptor.java:77)
| at org.jboss.ejb3.security.Ejb3AuthenticationInterceptor.invoke(Ejb3AuthenticationInterceptor.java:106)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.ENCPropagationInterceptor.invoke(ENCPropagationInterceptor.java:46)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.asynchronous.AsynchronousInterceptor.invoke(AsynchronousInterceptor.java:106)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.stateless.StatelessContainer.localInvoke(StatelessContainer.java:214)
| at org.jboss.ejb3.stateless.StatelessContainer.localInvoke(StatelessContainer.java:184)
| at org.jboss.ejb3.stateless.StatelessLocalProxy.invoke(StatelessLocalProxy.java:81)
| at $Proxy170.update(Unknown Source)
| at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
| at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at org.jboss.seam.util.Reflections.invoke(Reflections.java:21)
| at org.jboss.seam.intercept.RootInvocationContext.proceed(RootInvocationContext.java:31)
| at org.jboss.seam.intercept.ClientSideInterceptor$1.proceed(ClientSideInterceptor.java:76)
| at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:56)
| at org.jboss.seam.async.AsynchronousInterceptor.aroundInvoke(AsynchronousInterceptor.java:50)
| at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
| at org.jboss.seam.intercept.RootInterceptor.invoke(RootInterceptor.java:106)
| at org.jboss.seam.intercept.ClientSideInterceptor.invoke(ClientSideInterceptor.java:54)
| at org.javassist.tmp.java.lang.Object_$$_javassist_3.update(Object_$$_javassist_3.java)
| 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.seam.util.Reflections.invoke(Reflections.java:21)
| at org.jboss.seam.util.Reflections.invokeAndWrap(Reflections.java:125)
| at org.jboss.seam.async.AsynchronousInvocation.call(AsynchronousInvocation.java:52)
| at org.jboss.seam.async.Asynchronous.executeInContexts(Asynchronous.java:76)
| at org.jboss.seam.async.Asynchronous.execute(Asynchronous.java:45)
| at org.jboss.seam.async.QuartzDispatcher$QuartzJob.execute(QuartzDispatcher.java:304)
| at org.quartz.core.JobRunShell.run(JobRunShell.java:203)
| at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
| Caused by: org.jboss.seam.InstantiationException: Could not instantiate Seam component: feedsService
| at org.jboss.seam.Component.newInstance(Component.java:1962)
| at org.jboss.seam.Component.getInstance(Component.java:1865)
| at org.jboss.seam.Component.getInstance(Component.java:1832)
| at org.jboss.seam.Component.getInstanceInAllNamespaces(Component.java:2174)
| at org.jboss.seam.Component.getValueToInject(Component.java:2126)
| at org.jboss.seam.Component.injectAttributes(Component.java:1590)
| at org.jboss.seam.Component.inject(Component.java:1408)
| at org.jboss.seam.core.BijectionInterceptor.aroundInvoke(BijectionInterceptor.java:45)
| at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
| at org.jboss.seam.core.MethodContextInterceptor.aroundInvoke(MethodContextInterceptor.java:42)
| at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
| at org.jboss.seam.persistence.EntityManagerProxyInterceptor.aroundInvoke(EntityManagerProxyInterceptor.java:26)
| at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
| at org.jboss.seam.persistence.HibernateSessionProxyInterceptor.aroundInvoke(HibernateSessionProxyInterceptor.java:27)
| at org.jboss.seam.intercept.SeamInvocationContext.proceed(SeamInvocationContext.java:68)
| at org.jboss.seam.intercept.RootInterceptor.invoke(RootInterceptor.java:106)
| at org.jboss.seam.intercept.SessionBeanInterceptor.aroundInvoke(SessionBeanInterceptor.java:50)
| 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.interceptor.InvocationContextImpl.proceed(InvocationContextImpl.java:118)
| at org.jboss.ejb3.interceptor.EJB3InterceptorsInterceptor.invoke(EJB3InterceptorsInterceptor.java:63)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.entity.TransactionScopedEntityManagerInterceptor.invoke(TransactionScopedEntityManagerInterceptor.java:54)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.ejb3.AllowedOperationsInterceptor.invoke(AllowedOperationsInterceptor.java:47)
| at org.jboss.aop.joinpoint.MethodInvocation.invokeNext(MethodInvocation.java:101)
| at org.jboss.aspects.tx.TxPolicy.invokeInOurTx(TxPolicy.java:79)
| ... 42 more
| Caused by: java.lang.RuntimeException: by java.lang.NoClassDefFoundError: org/jboss/seam/Instance
| at org.jboss.seam.util.ProxyFactory.createClass(ProxyFactory.java:190)
| at org.jboss.seam.Component.createProxyFactory(Component.java:2252)
| at org.jboss.seam.Component.getProxyFactory(Component.java:1367)
| at org.jboss.seam.Component.wrap(Component.java:1358)
| at org.jboss.seam.Component.instantiateSessionBean(Component.java:1280)
| at org.jboss.seam.Component.instantiate(Component.java:1265)
| at org.jboss.seam.Component.newInstance(Component.java:1958)
| ... 70 more
| Caused by: javassist.CannotCompileException: by java.lang.NoClassDefFoundError: org/jboss/seam/Instance
| at javassist.util.proxy.FactoryHelper.toClass(FactoryHelper.java:165)
| at org.jboss.seam.util.ProxyFactory.createClass(ProxyFactory.java:186)
| ... 76 more
| Caused by: java.lang.NoClassDefFoundError: org/jboss/seam/Instance
| at java.lang.ClassLoader.defineClass1(Native Method)
| at java.lang.ClassLoader.defineClass(ClassLoader.java:620)
| at sun.reflect.GeneratedMethodAccessor106.invoke(Unknown Source)
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
| at java.lang.reflect.Method.invoke(Method.java:585)
| at javassist.util.proxy.FactoryHelper.toClass2(FactoryHelper.java:177)
| at javassist.util.proxy.FactoryHelper.toClass(FactoryHelper.java:159)
| ... 77 more
|
(here you can see the quartz schduler at work, but it also happens when this is turned off, and looks very similar).
Anybody has any ideas, where at least I can start looking?
--
Adam
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118414#4118414
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4118414
18 years, 3 months
[EJB 3.0] - JNDI look up datasource problem
by Roman.Angelov
Hi All :),
Today I tried to build my first ejb 3 (in fact I tried to use Entity and Session EJB - one Session bean calls Entities and make records in the tables). I tried two configurations of database- one for Jboss hybernate and one for Oracle 9i.
I used these xml files for datasource connections in the deploy folder:
1. The default hsqldb-ds.xml - the beans work fine (All actions are successful executed)
2. oracle-ds.xml:
<?xml version="1.0" encoding="UTF-8"?>
<!-- The Hypersonic embedded database JCA connection factory config -->
<!-- $Id: hsqldb-ds.xml 39791 2006-01-10 18:14:42Z dimitris $ -->
<local-tx-datasource>
<jndi-name>TestDS</jndi-name>
<connection-url>jdbc:oracle:thin:@xx.xxx.xx.xx:1521:sidname</connection-url>
<!--
See on WIKI page below how to use Oracle's thin JDBC driver to connect with enterprise RAC.
-->
<!--
Here are a couple of the possible OCI configurations.
For more information, see http://otn.oracle.com/docs/products/oracle9i/doc_library/release2/java.92...
<connection-url>jdbc:oracle:oci:@youroracle-tns-name</connection-url>
or
<connection-url>jdbc:oracle:oci:@(description=(address=(host=youroraclehost)(protocol=tcp)(port=1521))(connect_data=(SERVICE_NAME=yourservicename)))</connection-url>
Clearly, its better to have TNS set up properly.
-->
<driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
<user-name>user</user-name>
password
<min-pool-size>5</min-pool-size>
<max-pool-size>100</max-pool-size>
</local-tx-datasource>
* I changed the username, password, url and the sid name.
With the second configuration of datasource I have this exeption:
#####################################
21:04:37,343 ERROR [AbstractKernelController] Error installing to Start: name=pe
rsistence.units:ear=chapter8.ear,jar=chapter8-ejb.jar,unitName=actionBazaar stat
e=Create
javax.persistence.PersistenceException: org.hibernate.HibernateException: unknow
n Oracle major version [0]
at org.hibernate.ejb.Ejb3Configuration.buildEntityManagerFactory(Ejb3Con
figuration.java:663)
at org.hibernate.ejb.HibernatePersistence.createContainerEntityManagerFa
ctory(HibernatePersistence.java:127)
at org.jboss.ejb3.entity.PersistenceUnitDeployment.start(PersistenceUnit
Deployment.java:259)
at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
sorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at org.jboss.reflect.plugins.introspection.ReflectionUtils.invoke(Reflec
tionUtils.java:56)
at org.jboss.reflect.plugins.introspection.ReflectMethodInfoImpl.invoke(
ReflectMethodInfoImpl.java:110)
..................................
####################################
I used only persistence.xml in
with content
<persistence-unit name="actionBazaar">
<jta-data-source>java:TestDS</jta-data-source>
<!-- Uncomment for automatic table creation-->
</persistence-unit>
with <jta-data-source>java:DefaultDS</jta-data-source> works fine
What can be the problem that I cannot use Oracle datasource?
I use jboss-5.0.0.Beta3 and java 1.5.0_06-b05
Thanks a lot!
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118413#4118413
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4118413
18 years, 3 months
[JBoss jBPM] - logging jboss web console problem
by rodosa
Hello!!
I can't login in the jbpm web console. The login failed and the error is the following.
I'm using MySQL. I have to change anything in the jbpm-console.war???
Thanks
| 19:46:56,440 ERROR [STDERR] 09-ene-2008 19:46:56 com.sun.faces.lifecycle.ELResol
| verInitPhaseListener populateFacesELResolverForJsp
| INFO: JSF1027: [null] The ELResolvers for JSF were not registered with the JSP c
| ontainer.
| 19:46:56,659 ERROR [STDERR] 09-ene-2008 19:46:56 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/gravel-14.jar!/META-INF/gravel
| -compat.taglib.xml
| 19:46:56,659 ERROR [STDERR] 09-ene-2008 19:46:56 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf
| -ui.taglib.xml
| 19:46:56,690 ERROR [STDERR] 09-ene-2008 19:46:56 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/gravel-14.jar!/META-INF/gravel
| -data.taglib.xml
| 19:46:57,002 ERROR [STDERR] 09-ene-2008 19:46:57 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf-14.jar!/META-INF/core
| .taglib.xml
| 19:46:57,034 ERROR [STDERR] 09-ene-2008 19:46:57 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf
| -core.taglib.xml
| 19:46:57,049 ERROR [STDERR] 09-ene-2008 19:46:57 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf-14.jar!/META-INF/tfl-
| compat.taglib.xml
| 19:46:57,049 ERROR [STDERR] 09-ene-2008 19:46:57 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf-14.jar!/META-INF/tf.t
| aglib.xml
| 19:46:57,065 ERROR [STDERR] 09-ene-2008 19:46:57 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/gravel-14.jar!/META-INF/gravel
| -simple.taglib.xml
| 19:46:57,080 ERROR [STDERR] 09-ene-2008 19:46:57 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/gravel-14.jar!/META-INF/gravel
| -action.taglib.xml
| 19:46:57,080 ERROR [STDERR] 09-ene-2008 19:46:57 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf-14.jar!/META-INF/tfl.
| taglib.xml
| 19:46:57,096 ERROR [STDERR] 09-ene-2008 19:46:57 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf-14.jar!/META-INF/iden
| tity.taglib.xml
| 19:46:57,112 ERROR [STDERR] 09-ene-2008 19:46:57 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jst
| l-core.taglib.xml
| 19:46:57,112 ERROR [STDERR] 09-ene-2008 19:46:57 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/gravel-14.jar!/META-INF/gravel
| -nav.taglib.xml
| 19:46:57,112 ERROR [STDERR] 09-ene-2008 19:46:57 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jsf
| -html.taglib.xml
| 19:46:57,127 ERROR [STDERR] 09-ene-2008 19:46:57 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/jsf-facelets.jar!/META-INF/jst
| l-fn.taglib.xml
| 19:46:57,127 ERROR [STDERR] 09-ene-2008 19:46:57 com.sun.facelets.compiler.TagLi
| braryConfig loadImplicit
| INFO: Added Library from: jar:file:/C:/jbpm/jbpm-jpdl-3.2.2/server/server/jbpm/t
| mp/deploy/tmp4741jbpm-console-exp.war/WEB-INF/lib/jbpm4jsf-14.jar!/META-INF/tf-c
| ompat.taglib.xml
|
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4118408#4118408
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4118408
18 years, 3 months