aspose file tools
The moose likes Web Services Certification (SCDJWS/OCPJWSD) and the fly likes regarding xml syntax Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Certification » Web Services Certification (SCDJWS/OCPJWSD)
Reply Bookmark "regarding xml syntax" Watch "regarding xml syntax" New topic
Author

regarding xml syntax

Raj Kumar Bindal
Ranch Hand

Joined: Apr 15, 2006
Posts: 409
In this code,

<?xml version="1.0" encoding="UTF-8"?>
<schema xmlns="http://www.w3.org/2001/XMLSchema"
xmlns:mh="http://www.Monson-Haefel.com/jwsbook"
targetNamespace="http://www.Monson-Haefel.com/jwsbook">
<element name="address" type="mh:USAddress" />
<complexType name="USAddress">
<sequence>
<element name="name" type="string" />
<element name="street" type="string" />
<element name="city" type="string" />
<element name="state" type="string" />
<element name="zip" type="string" />
</sequence>
</complexType>
</schema>


if i am replacing element word with any xyz word,it is not working..
kindly clarify it??
Rizwan Mohammad
Ranch Hand

Joined: Sep 02, 2005
Posts: 445
'element' is tag defined in XMLSchema namespace.. You cannot replace with any xys.. etc..


Rizwan
SCJA, SCJP, SCWCD, SCBCD, SCDJWS.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: regarding xml syntax
 
Similar Threads
Doubt on XML Schema validity
XML Schema: Use of Import
targetNamespace and default namespace
Namespace Declaration !!
namespace and targetnamespace