1
vote
2answers
29 views
Browser behavior on 403 Forbidden error
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 describ …
2
votes
7answers
153 views
Parsing variable length descriptors from a byte stream and acting on their type
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 lengt …
1
vote
1answer
24 views
IE accept headers changing, why?
I am trying to debug an issue on my server side and I believe it has to do with the accept headers that are being sent from the browser. Here is my question, why would Internet Ex …
1
vote
1answer
40 views
Forcing browser to use “Save As …” dialog box
I would like a "Save As ..." dialog box to appear when a user clicks on a hyperlink.
I'm currently sending the HTTP headers:
application/octet-stream
Content-Disposition: inline; …
0
votes
3answers
46 views
Firefox plugin or way to monitor ALL request data, including headers and content downloaded to browser
I am having problems getting ALL of the information that is downloaded to a browser. For example, I want a plugin, ideally a firefox plugin to download the HTML content and monito …
0
votes
1answer
15 views
Adding headers in postfix incoming mails
Hello,
I am unable to see the following headers in e-mails received on my Postfix e-mail receiving server:
Return-Path
Received: from
Similar to header on gmail
Received: from …
0
votes
7answers
281 views
Can you give me examples of odd single line comments in C++?
I wrote a method to remove single line comments from a C++ source file:
def stripRegularComments(text)
{
def builder = new StringBuilder()
text.eachLine {
def singleComme …
1
vote
1answer
17 views
Adding mail header if postfix DNS based RBL (realtime black hole) check fails
Hello,
I have setup a receiving Postfix mail server. Here i have custom code written that parses the whole mail received by postfix and use the headers, body and attachments separ …
2
votes
1answer
25 views
Is Content-Type meta tag important if responce headers include content-type?
At the moment we set content-type in our responce headers, a bit like this...
Content-Type text/html; charset=utf-8
We also have this at the top of html pages...
<!DOCTYP …
0
votes
3answers
70 views
PHP: Force file download and IE, yet again
Folks, I know there have been lots of threads about forcing the download dialog to pop up, but none of the solutions worked for me yet.
My app sends mail to the user's email acco …
0
votes
3answers
39 views
HTTP Preauthorization
At http://localhost/tmp/ I have a form that asks for the user and password (authentication).
After the user posts (hits OK) I want to redirect the user to http://localhost/test/ wh …
3
votes
1answer
37 views
javascript browser-like GET request
I need to request web page client-side and than pass it to server as a string. I tried jQuery:
$.get(
"http://example.ru/",
{name:"Joe", age:"42"},
function(data){
…
2
votes
5answers
135 views
How to define (non-method) functions in header libraries
When writing a header library (like Boost), can one define free-floating (non-method) functions without (1) bloating the generated binary and (2) incurring "unused" warnings?
When …
0
votes
3answers
41 views
Mixing GET with POST - is it a bad practice?
Is it a bad practice to mix GET and POST? (note this is in PHP)
e.g.
<form action="delete.php?l=en&r=homepage" method="post">
<!-- post fields here -->
</form …
0
votes
0answers
16 views
jQtouch CSS Header Bar
I'm using jQtouch for a small mobile app. Using the default CSS 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,
…
