473,525 Members | 2,825 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Reading XML Webpage Without XSLT

i'm trying to programatically read the xml that is used to create a
webpage through xslt transformations.

I can view the XML when i go to "View Source" in internet explorer,
but whenever i try to download the webpage programmatically i can't
ever get the source XML, i always get the transformed html.

Any ideas? I've tried everything i can think of :(

Mar 5 '07 #1
7 5731
dakrin wrote:
i'm trying to programatically read the xml that is used to create a
webpage through xslt transformations.

I can view the XML when i go to "View Source" in internet explorer,
but whenever i try to download the webpage programmatically i can't
ever get the source XML, i always get the transformed html.

Any ideas? I've tried everything i can think of :(
wget or dog does it for me.

///Peter
Mar 5 '07 #2
On Mar 5, 5:01 pm, Peter Flynn <peter.n...@m.silmaril.iewrote:
>
wget or dog does it for me.

///Peter

Well, I'm trying to finding a way to programatically do it using c#.
I've tried using xmlDocument.load(), getresponsestream(),
xmlreader.create(), etc. but they all get the html-output, not the
original xml file.

I downloaded wget for windows just to try it out and it downloaded the
html as well.

The only way I can view the xml is when i go to "View Source" in IE.

Any ideas?

Mar 6 '07 #3
dakrin wrote:
Well, I'm trying to finding a way to programatically do it using c#.
I've tried using xmlDocument.load(), getresponsestream(),
xmlreader.create(), etc. but they all get the html-output, not the
original xml file.

I downloaded wget for windows just to try it out and it downloaded the
html as well.

The only way I can view the xml is when i go to "View Source" in IE.
Please post an example URL you are trying to access, if the server sends
HTML after doing an XSLT transformation on the server then it is usually
not possible to access the XML, unless the server exposes that as well.
And if you really get HTML back then XML tools like the Load method of
XmlDocument or XmlReader will simply abort parsing and tell you the
markup is not well-formed XML.

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Mar 6 '07 #4
Please post an example URL you are trying to access, if the server sends
HTML after doing an XSLT transformation on the server then it is usually
not possible to access the XML, unless the server exposes that as well.
And if you really get HTML back then XML tools like the Load method of
XmlDocument or XmlReader will simply abort parsing and tell you the
markup is not well-formed XML.

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
When I do "View Source" in Internet Explorer the XML shows up, so I'm
assuming that means its applying the xsl client side.

Here's an example site that does what i'm talking about:

http://armory.worldofwarcraft.com/ar...1&sf=rank&sd=a

Mar 6 '07 #5
dakrin wrote:
When I do "View Source" in Internet Explorer the XML shows up, so I'm
assuming that means its applying the xsl client side.

Here's an example site that does what i'm talking about:

http://armory.worldofwarcraft.com/ar...1&sf=rank&sd=a
The might sniff the user agent server side and depending on that serve
XML or HTML, try it like this

HttpWebRequest httpRequest =
(HttpWebRequest)WebRequest.Create(@"http://armory.worldofwarcraft.com/arena-ladder.xml?b=Stormstrike&ts=3&p=1&sf=rank&sd=a");
httpRequest.UserAgent =
@"Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)";
HttpWebResponse httpResponse =
(HttpWebResponse)httpRequest.GetResponse();
XmlDocument xmlDocument = new XmlDocument();
xmlDocument.Load(httpResponse.GetResponseStream()) ;
httpResponse.Close();
xmlDocument.Save(Console.Out);

that way I get XML starting with

<?xml-stylesheet type="text/xsl" href="/layout/arena-ladder.xsl"?>
<page globalSearch="1" lang="en_us" requestUrl="/arena-ladder.xml">

It might also be necessary or helpful to set the Accept HTTP request
header but that depends on what they are doing on the server, it is not
really an XML problem but rather a HTTP problem.

--

Martin Honnen --- MVP XML
http://JavaScript.FAQTs.com/
Mar 6 '07 #6
dakrin wrote:
On Mar 5, 5:01 pm, Peter Flynn <peter.n...@m.silmaril.iewrote:
>wget or dog does it for me.

///Peter


Well, I'm trying to finding a way to programatically do it using c#.
I've tried using xmlDocument.load(), getresponsestream(),
xmlreader.create(), etc. but they all get the html-output, not the
original xml file.

I downloaded wget for windows just to try it out and it downloaded the
html as well.
In that case the transformation must be being done server-side.
AFAIK wget does not contain an XSLT processor.
The only way I can view the xml is when i go to "View Source" in IE.
What's the URI?

///Peter
Mar 6 '07 #7
Martin Honnen wrote:
The might sniff the user agent server side and depending on that server
XML or HTML, try it like this
Yep, that worked. Thanks very much :)

Mar 7 '07 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
1247
by: titusjava | last post by:
I am having a XSLT which transforms an input XML to transformed XML. I want to get the count of some nodes in the transformed XML, in the same XSLT. Is it do able?. Is it possible to read Output XML, in the same XSLT which perform the transformation.
7
3680
by: gino | last post by:
Dear all, My monitor was set to 1600x1200 so the fonts in IE is too small for me even when I set the "View->Text Size->Largest"... I don't have previlage to change the monitor resolution... so I have to try to "hardcode" IE to display any webpage by a scale of 200%...
1
1616
by: Brett | last post by:
I am writing a program that will allow a user to enter a webpage address into a form. Then it will download and display the webpage below the current one. example ---------------------------------------------------- | _____________ | | _____________enter web address | Load Button | | | ...
1
2008
by: Miles Cousens II | last post by:
I would like to be able to import the following xml document on a daily basis to get the current exchange rates and then create the same output file so I can use Biztalk 2002 to import that file, but I am not sure how to do it? Any ideas would be greatly appreciated. http://www.bankofcanada.ca/stat/fx-xml.xml
3
2475
by: GraVity via DotNetMonster.com | last post by:
Hello all I am new to asp.net or web programming I have a requirement, I have to submit a document to another server using my webpage, there is a perticular protocol for doing that. This protocol requires to make many requests between the servers for the submission of single document, as the result the webpage refreshes many time(for each...
5
1667
by: cybernerdsx2 | last post by:
Hi, I am new to XSLT and I would like to use Java to read up the XSLT content and add in a few tags in into the template below: <xsl:template name="hwSpecs"> <!-- adding new tags into here from Java --> </xsl:template> So, what kind of parser or tools can I use in my Java source code to
1
2074
by: SteveB | last post by:
I'm porting an application from Apache Xerces to .Net and am having a couple of small problems with deserialization. The XML that I'm reading comes from a variety of sources, and there are two inconsistencies that Xerces is able to handle that XmlSerializer seems not to be able to deal with. 1) Some of the boolean values that I'm dealing...
11
6085
by: J_Zanetti | last post by:
Hello everybody, In my applications I've a ton of scripts that use remote XML file to fill forms and evaluate contents; In these scripts I always use the method SelectNode (that, with some workaround, works fine also in Mozilla). I've just found out that this method doesnt work in Safari browser, therefore my applications are not usable by...
11
3967
by: ianoble | last post by:
I've been trying to piece together various code snippets to create a lookup table inside my xslt without the need for a supplemental xml file. Here is what I have so far. As of now, it does not return anything in the output. I would love to be able to query the xref:factor table to retrieve the value of xref:factor/lookup <?xml...
0
7251
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language...
0
7474
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. ...
0
7643
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that...
1
7228
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For...
0
5775
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then...
1
5173
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes...
0
4811
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert...
0
3309
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in...
0
3305
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.