Connecting Tech Pros Worldwide Forums | Help | Site Map

get RSS from behind firewall/proxy ?

TMN
Guest
 
Posts: n/a
#1: Jul 7 '08
Hi

I am trying to get fetch rss from news sites from behind our corporate
proxy/firewall but no php function has
worked - I have tried curl etc but simply get no response. These
scripts work fine at home so I have to believe it is due to our
restrictive network - any ideas ???

Thanks
Tim

burgermeister01@gmail.com
Guest
 
Posts: n/a
#2: Jul 7 '08

re: get RSS from behind firewall/proxy ?


On Jul 7, 9:50*am, TMN <nash....@gmail.comwrote:
Quote:
Hi
>
I am trying to get fetch rss from news sites from behind our corporate
proxy/firewall but no php function has
worked *- I *have tried curl etc but simply get no response. These
scripts work fine at home so I have to believe it is due to *our
restrictive network - any ideas ???
>
Thanks
Tim
My experience with RSS is that CURL should work straight away, which
further reinforces your theory. I would suggest having a conversation
with your network admin. Figure out for sure if he's blocking RSS
feeds, and if so why. Maybe he can make an exception for your app.

If that's not an option, I'm really not sure what to tell you. I do
know that CURL should be able to do anything your web browser can do.
Back in High School I used to get through the firewall by using
babelfish as a proxy...maybe you could try that?
AnrDaemon
Guest
 
Posts: n/a
#3: Jul 7 '08

re: get RSS from behind firewall/proxy ?


Greetings, TMN.
In reply to Your message dated Monday, July 7, 2008, 18:50:57,
Quote:
I am trying to get fetch rss from news sites from behind our corporate
proxy/firewall but no php function has worked - I have tried curl etc but
simply get no response.
If you can access these RSS feeds from your regular browser - you have wrong
setup for cURL.
Quote:
These scripts work fine at home so I have to believe it is due to our
restrictive network - any ideas ???
Read my comment above - you haven't done enough testing.
Especially cURL can use proxy connections.


--
Sincerely Yours, AnrDaemon <anrdaemon@freemail.ru>

Jerry Stuckle
Guest
 
Posts: n/a
#4: Jul 8 '08

re: get RSS from behind firewall/proxy ?


TMN wrote:
Quote:
Hi
>
I am trying to get fetch rss from news sites from behind our corporate
proxy/firewall but no php function has
worked - I have tried curl etc but simply get no response. These
scripts work fine at home so I have to believe it is due to our
restrictive network - any ideas ???
>
Thanks
Tim
>
Can you access them from the your machine with any software? If so, you
have a programming problem. The firewall doesn't distinguish between
Curl and an RSS reader.

If you can't access then with any other software, chances are it is the
firewall - and you'll have to talk to your network administrator to get
access.

Good luck.


--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

netstreamer
Guest
 
Posts: n/a
#5: Jul 8 '08

re: get RSS from behind firewall/proxy ?


On Jul 7, 6:34*pm, AnrDaemon <anrdae...@freemail.ruwrote:
Quote:
Greetings, TMN.
In reply to Your message dated Monday, July 7, 2008, 18:50:57,
>
Quote:
I am trying to get fetch rss from news sites from behind our corporate
proxy/firewall but no php function has *worked - I *have tried curletc but
simply get no response.
>
If you can access these RSS feeds from your regular browser - you have wrong
setup for cURL.
>
Quote:
These scripts work fine at home so I have to believe it is due to *our
restrictive network - any ideas ???
>
Read my comment above - you haven't done enough testing.
Especially cURL can use proxy connections.
>
--
Sincerely Yours, AnrDaemon <anrdae...@freemail.ru>

Just use an online RSS news reader like Google Reader, it does
everything through port 80 so it won't be blocked.

Michael Fesser
Guest
 
Posts: n/a
#6: Jul 9 '08

re: get RSS from behind firewall/proxy ?


..oO(netstreamer)
Quote:
>Just use an online RSS news reader like Google Reader, it does
>everything through port 80 so it won't be blocked.
Normal RSS also works on port 80, it uses plain HTTP.

Micha
TMN
Guest
 
Posts: n/a
#7: Jul 9 '08

re: get RSS from behind firewall/proxy ?


AnrDaemon,Jerry

You guys are right - I can get the feeds in my browser.
But I have tried all the curl options I could find including:

curl_setopt($ch, CURLOPT_PROXY, 'fakeproxy.com:1080');
curl_setopt($ch, CURLOPT_PROXYUSERPWD, 'user:password');


If you could give me some other pointers I would be gratefull !

Thanks
Tim
TMN
Guest
 
Posts: n/a
#8: Jul 9 '08

re: get RSS from behind firewall/proxy ?


netstreamer

I need to save the feeds for other purposes....

Tim


Jerry Stuckle
Guest
 
Posts: n/a
#9: Jul 9 '08

re: get RSS from behind firewall/proxy ?


TMN wrote:
Quote:
AnrDaemon,Jerry
>
You guys are right - I can get the feeds in my browser.
But I have tried all the curl options I could find including:
>
curl_setopt($ch, CURLOPT_PROXY, 'fakeproxy.com:1080');
curl_setopt($ch, CURLOPT_PROXYUSERPWD, 'user:password');
>
>
If you could give me some other pointers I would be gratefull !
>
Thanks
Tim
>
Not knowing your network setup, it's almost impossible to give you a
good answer. But to start, what is your current code and the proxy
setting in your browser.



--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

TMN
Guest
 
Posts: n/a
#10: Jul 10 '08

re: get RSS from behind firewall/proxy ?


>
Quote:
I have no idea how your proxy is set up, so I have no idea how you need
to authenticate it. *The same is true for anyone else here.
>
You need to talk to your sysadmin and find out what's required for proxy
authentication.

Thanks - but how does my browser do it - all it knows is the proxy
address and my credentials ?

Tim

Jerry Stuckle
Guest
 
Posts: n/a
#11: Jul 10 '08

re: get RSS from behind firewall/proxy ?


TMN wrote:
Quote:
Quote:
>I have no idea how your proxy is set up, so I have no idea how you need
>to authenticate it. The same is true for anyone else here.
>>
>You need to talk to your sysadmin and find out what's required for proxy
>authentication.
>
>
Thanks - but how does my browser do it - all it knows is the proxy
address and my credentials ?
>
Tim
>
>
Tim,

There could be several ways, depending on your setup. For instance, you
might send a plain text userid/password. You could have an SSL
negotiated userid/password. You could have a client certificate... The
list goes on.

You really need to be talking to your sysadmin!

--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstucklex@attglobal.net
==================

TMN
Guest
 
Posts: n/a
#12: Jul 11 '08

re: get RSS from behind firewall/proxy ?


On Jul 10, 6:22*pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
Quote:
TMN wrote:
Quote:
Quote:
I have no idea how your proxy is set up, so I have no idea how you need
to authenticate it. *The same is true for anyone else here.
>
Quote:
Quote:
You need to talk to your sysadmin and find out what's required for proxy
authentication.
>
Quote:
Thanks - but how does my browser do it - all it knows is the proxy
address and my credentials ?
>
Quote:
Tim
>
Tim,
>
There could be several ways, depending on your setup. *For instance, you
might send a plain text userid/password. *You could have an SSL
negotiated userid/password. *You could have a client certificate... The
list goes on.
>
You really need to be talking to your sysadmin!
>
--
==================
Remove the "x" from my email address
Jerry Stuckle
JDS Computer Training Corp.
jstuck...@attglobal.net
==================
I am going to do that - thanks again for your help.
Tim
Closed Thread