473,394 Members | 1,645 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

XML Naming Conventions

Does the use of DTD, XML Schema and similar constructs adopt
the use of C# naming conventions? If so how do I make the distinction
of how to apply C# conventions with XML elements, attributes and so
on? Any referrals to resources that discuss or document XML Naming
Conventions?

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/
Nov 16 '05 #1
3 4320
W3C.ORG publishes the XML standards. If you're talking about an XML
document, and naming tags (nodes) and attributes in particular, the naming
convention depends on what you're trying to do. For general purpose stuff,
you can make up your own. If you're trying to implement functionality
through an XML-based standard (like SOAP) there are specific guidelines and
structures (SOAP standards are also published by W3C on their website).

Thanks,
Michael C., MCDBA

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Does the use of DTD, XML Schema and similar constructs adopt
the use of C# naming conventions? If so how do I make the distinction
of how to apply C# conventions with XML elements, attributes and so
on? Any referrals to resources that discuss or document XML Naming
Conventions?

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

Nov 16 '05 #2
Hello Michael,

I am well aware of W3C and work with their standards. As a result
of that awareness I happened upon a linked comment that alleged the
W3C had defined naming conventions but the link only resolved to the
W3C 'home page' and after rooting around at the W3C site regardless
I was not able to locate any specific naming conventions in the context
I was expecting and hoping to find as those published by Microsoft's
..NET Framework General Reference Naming Guidelines [1].

To help clarify, I have read comments that compared the declaration
of XML elements to classes and class members and so on. I'd like to
learn more about how to think when defining and declaring XML
elements that may correlate to class definitions.

For example, I know XML is case sensitive but when I name XML
elements by which naming guideline am I motivated to declare an
element, as book, Book, bookStore or BookStore and how may
the declaration and its child elements correlate to any named counterpart
which may exist in my code when used to parse and process the XML?

The Visual Studio Coding Techniques [2] is helpful but does not
make the corrolary with XML elements.

Searching MSDN has not turned up anything specific in the context
I am attempting to convey.

In a nutshell, I want to learn if it is a correct perception that a well
designed XML schemata naming convention can be thought of as
equivalent to that of designing a class library and if so how to correlate
the constituent XML elements and child decedants by name to
class library counterparts?

Clear as mud :-)

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

[1]
http://msdn.microsoft.com/library/de...Guidelines.asp
[2]
http://msdn.microsoft.com/library/de...techniques.asp
"Michael C" <mi******@nospam.org> wrote in message
news:UN**********************@news4.srv.hcvlny.cv. net...
W3C.ORG publishes the XML standards. If you're talking about an XML
document, and naming tags (nodes) and attributes in particular, the naming
convention depends on what you're trying to do. For general purpose stuff, you can make up your own. If you're trying to implement functionality
through an XML-based standard (like SOAP) there are specific guidelines and structures (SOAP standards are also published by W3C on their website).

Thanks,
Michael C., MCDBA

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:%2****************@TK2MSFTNGP11.phx.gbl...
Does the use of DTD, XML Schema and similar constructs adopt
the use of C# naming conventions? If so how do I make the distinction
of how to apply C# conventions with XML elements, attributes and so
on? Any referrals to resources that discuss or document XML Naming
Conventions?

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/


Nov 16 '05 #3
Apart from the standard naming rules (don't start element names with "xml",
element names can't contain spaces, yadda yadda), the naming conventions are
pretty much set by the application you're using. If you're asking whether
you should prefix elements that are supposed to contain int values with
"int", that's pretty much your choice, unless the particular protocol or
application you're using dictates differently. The only addition I would
make is that personally I try to stay away from using custom element names
that are the same as commonly used tags in other protocols (i.e., using a
<title> tag). I've heard of people having issues with using HTML-type tag
names when they are using HTTP. In fact, that's one of the reasons the
soap: namespace was added to the SOAP standard... to avoid conflicts like
this.

If you want to know how .NET converts your object names to XML elements,
serialize some of them and look at the resultant XML docs.

Thanks,
Michael C., MCDBA

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message
news:xi*******************@twister.rdc-kc.rr.com...
Hello Michael,

I am well aware of W3C and work with their standards. As a result
of that awareness I happened upon a linked comment that alleged the
W3C had defined naming conventions but the link only resolved to the
W3C 'home page' and after rooting around at the W3C site regardless
I was not able to locate any specific naming conventions in the context
I was expecting and hoping to find as those published by Microsoft's
.NET Framework General Reference Naming Guidelines [1].

To help clarify, I have read comments that compared the declaration
of XML elements to classes and class members and so on. I'd like to
learn more about how to think when defining and declaring XML
elements that may correlate to class definitions.

For example, I know XML is case sensitive but when I name XML
elements by which naming guideline am I motivated to declare an
element, as book, Book, bookStore or BookStore and how may
the declaration and its child elements correlate to any named counterpart
which may exist in my code when used to parse and process the XML?

The Visual Studio Coding Techniques [2] is helpful but does not
make the corrolary with XML elements.

Searching MSDN has not turned up anything specific in the context
I am attempting to convey.

In a nutshell, I want to learn if it is a correct perception that a well
designed XML schemata naming convention can be thought of as
equivalent to that of designing a class library and if so how to correlate
the constituent XML elements and child decedants by name to
class library counterparts?

Clear as mud :-)

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/

[1]
http://msdn.microsoft.com/library/de...Guidelines.asp [2]
http://msdn.microsoft.com/library/de...techniques.asp

"Michael C" <mi******@nospam.org> wrote in message
news:UN**********************@news4.srv.hcvlny.cv. net...
W3C.ORG publishes the XML standards. If you're talking about an XML
document, and naming tags (nodes) and attributes in particular, the naming convention depends on what you're trying to do. For general purpose

stuff,
you can make up your own. If you're trying to implement functionality
through an XML-based standard (like SOAP) there are specific guidelines

and
structures (SOAP standards are also published by W3C on their website).

Thanks,
Michael C., MCDBA

"clintonG" <cs*********@REMOVETHISTEXTmetromilwaukee.com> wrote in message news:%2****************@TK2MSFTNGP11.phx.gbl...
Does the use of DTD, XML Schema and similar constructs adopt
the use of C# naming conventions? If so how do I make the distinction
of how to apply C# conventions with XML elements, attributes and so
on? Any referrals to resources that discuss or document XML Naming
Conventions?

--
<%= Clinton Gallagher, "Twice the Results -- Half the Cost"
Architectural & e-Business Consulting -- Software Development
NET cs*********@REMOVETHISTEXTmetromilwaukee.com
URL http://www.metromilwaukee.com/clintongallagher/



Nov 16 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
by: Cristof Falk | last post by:
I wanted to get a feel. The documentation gives naming conventions for public/protected members. Is this truly widely adopted? And what about using the same conventions for private members and...
7
by: cmiddlebrook | last post by:
Hi there, I keep finding myself getting inconsistent with naming conventions for things like member variables, class names etc and I just want to find something that suits me and stick to it. I...
1
by: clintonG | last post by:
Does the use of DTD, XML Schema and similar constructs adopt the use of C# naming conventions? If so how do I make the distinction of how to apply C# conventions with XML elements, attributes and...
4
by: Mark Broadbent | last post by:
stupid question time again to most of you experts but this is something that continually bothers me. I am trying to get into the habit of naming variables and controls in an assembly as per...
5
by: rastaman | last post by:
Hi all, I know of the existence of Object Naming Conventions for Visual Basic 6. Now I'm reading some books about VB .NET, but the names used for the objects are button1, picturebox1, etc. I...
4
by: Patrick | last post by:
what are the general naming conventions for vb.net controls. esp txtUserName, lblPassword, btnSubmit What are the prefixes for the controls???? I've tried to search hi and low on the net, but...
9
by: kevininstructor | last post by:
Greetings, I am in the process of creating naming conventions for VB.NET controls i.e. CheckBox -> chkShowThisOnStartup ListBoxt -> lstSomeList What I am looking for other developers...
35
by: Smithers | last post by:
Is it common practise to begin the name of form classes with "frm" (e.g., frmOneForm, frmAnotherForm). Or is that generally considered an outdated convention? If not "frm" what is a common or...
1
by: Philipp Post | last post by:
Marcello, Not a big surprise as naming conventions have a lot to do with personal prefernces. There are a lot of threads in comp.databases and the other database groups. Just do a search for...
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.