-1
votes
3answers
52 views
How to find if InputStream is empty (contains only headers)
I'm getting InputStream of attached file by web service.
When the user attaches an empty file,
the input stream is not empty, but contains the header of the file (taht can be image, video, zip and …
1
vote
4answers
103 views
Consume RESt API from .NET
Hi All,
I am trying to consume REST API from my .NET Application. This API's are all written in JAVA.
I am asked to pass the authentication credentials vis HTTP headers. How can I pass these …
2
votes
6answers
101 views
Python: Checking Header Format
I'm new to python and need help with a problem. Basically I need to open a file and read it which I can do no problem. The problem arises at line 0, where I need to check the header format.
The …
1
vote
3answers
70 views
Why is my page still executing?
I have a form that posts to a processing script which checks for errors in the post. Depending on the processing it header redirects to another location. This appeared to work but I have just noticed …
0
votes
1answer
68 views
Declare default parameter circular reference without pointers?
Is there any way to declare these classes in a header file without indirection?
// Forwards declaration of B
class B;
class A
{
public:
// Default parameter referring to B. May return its …
0
votes
0answers
34 views
How to dynamically set HTTP Header in Apache 2.2? [closed]
Seems like this should be easy, but I cannot figure out the syntax. In Apache, I want to use the value of an existing request header to set a new request header. Some simple non-working code that …
0
votes
5answers
93 views
Gmail/Facebook without username/password - PHP Login Header Problem
Hi all.
I want to create my own personal login gateway into Gmail/Facebook/any other site. In this gateway I enter my master username and password, then I can choose where to login …
1
vote
2answers
61 views
c# HttpWebResponse Header encoding
Hi,
I have the following problem. I contact an address which I know employs a 301 redirect.
using HttpWebRequest loHttp = (HttpWebRequest)WebRequest.Create(lcUrl);
and loHttp.AllowAutoRedirect = …
0
votes
3answers
52 views
PHP header(”Refresh”) problems
I have some code like:
header('Refresh: 15; url=' . $url);
This works fine, except when people are visiting this url via Twitter (posted from a Hootesuite client). Apparently, in all browsers …
1
vote
7answers
136 views
C++: Forward declaration of class doesn’t seem to work?
The follwing code is compiled in VC++6. I don't understand why I am getting the compilation error "C2079: 'b' uses undefined class 'B'" for the following code?
//Class B Source
#include "B.h"
void …
0
votes
1answer
23 views
Does internet Explorer 7 honour the Vary header by caching properly?
I'm using a technique similar to Rick Strahls example, but have notcied using google's speed tracer that
Resource Caching : @10.88s - The following resources specify a "Vary" header that disables …
0
votes
2answers
99 views
Does anyone use Fortify 360 with Classic ASP? a Header Manipulation vulnerability story
Good morning, everyone.
I'm on a short-term contracting gig, trying to patch some vulnerabilities in their legacy code. The application I'm working on is a combination of Classic ASP(VBScript) and …
0
votes
2answers
23 views
How to make the drop down list in header frame overlap body frame?
I have a header frame, and a body content frame.
My header frame by default is to put logo and logout button.
My body frame is to put all the contents.
Issue now is:
I decided to add in a drop …
0
votes
1answer
43 views
Need help with TabControl.ItemTemplate
Hello.
How do I set the TabItem.Header to bindings taken from few fields, each binding shown in a different size, all in the place of the original header text; without overriding the default style …
0
votes
11answers
188 views
Is there a way to prevent a header defined c++ function from being treated as inlined.
Hi, I am making a Qt application and as I was coding, I took the habit of defining my slots in the header. I found it was easier for me to develop that way though I still define normal functions in …
