Apparently the XML produced by the PHP was showing the id with 2 characters, but there is actually trailing space in it. Once I changed my comparison to add the space it works now. This is data coming from an iSeries where the field is set to 3 characters. So this did not work: id="AA" I had to change it to id="AA " I still don't get why the XML output of the PHP does not have a space but when you use the PHP file and parse the XML there is a space there.
Thanks for your response, I still can't post any links at the moment. On Nov 10, 1:55 pm, Andrew Leach <[email protected]> wrote: > On Nov 10, 9:21 pm, knieriemrt <[email protected]> wrote: > > > I can't post my map here yet unfortunately and I didn't want to post a > > code dump. I am wondering if anyone has experienced something similar > > and might know of a limitation or maybe something I need to check. > > There is nothing intrinsic in HTML, PHP or XML which will cause this > to fail. I'd guess that whatever is receiving the "AA" and outputting > the XML is actually finding nothing to output. Or, if it is outputting > XML, then one or more of the entries in the XML is causing it to be > malformed. > > Link, please! (Even if it's only a link to get the dynamically- > produced XML which isn't working; that would be a start) > > Andrew -- You received this message because you are subscribed to the Google Groups "Google Maps API" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/google-maps-api?hl=.
