您正在查看 Apigee Edge 說明文件。
前往 Apigee X 說明文件。info
SourceNotConfigured
錯誤訊息
透過 Edge UI 或 Edge 管理 API 部署 API Proxy 失敗,並顯示以下錯誤訊息:
Error Deploying Revision revision_number to environment ValidateSAMLAssertion[policy_name]: Source is not correctly configured.
錯誤訊息範例
Error Deploying Revision 2 to test
ValidateSAMLAssertion[Validate-SAML-Assertion-1]: Source is not correctly configured.
錯誤螢幕截圖
原因
如果「驗證 SAML 斷言」政策的下列一或多個元素未定義或為空白,API Proxy 的部署作業就會失敗,並顯示此錯誤:<Source>
、<XPath>
、<Namespaces>
、<Namespace>
。
舉例來說,如果您遺漏 <XPath>
元素,或讓 <Source>
元素或其實體為空白,API Proxy 的部署作業就會失敗。
診斷
從錯誤訊息中找出驗證 SAML 斷言政策名稱。例如,在下列錯誤訊息中,「驗證 SAML 宣告」政策名稱為
Validate-SAML-Assertion-1
。ValidateSAMLAssertion[Validate-SAML-Assertion-1]: Source is not correctly configured.
檢查未通過的 SAML 宣告政策 XML。請檢查一或多項政策元素是否缺少或空白:
<Source>
、<XPath>
、<Namespaces>
、<Namespace>
。如果是的話,這可能是發生錯誤的原因。舉例來說,下列政策在
<Source>
元素下方有空白的<Namespaces>
元素:<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ValidateSAMLAssertion name="SAML" ignoreContentType="false"> <Source name="request"> <Namespaces></Namespaces> </Source> <Description/> <TrustStore>ref://TrustStoreName</Truststore> <RemoveAssertion>false</RemoveAssertion> </ValidateSAMLAssertion>
在上述範例中,
<Namespaces>
元素為空白,因此會收到以下錯誤:ValidateSAMLAssertion[Validate-SAML-Assertion-1]: Source is not correctly configured.
解析度
請確認 <Source>
元素的值已正確設定,並使用 <Namespaces>
元素及其子元素 <Namespace>
。此外,您也必須確認 <XPath>
元素已定義且非空白。
如要修正上述「驗證 SAML 斷言」政策範例,您可以新增 <Namespace>
元素和 <XPath>
:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ValidateSAMLAssertion name="SAML" ignoreContentType="false">
<Source name="request">
<Namespaces>
<Namespace prefix='soap'>http://schemas.xmlsoap.org/soap/envelope/</Namespace>
<Namespace prefix='wsse'>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</Namespace>
<Namespace prefix='saml'>urn:oasis:names:tc:SAML:2.0:assertion</Namespace>
</Namespaces>
<XPath>/soap:Envelope/soap:Header/wsse:Security/saml:Assertion</XPath>
</Source>
<Description/>
<TrustStore>ref://TrustStoreName</Truststore>
<RemoveAssertion>false</RemoveAssertion>
</ValidateSAMLAssertion>
TrustStoreNotConfigured
錯誤訊息
透過 Edge UI 或 Edge 管理 API 部署 API Proxy 失敗,並顯示以下錯誤訊息:
Error Deploying Revision revision_number to environment ValidateSAMLAssertion[[Ljava.lang.Object;@object]: Trust store is not correctly configured.
錯誤訊息範例
Error Deploying Revision 2 to test
ValidateSAMLAssertion[[Ljava.lang.Object;@39537262]: Trust store is not correctly configured.
錯誤螢幕截圖
原因
如果 <TrustStore>
元素為空白,或是未在 ValidateSAMLAssertion 政策中指定,則 API 代理程式部署作業會失敗。必須提供有效的信任存放區。
診斷
請檢查發生失敗的特定 API Proxy 中,所有「驗證 SAML 斷言」政策。如果有任何「Validate SAML Assertion」政策,其中
<TrustStore>
元素為空白或未指定,則是錯誤的原因。<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <ValidateSAMLAssertion name="SAML" ignoreContentType="false"> <Source name="request"> <Namespaces> <Namespace prefix='soap'>http://schemas.xmlsoap.org/soap/envelope/</Namespace> <Namespace prefix='wsse'>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</Namespace> <Namespace prefix='saml'>urn:oasis:names:tc:SAML:2.0:assertion</Namespace> </Namespaces> <XPath>/soap:Envelope/soap:Header/wsse:Security/saml:Assertion</XPath> </Source> <Description/> <TrustStore/> <RemoveAssertion>false</RemoveAssertion> </ValidateSAMLAssertion>
解析度
請確認元素 <TrustStore>
一律會在「驗證 SAML 斷言」政策中指定,且不會為空白。<TrustStore>
名稱應與您嘗試部署 Proxy 的所有環境中有效 TrustStore 的名稱相符。
如要修正上述範例,您可以使用有效值指定 <TrustStore>
元素。
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<ValidateSAMLAssertion name="SAML" ignoreContentType="false">
<Source name="request">
<Namespaces>
<Namespace prefix='soap'>http://schemas.xmlsoap.org/soap/envelope/</Namespace>
<Namespace prefix='wsse'>http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd</Namespace>
<Namespace prefix='saml'>urn:oasis:names:tc:SAML:2.0:assertion</Namespace>
</Namespaces>
<XPath>/soap:Envelope/soap:Header/wsse:Security/saml:Assertion</XPath>
</Source>
<TrustStore>TrustStoreName</TrustStore>
<RemoveAssertion>false</RemoveAssertion>
</ValidateSAMLAssertion>
如要進一步瞭解如何使用 Truststore,請參閱「Truststores 和 KeyStore」。
NullKeyStore
錯誤訊息
透過 Edge UI 或 Edge 管理 API 部署 API Proxy 失敗,並顯示以下錯誤訊息:
Error Deploying Revision revision_number to environment Assertion KeyStore name cannot be null.
錯誤訊息範例
Error Deploying Revision 4 to test
Assertion KeyStore name cannot be null.
錯誤螢幕截圖
原因
如果 GenerateSAMLAssertion 政策的 <Keystore>
元素中,子元素 <Name>
為空白或未指定,API Proxy 的部署作業就會失敗。必須提供有效的 Keystore 名稱。
診斷
請檢查發生失敗的特定 API Proxy 中,所有「產生 SAML 斷言」政策。如果有任何產生 SAML 斷言政策,其中子元素
<Name>
為空白,或未在<Keystore>
元素中指定,則為錯誤發生的原因。下列「產生 SAML 斷言」政策在
<Keystore>
元素中含有空白的子元素<Name>
:<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <GenerateSAMLAssertion name="SAML" ignoreContentType="false">` <CanonicalizationAlgorithm /> <Issuer ref="reference">Issuer name</Issuer> <KeyStore> <Name></Name> <Alias ref="reference">alias</Alias> </KeyStore> <OutputVariable> <FlowVariable>assertion.content</FlowVariable> <Message name="request"> <Namespaces> <Namespace prefix="test">http://www.example.com/test</Namespace> </Namespaces> <XPath>/envelope/header</XPath> </Message> </OutputVariable> <SignatureAlgorithm /> <Subject ref="reference">Subject name</Subject> <Template ignoreUnresolvedVariables="false"> <!-- A lot of XML goes here, in CDATA, with {} around each variable --> </Template> </GenerateSAMLAssertion>
解析度
請確認在「產生 SAML 斷言」政策的 <Keystore>
元素中,子元素 <Name>
一律已指定且非空白。
如要修正上述範例,您可以正確指定 <Name>
元素,並確保 <Alias>
元素指定的值有效。
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<GenerateSAMLAssertion name="SAML" ignoreContentType="false">
<CanonicalizationAlgorithm />
<Issuer ref="reference">Issuer name</Issuer>
<KeyStore>
<Name ref="reference">keystorename</Name>
<Alias ref="reference">alias</Alias>
</KeyStore>
<OutputVariable>
<FlowVariable>assertion.content</FlowVariable>
<Message name="request">
<Namespaces>
<Namespace prefix="test">http://www.example.com/test</Namespace>
</Namespaces>
<XPath>/envelope/header</XPath>
</Message>
</OutputVariable>
<SignatureAlgorithm />
<Subject ref="reference">Subject name</Subject>
<Template ignoreUnresolvedVariables="false">
<!-- A lot of XML goes here, in CDATA, with {} around
each variable -->
</Template>
</GenerateSAMLAssertion>
請參閱「SAML 斷言政策參考文章中的程式碼範例」。
NullKeyStoreAlias
錯誤訊息
透過 Edge UI 或 Edge 管理 API 部署 API Proxy 失敗,並顯示以下錯誤訊息:
Error Deploying Revision revision_number to environment Assertion KeyStore alias cannot be null.
錯誤訊息範例
Error Deploying Revision 4 to test
Assertion KeyStore alias cannot be null.
錯誤螢幕截圖
原因
如果子元素 <Alias>
為空白,或是在產生 SAML 斷言政策的 <Keystore>
元素中未指定,則 API Proxy 的部署作業會失敗。必須提供有效的 Keystore 別名。
診斷
請檢查發生失敗的特定 API Proxy 中,所有「產生 SAML 斷言」政策。如有任何「Generate SAML Assertion」政策,在
<Keystore>
元素中為子項元素<Alias>
為空白或未指定,就是發生錯誤的原因。下列「產生 SAML 斷言」政策在
<Keystore>
元素中含有空白的子元素<Alias>
:<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <GenerateSAMLAssertion name="SAML" ignoreContentType="false">` <CanonicalizationAlgorithm /> <Issuer ref="reference">Issuer name</Issuer> <KeyStore> <Name ref="reference">keystorename</Name> <Alias></Alias> </KeyStore> <OutputVariable> <FlowVariable>assertion.content</FlowVariable> <Message name="request"> <Namespaces> <Namespace prefix="test">http://www.example.com/test</Namespace> </Namespaces> <XPath>/envelope/header</XPath> </Message> </OutputVariable> <SignatureAlgorithm /> <Subject ref="reference">Subject name</Subject> <Template ignoreUnresolvedVariables="false"> <!-- A lot of XML goes here, in CDATA, with {} around each variable --> </Template> </GenerateSAMLAssertion>
解析度
請確認在產生 SAML 斷言政策的 <Keystore>
元素中,子元素 <Name>
一律會指定且非空白。
如要修正上述範例,您可以正確指定 <Alias>
元素,並確保 <Name>
元素指定有效的值。
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<GenerateSAMLAssertion name="SAML" ignoreContentType="false">
<CanonicalizationAlgorithm />
<Issuer ref="reference">Issuer name</Issuer>
<KeyStore>
<Name ref="reference">keystorename</Name>
<Alias ref="reference">alias</Alias>
</KeyStore>
<OutputVariable>
<FlowVariable>assertion.content</FlowVariable>
<Message name="request">
<Namespaces>
<Namespace prefix="test">http://www.example.com/test</Namespace>
</Namespaces>
<XPath>/envelope/header</XPath>
</Message>
</OutputVariable>
<SignatureAlgorithm />
<Subject ref="reference">Subject name</Subject>
<Template ignoreUnresolvedVariables="false">
<!-- A lot of XML goes here, in CDATA, with {} around
each variable -->
</Template>
</GenerateSAMLAssertion>
請參閱 SAMLAssertion 政策參考文章中的範例。
NullIssuer
錯誤訊息
透過 Edge UI 或 Edge 管理 API 部署 API Proxy 失敗,並顯示以下錯誤訊息:
Error Deploying Revision revision_number to environment Assertion Issuer cannot be null.
錯誤訊息範例
Error Deploying Revision 4 to test
Assertion Issuer cannot be null.
錯誤螢幕截圖
原因
如果 <Issuer>
元素為空白,或是未在「產生 SAML 斷言」政策中指定,則 API Proxy 的部署作業會失敗。必須提供有效的 <Issuer>
值。
診斷
請檢查發生失敗的特定 API Proxy 中,所有「產生 SAML 斷言」政策。如果有任何產生 SAML 斷言政策,其中
<Issuer>
元素為空白或未指定,則為錯誤原因。下列「產生 SAML 斷言」政策包含空白的
<Issuer>
元素:<?xml version="1.0" encoding="UTF-8" standalone="yes"?> <GenerateSAMLAssertion name="SAML" ignoreContentType="false">` <CanonicalizationAlgorithm /> <Issuer></Issuer> <KeyStore> <Name ref="reference">keystorename</Name> <Alias ref="reference">alias</Alias> </KeyStore> <OutputVariable> <FlowVariable>assertion.content</FlowVariable> <Message name="request"> <Namespaces> <Namespace prefix="test">http://www.example.com/test</Namespace> </Namespaces> <XPath>/envelope/header</XPath> </Message> </OutputVariable> <SignatureAlgorithm /> <Subject ref="reference">Subject name</Subject> <Template ignoreUnresolvedVariables="false"> <!-- A lot of XML goes here, in CDATA, with {} around each variable --> </Template> </GenerateSAMLAssertion>
解析度
請確認「Generate SAML Assertion」政策中一律指定 <Issuer>
元素,且該元素非空白。
如要修正上述範例,請正確指定 <Issuer>
元素:
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<GenerateSAMLAssertion name="SAML" ignoreContentType="false">
<CanonicalizationAlgorithm />
<Issuer ref="reference">Issuer name</Issuer>
<KeyStore>
<Name ref="reference">keystorename</Name>
<Alias ref="reference">alias</Alias>
</KeyStore>
<OutputVariable>
<FlowVariable>assertion.content</FlowVariable>
<Message name="request">
<Namespaces>
<Namespace prefix="test">http://www.example.com/test</Namespace>
</Namespaces>
<XPath>/envelope/header</XPath>
</Message>
</OutputVariable>
<SignatureAlgorithm />
<Subject ref="reference">Subject name</Subject>
<Template ignoreUnresolvedVariables="false">
<!-- A lot of XML goes here, in CDATA, with {} around
each variable -->
</Template>
</GenerateSAMLAssertion>
請參閱 SAMLAssertion 政策參考文章中的範例。