cancel
Showing results for 
Search instead for 
Did you mean: 

Internet Explorer

frecklefoot
Champ in-the-making
Champ in-the-making
I noticed in the docs that Internet Explorer is not supported by Modeler (I tried it; it doesn't work). While I have no love for IE, most of our customers do. About 99.9% of them are standardized on it and are prohibited from using any other browser. Is there any plans to add IE support to the Modeler in any upcoming releases?

TIA!  Smiley Very Happy
20 REPLIES 20

trademak
Star Contributor
Star Contributor
Hi,

The Activiti Modeler is maintained by Signavio who also provide a commercial product for this.
You better ask there: http://code.google.com/p/signavio-core-components/

Best regards,

dragonhncs
Champ in-the-making
Champ in-the-making
Google has a SVGWEB,so that ie can support SVG。why activiti Modeler still can't support ie with Google's SVGWEB.
Can we have other ways to allow activiti Modeler support IE except Signavio's commercial product.
how can I solve this problem . can someone help me? Thanks.


trademak
Star Contributor
Star Contributor
If you would like to contribute the support of the Activiti Modeler with SVGWEB you would be very welcome.
It requires quite a bit of javascript changes to support IE 9 and/or 10 for the Activiti Modeler, that's why it hasn't been solved yet. But contributions in this area would be really helpful.

Best regards,

dragonhncs
Champ in-the-making
Champ in-the-making
how many time this javascript changes need?
can one person finish this javascript changes within one month ?

dragonhncs
Champ in-the-making
Champ in-the-making
trademak,can you give me some idea how to make the  javascript changes, and how many time can i finish this task?

trademak
Star Contributor
Star Contributor
That's really dependent on your Javascript skills and Oryx framework skills. You can make the changes by checking out the sources of the activiti-webapp-explorer2 module in the Activiti project. There's an editor folder containing all the Javascript sources.

Best regards,

dragonhncs
Champ in-the-making
Champ in-the-making
Dear trademak, when  IE run URL “http://127.0.0.1:8080/activiti-explorer/service/editor?id=1511” ,IE can't get any response, the screen always is blank.

We are debuging and tracing the code winthin IE. but now we have no idea which Controller of which jar runing the the process。can you tell us which Controller of which jar running the process?

trademak
Star Contributor
Star Contributor
The /editor URL invokes a REST service which is part of the activiti-modeler project.

Best regards,

dragonhncs
Champ in-the-making
Champ in-the-making
Dear trademak, thank for your help, we have more question to expect your answer.

  InputStream editorStream = this.getClass().getClassLoader().getResourceAsStream("editor.html");
    InputRepresentation editorResultRepresentation = new InputRepresentation(editorStream);
    //editorResultRepresentation.setMediaType(MediaType.APPLICATION_XHTML);
    editorResultRepresentation.setMediaType(MediaType.register("text/xml", "XHTML document"));

when we run the procedure above, we change the MediaType with “text/xml” to replace “XHTML”。the ie still can't run normally. Do we must change the MediaType with "text/xml" to support the ie?