Skip to Content.
Sympa Menu

perfsonar-dev - Re: [pS-dev] problem with Node class

Subject: perfsonar development work

List archive

Re: [pS-dev] problem with Node class


Chronological Thread 
  • From: Jason Zurawski <>
  • To: Loukik Kudarimoti <>
  • Cc: Martin Swany <>, Roman Lapacz <>, Szymon Trocha <>, Nicolas Simar <>, "" <>
  • Subject: Re: [pS-dev] problem with Node class
  • Date: Mon, 27 Nov 2006 09:41:53 -0500

All;

As suggested on topology calls about a month ago I implemented a change that placed all 'location' oriented elements inside of a location element, consider these examples:

old way:
<nmtopo3:node xmlns:nmtopo3=http://ggf.org/ns/nmwg/topology/base/3.0/
id="node1">
<nmtopo3:city>Newark</nmtopo3:city>
<nmtopo3:country>USA</nmtopo3:country>
<nmtopo3:institution>University of Delaware</nmtopo3:institution> </nmtopo3:node>

new way:
<nmtopo3:node xmlns:nmtopo3=http://ggf.org/ns/nmwg/topology/base/3.0/
id="node1">
<nmtopo3:location>
<nmtopo3:city>Newark</nmtopo3:city>
<nmtopo3:country>USA</nmtopo3:country>
<nmtopo3:institution>University of Delaware</nmtopo3:institution> <!-- plus new things as well (zipcode, state,
streetAddress, floor, room, cage, rack,
shelf, etc.)
-->
</nmtopo3:location> </nmtopo3:node>


I reinserted the functions that are causing errors w/ Roman's code (related to the city, country, and institution elements), so now these elements can remain as direct children of the node. Sorry for any confusion or errors that were caused because of this change.
-jason



Archive powered by MHonArc 2.6.16.

Top of Page