清单不符合架构,有帮助吗? [英] Manifest does not conform to schema, help?

查看:84
本文介绍了清单不符合架构,有帮助吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在实际找到一个架构时遇到了麻烦。提供的链接似乎被打破了。任何人都可以指向我的架构的实际URL吗? (这实际上有效并且不只是重定向到另一个不是模式的页面)

I'm having trouble actually finding the schema for one. Links provided seem to be broken. Can anyone point me to that actual URL for the schema? (that actually works and does not just redirect to another page that's not a schema)

或者,你能发现这个清单的问题吗?

Alternately, can you spot the problem with this manifest?

<?xml version =" 1.0" encoding =" UTF-8"?>

< OfficeApp xmlns =" http://schemas.microsoft.com/office/appforoffice/1.1" &NBSP; &NBSP;的xmlns:的xsi = QUOT; HTTP://www.w3.org/2001/XMLSchema-instance" &NBSP;   xsi:type =" TaskPaneApp">

  < Id> 8c1c3d44-57e9-40d7-86e4-4adf61fea1dd< / Id>

  < Version> 1.0.0.0< / Version>

  < ProviderName> ProQuest< / ProviderName>

  < DefaultLocale> zh-CN< / DefaultLocale>

  < DisplayName DefaultValue =" RefWorks Citation Manager" />

  < Description DefaultValue =" RefWorks Citation Manager允许您快速插入和编辑引文,并随时将它们添加到您的文献中。 RefWorks Citation Manager不支持Word 2013. RefWorks Citation Manager仅适用于Internet
Explorer 11或更高版本。" />

  < IconUrl DefaultValue =" https://s3.amazonaws.com/wordaddin/local/img/rw-small-logo.png" />

  < SupportUrl DefaultValue =" https://www.proquest.com/go/refworks-help" />

  <主机>

  &NBSP; <主机名="文件" />

  < / Hosts>

  < AppDomains>

  &NBSP; < AppDomain> https://s3.amazonaws.com< / AppDomain>

  &NBSP; < AppDomain> https://refworks.proquest.com< / AppDomain>

  < / AppDomains>

  <要求>

  &NBSP; <设置DefaultMinVersion =" 1.2">

  &NBSP; &NBSP; < Set Name =" WordApi" MinVersion =" 1.2" />

  &NBSP; < / Sets>

  < / Requirements>

  < DefaultSettings>

  &NBSP; < SourceLocation DefaultValue =" https://s3.amazonaws.com/wordaddin/Sidebar.html?1-1" />

  < / DefaultSettings>

  <权限> ReadWriteDocument< /权限>

< / OfficeApp>

<?xml version="1.0" encoding="UTF-8"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:type="TaskPaneApp">
  <Id>8c1c3d44-57e9-40d7-86e4-4adf61fea1dd</Id>
  <Version>1.0.0.0</Version>
  <ProviderName>ProQuest</ProviderName>
  <DefaultLocale>en-US</DefaultLocale>
  <DisplayName DefaultValue="RefWorks Citation Manager"/>
  <Description DefaultValue="RefWorks Citation Manager allows you to quickly insert and edit citations, adding them to your biblioraphy as you go. RefWorks Citation Manager does not support Word 2013. RefWorks Citation Manager only works with Internet Explorer 11 or later."/>
  <IconUrl DefaultValue="https://s3.amazonaws.com/wordaddin/local/img/rw-small-logo.png"/>
  <SupportUrl DefaultValue="https://www.proquest.com/go/refworks-help"/>
  <Hosts>
    <Host Name="Document"/>
  </Hosts>
  <AppDomains>
    <AppDomain>https://s3.amazonaws.com</AppDomain>
    <AppDomain>https://refworks.proquest.com</AppDomain>
  </AppDomains>
  <Requirements>
    <Sets DefaultMinVersion="1.2">
      <Set Name="WordApi" MinVersion="1.2"/>
    </Sets>
  </Requirements>
  <DefaultSettings>
    <SourceLocation DefaultValue="https://s3.amazonaws.com/wordaddin/Sidebar.html?1-1"/>
  </DefaultSettings>
  <Permissions>ReadWriteDocument</Permissions>
</OfficeApp>

谢谢。

推荐答案

似乎AppDomains应该在Hosts之前运行,以下工作完美:

Seems like AppDomains should go before Hosts, the following works perfectly:

<?xml version="1.0" encoding="UTF-8"?>
<OfficeApp xmlns="http://schemas.microsoft.com/office/appforoffice/1.1"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xsi:type="TaskPaneApp">
  <Id>8c1c3d44-57e9-40d7-86e4-4adf61fea1dd</Id>
  <Version>1.0.0.0</Version>
  <ProviderName>ProQuest</ProviderName>
  <DefaultLocale>en-US</DefaultLocale>
  <DisplayName DefaultValue="RefWorks Citation Manager"/>
  <Description DefaultValue="RefWorks Citation Manager allows you to quickly insert and edit citations, adding them to your biblioraphy as you go. RefWorks Citation Manager does not support Word 2013. RefWorks Citation Manager only works with Internet Explorer 11 or later."/>
  <IconUrl DefaultValue="https://s3.amazonaws.com/wordaddin/local/img/rw-small-logo.png"/>
  <SupportUrl DefaultValue="https://www.proquest.com/go/refworks-help"/>

  <AppDomains>
    <AppDomain>https://s3.amazonaws.com</AppDomain>
    <AppDomain>https://refworks.proquest.com</AppDomain>
  </AppDomains>
  
  <Hosts>
    <Host Name="Document"/>
  </Hosts>

  <Requirements>
    <Sets DefaultMinVersion="1.2">
      <Set Name="WordApi" MinVersion="1.2"/>
    </Sets>
  </Requirements>
  <DefaultSettings>
    <SourceLocation DefaultValue="https://s3.amazonaws.com/wordaddin/Sidebar.html?1-1"/>
  </DefaultSettings>
  <Permissions>ReadWriteDocument</Permissions>
</OfficeApp>


这篇关于清单不符合架构,有帮助吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆