I'm using XML::LibXML to parse a document.
The HTML file behind it, has some minor errors, and the parser reports them:
http://is.gd/create.php?longurl=http://google.com:15: validity error : ID smallink already defined
nal URL was <a href="http://google.com">http://google.com</a><span id="smallink"
...
I have seen many forum questions about this, but i haven't found a solution that works for me.
THis is my code:
String serviceURL = "http://www.mywebsite.com/WebService.asmx";
String serviceNamespace = "http://tempuri.org/";
String serviceMethod = "getUser";
String SoapAction = "http:...
Hello.
I did a exercise like this, how do I calculate the # of XML elements collapsed into an array by XML::Simple so I don't have to hard-code the # of elements?
I plan to use the code to parse a bigger xml file. I don't want to cout the elements by manual.
Can I use some count to replace the magic numbers, a little like person.count...
Hi there, I have an xml feed, which i'm attempting to extract two values from. I'll paste the basic xml feed below.
<aws:weather>
<aws:current-condition icon="http://deskwx.weatherbug.com/images/Forecast/icons/cond034.gif">Mostly Cloudy</aws:current-condition>
</aws:weather>
To parse this feed, I have the following in Javascr...
Currently using Java's built-in XML DOM libraries for creation/parsing. Ugly, even with lots of helper classes and methods, and performance and memory usage sucks.
What's the best Java tool or framework for dealing with XML in regards to producing and consuming REST services?
A service I use uses JAXB. I was able to use their classes...
I am getting an error wil parsing an XMl using the xmlPull parser.
The exception that i am getting is
org.apache.http.MalformedChunkCodingException: Chunked stream ended unexpectedly
Can you please let me know the reason for the error and methods to handle it.
...
I looked at a lot of tuts but this one seems to have got me where I am
controller
def index
require 'nokogiri'
doc = Nokogiri::XML(open("http://sports.yahoo.com/top/rss.xml"))
@links = doc.xpath('//item').map do |i|
{'title' => i.xpath('title'), 'link' => i.xpath('link'), 'description' => i.xpath('description...
I am looking for a way to parse and insert following XML string data to MySQL tables using php.. please help
<?xml version="1.0" encoding="UTF-8"?><brandModelListResponse>
<brand ID="Nokia" Description="Nokia">
<model ID="N93i" OS="Symbian" OSVersion="SymS60V3" image="nokia-n93i.gif">N93i</model>
<model ID="N95" OS="Symbia...
in ms sql I have the following code:
ALTER PROCEDURE [dbo].[xmlDictamen_Alta]
@Xml text
as begin
declare @Id integer
declare @DocumentoId numeric(18,0)
declare @Descripcion varchar(300)
begin
set nocount on
exec dbo.sp_xml_preparedocument @Id output, @Xml
select
@DocumentId = DocumentId,
...
in ms sql I have the following code:
ALTER PROCEDURE [dbo].[xmlDictamen_Alta]
@Xml text
as begin
declare @Id integer
declare @DictamenId numeric(18,0)
declare @DocumentoId numeric(18,0)
declare @Descripcion varchar(300)
begin
set nocount on
exec dbo.sp_xml_preparedocument @Id output, @Xml
select
...
I have this error when building and running my project in xCode:
'RootViewController' may not respond to '-parseXMLFileAtURL:'
I'm attempting to develop the basic Apple RSS Reader from the tutorial at:
http://gigaom.com/apple/tutorial-build-a-simple-rss-reader-for-iphone/
my section of code that this error is occurring in looks like t...
What are the ways of accessing web services on a BlackBerry device?
I've learned about XML for webservices. We use SAX and DOM parsers in Blackberry. Are there any more ideas like this?
I also want to know what KSOAP is and how to use it on BlackBerry.
...
Hello,
I'am currently trying to create and application (In c#) that parse a XML file and from that change the Text depending on the elements and tags inside the text.
Example:
<conversation>
<message from=Bob>
<typewriter dif=0.5>
<Text>
Bob: Hello <replace>Country<with>World</with><...
I want to put in a timeout in case it takes too long to find my location, send out the relevant url, and parse the xml. It worked when I used performSelector:withObject:afterDelay in the locationManager (just to test getting the xml), but when I put similar code around my parser it doesn't actually abort the parsing. I am testing this by...