[jBPM] - jBPM 3.2 Setting parameter in SeamTest FacesRequest
by maelstorm
maelstorm [https://community.jboss.org/people/maelstorm] created the discussion
"jBPM 3.2 Setting parameter in SeamTest FacesRequest"
To view the discussion, visit: https://community.jboss.org/message/829967#829967
--------------------------------------------------------------
Hi guys,
I am trying to write test for my testing application. I have component containing method for beginning and ending task at the same time. I wrote test (using TestNG, test class extends SeamTest) where I start Process (in Component test). token moves correctly to next Node. Then I try to call method completeTask
@Stateful
@Name("taskController")
public class TaskController implements TaskControllerAction{
...
@In(required=false)
ProcessInstance processInstance;
@In(required=false)
TaskInstance taskInstance;
...
@StartTask
@EndTask
public void completeTask(){
...
}
...
}
on my Seam component, where ProcessInstance and TaskInstance are injected.
But on calling
taskController.completeTask();
or inside FacesRequest invokeApplication method
invokeMethod("#{taskController.completeTask}");
I get exception
javax.ejb.EJBException: java.lang.IllegalStateException: task/process id may not be null
I tried to create new FacesRequest, where I set context variables using setPageParameter, setValue and Contexts.getBusinessProcessContext().set methods (lots of combinations), but none of them actually works, still getting same error). I tried to set manually processInstance and taskInstance variables in mentioned component, but it doesn't work.
I know I can call singal() method to go further in graph, but in this case, next transition depends on what method is called.
Is there any way how to set TaskInstance parameter in FacesRequest? Something like the way in s:button it is done.
<s:button value="Go To Node 4" action="#{taskController.completeAndGoTo4()}" taskInstance="#error.notfound.task" />
I am using jBPM 3.2 and Seam 2.2
Thanks in advance
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/829967#829967]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
11 years, 7 months
[JBoss Web Services] - WebService throws ClasscastException in JBoss5
by Atul Kaushal
Atul Kaushal [https://community.jboss.org/people/atulkaushal] created the discussion
"WebService throws ClasscastException in JBoss5"
To view the discussion, visit: https://community.jboss.org/message/829913#829913
--------------------------------------------------------------
Hello,
I have a class that invokes a WEB SERVICE deployed on the different Jboss. Both application servers has same enviornment is JDK1.6,and JBoss5.
Here is a code portion:
<code>
System.setProperty("org.apache.xerces.xni.parser.XMLParserConfiguration","org.apache.xerces.parsers.XIncludeAwareParserConfiguration");
final Document doc = this.generateXMLDoc((List) listData);
final String strXMLData = "TestString";
final String endpointURL = PropertyHandler.getValue("printWebServiceEndPoint");
final TestWebService testWebService = new TestWebService(new URL(endpointURL), new QName(
" http://test.webservice.xyz/ http://test.webservice.xyz/", "TestWebService"));
final TestService tservice = testWebService.getTestServicePort();
final String msg = tservice.print(strXMLData);
if (msg.equals("Abc"))
{
return false;
}
return true;
</code>
I have following jar in my JBOSS_HOME/lib/endorsed directory.
* activation.jar
* resolver.jar
* serializer.jar
* stax-api.jar
* xalan.jar
* xercesImpl.jar
* jaxb-api.jar
It was working fine on JBoss4.2.2GA but its breaking on JBoss 5 and throws error given below.
01:50:46,760 INFO [STDOUT] ERROR 01:50:46,759 (TestServiceInputXMLParser) - com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl cannot be cast to com.sun.xml.bind.api.JAXBRIContext
java.lang.ClassCastException: com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl cannot be cast to com.sun.xml.bind.api.JAXBRIContext
at org.jboss.ws.metadata.umdm.EndpointMetaData.eagerInitializeAccessors(EndpointMetaData.java:665)
at org.jboss.ws.metadata.umdm.EndpointMetaData.initializeInternal(EndpointMetaData.java:545)
at org.jboss.ws.metadata.umdm.EndpointMetaData.eagerInitialize(EndpointMetaData.java:533)
at org.jboss.ws.metadata.builder.jaxws.JAXWSClientMetaDataBuilder.rebuildEndpointMetaData(JAXWSClientMetaDataBuilder.java:312)
at org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl.getPortInternal(ServiceDelegateImpl.java:269)
at org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl.getPort(ServiceDelegateImpl.java:200)
at javax.xml.ws.Service.getPort(Service.java:99)
at edu.wustl.webservice.catissuecore.test.TestWebService.getTestServicePort(TestWebService.java:50)
at edu.wustl.catissuecore.testservicemodule.TestServiceInputXMLParser.callTestService(TestServiceInputXMLParser.java:81)
at edu.wustl.catissuecore.action.TestAction.executeXSS(TestAction.java:159)
at edu.wustl.common.action.XSSSupportedAction.checkForXSSViolation(XSSSupportedAction.java:170)
at edu.wustl.common.action.XSSSupportedAction.execute(XSSSupportedAction.java:76)
at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:638)
at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:444)
at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:382)
at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:310)
at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
at org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:274)
at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
at org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:320)
at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.owasp.stinger.StingerFilter.doStinger(StingerFilter.java:365)
at org.owasp.stinger.StingerFilter.doStingerFilter(StingerFilter.java:293)
at org.owasp.stinger.StingerFilter.doFilter(StingerFilter.java:122)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:190)
at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)
at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:829)
at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:598)
at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
at java.lang.Thread.run(Thread.java:662)
01:50:46,762 ERROR [STDERR] java.lang.ClassCastException: com.sun.xml.internal.bind.v2.runtime.JAXBContextImpl cannot be cast to com.sun.xml.bind.api.JAXBRIContext
01:50:46,763 ERROR [STDERR] at org.jboss.ws.metadata.umdm.EndpointMetaData.eagerInitializeAccessors(EndpointMetaData.java:665)
01:50:46,764 ERROR [STDERR] at org.jboss.ws.metadata.umdm.EndpointMetaData.initializeInternal(EndpointMetaData.java:545)
01:50:46,765 ERROR [STDERR] at org.jboss.ws.metadata.umdm.EndpointMetaData.eagerInitialize(EndpointMetaData.java:533)
01:50:46,766 ERROR [STDERR] at org.jboss.ws.metadata.builder.jaxws.JAXWSClientMetaDataBuilder.rebuildEndpointMetaData(JAXWSClientMetaDataBuilder.java:312)
01:50:46,767 ERROR [STDERR] at org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl.getPortInternal(ServiceDelegateImpl.java:269)
01:50:46,768 ERROR [STDERR] at org.jboss.ws.core.jaxws.spi.ServiceDelegateImpl.getPort(ServiceDelegateImpl.java:200)
01:50:46,769 ERROR [STDERR] at javax.xml.ws.Service.getPort(Service.java:99)
01:50:46,769 ERROR [STDERR] at edu.wustl.webservice.catissuecore.test.TestWebService.getTestServicePort(TestWebService.java:50)
01:50:46,770 ERROR [STDERR] at edu.wustl.catissuecore.testservicemodule.TestServiceInputXMLParser.callTestService(TestServiceInputXMLParser.java:81)
01:50:46,828 ERROR [STDERR] at edu.wustl.catissuecore.action.TestAction.executeXSS(TestAction.java:159)
01:50:46,829 ERROR [STDERR] at edu.wustl.common.action.XSSSupportedAction.checkForXSSViolation(XSSSupportedAction.java:170)
01:50:46,830 ERROR [STDERR] at edu.wustl.common.action.XSSSupportedAction.execute(XSSSupportedAction.java:76)
01:50:46,830 ERROR [STDERR] at org.apache.struts.action.RequestProcessor.processActionPerform(RequestProcessor.java:484)
01:50:46,832 ERROR [STDERR] at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:274)
01:50:46,832 ERROR [STDERR] at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
01:50:46,833 ERROR [STDERR] at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
01:50:46,834 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
01:50:46,834 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
01:50:46,835 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
01:50:46,836 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
01:50:46,836 ERROR [STDERR] at org.apache.catalina.core.ApplicationDispatcher.invoke(ApplicationDispatcher.java:638)
01:50:46,837 ERROR [STDERR] at org.apache.catalina.core.ApplicationDispatcher.processRequest(ApplicationDispatcher.java:444)
01:50:46,838 ERROR [STDERR] at org.apache.catalina.core.ApplicationDispatcher.doForward(ApplicationDispatcher.java:382)
01:50:46,838 ERROR [STDERR] at org.apache.catalina.core.ApplicationDispatcher.forward(ApplicationDispatcher.java:310)
01:50:46,839 ERROR [STDERR] at org.apache.struts.action.RequestProcessor.doForward(RequestProcessor.java:1069)
01:50:46,840 ERROR [STDERR] at org.apache.struts.tiles.TilesRequestProcessor.doForward(TilesRequestProcessor.java:274)
01:50:46,840 ERROR [STDERR] at org.apache.struts.action.RequestProcessor.processForwardConfig(RequestProcessor.java:455)
01:50:46,841 ERROR [STDERR] at org.apache.struts.tiles.TilesRequestProcessor.processForwardConfig(TilesRequestProcessor.java:320)
01:50:46,842 ERROR [STDERR] at org.apache.struts.action.RequestProcessor.process(RequestProcessor.java:279)
01:50:46,842 ERROR [STDERR] at org.apache.struts.action.ActionServlet.process(ActionServlet.java:1482)
01:50:46,843 ERROR [STDERR] at org.apache.struts.action.ActionServlet.doPost(ActionServlet.java:525)
01:50:46,844 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:637)
01:50:46,845 ERROR [STDERR] at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
01:50:46,845 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
01:50:46,846 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
01:50:46,847 ERROR [STDERR] at org.owasp.stinger.StingerFilter.doStinger(StingerFilter.java:365)
01:50:46,847 ERROR [STDERR] at org.owasp.stinger.StingerFilter.doStingerFilter(StingerFilter.java:293)
01:50:46,848 ERROR [STDERR] at org.owasp.stinger.StingerFilter.doFilter(StingerFilter.java:122)
01:50:46,849 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
01:50:46,850 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
01:50:46,851 ERROR [STDERR] at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
01:50:46,851 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
01:50:46,852 ERROR [STDERR] at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
01:50:46,853 ERROR [STDERR] at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
01:50:46,853 ERROR [STDERR] at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
01:50:46,854 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:190)
01:50:46,855 ERROR [STDERR] at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)
01:50:46,855 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
01:50:46,856 ERROR [STDERR] at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
01:50:46,857 ERROR [STDERR] at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
01:50:46,857 ERROR [STDERR] at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
01:50:46,858 ERROR [STDERR] at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
01:50:46,859 ERROR [STDERR] at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
01:50:46,859 ERROR [STDERR] at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
01:50:46,860 ERROR [STDERR] at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:829)
01:50:46,860 ERROR [STDERR] at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:598)
01:50:46,861 ERROR [STDERR] at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
01:50:46,862 ERROR [STDERR] at java.lang.Thread.run(Thread.java:662)
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/829913#829913]
Start a new discussion in JBoss Web Services at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
11 years, 7 months
[jBPM] - Integrating jBPM in Existing Web Application along with Guvnor / Designer
by Ikram Babai
Ikram Babai [https://community.jboss.org/people/ikrambabai] created the discussion
"Integrating jBPM in Existing Web Application along with Guvnor / Designer"
To view the discussion, visit: https://community.jboss.org/message/828916#828916
--------------------------------------------------------------
Dear Commuity,
I'm into the jBPM /Guvnor/Designer suite for about two months now - so still a newbie - However, I feel like I have convered a good (at least horizontal) space. I have got many questions on the overall best practices that one should use to use various components of the suite.
*Background:*
We are evaluating jBPM for executing processes that will dump data from some big data servers, do some manipulation and extract and dumpt the refined results into an RDBMS - The processes shoudl execute at cetain frequencies - lets say every 1 one - So we need a process triggering mechanism to invoke the BPMN2 process through jBPM runtime - we use quartz for that. The actual process will be designed by users using the Oryx designer that's embedded in Guvnor and then saved in the Guvnor's tables. We do not use the Human Task Service (not at least now) or any other rule base API that Guvnor exposes. Our Users will primarily be using Designer App to write the processes, compile and let the jBPM consume them.
Following is the high-high level design on which my questions below are based.
Tomcat Instance 1
|-----------------------------------------
| My Web App |
| Usual Supsects |
| (Hibernate/Spring) |
| |
| |
| + |
| jBPM Core |
| (Engine/Runtime) |
| (Work Item Handlers) | <---- In Instance1 we build jBPM Knowledge Base by getting BPMN2 Processes designed and stored in instnce 2 below
|_______________________|
Tomcat Intance2
|-----------------------------------------
| Guvnor + Designer |
| |
| |
| |
| |
| |
| Users Design |
| BPMN2 Processes |
| Save and Build |
|______________________|
*1. When to build the kBase in Instance1?*
Knowledge Base is what jBPM Core knows and cares about - once built, the core engine can pick any process using its ID and get it executed - Process are designed in Instance2 above. Once desgined, committed and package is built, how do I tell jBPM core in Instnace1 to rebuild its knowledge base so that the latest defintion of the changed proces is avaiable to it on the next cron trigger? Is there a hook that Guvnor App provides that kicks in Instnace1 right away as soon as the package in instnace2 is built?
The two easiest answers that I do not want to follow can be these.
a. Build Knowledge Base in instance1 every few minutes. Get latest process defintion from Instance2 every 5 mintues, for instnace: I dont like this option (and Im sure most of you won't). What if something bad happens during such a high frequency operation and kBase is not built successfully?
b. Currenly what Im doing is that everytime the user comes to the page (in Instance1) where process names are listed (from kBase), I re-create the kBase. Not a brilliant way of doing I agree - What if the users neverf comes to that page and just sings out after the kBase in Instnace2?
So please let me know if there is a nice way that I can build my kBase in Instance1 on every Prcess/Package Build in Instnace2.
*2. What Happens to an in-progress process when changes are done to an exisiting process, package built and kBase built in instance1?*
Let say I know when and how to build my kBase - but then there can be some process which already started on the older version of the processes jBPM took from older kBase for execution? Will there exection be terminated or the runtime will execute the older version of the process and pick the new only in the next exection (not the current one)?
*3. Versioning: Is there a way to tell jBPM to execute a particular version of a process?*
*4. Partial BAM Reports? Possible?*
The Business Activity Modeling tables (nothing complex 2/3 tables - one being PROCESSINSTANCELOG) are populated whenever the jBPM exection flows enters and exits a particular node. It works nicely except when one node's execution (say a Service Node) faces a problem. Just yesterday, I faced this problem. Let me explain. Suppose a process is in execution and when it reaches to node 5 for example - once of who's parameter is a big data query and that query had a syntax error. Obviously exceptions were thrown from that Service Node - But jBPM didn't save anything in the BAM tables - not even for the 4 nodes that executed without any issue.? Why? Is it by design or its a bug? How do I know what happened to that process when nothing is logged?
*5. Guvnor --> Web App Integration and Authentication*
As I have mentioned, I have fully functional in-production web application with security - of course. I would like to use the same credentials when authenticating a user to guvnor app sitting in Instance2 - Please suggest how this should be done and provide reference to articles if any. I sure cannot (and do not want to) write code into Guvnor - there must be a good out-of-the-box method to do this.
Another facet of the issue is to give the user once experience - when he jumps from My Web App to Drools-Guvnor app - he shouldn't feel it.
Or put in cude terms, the URL should not change from
http://webapphost:8080/webapp http://webapphost:8080/webapp
to
http://guvnorhost:8080/drools-guvnor http://guvnorhost:8080/drools-guvnor
THis problem we solved using iframe ... so all I have to do is to divert the user to a jsp page that contains this like
<iframe src="${viewUrl}" width="100%" height="750px"></iframe>
My URL remains the same (webappone) and drools appears within the iframe.
Is that a good idea though? Any better suggestions than that?
*6. Keeping jBPM withing the Web Application or Seprate?*
As the diagram above shows my jBPM runtime/core runs within my Web App - Since jBPM creates only once process per execution (not matter how many parallel "logical" exection flows might exist in the process), do you guys think its ok to do so? Or will it be a good idea to use jBPM Core separately?
*7. Process Execution Survie Instance 1 restart?*
*8. JNDI Resources? Can I get the same using Spring?*
Im using tomcat and in there I use Bitronox Transaction Manager for jBPM BAM / Core table's commits. The way I have configured the data source for BTM to work is by editing the server.xml and context.xml files - files that usually are not expnosed to your CATALINA_BASE - especially in bigger organizaitons where one tomcat installation (CATALINA_HOME) is used to configure hundres of CATALINA_BASES. Usually its very hard to convince the system admin for changes into such core files. It would be lovely if I donot have to do any changes in these two files and I still have the JNDI resources defined? Can I do this withing my web app? I know some of you will jump directly to Spring (whchi I use thoroughly) - but will BTM work with that kinds of JNDI resource defintion. If anyone has worked on it, please share.
*9. Drools Guvnor + Designer Browser Compatibility.*
That one was a real pain - I like Chome/Mozilla personally - but we will have to endup using IE due to corporate policies. Guvnor and Designer do not work in IE - I had to do a script that installs a Chrome frame (if not already) withing IE when the user first visits the Guvnor page. But, can we not get Droosl Guvnor and Designer working in IE as well?
*10. What are my limitations with Tomcat?*
Drools + Deisgner works perfectly in tomcat/BTM for me (it gave me some issues with some minor verions of tomcat but 6.0.37 that Im using is good). Do you think I might hit a block using jBPM/Drools in tomcat -someting that was primarily designed and tested on jBOSS?
Regards,
-Ikramullah Khan
--------------------------------------------------------------
Reply to this message by going to Community
[https://community.jboss.org/message/828916#828916]
Start a new discussion in jBPM at Community
[https://community.jboss.org/choose-container!input.jspa?contentType=1&con...]
11 years, 7 months