are you sure that CF is actually getting the XML ?
try grabbing it with CFHTTP first instead just to make sure.
On Wed, Sep 21, 2011 at 2:02 PM, Torrent Girl wrote:
>
> Hi all
>
> I tried to parse the XML from the following feed as I normally do and kept
> getting error messages ("not defined
"Jobs" is capitalized in the XML.
This works:
http://feeds.jobs2web.com/feeds/view?siteId=246&feedId=682";)>
On Wed, Sep 21, 2011 at 9:02 AM, Torrent Girl wrote:
>
> Hi all
>
> I tried to parse the XML from the following feed as I normally do and kept
> getting error messages ("not defin
Hi all
I tried to parse the XML from the following feed as I normally do and kept
getting error messages ("not defined") on everything I tried.
http://feeds.jobs2web.com/feeds/view?siteId=246&feedId=682
Here are a few snippets that I tried:
http://feeds.jobs2web.com/feeds/view?siteId=246&feed
stick it inside a
--
Russ Michaels
www.bluethunderinternet.com : Business hosting services & solutions
www.cfmldeveloper.com: ColdFusion developer community
www.michaels.me.uk : my blog
www.cfsearch.com : ColdFusion search engine
**
*skype me*
If you're using SQL Server, it'll auto-handle the XML directly with no
pre-parsing with CF (SEE
http://msdn.microsoft.com/en-us/library/ms186918.aspx ):
PROCEDURE [BulkInsert]
@doc text
AS
BEGIN
DECLARE @idoc int
--Create an internal representation of the XML document.
EXEC sp_xml_prepared
Hi all.
I have been able to output my values from the xml (YAY!!) using xmlSearch
(Thanks Guys).
Here is my code:
myxmldoc =
XmlParse("E:\domains\aawit.net\wwwroot\Microsoft-Diversity-AAWIT116obs.xml");
title= XmlSearch(myxmldoc, "/jobs/job/title");
location = XmlSearch(myxm
>On 5/3/2011 10:18 AM, Torrent Girl wrote:
>> Actually, I can dump the contents of the cfhttp.filecontent return
>> with no problem.
>
>That is because at that point, the data is still flat text. One can fit
>a WHOLE LOT of flat text into a gigabyte or two of ram memory.
>
>The problem will occ
On 5/3/2011 10:18 AM, Torrent Girl wrote:
> Actually, I can dump the contents of the cfhttp.filecontent return
> with no problem.
That is because at that point, the data is still flat text. One can fit
a WHOLE LOT of flat text into a gigabyte or two of ram memory.
The problem will occur when
> On 5/3/2011 9:14 AM, Torrent Girl wrote:
> >
>
> That looks to be a pretty large XML document. There are definite
> limits
> on how large of document that xmlParse() can process. As xmlParse
> uses
> a DOM parsing methodology, the entire resulting data structure (which
>
> will be seve
On 5/3/2011 9:14 AM, Torrent Girl wrote:
> 'http://www.microsoft-careers.com/Microsoft-Diversity-AAWIT116obs.xml'>
That looks to be a pretty large XML document. There are definite limits
on how large of document that xmlParse() can process. As xmlParse uses
a DOM parsing methodology, the ent
Maybe it's too big a file this time.
the XMlParse function isn't the best when it gets to large documents, time to
drop into java :) SAX parsers work even better for large documents.
I looked at it and it seems to be a rather big file BTW.
Regards
Mark Drew
On 3 May 2011, at 12:14, Torren
Are you sure that someone didn't screw up the XML in the file?
-Original Message-
From: Torrent Girl [mailto:moniqueb...@gmail.com]
Sent: Tuesday, May 03, 2011 12:15 PM
To: cf-talk
Subject: MS XML Parse
Hello all.
I am trying to parse thru an XML feed using the method that I a
Hello all.
I am trying to parse thru an XML feed using the method that I always use and
it's not working:
Here is my code:
The dump doesn't show up. I just get a blank screen.
Any suggestions?
TIA
~|
Order the Adobe
EMAIL PROTECTED]
> Sent: Tuesday, October 09, 2007 5:01 PM
> To: CF-Talk
> Subject: Re: XML Parse
>
> Well... I don't want to convert this string to a CF struct. I know I
> can do that using cfwddx.
> In this case I simply want to convert the string into an XML object.
&g
Can you supply us with the error you are receiving?
-Original Message-
From: Web Exp [mailto:[EMAIL PROTECTED]
Sent: Tuesday, October 09, 2007 5:01 PM
To: CF-Talk
Subject: Re: XML Parse
Well... I don't want to convert this string to a CF struct. I know I
can do that using cfwdd
Well... I don't want to convert this string to a CF struct. I know I
can do that using cfwddx.
In this case I simply want to convert the string into an XML object.
The string again is:
0
> i am accessing an external API that returns me the following string:
>
> version='1.0'> name='STATUS'>0
>
>
> my question is how can i parse the above so that I get an XML object
> in coldfusio
Hi.
i am accessing an external API that returns me the following string:
0
my question is how can i parse the above so that I get an XML object
in coldfusion.
I tried us
riginal Message-
>From: Ubqtous [mailto:[EMAIL PROTECTED]
>Sent: Monday, November 03, 2003 1:53 PM
>To: CF-Talk
>Subject: Re: XML Parse with CF50
>
>Larry,
>
>On 11/3/2003 at 14:25, you wrote:
>
>LJ> I am receiving an XML string from a client and I am trying to
>LJ
Larry Juncker wrote:
> I am receiving an XML string from a client and I am trying to learn how to
> parse out the values I want.
Hi Larry you might also want to check out our XML Parser for CF 4.5 and 5:
http://www.cfdev.com/xml/
[Todays Threads]
[This Message]
[Subscription]
[Fast Unsubs
Larry,
On 11/3/2003 at 15:46, you wrote:
LJ> Is there a looping function such as cfloop or is there a structure function
LJ> of some sort, I am really trying to understand what appears to be really
LJ> simple.
I had downloaded a set of custom tags to parse an XML file a year ago
(I believe the "
Message-
From: Ubqtous [mailto:[EMAIL PROTECTED]
Sent: Monday, November 03, 2003 1:53 PM
To: CF-Talk
Subject: Re: XML Parse with CF50
Larry,
On 11/3/2003 at 14:25, you wrote:
LJ> I am receiving an XML string from a client and I am trying to
LJ> learn how to parse out the values I want.
Larry,
On 11/3/2003 at 14:25, you wrote:
LJ> I am receiving an XML string from a client and I am trying to
LJ> learn how to parse out the values I want.
LJ> I receive around 300 items and only need to actually retrieve part
LJ> of them.
LJ> Is there a simple way of looping through the XML feed
I am receiving an XML string from a client and I am trying to learn how to
parse out the values I want.
I receive around 300 items and only need to actually retrieve part of them.
Is there a simple way of looping through the XML feed to pull out only
certain tags?
Any help on this would be great
24 matches
Mail list logo