Tag: xsd

用于logback.xml的XML模式或DTD?

我曾经在网上看过几次关于如何使用XML模式或DTD for logback.xml文件在IDE(如IDEA或Eclipse)中至less具有非常基本的validation和自动完成function的讨论,但是我从未见过任何解决scheme 你是否?

当没有互联网连接时,Spring schemaLocation失败

我正在使用Spring,并在application-context.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:util="http://www.springframework.org/schema/util" xmlns:context="http://www.springframework.org/schema/context" xmlns:aop="http://www.springframework.org/schema/aop" xmlns:tx="http://www.springframework.org/schema/tx" xmlns:p="http://www.springframework.org/schema/p" xmlns:security="http://www.springframework.org/schema/security" xsi:schemaLocation=" http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd http://www.springframework.org/schema/util http://www.springframework.org/schema/util/spring-util-2.0.xsd http://www.springframework.org/schema/context http://www.springframework.org/schema/context/spring-context-2.1.xsd http://www.springframework.org/schema/tx http://www.springframework.org/schema/tx/spring-tx.xsd http://www.springframework.org/schema/aop http://www.springframework.org/schema/aop/spring-aop-2.0.xsd http://www.springframework.org/schema/security http://www.springframework.org/schema/security/spring-security-2.0.xsd" > ….. 当我的互联网连接丢失时,我无法通过tomcat或jetty运行我的应用程序。 它给: [main] WARN org.springframework.beans.factory.xml.XmlBeanDefinitionReader – Ignored XML validation warning org.xml.sax.SAXParseException: schema_reference.4: Failed to read schema document '/spring-beans-2.0.xsd', because 1) could not find the document; 2) the […]

如何可视化XML模式?

我已经做了一个XML模式 – 所有的代码基本上 – 并想知道是否有一种方式,代码可以产生这样的事情: 如果是这样,我该怎么办呢?

XSD和WSDL有什么区别?

XML Schema和WSDL什么区别? 我注意到的差异是, WSDL包含XSD ,在WSDL我们可以声明操作,但不能在XSD 。 那是对的吗?

xsd:include和xsd:import有什么区别?

xsd:include和xsd:import什么区别? 你什么时候用一个而不是另一个,什么时候可能不重要?

XML Schema minOccurs / maxOccurs默认值

我想知道XML模式规范如何处理这些情况: <xsd:element minOccurs="1" name="asdf"/> 没有maxOccurs给出 – >这是基数[1..1]? <xsd:element minOccurs="5" maxOccurs="2" name="asdf"/> 我想这简直是无效的? <xsd:element maxOccurs="2" name="asdf"/> 这是基数[0..2]还是[1..2]? 有关XML Schema规范如何处理这些情况的“官方”定义?

XML模式(XSD)validation工具?

在办公室,我们正在编写一个应用程序,将根据我们提供的模式生成XML文件。 我们有一个.XSD文件中的模式。 是否有工具或库可用于自动化testing,以检查生成的XML是否与模式匹配? 我们宁愿使用适合商业用途的免费工具,尽pipe我们不会捆绑模式检查器,所以在开发过程中只需要开发人员使用。 我们的开发语言是C ++,如果有什么区别的话,尽pipe我不认为它应该是我们可以生成XML文件,然后通过在testing中调用单独的程序来进行validation。

XML Schema:包含仅包含文本的属性的元素?

我很难find这个。 我如何在XML模式文件中为XML定义一个元素,如下所示: <option value="test">sometext</option> 我不知道如何定义一个types为xs:string的元素,并且也有一个属性。 这是迄今为止我所得到的: <xs:element name="option"> <xs:complexType> <xs:attribute name="value" type="xs:string" /> </xs:complexType> </xs:element>

使用XSD文件生成XML文件

如何从XSD文件生成XML文件?

在Visual Studio IDE中使用XSD进行XMLvalidation

我知道我以前做过这件事,但今天不行,我也找不到解释如何做的地方。 这可能是我的睡眠不足,但我怀疑是gremlins。 我有一个XML文档和一个充满XSD的目录来定义它。 如何将Visual IDE设置为向我通知validation失败,然后在给定上下文中提供有效标签和属性的智能列表? 我曾经尝试过: 我用XML文档将XSD添加到了项目中。 我已经将XSD添加到XML模式列表(在XML / Schemas …菜单项下)。 我甚至已经将schemaLocation和noNamespaceSchemaLocation属性包含到了XML文档中。 Visual Studio仍然没有放弃任何有用的debugging或编辑信息。 我试了2010年和2008年(我以前在2008年做过) 更新:我有另一个开发人员尝试这个,也失败了。 他知道他已经用其他XML文档完成了这个工作。 然后我下载了Oxygen XML编辑器,它在相同的XML和XSD文件上工作得很好,所以文件看起来很好(或者Oxygen更宽容/灵活…)