473,396 Members | 1,942 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

get RSS from behind firewall/proxy ?

TMN
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
Jul 7 '08 #1
11 5641
On Jul 7, 9:50*am, TMN <nash....@gmail.comwrote:
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?
Jul 7 '08 #2
Greetings, TMN.
In reply to Your message dated Monday, July 7, 2008, 18:50:57,
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.
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 <an*******@freemail.ru>

Jul 7 '08 #3
TMN wrote:
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.
js*******@attglobal.net
==================

Jul 8 '08 #4
On Jul 7, 6:34*pm, AnrDaemon <anrdae...@freemail.ruwrote:
Greetings, TMN.
In reply to Your message dated Monday, July 7, 2008, 18:50:57,
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.
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.

Jul 8 '08 #5
..oO(netstreamer)
>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
Jul 8 '08 #6
TMN
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
Jul 9 '08 #7
TMN
netstreamer

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

Tim
Jul 9 '08 #8
TMN wrote:
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.
js*******@attglobal.net
==================

Jul 9 '08 #9
TMN
>
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

Jul 10 '08 #10
TMN wrote:
>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.
js*******@attglobal.net
==================

Jul 10 '08 #11
TMN
On Jul 10, 6:22*pm, Jerry Stuckle <jstuck...@attglobal.netwrote:
TMN wrote:
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.
jstuck...@attglobal.net
==================
I am going to do that - thanks again for your help.
Tim
Jul 11 '08 #12

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

Similar topics

3
by: demonhunter | last post by:
Hi, I am trying to fetch a web content using LWP and HTTP modules behind corp firewall. I set proxy server as shown in my internet explorer connection setup. When i run the script, i got...
1
by: Brian McGonigle | last post by:
I'm trying to use cpanp behind a firewall and I'm not having any luck. However, cpan works fine with my proxy configs (I've set http_proxy and ftp_proxy in my shell environment). I've tried just...
0
by: KumarForG | last post by:
hi, i have a webservice and it's client in dotnet. the client is coded to assign the proxy property to the service object, with the proxy url and authentication details. however, there is a...
5
by: John | last post by:
Hi Does anyone have an example of using the Internet Transfer Control from behind a proxy server on port 8080? Thanks Regards
2
by: Miguel | last post by:
Hi, I'm developing an application in C# with Windows Forms for my company that is similar to the MSN Messenger. This application uses a webservice for registering users, etc... and as 2...
10
by: Parth | last post by:
Hello everyone, I need some help regrading byassing firewalls.My college has internet aces but it prevents us from dowloading music(*.mp3,*.mid,etc.)from the net.I use a win xp sp2 and browse...
2
by: sameer | last post by:
hi all, Description of my .net application: Desktop application using webservices over the internet to communicate with the sql server2000 database which is sitting behind the webserver. Done...
6
by: John | last post by:
Hi My app is running on a windows 2000 server with isa 2000 installed. How can it access an external sql server (using its ip) from within the isa 2000 firewall/proxy via code? Thanks ...
0
by: ndskim | last post by:
Currently I have the Web Services Proxy code generated by the WSDL.Exe command line. My Web app consists of ASP.NET in VB 2005 version. Here is what I have in the sample code: ' Set Proxy...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
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,...
0
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
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,...

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.