Groups | Blog | Home
all groups > flash data integration > january 2005 >

flash data integration : Web Service Problem


dbach
1/6/2005 10:58:13 AM
I am having problems bringing in data from this web service into 2004. Does
anyone know if flash has problem parsing the data if there are under score
characters in the string values. I have a service without these characters and
have no problem with it ??? Service I am having problems with ::: <?xml
version='1.0' encoding='utf-8' ?> - <dmsItem
xmlns:xsd='http://www.w3.org/2001/XMLSchema'
xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'
xmlns='http://webservices.dmsnewmedia.co.uk/hiddentreasures'>
<Venue_Id>5050617</Venue_Id> <Venue_Name>Birdoswald Roman Fort</Venue_Name>
<Feature_Id>1</Feature_Id> <Feature_Name>Birdoswald Roman
Fort</Feature_Name> <Venue_Add1>Gilsland</Venue_Add1>
<Venue_Add2>Brampton</Venue_Add2> <Venue_Add3>Cumbria</Venue_Add3>
<Venue_Add4 /> <Directions>Signposted from A69, 30 minutes from Carlisle or
Hexham.</Directions> <Feature_Phone>016977 47602</Feature_Phone>
<email>birdoswald@dial.pipex.com</email> <http_address /> </dmsItem>
dpatters8
1/7/2005 3:44:44 PM
Your data is not well-formed. You have this " - " right before your dmsitem
tag. That is not allowed. Try this:



<?xml version="1.0" encoding="utf-8"?>
<dmsItem xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns="http://webservices.dmsnewmedia.co.uk/hiddentreasures">
<Venue_Id>5050617</Venue_Id>
<Venue_Name>Birdoswald Roman Fort</Venue_Name>
<Feature_Id>1</Feature_Id>
<Feature_Name>Birdoswald Roman Fort</Feature_Name>
<Venue_Add1>Gilsland</Venue_Add1>
<Venue_Add2>Brampton</Venue_Add2>
<Venue_Add3>Cumbria</Venue_Add3>
<Venue_Add4/>
<Directions>Signposted from A69, 30 minutes from Carlisle or
Hexham.</Directions>
<Feature_Phone>016977 47602</Feature_Phone>
<email>birdoswald@dial.pipex.com</email>
<http_address/>
</dmsItem>
AddThis Social Bookmark Button