Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

XBAP Support in IE Edge

I was building an WPF Browser application as such it requires many client specific functionality.

During debugging when i tried to run this application in IE Edge it starts behaving in buggy way i.e. it keeps downloading XBAP file in recursion again & again but when I saw the folder it does not contain any XBAP file.

My application works perfectly fine in IE11, I am not sure if Microsoft have removed the support of XBAP from IE Edge ????

I am wishing to have it cross browser application, any guidance / help would be much appreciated.

Thanks & Regards, Srujal Kachhela

like image 550
Srujal Kachhela Avatar asked Dec 20 '22 01:12

Srujal Kachhela


2 Answers

Edge does not support XBAP, and never will.

(I work on Edge)

like image 92
Patrick Avatar answered Dec 21 '22 14:12

Patrick


Chronium based Edge supports XBAP

you need

msedge.admx in C:\Windows\PolicyDefinitions

msedge.adml in C:\Windows\PolicyDefinitions\en-US

run gpedit.msc and navigate to "Microsoft Edge"

"Configure Internet Explorer integration" --> Activate --> Option: "Internet Explorer mode" "Configure the Enterprise Mode Site List" --> Activate --> Option: point to a xml file like "file:///C:/EdgeSites.xml"

EdgeSites.xml

<site-list version="3">
    <created-by>
        <tool>EMIESiteListManager</tool>
        <version>10.0.14357.1004</version>
        <date-created>01/08/2020 14:09:07</date-created>
    </created-by>
    <site url="myurl.com/site1">
        <open-in>IE11</open-in>
    </site>
</site-list>
like image 40
Sail Fast Avatar answered Dec 21 '22 15:12

Sail Fast