0

我创建了一个独立的电子邮件模型并基于电子邮件模型生成了一个 Web 服务。我遵循了与 Cordys 文档 ( https://wiki.cordys.com/display/bop41/Creating+an+E-mail+Model )中描述的相同步骤,但是当我尝试调用 Web 服务时出现错误比如“不理解 NSCUST 类型的方法 TAT_Email_Model_WebserviceOperation”。

我已将我的 WebServiceInterface 链接到一个电子邮件服务容器(如果我在这里做错了,请纠正我)。

故障的完整描述如下。有什么建议么。

<ErrorDetails>
  <Request>
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
      <SOAP:Header xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
        <header xmlns="http://schemas.cordys.com/General/1.0/">
          <Logger xmlns="http://schemas.cordys.com/General/1.0/" />
        </header>
        <i18n:international xmlns:i18n="http://www.w3.org/2005/09/ws-i18n">
          <locale xmlns="http://www.w3.org/2005/09/ws-i18n">en-US</locale>
        </i18n:international>
      </SOAP:Header>
      <SOAP:Body>
        <TAT_Email_Model_WebserviceOperation xmlns="http://schemas.cordys.com/1.0/email">
          <SOURCE>Notification Custom Method</SOURCE>
          <MESSAGE_DATA>
            <Application>
              <data>
                <message_data />
                <message_metadata />
              </data>
            </Application>
          </MESSAGE_DATA>
          <SUBJECT>PARAMETER</SUBJECT>
          <attachments>
            <attachment name="" encoded="false">PARAMETER</attachment>
          </attachments>
          <SENDER_ADDRESS>
            <MAIL_ID>PARAMETER</MAIL_ID>
            <DISPLAY_NAME>PARAMETER</DISPLAY_NAME>
          </SENDER_ADDRESS>
          <RECEIVERS>
            <MAILING_LIST>
              <to>
                <address>
                  <displayName>PARAMETER</displayName>
                  <emailAddress>PARAMETER</emailAddress>
                </address>
              </to>
              <cc>
                <address>
                  <displayName>PARAMETER</displayName>
                  <emailAddress>PARAMETER</emailAddress>
                </address>
              </cc>
              <bcc>
                <address>
                  <displayName>PARAMETER</displayName>
                  <emailAddress>PARAMETER</emailAddress>
                </address>
              </bcc>
            </MAILING_LIST>
          </RECEIVERS>
        </TAT_Email_Model_WebserviceOperation>
      </SOAP:Body>
    </SOAP:Envelope>
  </Request>
  <Response>
    <SOAP:Envelope xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
      <SOAP:Header xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/">
        <header xmlns:SOAP="http://schemas.xmlsoap.org/soap/envelope/" xmlns="http://schemas.cordys.com/General/1.0/">
          <msg-id>000C297F-0536-11E3-E944-DF0951D0118E</msg-id>
          <license>License has expired since 138 day(s)</license>
        </header>
      </SOAP:Header>
      <SOAP:Body>
        <SOAP:Fault>
          <faultcode>MustUnderstand</faultcode>
          <faultstring xml:lang="en-US">Do not understand method TAT_Email_Model_WebserviceOperation of type NSCUST</faultstring>
          <faultactor>http://schemas.cordys.com/1.0/email</faultactor>
          <detail>
            <cordys:FaultDetails xmlns:cordys="http://schemas.cordys.com/General/1.0/">
              <cordys:LocalizableMessage xmlns:cordys="http://schemas.cordys.com/General/1.0/">
                <cordys:MessageCode xmlns:cordys="http://schemas.cordys.com/General/1.0/" />
              </cordys:LocalizableMessage>
            </cordys:FaultDetails>
          </detail>
        </SOAP:Fault>
      </SOAP:Body>
    </SOAP:Envelope>
  </Response>
</ErrorDetails>
4

1 回答 1

1

您已将其绑定到错误的服务容器,您必须将其附加到通知服务容器。

该错误告诉您当前处理服务容器无法处理 NSCUST 类型的请求。这在 web 服务的实现中是可用的。

注意:您的许可证在该服务器上已过期。您可以使用 Cordys 中的许可证管理器对其进行更新。

于 2013-11-11T06:03:14.003 回答