- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - Linux
- >
- Re: invalid xml or is not responding
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2009 10:14 AM
02-05-2009 10:14 AM
We have proxy squid/3.0.PRE5 installed on linux debian etch stable and we have big problems with one very important webseite.
We're getting quite often this error message in browser:
invalid xml or is not responding
We don't know howto find and fix this problem?
Is it the problem of the timeout?
Knows someone more about this error message?
Which squid log should show this problem ?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-05-2009 11:19 AM
02-05-2009 11:19 AM
SolutionSee:
http://www.geocities.com/vladislav_isaev/squid/FAQ-7.html
Maybe the problem is at origin.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-09-2009 05:40 PM
02-09-2009 05:40 PM
Re: invalid xml or is not responding
http://www.squid-cache.org/Versions/v3/3.0/cfgman/cache.html
so:
cache deny ACL
is correct.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2009 11:22 AM
02-12-2009 11:22 AM
Re: invalid xml or is not responding
acl mydomain dstdomain .mydomain.net
cache deny mydomain
but it doesn't help.
the remote webserver uses a kind of balancing system and uses asp
the user is logging into and getting an asp ID in the header.
this session should stay of the same, one of this balancing server.
the problem is, over squid the user gets second asp ID, is not staying
on the same server, switching to the other one and getting this error above.
without proxy works well.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2009 12:28 PM
02-12-2009 12:28 PM
Re: invalid xml or is not responding
¿Are you using https?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2009 12:39 PM
02-12-2009 12:39 PM
Re: invalid xml or is not responding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2009 12:57 PM
02-12-2009 12:57 PM
Re: invalid xml or is not responding
http://wiki.squid-cache.org/ConfigExamples/DynamicContent
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2009 01:36 PM
02-12-2009 01:36 PM
Re: invalid xml or is not responding
howto configure squid 3 to deny cache of all asp websites ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2009 01:49 PM
02-12-2009 01:49 PM
Re: invalid xml or is not responding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-12-2009 02:43 PM
02-12-2009 02:43 PM
Re: invalid xml or is not responding
hierarchy_stoplist asp ?
acl QUERY urlpath_regex asp \?
cache deny QUERY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2009 03:57 AM
02-13-2009 03:57 AM
Re: invalid xml or is not responding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2009 04:04 AM
02-13-2009 04:04 AM
Re: invalid xml or is not responding
acl asp url_regex .asp
cache deny asp
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2009 05:12 AM
02-13-2009 05:12 AM
Re: invalid xml or is not responding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2009 05:20 AM
02-13-2009 05:20 AM
Re: invalid xml or is not responding
acl asp url_regex \.asp
cache deny asp
hierarchy_stoplist asp ?
acl QUERY urlpath_regex asp \?
cache deny QUERY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-13-2009 05:50 AM
02-13-2009 05:50 AM
Re: invalid xml or is not responding
No, just ose one of them, like:
hierarchy_stoplist \.asp ?
acl QUERY urlpath_regex \.asp \?
cache deny QUERY
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-14-2009 06:04 PM
02-14-2009 06:04 PM
Re: invalid xml or is not responding
but I I've read somewhere, that hierarchy_stoplist is NOT related to caching, only forwarding.
'cache deny' for example is the equivalent directive affecting caching.
greetings
chris