0

我正在为 mulesoft 运行时 4.1.0 开发自定义验证器策略,当策略不满足时我需要修改响应。为此,我在 mulesoft 文档中找到了此页面:https ://docs.mulesoft.com/api-manager/v/2.x/http-policy-transform但是当我尝试使用 xml 命名空间 http-transform : 我总是得到错误

加载错误:/opt/mule/mule-4.1.2/policies/jwtvalidatorpolicy-315114/policy.xml,无法解析 http://www.mulesoft.org/schema/mule/http-transform/current/mule- http-transform.xsd,可能缺少依赖项或插件

有人可以提供正确的位置/命名空间吗?

谢谢!

4

2 回答 2

1

这是一个使用上述扩展的完整示例

    <?xml version="1.0" encoding="UTF-8"?>
    <mule xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
      xmlns:http-policy="http://www.mulesoft.org/schema/mule/http-policy"
      xmlns:http-transform="http://www.mulesoft.org/schema/mule/http-policy-transform"
      xmlns="http://www.mulesoft.org/schema/mule/core"
      xsi:schemaLocation="http://www.mulesoft.org/schema/mule/core http://www.mulesoft.org/schema/mule/core/current/mule.xsd
               http://www.mulesoft.org/schema/mule/http-policy-transform http://www.mulesoft.org/schema/mule/http-policy-transform/current/mule-http-policy-transform.xsd
               http://www.mulesoft.org/schema/mule/http-policy http://www.mulesoft.org/schema/mule/http-policy/current/mule-http-policy.xsd">

    <http-policy:proxy name="policy-deployment">
        <http-policy:source>
            <try>
                <http-policy:execute-next/>

                <http-transform:add-headers outputType="response">
                    <http-transform:headers>#[{'policyHeader': 'policyHeaderValue'}]</http-transform:headers>
                </http-transform:add-headers>
            </try>
        </http-policy:source>
    </http-policy:proxy>
</mule>

您还需要将以下依赖项添加到您的自定义策略项目中

<dependency>
    <groupId>com.mulesoft.anypoint</groupId>
    <artifactId>mule-http-policy-transform-extension</artifactId>
    <version>1.1.0</version>
    <classifier>mule-plugin</classifier>
</dependency>
于 2018-06-06T21:13:19.953 回答
0

对于那些也遇到缺少依赖项问题的人:

这是一个仅限企业的插件。这意味着您需要配置您的 Maven 设置文件以在 mulesoft 企业存储库中进行搜索。有关如何执行此操作的文档,请参阅https://docs.mulesoft.com/mule-runtime/3.9/configuring-maven-to-work-with-mule-esb 。如果您还没有此 repo 的用户名/密码,请使用与您的企业订阅相关联的帐户创建支持票证,他们将为您提供正确的凭据。

于 2018-10-23T06:11:41.393 回答