首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > XML SOAP >

xml文件不能被准确解析 matching "[xX][mM][lL]"

2013-12-28 
xml文件不能被正确解析matching [xX][mM][lL]xml文件提示错误。The processing instruction target match

xml文件不能被正确解析 matching "[xX][mM][lL]"
xml文件提示错误。
The processing instruction target matching "[xX][mM][lL]" is not allowed。

XML错误代码:

<?xml version="1.0" encoding="UTF-8"?><beans xmlns="http://www.springframework.org/schema/beans"    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"    xmlns:dubbo="http://code.alibabatech.com/schema/dubbo"    xsi:schemaLocation="http://www.springframework.org/schema/beans        http://www.springframework.org/schema/beans/spring-beans.xsd        http://code.alibabatech.com/schema/dubbo        http://code.alibabatech.com/schema/dubbo/dubbo.xsd        ">    <!-- 消费方应用名,用于计算依赖关系,不是匹配条件,不要与提供方一样 -->    <dubbo:application name="consumer-of-helloworld-app"  />     <!-- 使用multicast广播注册中心暴露发现服务地址 -->    <dubbo:registry address="multicast://224.5.6.7:1234" />     <!-- 生成远程服务代理,可以和本地bean一样使用demoService -->    <dubbo:reference id="demoService" interface="provider.service.DemoService" />    </beans>


为什么会出错呢?

因为头信息前面有空行。
头信息<?xml ... ?>前面是不准有任务符号存在的,包括 换行、空格、回车等。

热点排行