Internet explorer 奥比昂';s 4.5“导航到成功”页面在Internet Explorer中不起作用

Internet explorer 奥比昂';s 4.5“导航到成功”页面在Internet Explorer中不起作用,internet-explorer,orbeon,Internet Explorer,Orbeon,在my properties-local.xml中有: <property as="xs:string" name="oxf.fr.detail.process.workflow-send.*.*" value=' require-uploads then validate-all then save(draft="true") then send("oxf.fr.detail.send.success")' /> <property as="xs:an

在my properties-local.xml中有:

<property
as="xs:string"
name="oxf.fr.detail.process.workflow-send.*.*"
value='
    require-uploads
    then validate-all
then save(draft="true")
then send("oxf.fr.detail.send.success")'
    />
<property as="xs:anyURI" name="oxf.fr.detail.send.success.uri.*.*"
          value="[Important WS URL]"/>
<!-- HTTP method to use to navigate to the success page -->
<property as="xs:string" name="oxf.fr.detail.send.success.method.*.*" value="POST" replace="all"/>  

在显示相同对话框的情况下..

您能否尝试用4.9重现此对话框?(如果问题已在4.5和4.9之间解决,显然,我建议您升级到4.9。)如果问题发生在4.9中,您能否在问题后附加该对话框的屏幕截图?还有,你在哪个版本的IE上看到这个?它就是这个对话框:。不幸的是,它发生在Orbeon 4.5和Orbeon 4.9上。我用的是最新的Internet Explorer 11。好的,知道了。但我无法复制这个。也就是说,我没有看到IE11和4.9的对话。代码会对此进行检查,即如果您有一个replace=“all”,那么它不会显示对话框:。我不知道你的情况发生了什么。顺便说一句,您在该属性上的replace=“all”将被忽略;属性只是名称/值对。好吧,也许这才是真正的问题!那么,我如何使replace='all'不被忽略呢?我已经更新了我的问题,给出了我在Orbeon 4.9的properties local中使用的属性示例(没有运气)。
<property as="xs:string"  name="oxf.fr.detail.process.workflow-send.*.*">
    require-uploads
    then validate-all
    then send(
    uri = "[Important WS URL]",
    replace = "all",
    method = "POST",
    content = "xml"
    )
</property>