Click here to Skip to main content
15,894,362 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
Hello,

I'm trying to find the xml file that contains all the textbook information on this website: https://www.piercebookstore.com/buy_courselisting.asp

How can I find the xml file?

What I have tried:

A similar website is: bookstore.smc.edu

And I found it's xml file. For example, I can access this:
https://bookstore.smc.edu/textbooks_xml.asp?control=campus&campus=15&term=150

And how can I know what string queries I need to get textbook information? For example, the above query requires ?term=150.
Posted
Updated 13-Jan-18 3:44am
v3

You contact the owners of the website(s) and ask them.
 
Share this answer
 
You can't - it's not a file that should be exposed to the outside world at all, and may not even exist. That you found a .edu site (i.e. a university or school) that exposed it via an ASPX page does not mean that "normal" sites are based on them - they are more likely to be using SQL or MySQL based databases as they are a lot more suitable for multiuser access than an XML file which is basically just a well organised text file.

You want their data? Ask them for a copy. But ... I wouldn't give you access to my production site data directly, and probably wouldn't give you a copy either!
 
Share this answer
 
Quote:
How do I access the XML file behind the website

Short answer: you don't.
That is the principle of websites, code/data behind is not accessible to client. That is because it is what makes the value of a website.
The only legal way to get this data is to get authorization from owner.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900