[JBoss jBPM] - Re: Server Deployer field in GPD
by dleerob
It is a servlet. Deployed in jbpm-console\WEB-INF\web.xml
<!-- This is the GDP's deployer servlet -->
| <servlet>
| <servlet-name>GDP Deployer Servlet</servlet-name>
| <servlet-class>org.jbpm.web.ProcessUploadServlet</servlet-class>
| <load-on-startup>1</load-on-startup>
| </servlet>
|
| <servlet-mapping>
| <servlet-name>GDP Deployer Servlet</servlet-name>
| <url-pattern>/upload/*</url-pattern>
| </servlet-mapping>
The source code for that servlet is found at: jbpm-jpdl-3.2.x\src\jpdl\org\jbpm\web\ProcessUploadServlet.java
The compiled class sits in the jbpm-jpdl.jar file.
If you make changes to your web.xml and change the servlet mapping to something else, or you have jbpm deployed in your own webapp, you can change the default eclipse deployment path by clicking Windows-->Preferences-->JBoss Jbpm-->Server Deployment and change the relevant field.
Hope this helps.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4090551#4090551
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4090551
18Â years, 6Â months
[JBoss AOP] - duplicate method: _getAdvisor
by Sharoni
Hey!
I?ve start working with JBoss Aop not long ago, so I?m just another newbie. :)
When trying to run my program with this jboss-aop.xml :
<aop>
| <bind pointcut="execution(void $instanceof{com.blabla.ManagedElement}->set*(..))">
| <interceptor class="com.blabla.listener.AopObserver"/>
| </bind>
| </aop>
I get the following exception :
?10:03:06,351 ERROR [STDERR] [warn] AOP Instrumentor failed to transform com.blabla.rules.Rule_$$_javassist_231
10:03:06,351 ERROR [STDERR] javassist.bytecode.DuplicateMemberException: duplicate method: _getAdvisor in com.blabla.rules.Rule_$$_javassist_231?
Except to this exception ? everything works just fine!
I?ve notice that if I remove the $instanceof, no exception is thrown at all (Yet, I lose utilities).
How can I slove this problem?
Thanks!
Sharon.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4090537#4090537
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4090537
18Â years, 6Â months