|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stop making mediocre tutorials.The best tutorials are video! Camtasia Studio makes it easy to create engaging, buzz-building screen videos at any size, in any popular format. Download the free trial!
|
|
#1
|
|||
|
|||
|
trying to represent vector datatype in XML
Hi,
I have some legacy format that I need to convert to xml schema. one of the data types is vector. I have not figured out how to represent vector in XML, since vectors are an ordered list. Any suggestions? For example i have a vector of hostnames that go to a ping command. they have to be ordered. |
|
#2
|
|||
|
|||
|
This may seem odd, but what about putting the one after the other in sequence?
<urls> <url>http://1...</url> <url>http://2...</url> <url>http://3...</url> </urls> Through the dom you can get next/previous/first/last/item(index), which is the functionality a vector gives you. |
![]() |
| Viewing: Dev Shed Forums > Programming Languages - More > XML Programming > trying to represent vector datatype in XML |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|