cancel
Showing results for 
Search instead for 
Did you mean: 

Blank Modeler Editor Screen

bmclaren
Champ in-the-making
Champ in-the-making
I've deployed the 5.11 WAR files to Tomcat and can use most of Activiti Explorer without any issues.  The one thing I can't seem to get working is the ability to edit a model using Activity Explorer.  If I create a new model, or try and edit the demo model, all I see is a blank screen when I click on Edit.  I've tried it on Firefox, Chrome, Safari, and IE on both Windows and OS/X without any success.  Popup blockers were turned off.  I've checked the 5.11 readme file and don't see where I've missed anything.  I've also looked through the topics and don't see anyone else with the same issue.

Any advice on where to look next?

-Bill
5 REPLIES 5

trademak
Star Contributor
Star Contributor
Hi Bill,

A couple of questions to get more info:

- Do you get Javascript errors?
- Do you see an error in the Tomcat log?
- Are you using the in-memory H2 database?

Best regards,

bmclaren
Champ in-the-making
Champ in-the-making
After deploying the applications to a different Tomcat server, the editor is now working.

Thanks for the pointer.  I'll look through the Tomcat log on the other server to see what's missing.

-Bill

fcauti
Champ in-the-making
Champ in-the-making
Hello,

if you are you using Tomcat 5 I know the issue.
I had this problem on Tomcat 5 and not on Tomcat 7, so I guessed it was a tomcat context issue.
In fact, after some struggles, I found out a solution modifying the server.xml of Tomcat5 creating 4 context, one for each folder that is served as static content.

Copy the following text inside the host element of your server.xml (normally you use the localhost) and replace <deploydir> and <workdir> with your dirs:


<Context docBase="<deploydir>\activiti-explorer\libs" path="/activiti-explorer/libs" reloadable="false" workDir="<workdir>\activiti-explorer" crossContext="false">
  <Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="127.0.0.1" />
</Context>
<Context docBase="<deploydir>\activiti-explorer\api" path="/activiti-explorer/api" reloadable="false" workDir="<workdir>\activiti-explorer" crossContext="false">
  <Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="127.0.0.1" />
</Context>  
<Context docBase="<deploydir>\activiti-explorer\editor" path="/activiti-explorer/editor" reloadable="false" workDir="<workdir>\activiti-explorer" crossContext="false">
  <Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="127.0.0.1" />
</Context>
<Context docBase="<deploydir>\activiti-explorer\explorer" path="/activiti-explorer/explorer" reloadable="false" workDir="<workdir>\activiti-explorer" crossContext="false">
  <Valve className="org.apache.catalina.valves.RemoteAddrValve" allow="127.0.0.1" />
</Context>

Restart Tomcat

Hope this helps!
Bye
Federico

amir_kourani
Champ in-the-making
Champ in-the-making
I have the same problem, but i am using glassfish 3.2.2. can i solve this problem within glassfish.

jbarrez
Star Contributor
Star Contributor
There is indeed an issue with glassfish with the 5.11 release, which was fixed on master right after the release.
The answer should be somewhere on the forum though.