active questions tagged headers - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T02:27:30Zhttp://stackoverflow.com/feeds/tag/headershttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1862449/get-the-response-headers-with-prototype-js0Get the response headers with prototype.jsDustin2009-12-07T19:49:25Z2009-12-07T22:59:06Z
<p>Is there an easy way to pull out the response headers of a page with prototypejs without using Ajax.Request?</p>
http://stackoverflow.com/questions/1856963/python-soappy-add-header0python soappy add headerdandu2009-12-06T23:13:08Z2009-12-07T00:57:17Z
<p>I have the following PHP example code:</p>
<pre><code>$client = new SoapClient("http://example.com/example.wsdl");
$h = Array();
array_push($h, new SoapHeader("http://example2.com/example2/", "h", "v"));
$client->__setSoapHeaders($h);
$s = $client->__soapCall('Op', $data);
</code></pre>
<p>My question: what's the SOAPpy equivalent for the SoapHeader() and __setSoapHeaders() part?</p>
<h3>Related question</h3>
<ul>
<li><a href="http://stackoverflow.com/questions/1481313/how-to-add-header-while-making-soap-request-using-soappy">How to add header while making soap request using soappy</a></li>
</ul>
http://stackoverflow.com/questions/1843410/opencv-c-error-in-xcode0OpenCV C++ error in XcodeMax2009-12-03T22:24:10Z2009-12-06T00:48:50Z
<p>I have built the OpenCV libraries using the <code>cmake</code> build system as described <a href="http://opencv.willowgarage.com/wiki/Mac%5FOS%5FX%5FOpenCV%5FPort" rel="nofollow">here</a> and have added the header, '.a' and '.dylib' files to my terminal c++ project. However when I run the code below (got it from <a href="http://iphone-cocoa-objectivec.blogspot.com/2009/01/using-opencv-for-mac-os-in-xcode.html" rel="nofollow">http://iphone-cocoa-objectivec.blogspot.com/2009/01/using-opencv-for-mac-os-in-xcode.html</a>), it gives me the errors below. Has anyone got any advice? Any help will be much appreciated.</p>
<pre><code>#include <stdlib.h>
#include <stdio.h>
#include <math.h>
#include <cv.h>
#include <highgui.h>
int main()
{
//get the image from the directed path
IplImage* img = cvLoadImage("/Users/maximkhan/Programming/TestProj/fruits.jpg", 1);
//create a window to display the image
cvNamedWindow("picture", 1);
//show the image in the window
cvShowImage("picture", img);
//wait for the user to hit a key
cvWaitKey(0);
//delete the image and window
cvReleaseImage(&img);
cvDestroyWindow("picture");
//return
return 0;
}
</code></pre>
<p><strong>Errors</strong></p>
<pre><code>Undefined symbols:
"_cvLoadImage", referenced from:
_main in main.o
"_cvNamedWindow", referenced from:
_main in main.o
"_cvReleaseImage", referenced from:
_main in main.o
"_cvShowImage", referenced from:
_main in main.o
"_cvDestroyWindow", referenced from:
_main in main.o
"_cvWaitKey", referenced from:
_main in main.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
</code></pre>
http://stackoverflow.com/questions/1842444/clarification-on-a-header-without-includes0Clarification on a header without #includesSalv02009-12-03T19:50:52Z2009-12-04T21:12:43Z
<p>Hi all :)
I was reading some code from the Doom 3 SDK ( in a VS solution ) when I found a header like this:</p>
<pre><code>#ifndef __PLAYERICON_H__
#define __PLAYERICON_H__
class idPlayerIcon {
public:
idPlayerIcon();
~idPlayerIcon();
...... // omitted
public:
playerIconType_t iconType;
renderEntity_t renderEnt;
qhandle_t iconHandle;
};
#endif /* !_PLAYERICON_H_ */
</code></pre>
<p>The header has no forward class declaration nor #includes so, in my experience it should lead to an error like: Undeclared Identifier or Syntax error, cause renderEntity_t and qhandle_t are not "seen".
So how can this compile correctly?
Thank you in advance for the answers.</p>
http://stackoverflow.com/questions/1842461/xcode-header-files1Xcode header filesMax2009-12-03T19:53:28Z2009-12-03T20:05:28Z
<p>This is a simple question - or maybe not - how do I add external headers to my project (C++ command line tool) in Xcode? How do I also add external dynamic libraries to it? any help greatly appreciated. I am new to xcode.</p>
<p>Max.</p>
http://stackoverflow.com/questions/1832859/what-headers-does-a-swf-file-send-when-requesting-data-from-a-url0What headers does a SWF file send when requesting data from a URLed2092009-12-02T13:19:50Z2009-12-02T13:23:39Z
<p>When requesting data with:</p>
<pre><code><param value="data-file=http://url-to-my/json.script" name="flashvars">
</code></pre>
<p>via an SWF file, what request type would "http://url-to-my/json.script" receive. It doesn't seem to be a "xmlhttprequest". Is it the same as a request from a browser?</p>
http://stackoverflow.com/questions/1506670/add-a-header-to-a-rest-wcf-request-envelopenone-does-not-support-adding-message0Add a header to a REST WCF request - EnvelopeNone does not support adding Message Headers exceptionJeff D2009-10-01T21:41:05Z2009-12-02T11:00:06Z
<p>I'm trying to add a custom header to a wcf client hitting a standard, RESTful endpoint. I am trying to add some kind of header that will just allow me to trace requests from one layer to the next. Here's how I've tried to implement it:</p>
<pre><code>public class DynatracePurePathHeaderAppender : IClientMessageInspector, IEndpointBehavior
{
object IClientMessageInspector.BeforeSendRequest(ref Message request, IClientChannel channel)
{
var dynaHeader = MessageHeader.CreateHeader("Action", "ns.yellowbook.jeff", "dynatrace",false);
request.Headers.Add(dynaHeader);
return null;
}
void IClientMessageInspector.AfterReceiveReply(ref Message reply, object correlationState)
{
return;
}
public void Validate(ServiceEndpoint endpoint){}
public void AddBindingParameters(ServiceEndpoint endpoint, BindingParameterCollection bindingParameters){}
public void ApplyDispatchBehavior(ServiceEndpoint endpoint, EndpointDispatcher endpointDispatcher){}
public void ApplyClientBehavior(ServiceEndpoint endpoint, ClientRuntime clientRuntime)
{
clientRuntime.MessageInspectors.Add(this);
}
}
public class DynatracePurePathHeaderAppenderElement : BehaviorExtensionElement
{
protected override object CreateBehavior()
{
return new DynatracePurePathHeaderAppender();
}
public override Type BehaviorType
{
get { return typeof(DynatracePurePathHeaderAppender); }
}
}
</code></pre>
<p>I then configure the client successfully, but when this runs, I get the following exception:
System.InvalidOperationException: Envelope Version 'EnvelopeNone (<a href="http://schemas.microsoft.com/ws/2005/05/envelope/none" rel="nofollow">http://schemas.microsoft.com/ws/2005/05/envelope/none</a>)' does not support adding Message Headers.</p>
<p>Anyone have any suggestions on how to insert this little barium meal?</p>
http://stackoverflow.com/questions/1829266/proper-layout-of-a-c-header-file0Proper layout of a C++ header fileJ.T2009-12-01T22:04:50Z2009-12-01T22:43:26Z
<p>What is the proper layout of a C++ .h file?</p>
<p>What I mean is header guard, includes, typedefs, enums, structs, function declarations, class definitions, classes, templates, etc, etc</p>
<p>I am porting an old code base that is over 10 years old and moving to a modern compiler from Codewarrior 8 is proving interesting as things seem all over the place. I get a lot of dont name a type errors, forbidding declaring without a type, etc, etc. </p>
http://stackoverflow.com/questions/1792790/pagedcollectionview-when-wrapping-an-observablecollection-in-a-datagrid-clears-co0PagedCollectionView when wrapping an ObservableCollection in a DataGrid clears Column headers when no data is presentHydroslide2009-11-24T20:40:01Z2009-11-30T14:54:40Z
<p>I am using the PagedCollectionView for grouping. I have a DataGrid and a textbox with a search button. The ItemSource of the grid is my PagedCollectionView, and the PagedCollectionView wraps an ObservableCollection because items in the grid can have their bound objects updated by a background process. When you click search, I first clear by ObservableCollection then load it with data from a db. The moment I call clear on my collection, the contents on of the DataGrid disappear, INCLUDING THE COLUMNS. They reappear when items are added to my collection. I would really like the columns and their headers to remain, as when they disappear it is quite jarring, not to mention sort orders, etc are lost. I believe the items disappear instantaneously because it is an ObservableCollection, but I need it to be so that the rows can be updated by the aforementioned background process. If I remove the PagedCollectionView as a wrapper and simply set the ItemSource of the DataGrid to the ObservableCollection, none of this behavior occurs, my columns and headers persist even when the collection is cleared, and my rows update instantaneously by the background process. Has anyone else observed this behavior? Does anyone know any workarounds? Or am I just doing something wrong?</p>
http://stackoverflow.com/questions/1815650/how-to-read-http-response-headers-from-web-service-response0How to read HTTP response headers from web service response?Guy Bertental2009-11-29T14:18:51Z2009-11-29T15:33:31Z
<p>Hi,</p>
<p>How can i read HTTP response headers from web service response in C#?</p>
<p>Best Regards,</p>
<p>Guy Bertental</p>
http://stackoverflow.com/questions/1715138/duplicate-referrer-header-http-sys-barfs5Duplicate Referrer Header - HTTP.sys barfsBrad R2009-11-11T13:21:32Z2009-11-27T20:52:02Z
<p>I have been testing the PS3 browser (NetFront) with embedded Flash components on a web page and there seems to be a rather serious bug with the way that any requests from Flash are issued. The browser is adding a referrer (referer) and so is the Flash player resulting in duplicate headers. This is actually OK if the referrer headers are the same, however they are not, and as a result the request is stopped by http.sys on W2k8. This is a major issue for me as I have a Flash component that needs to call web services in order to function.</p>
<p>Is there some way that we can filter or allow these requests through, possibly stripping the duplicate headers along the way.</p>
<p>Some solutions that we have thought of but are either suboptimal or not possible with our development and live environments are:</p>
<ul>
<li>Adding a proxy in front of the servers to clean the request.</li>
<li>Fixing the request at our load balancers. This may work on our live environment but not in dev. Also using a load balancer to perform this operation is bad practise, our operations team would not be pleased :)</li>
<li>Send all data to Flash during initialisation via flashvars. Possibly doing any updates/callbacks via Javascript. This feels messy and is would require significant custom code for one platform.</li>
<li>Prevent the browser or Flash from sending referrer headers. This would be acceptable, however there doesn't seem to be a way of enabling this in Flash or NetFront.</li>
</ul>
<p>For reference the following request will reproduce the problem (copy and paste into Fiddler or other tool, I'm assuming you are running IIS7, W2K8 as we are). You should get a <code>400 Bad Request</code> response.</p>
<pre>
GET / HTTP/1.1
Host: localhost
Referer: http://localhost/NetFrontBrowser/
Referer: http://localhost/Flash/
</pre>
<p>Many thanks</p>
http://stackoverflow.com/questions/1805291/data-is-not-sent-with-http-response-in-my-http-server0Data is not sent with http response in my http serverSilmaril892009-11-26T19:21:24Z2009-11-26T19:30:03Z
<p>Hi, I'm working on making an HTTP server for my class. But, the returned file is not being displayed by firefox. I construct a response header and put in the right content-length of the file I want to send, then I send the response headers with a call to send(). Next I use send() again to send the file, why is firefox not displaying the file? I'll post the relevant code below. As you'll see with the code, I am having trouble sending an <code>error_response</code>, during a 404 error. Using live http headers I can see that firefox receives the correct response header, and the cout << error_response << endl; does print the correct response. Why doesn't firefox display it? Do I need to make only one call to send() containing the header and the response packet?</p>
<pre><code>
// send response headers
response->Print( buffer, 2000 );
if ( send( acc_tcp_sock, buffer, sizeof(buffer), 0 ) <code>// if 200 and GET then send file
if ( response->Get_code() == 200 && method == "GET" ) {
// send file
}
// close file, if it has been opened
if ( response->Get_code() == 200 ) {
fclose( returned_file );
}
else if ( method == "GET" ) {
if ( send( acc_tcp_sock, error_response.c_str(), error_response.length(), 0 ) < 0 ) {
cerr << "Unable to send data to client." << endl;
return 6;
}
cout << error_response << endl;
}
close( acc_tcp_sock ); // close the connection
</code></pre>
<p>}</p>
<p>return 0;
}</p>
<p></code></p>
http://stackoverflow.com/questions/1776711/file-header-or-general-comment0File header or general commentunknown (google)2009-11-21T20:42:15Z2009-11-21T21:25:15Z
<p>Does anybody have a nice well structured starting comment for a file? I'm looking for something that looks nice, either fancy or very professional.</p>
<p>By general comment I mean the comment at the top of a file showing your name and purpose of the file. Like this one:</p>
<pre><code>/********************************************************
* hello -- program to print out "Hello World". *
* *
* Author: FirstName, LastName *
* *
* Purpose: Demonstration of a simple program. *
* *
* Usage: *
* Runs the program and the message appears. *
********************************************************/
</code></pre>
http://stackoverflow.com/questions/1768075/is-it-a-good-idea-to-put-all-project-headers-into-one-file-headers-h4Is it a good idea to put all project headers into one file HEADERS.h?TheFuzz2009-11-20T03:06:38Z2009-11-20T08:45:16Z
<p>I talked to my instructor the other day and asked him this question. He told me that I could go for smaller projects, but I'm starting a chess program and I was wondering what Stack Overflow thinks about this issue. Should I include all headers into one file, or separate them?</p>
http://stackoverflow.com/questions/1768065/site-images-dont-refresh-after-setting-expired-headers-on-htaccess0Site images don't refresh after setting expired headers on .htaccessMiguel Hernandez2009-11-20T03:04:57Z2009-11-20T03:30:56Z
<p>I have a site that uses a CSS sprite for all the images.
I set the <em>.htaccess</em> file to set the expired headers to a future time as they recommend to improve site performance.</p>
<p>However, <strong>when I updated the sprite image none of my browsers on two different computers seem to fetch the new image</strong>.</p>
<p>I deleted the <em>.htaccess</em> serveral times but no luck.</p>
<p>I am sure this must be easy as pie to fix but right now I am out of options.</p>
<p>Here is the code inside my <em>.htaccess</em> file:</p>
<blockquote>
<pre><code># CONFIGURE media caching
#
Header unset ETag
FileETag None
<FilesMatch "(?i)^.*\.(ico|flv|jpg|jpeg|png|gif|js|css)$">
Header unset Last-Modified
Header set Expires "Fri, 21 Dec 2012 00:00:00 GMT"
Header set Cache-Control "public, no-transform"
</FilesMatch>
<IfModule mod_deflate.c>
<FilesMatch "\.(js|css)$">
SetOutputFilter DEFLATE
</FilesMatch>
</IfModule>
</code></pre>
</blockquote>
<p>Thanks!</p>
http://stackoverflow.com/questions/1768016/emails-sent-with-php-mail-dont-show-up-correctly-in-outlook0emails sent with php mail don't show up correctly in outlookjlightfo2009-11-20T02:51:09Z2009-11-20T03:12:24Z
<p>I'm working on a site that was recently moved. After the move all the scripts that use the php mail() function <strong>AND</strong> have MIME-Version: and Content-type in the header fail to display correctly. They show up like this</p>
<pre><code>Delivered-To: asdf@adffdsf.com Received: by 10.114.121.18 with SMTP id t17cs128223wac;
Thu, 19 Nov 2009 11:52:35 -0800 (PST) Received: by 10.231.48.150 with SMTP id s22mr755195ibfdge.22.1258660355109;
Thu, 19 Nov 2009 11:52:35 -0800 (PST) Return-Path: <anonymous@u15366254sdf.onlinehome-server.com> Received: from u15366254.onlinehome-server.com (u15366254.onlinehome-server.com [74.208.194.179])
by mx.google.com with ESMTP id 16si2425376iwn.129.2009.11.19.11.52.34;
Thu, 19 Nov 2009 11:52:34 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of anonymous@u15366254.onlinehome-server.com designates 74.208.194.179 as permitted sender) client-ip=74.208.194.179; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of anonymous@u15366254.onlinehome-server.com designates 74.208.194.179 as permitted sender) smtp.mail=anonymous@u15386254.onlinehome-server.com Received: (qmail 8341 invoked by uid 48); 19 Nov 2009 08:55:35 -0500 Date: 19 Nov 2009 08:55:35 -0500
Message-ID: <20091119185535.8339.qmail@u15386254.onlinehome-server.com>
To: asdf@asdfad.com
Subject: Retailer Application MIME-Version: 1.0 Content-type: text/html; charset=iso-8859-1
From: asdf@asdfad.com
</code></pre>
<p>In addition the html in the message shows up raw.</p>
<p>When I use the exact same script to send an email on another server it works as expected. Also the email scripts on the site that use Swift mail work fine.</p>
<p>I could just modify them to use swift but there are many scripts that would have to be edited.</p>
<p>I'm using php 5.1.6.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/42308/tool-to-track-include-dependencies13Tool to track #include dependenciesAgnel Kurian2008-09-03T18:58:35Z2009-11-19T13:59:26Z
<p>Any good suggestions? Input will be the name of a header file and output should be a list (preferably a tree) of all files including it directly or indirectly.</p>
http://stackoverflow.com/questions/1761018/does-not-name-a-type-in-c0Does Not Name A Type in C++JT2009-11-19T05:10:30Z2009-11-19T06:46:55Z
<p>in C++ when i get an error that says xxxxx does not name a type in yyy.h</p>
<p>What does that mean?</p>
<p><code>yyy.h</code> has included the header that <code>xxxx</code> is in.</p>
<p>Example, I use:</p>
<pre><code>typedef CP_M_ReferenceCounted FxRC;
</code></pre>
<p>and I have included <code>CP_M_ReferenceCounted.h</code> in <code>yyy.h</code></p>
<p>I am missing some basic understanding, what is it?</p>
http://stackoverflow.com/questions/1698487/python-appengine-urllib2-headers-from-a-3020Python: appengine urllib2 headers from a 302Paul Tarjan2009-11-09T00:32:22Z2009-11-18T15:38:13Z
<p>A normal <code>urllib2</code> works fine:</p>
<pre><code>>>> import urllib2
>>> r = urllib2.urlopen(u"http://bit.ly/4ovTZw")
>>> r.geturl()
'http://www.writing.com/main/handler/action/show_document/item_id/933413.mp3'
>>> r.headers.get("Content-Type")
'audio/mpeg'
</code></pre>
<p>But in appengine, the same code shows <code>text/html</code>.</p>
<pre><code>def get(self):
r = urllib2.urlopen(u"http://bit.ly/4ovTZw")
self.response.out.write( r.geturl() )
self.response.out.write( r.headers.get("Content-Type") )
return
</code></pre>
<p>Can I get around this? Why is this happening?</p>
http://stackoverflow.com/questions/1748664/how-to-tell-clicking-back-to-load-the-cache1How to tell clicking "back" to load the cache?Webnet2009-11-17T12:53:15Z2009-11-17T13:31:38Z
<p>I realize that you can't 100% know that this will work in all browsers. All I care about is IE 8, Chrome, and Firefox. I need some base headers that I can put at the top of my PHP pages to allow the Forward/Back buttons to load the cache.</p>
<p>Update: on every page I have a logged in user box at the top of the page which gives the user access to their account.</p>
<p>I'm looking for a performance increase in the web site. The user having to reload the site when clicking back/forward creates unnecessary the server load.</p>
http://stackoverflow.com/questions/1725394/reporting-services-header-columns-not-showing0Reporting Services - Header Columns not showing?davemackey2009-11-12T21:03:57Z2009-11-16T16:27:43Z
<p>I'm using Reporting Services 2008 and Report Builder 2.0. I've used a tablix to display my data in a simple way - essentially each row in the database receives a row in the tablix - nothing fancy. I have a header row with a name for each column. I also have a super-header which groups together a few of the columns into logical groups (e.g. basics, address related, etc.). Now when I generate the report everything looks beautiful - but if I page to the next page it doesn't show the headers. I've tried setting the Repeat Header Rows on Each Page but it doesn't seem to help?</p>
http://stackoverflow.com/questions/1741997/separating-enums-from-class-definitions-using-namespaces-in-c0Separating Enums from Class Definitions using Namespaces in C++?Dan2009-11-16T12:47:32Z2009-11-16T13:29:32Z
<p>I'm working with a legacy class that looks like this:</p>
<pre><code>class A
{
enum Flags { One = 1, Two = 2 };
};
</code></pre>
<p>I'd like to pull out all the enums into a new namespace defined in a new header:</p>
<pre><code>// flags.h
namespace flags {
enum Flags { One = 1, Two = 2 };
};
</code></pre>
<p>Then pull these enums back into the class so that I can include just the flags.h in headers that only require these values (rather than the entire class definition):</p>
<pre><code>// a.h
#include "flags.h"
class A
{
using namespace flags;
};
</code></pre>
<p>How should I be doing this?</p>
http://stackoverflow.com/questions/1557602/jquery-and-ajax-response-header0jQuery and AJAX response headerShane2009-10-13T00:07:12Z2009-11-12T18:00:02Z
<p>So I've got this jQuery AJAX call, and the response comes from the server in the form of a 302 redirect. I'd like to take this redirect and load it in an iframe, but when I try to view the header info with a javascript alert, it comes up null, even though firebug sees it correctly.</p>
<p>Here's the code, if it'll help:</p>
<pre><code>$j.ajax({
type: 'POST',
url:'url.do',
data: formData,
complete: function(resp){
alert(resp.getAllResponseHeaders());
}
});
</code></pre>
<p>I don't really have access to the server-side stuff in order to move the URL to the response body, which I know would be the easiest solution, so any help with the parsing of the header would be fantastic. Thank you for your time.</p>
http://stackoverflow.com/questions/1638141/jqtouch-css-header-bar0jQtouch CSS Header Barshaiss2009-10-28T15:48:40Z2009-11-11T10:23:21Z
<p>I'm using jQtouch for a small mobile app. Using the <a href="http://code.google.com/p/jqtouch/source/browse/trunk/themes/jqt/theme.css" rel="nofollow">default CSS</a> the app looks like I want it to. However, I need to have a header on the left and right of the page. For example,
<img src="http://shaiperednik.com/img/AV-Clock-20091028-084713.png" alt="alt text" /></p>
<p>If anyone can point me in the right direction to achieve this I would greatly appreciate it. Thank you!</p>
http://stackoverflow.com/questions/1709877/persisting-data-cross-domains0Persisting data cross domains?iratz2009-11-10T17:52:39Z2009-11-10T18:43:11Z
<p>I have 2 applications, each in different domains. When a user comes to the first application, clicks a link, the user is sent to the second application. </p>
<p>My problem is as follows: I need to persist a sessionId from the first application to the second application. Simple enough but here's the catch. I can't use query string and I can't use cookies(since in different domains). I was thinking, is there a way to insert custom values into HTTP Headers or set some form values on an intermediate page which would then POST to the second application? So the process would be as follows: </p>
<p>User clicks a link on the first page, this takes the user to an "intermediate" page, this "intermediate" page sets a sessionId value in the form or http Header, then the "intermediate" page sends the user to the second application via a POST where the app will have the sessionId. </p>
<p>I can't use a Server.Transfer since the app is not on the same server. Help?</p>
http://stackoverflow.com/questions/1709161/how-do-i-prevent-duplicate-headers-when-dealing-with-threads-in-php0How do I prevent duplicate headers when dealing with threads in PHP?Dave2009-11-10T16:17:02Z2009-11-10T16:17:02Z
<p>I've written a PHP script that has to fork and do some processing in parallel, and then the main page returns data after processing. I'm currently using the pcntl functions to do this. I need to run anywhere between 2 and 10 threads to work in parallel, and I have to wait until I get a result from all of the threads before the script outputs to the browser.</p>
<p>Unfortunately, I find that I have multiple "Content-Type" headers appearing in the output:</p>
<pre><code>Content-Type: text/plain
Content-Type: text/plain
Content-Type: text/plain
[... actual content ...]
</code></pre>
<p>It seems to be one header per thread spawned. I've tried to close <code>STDOUT</code> via <code>fclose(STDOUT)</code> before processing, and I've tried surrounding everything by output buffering to no avail. I haven't yet found anyone else with this problem, so either nobody is trying to do it or I'm doing something that's off the beaten track.</p>
<p>I'm really looking for either ways to stop this happening, or suggestions on alternative ways to get this done.</p>
<p>The server is set up to use PHP as CGI under mod_suPHP, if that makes any difference.</p>
http://stackoverflow.com/questions/1698663/c-headers-best-practice-when-including3C++ Headers - Best practice when includingJT2009-11-09T01:28:47Z2009-11-10T09:17:39Z
<p>C++ headers</p>
<p>If I have A.cpp and A.h as well as b.h, c.h, d.h</p>
<p>Should I do:</p>
<p>in A.h:</p>
<pre><code>#include "b.h"
#include "c.h"
#include "d.h"
</code></pre>
<p>in A.cpp:</p>
<pre><code>#include "A.h"
</code></pre>
<p><b>or</b></p>
<p>in A.cpp:</p>
<pre><code>#include "A.h"
#include "b.h"
#include "c.h"
#include "d.h"
</code></pre>
<p>Are there performance issues? Obvious benefits? Is something bad about this?</p>
http://stackoverflow.com/questions/1183726/headers-already-sent-in-php0Headers already sent in phpArif2009-07-26T04:23:20Z2009-11-09T11:06:25Z
<p>Recently I worked in a project there I wrote the following code in top of the page:</p>
<pre><code><?php
session_start();
include_once('../module/connection.php');
$_SESSION['lang']=$_GET['ses'];
if(($_SESSION['lang']=='') || ($_SESSION['lang']=='english'))
{
$l='japanese';
}
else if($_SESSION['lang']=='japanese')
{
$l='english';
}
</code></pre>
<p>When I run that page it shows the following warning:</p>
<blockquote>
<p>Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at /var/www/sites/subdomains/www/html/ussl/juu/area/index.php:1) in /var/www/sites/subdomains/www/html/ussl/juu/area/index.php on line 1</p>
</blockquote>
<p>How can I solve this?</p>
http://stackoverflow.com/questions/1612918/parsing-variable-length-descriptors-from-a-byte-stream-and-acting-on-their-type2Parsing variable length descriptors from a byte stream and acting on their typeAnacrolix2009-10-23T11:47:02Z2009-11-05T14:44:41Z
<p>I'm reading from a byte stream that contains a series of variable length descriptors which I'm representing as various structs/classes in my code. Each descriptor has a fixed length header in common with all the other descriptors, which are used to identify its type.</p>
<p>Is there an appropriate model or pattern I can use to best parse and represent each descriptor, and then perform an appropriate action depending on it's type?</p>
http://stackoverflow.com/questions/1674659/browser-behavior-on-403-forbidden-error1Browser behavior on 403 Forbidden errorPeter D2009-11-04T15:46:08Z2009-11-04T21:46:52Z
<p>My server returns a 403 forbidden error when a user tries to access a resource that they do not have access to. Along with the header the server also writes a small message describing the error.</p>
<p>In Firefox the error message gets displayed nicely and the user knows what's going on.</p>
<p>In Internet Explorer the message is hidden and replaced with the 403 Forbidden standard error page.</p>
<p>Are there any specific rules that allow me to display an error message across all browsers while still setting the status to 403 Forbidden?</p>
<p>Here is the RFC info on this status:</p>
<blockquote>
<p>The server understood the request, but
is refusing to fulfill it.
Authorization will not help and the
request SHOULD NOT be repeated. If the
request method was not HEAD and the
server wishes to make public why the
request has not been fulfilled, it
SHOULD describe the reason for the
refusal in the entity. If the server
does not wish to make this information
available to the client, the status
code 404 (Not Found) can be used
instead.</p>
</blockquote>
<p>It seems like I should be setting a message but IE just won't display it.</p>