[JBoss jBPM] - Re: extending jbpm-console
by gstasica
sorry folks, my fault
there is a wiki on how to have it done.
If you want to use jbpm.3 project and specifically jbpm4jsf used in your other project (for instance creating your own jbp-console but using existing code) you have to:
1) have jbpm.3 project compile (just follow wiki and run ant tags as described)
2) add context param to your project's web.xml file. This is necessary as jbpm4jsf uses facelets which look for xml files with tags definitions.
<context-param>
<param-name>facelets.LIBRARIES</param-name> <param-value>/WEB-INF/lib/jbpmtld/core.taglib.xml;
/WEB-INF/lib/jbpmtld/identity.taglib.xml;/WEB-INF/lib/jbpmtld/tf.taglib.xml;/WEB-INF/lib/jbpmtld/tf-compat.taglib.xml;/WEB-INF/lib/jbpmtld/tfl.taglib.xml;/WEB-INF/lib/jbpmtld/tfl-compat.taglib.xml</param-value>
</context-param>
i don't have to add that these files can be found in jbpm.3 project :)
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4143828#4143828
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4143828
18 years, 2 months
[Persistence, JBoss/CMP, Hibernate, Database] - HOW TO DISABLE HTTP SERVER PROXY CACHE IN JBOSS
by ashishagupta
I am using JBoss in a private network. Some of my application requests are routed to Internet through my Gateway which then passes through our HTTP Proxy to the internet. HTTP requests to other machines in private network works fine till any of my application accesses internet through HTTP Proxy. Once it hits the HTTP Proxy, thereafter any http request from jboss, by default, gets forwarded to HTTP Proxy (got to know from ethereal logs).
Ideally it should have been routed inside my private network itself. Since the destined machine address is not resolvable by our HTTP Proxy, connection eventually times out. I understand this behavior is due to some caching of HTTP Proxy details in JBoss (hope am not wrong here itself).
I did some dig around in disabling cache but of no help. Can some one please let me know how to disable caching of proxy details in jboss?
Sincerely appreciate your response.
regards,
Ashish
Note: I cannot put entries in my HTTP Proxy to route back as it is not under my control. Therefore, I should restrict on JBoss itself from forwarding requests to the proxy unless only it needs to go out to internet.
View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4143803#4143803
Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4143803
18 years, 2 months