WebService客户端请求失败 can not create a secure xmlinputfactory

webService客户端请求失败:can not create a secure xmlinputfactory

对应的cxf版本为

    <properties>
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
        <cxf.version>3.2.14</cxf.version>
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.apache.cxf</groupId>
                <artifactId>cxf-parent</artifactId>
                <version>${cxf.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
            <dependency>
                <groupId>org.apache.cxf</groupId>
                <artifactId>cxf</artifactId>
                <version>${cxf.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

在这里插入图片描述
找到源码对应位置(org.apache.cxf.staxutils.StaxUtils类的338行)
在这里插入图片描述
从以上源码不难看出,如果allowInsecureParser参数为true的话,就不会进入到抛出异常的逻辑。而allowInsecureParser参数是在类初始化的时候设置的。大致源码如下所示

public static final String ALLOW_INSECURE_PARSER =
    "org.apache.cxf.stax.allowInsecureParser";
    
private static boolean allowInsecureParser;

static{
	// ...
	String s = SystemPropertyAction.getPropertyOrNull(ALLOW_INSECURE_PARSER);
	if (!StringUtils.isEmpty(s)) {
	    allowInsecureParser = "1".equals(s) || Boolean.parseBoolean(s);
	}
	// ...
}

从上面不难看出如果ALLOW_INSECURE_PARSER对应的值不为空,而且为1或者true时,allowInsecureParser为true.
设置系统参数 -Dorg.apache.cxf.stax.allowInsecureParser=1再次启动,webservice请求不报错。

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

lang20150928

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值