HTTP requests

Hi all,

Im trying to retrieve an xml document from a website but all i get is
the html

I know their is a way to get this same page via xml

require ‘net/http’
require “rexml/document”

url =
Browse projects - Create and track feature requests for Atlassian products.
resp = Net::HTTP.get_response(URI.parse(url))
data = resp.body
puts(data)

doc = REXML::Document.new(data)

any help would be great

Perhaps they’re serving xhtml?
then it is xml.

John J. wrote:

Perhaps they’re serving xhtml?
then it is xml.

No idea what that means lol

Kinda new to ruby

Peter K. wrote:

John J. wrote:

Perhaps they’re serving xhtml?
then it is xml.

No idea what that means lol

Kinda new to ruby

Has nothing to do with Ruby.


Phillip “CynicalRyan” Gawlowski
http://cynicalryan.110mb.com/
http://clothred.rubyforge.org

Welcome to the real world.

  • Morpheus

Maybe it would serve xml if you sent the request with a header
specifying {‘Accept’ => ‘application/xhtml+xml’} ? But I don’t think you
can specify a header with Net::HTTP.get_response(), maybe try using
Net::HTTP#get() ?

Dan

Hi guys,

I have an user registration page. In that page there
are 5 input fields.

I have to save user id and password in “login” table and other 3 input
in “userinfo” table.

Regarding thid tropic I have two questions:

  1. How can i retrive the post data from the input field?
  2. How can i save data in two table by one model?

I use instants rails 1.4 and mysel 5

please give me some ideas? also waitng for some sample code .

Amin

XML is a markup language with some general but strict rules. Its
actual structure varies widely. iTunes playlists, MS Word document
metadata, and yes xhtml. not old html, but a form of it that is
replacing it and is compliant with xml rules. (more or less)
Most xml files are probably hashes with nested hashes (associative
arrays with nested associative arrays), and they follow the KVC
format, Key=>Value coding. Great for storing data and preferences and
all kinds of things. And easy to change from one format to another.
XML is a pretty simple, but often confusing topic. Most books treat
it as a subject distinct from anything else, but it isn’t.
There are some Java and XML books, for example that introduce XML in
a working environment.

Just remember it’s structured data, stored as a text file.
Conceptually, not different from YAML, just more strict.

:Also.to_s.sub(/.*/,“although”)
Grrrrrrrrrr

On 4/24/07, Md. Ruhul A. [email protected] wrote:

  1. How can i retrive the post data from the input field?
  2. How can i save data in two table by one model?

I use instants rails 1.4 and mysel 5

please give me some ideas? also waitng for some sample code .

Amin

Also you might still get some help on this list I strongly advice you
to post this to the rails mailing list.
[email protected]

Cheers
Robert

On 4/24/07, Peter K. [email protected] wrote:

John J. wrote:

Perhaps they’re serving xhtml?
then it is xml.

No idea what that means lol

Kinda new to ruby

google: xhtml

But it’s not, it’s HTML 4.0 Transitional.

Anyway it’s not a Ruby issue, you need to find the right URL first.
I’m not sure if you can use the Accept header, that depends on the
site you are accessing.