Computer Webmaster Gaming Console Graphics Forum

Welcome to the Computer Webmaster Gaming Console Graphics Forum forums.

You are currently viewing our boards as a guest which gives you limited access to view most discussions and access our other features. By joining our free community you will have access to post topics, communicate privately with other members (PM), respond to polls, upload content and access many other special features. Registration is fast, simple and absolutely free so please, join our community today!

If you have any problems with the registration process or your account login, please contact contact us.

MK PitStop Main Earn $25 Earn Money Posting Extras Members Blogs Image Hosting User Pages
Go Back   Computer Webmaster Gaming Console Graphics Forum > Webmaster Forum > Website Coding > HTML
Register FAQ/Rules Become A V.I.P. Member Search Today's Posts Mark Forums Read

HTML HTML problems, maybe you are trying to code for MySpace. Get all the HTML coding help here for your website.

Google
Reply
 
LinkBack Thread Tools Display Modes
Old 07-01-2007, 12:21 PM   #1
Joe
 
Joe's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default An Impossibility?

My employer has asked me to do what I believe is impossible. I told him so
and he disagrees. But, I visited the newsgroup while he was here earlier and
explained that many of you have forgotten more than I've ever known
regarding web design. I told him that I would put forth the situation to the
group and see if what he wants done is do-able. Here goes:

He has a website that contains a utility to search one of his wholesellers
inventory and returns the results based upon current pricing and
availability. But the results page (generated by the wholeseller's server)
contains some extraneous information above the results. My boss wants me to
design a site that will send the search query to the wholeseller's server
and then will remove the unwanted information from the results produced by
their server. Can this be done?

For a better visual of the problem, a copy of the search is located at
http://www.dccomm.net/bjpawn1/search.html . The form calls up an asp file
from the wholeseller's system. Can I control how the results are provided
without access to the wholeseller's server? The wholeseller, for what it's
worth, isn't very inclined to change their code to assist us.

Thanks,
Joe


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Advertisements
Old 07-01-2007, 12:21 PM   #2
Disco
 
Disco's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default An Impossibility?

"Joe" <Joe@camel.com> wrote in message
news:HAuJa.309710$3n5.109348@news2.central.cox.net ...
> My employer has asked me to do what I believe is impossible. I told him so
> and he disagrees. But, I visited the newsgroup while he was here earlier

and
> explained that many of you have forgotten more than I've ever known
> regarding web design. I told him that I would put forth the situation to

the
> group and see if what he wants done is do-able. Here goes:
>
> He has a website that contains a utility to search one of his wholesellers
> inventory and returns the results based upon current pricing and
> availability. But the results page (generated by the wholeseller's server)
> contains some extraneous information above the results. My boss wants me

to
> design a site that will send the search query to the wholeseller's server
> and then will remove the unwanted information from the results produced by
> their server. Can this be done?
>
> For a better visual of the problem, a copy of the search is located at
> http://www.dccomm.net/bjpawn1/search.html . The form calls up an asp file
> from the wholeseller's system. Can I control how the results are provided
> without access to the wholeseller's server? The wholeseller, for what it's
> worth, isn't very inclined to change their code to assist us.


Well, if your server scripts can interogate the returning data from the
wholesalers, then you can do whatever you want with the data.

What you could do is (and a real yucky way of doing it) if you know the
format that the wholesaler data is in, you could interogate the data
differently for that one wholesaler.

It would be nice, however, if your wholesalers returned an XML stream with
all of the data required and whatever else that is not required, then you
can do whatever using XSLT or whatever languages you are using.



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 07-01-2007, 12:22 PM   #3
William Tasso
 
William Tasso's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default An Impossibility?

Joe wrote:
> ...
> My boss wants me to design a site that will send the search
> query to the wholeseller's server and then will remove the unwanted
> information from the results produced by their server. Can this be
> done?
> ...


Yep - How will depend on what resources are available on your server.

FWIW: I use XMLHTTP on my Win2k/IIS-5 server and manipulate the returned
markup with ASP.

--
William Tasso - http://www.WilliamTasso.com


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 07-01-2007, 12:22 PM   #4
m
 
m's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default An Impossibility?

On or around Mon, 23 Jun 2003 03:36:07 GMT, there was a message,
possibly from "Joe" <Joe@camel.com>, as follows:

>My employer has asked me to do what I believe is impossible. I told him so
>and he disagrees. But, I visited the newsgroup while he was here earlier and
>explained that many of you have forgotten more than I've ever known
>regarding web design. I told him that I would put forth the situation to the
>group and see if what he wants done is do-able. Here goes:
>
>He has a website that contains a utility to search one of his wholesellers
>inventory and returns the results based upon current pricing and
>availability. But the results page (generated by the wholeseller's server)
>contains some extraneous information above the results. My boss wants me to
>design a site that will send the search query to the wholeseller's server
>and then will remove the unwanted information from the results produced by
>their server. Can this be done?
>
>For a better visual of the problem, a copy of the search is located at
>http://www.dccomm.net/bjpawn1/search.html . The form calls up an asp file
>from the wholeseller's system. Can I control how the results are provided
>without access to the wholeseller's server? The wholeseller, for what it's
>worth, isn't very inclined to change their code to assist us.
>
>Thanks,
>Joe
>

This should work:
Set up the search page to send its search parameters to a server
side program in Perl.

Let the program query the wholesaler's server using those parameters
and Perl's LWP::UserAgent module, which creates a web client that can
capture the results similar to the way a browser does.

Use the HTML:arser module to break the resulting page into usable
chunks, so that you can throw away whatever you want. (Alternately,
you might be able to throw away everything up to some matched regular
expression.)

Then the program can write the modified page to the visitor's browser
with CGI.pm module.

Or do something similar in another server side language.

HTH
m
http://www.mbstevens.com/bc.html


 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 07-01-2007, 12:22 PM   #5
rf
 
rf's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default An Impossibility?


"Joe" <Joe@camel.com> wrote in message
news:HAuJa.309710$3n5.109348@news2.central.cox.net ...

> My employer has asked me to do what I believe is impossible. I told him so
> and he disagrees.


<grin>
I'll bet you were not looking for all those positive answers
Damn. Now you have to go and learn heaps of new server side stuff.
</grin>

One point. If your hosts server does not support such server side stuff then
your only option is to get a new host.

Cheers
Richard.



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Old 07-01-2007, 12:23 PM   #6
Joe
 
Joe's Avatar
 
Posts: n/a
My Photos: (0)

Banked:
MK Cash: $

I am Worth:
MK Cash: $
Donate

Recent Blog: None

Default An Impossibility?


"rf" <making.it.up@the.time> wrote in message
newsrxJa.406$eG1.5647@news-server.bigpond.net.au...
>
> "Joe" <Joe@camel.com> wrote in message
> news:HAuJa.309710$3n5.109348@news2.central.cox.net ...
>
> > My employer has asked me to do what I believe is impossible. I told him

so
> > and he disagrees.

>
> <grin>
> I'll bet you were not looking for all those positive answers
> Damn. Now you have to go and learn heaps of new server side stuff.
> </grin>


Busted But, on the flip side, if he wants all of that done, he's going to
have to outsource it. He hopes to have the site up within the next couple of
weeks. Even though I'm a fairly quick study, I don't think I could learn
what I need to know in my "spare time" ( bear in mind I have a 3 year old
son and an 11 year old daughter).

>
> One point. If your hosts server does not support such server side stuff

then
> your only option is to get a new host.


The server we use is very cooperative with what they allow you to do. I've
had several domains hosted with them over the past 8 years. But, as I said,
it won't be me designing the thing. I'll just be the one implenenting it.


Joe
>
> Cheers
> Richard.
>
>
>



 
Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit!
Reply With Quote
Featured Websites
Free Space
Free Space
Free Space Free Space
Reply
Tags:




Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Featured Websites




All times are GMT +1. The time now is 1:40 AM.


Powered by: vBulletin Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
LinkBacks Enabled by vBSEO 3.0.0
Cheap Computers
MK PitStop Copyright 2005 - 2008

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98