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

dragonhncs
Champ in-the-making
Champ in-the-making
Can you give us some guides how to change the code of the activiti-modeler to support the IE. I have four programmers can be used for the project. When we finished the project, we can donate the source code to your organization free, excepting to your help. Thank you very much.

trademak
Star Contributor
Star Contributor
Hi,

You can change the media type to plain html if you also change the editor.html code.
Other than fixing the javascript errors you run into I can't give much guidance upfront I'm afraid.
If you have specific questions I can certainly help and look into it.

Best regards,

dragonhncs
Champ in-the-making
Champ in-the-making
public static final MediaType APPLICATION_WADL_XML = register("application/vnd.sun.wadl+xml", "Web Application Description Language document");
    public static final MediaType APPLICATION_WORD = register("application/msword", "Microsoft Word document");
    public static final MediaType APPLICATION_WWW_FORM = register("application/x-www-form-urlencoded", "Web form (URL encoded)");
    public static final MediaType APPLICATION_XHTML = register("application/xhtml+xml", "XHTML document");
    /**
     * @deprecated Field APPLICATION_XHTML_XML is deprecated
     */
    public static final MediaType APPLICATION_XHTML_XML = register("application/xhtml+xml", "XHTML document");
    public static final MediaType APPLICATION_XMI_XML = register("application/xmi+xml", "XMI document");
    public static final MediaType APPLICATION_XML = register("application/xml", "XML document");
    public static final MediaType APPLICATION_XML_DTD = register("application/xml-dtd", "XML DTD");
    public static final MediaType APPLICATION_XUL = register("application/vnd.mozilla.xul+xml", "XUL document");
    public static final MediaType APPLICATION_ZIP = register("application/zip", "Zip archive");
    public static final MediaType AUDIO_ALL = register("audio/*", "All audios");
    public static final MediaType AUDIO_BASIC = register("audio/basic", "AU audio");
    public static final MediaType AUDIO_MIDI = register("audio/midi", "MIDI audio");
    public static final MediaType AUDIO_MPEG = register("audio/mpeg", "MPEG audio (MP3)");
    public static final MediaType AUDIO_REAL = register("audio/x-pn-realaudio", "Real audio");
    public static final MediaType AUDIO_WAV = register("audio/x-wav", "Waveform audio");
    public static final MediaType IMAGE_ALL = register("image/*", "All images");
    public static final MediaType IMAGE_BMP = register("image/bmp", "Windows bitmap");
    public static final MediaType IMAGE_GIF = register("image/gif", "GIF image");
    public static final MediaType IMAGE_ICON = register("image/x-icon", "Windows icon (Favicon)");
    public static final MediaType IMAGE_JPEG = register("image/jpeg", "JPEG image");
    public static final MediaType IMAGE_PNG = register("image/png", "PNG image");
    public static final MediaType IMAGE_SVG = register("image/svg+xml", "Scalable Vector Graphics");
    public static final MediaType IMAGE_TIFF = register("image/tiff", "TIFF image");
    public static final MediaType MESSAGE_ALL = register("message/*", "All messages");
    public static final MediaType MODEL_ALL = register("model/*", "All models");
    public static final MediaType MODEL_VRML = register("model/vrml", "VRML");
    public static final MediaType MULTIPART_ALL = register("multipart/*", "All multipart data");
    public static final MediaType MULTIPART_FORM_DATA = register("multipart/form-data", "Multipart form data");
    public static final MediaType TEXT_ALL = register("text/*", "All texts");
    public static final MediaType TEXT_CALENDAR = register("text/calendar", "iCalendar event");
    public static final MediaType TEXT_CSS = register("text/css", "CSS stylesheet");
    public static final MediaType TEXT_CSV = register("text/csv", "Comma-separated Values");
    public static final MediaType TEXT_DAT = register("text/x-fixed-field", "Fixed-width Values");
    public static final MediaType TEXT_HTML = register("text/html", "HTML document");
    public static final MediaType TEXT_J2ME_APP_DESCRIPTOR = register("text/vnd.sun.j2me.app-descriptor", "J2ME Application Descriptor");
    public static final MediaType TEXT_JAVASCRIPT = register("text/javascript", "Javascript document");
    public static final MediaType TEXT_PLAIN = register("text/plain", "Plain text");
    public static final MediaType TEXT_RDF_N3 = register("text/n3", "N3 serialized Resource Description Framework document");
    public static final MediaType TEXT_RDF_NTRIPLES = register("text/n-triples", "N-Triples serialized Resource Description Framework document");
    public static final MediaType TEXT_TSV = register("text/tab-separated-values", "Tab-separated Values");
    public static final MediaType TEXT_URI_LIST = register("text/uri-list", "List of URIs");
    public static final MediaType TEXT_VCARD = register("text/x-vcard", "vCard");
    public static final MediaType TEXT_XML = register("text/xml", "XML text");
    public static final MediaType VIDEO_ALL = register("video/*", "All videos");
    public static final MediaType VIDEO_AVI = register("video/x-msvideo", "AVI video");
    public static final MediaType VIDEO_MP4 = register("video/mp4", "MPEG-4 video");
    public static final MediaType VIDEO_MPEG = register("video/mpeg", "MPEG video");
    public static final MediaType VIDEO_QUICKTIME = register("video/quicktime", "Quicktime video");
    public static final MediaType VIDEO_WMV = register("video/x-ms-wmv", "Windows movie");

Which media type can we choose?  the "text/xml" Google Chrome run well, but IE can't run。with "text/html", both of  IE and Google Chrome can't run. the  URL “http://127.0.0.1:8080/activiti-explorer/service/editor?id=1511” can't get any response.

trademak
Star Contributor
Star Contributor
It's not very helpful to list a lot of MediaType definitions here. text/html will work if you also make the editor.html text/html compliant.

Best regards,

dragonhncs
Champ in-the-making
Champ in-the-making
Dear Tijs Rademakers, can you give some ideas how to make the editor.html text/html compliant? Now we change MediaType with  text/html, the URL “http://127.0.0.1:8080/activiti-explorer/service/editor?id=1511” can't get any response, we can't debug the code any further.

Thanks.

trademak
Star Contributor
Star Contributor
I really don't want to be rude or anything, but if you can't figure this out then making the modeler internet explorer will be quite hard. You will run into more of these kind of issues.

dragonhncs
Champ in-the-making
Champ in-the-making
Dear Tijs Rademakers, we are master at java, but it's true we're not familiar with JS. Thanks for your answer. Can you give us one more chance to teach us how to solve the problem ,then we can work out the other problem.

trademak
Star Contributor
Star Contributor
Could you try changing the editor.html first elements into this:

<blockcode>
<!DOCTYPE html>
<html>
</blockcode>

Best regards,

lsmall
Champ in-the-making
Champ in-the-making
Our customers will not use a product that does not support IE. I did not see a formal Jira request for this support. How do you measure demand - how can we escalate the importance for this support? Should I open a feature request?

trademak
Star Contributor
Star Contributor
Yes JIRA is our measure for demand. Be aware that technically it's only possible to support IE 9 and higher because of the usage of SVG in the modeler.

Best regards,