1
vote
1answer
48 views
Android NDK: Autogenerate function declarations?
I am trying to use a pre-existing native C library in my android project.. The library builds just fine with the NDK tools...
Now what I've come to understand is that I cannot just call into the …
0
votes
1answer
19 views
Get the response headers with prototype.js
Is there an easy way to pull out the response headers of a page with prototypejs without using Ajax.Request?
0
votes
1answer
14 views
python soappy add header
I have the following PHP example code:
$client = new SoapClient("http://example.com/example.wsdl");
$h = Array();
array_push($h, new SoapHeader("http://example2.com/example2/", "h", "v"));
…
0
votes
1answer
27 views
OpenCV C++ error in Xcode
I have built the OpenCV libraries using the cmake build system as described here and have added the header, '.a' and '.dylib' files to my terminal c++ project. However when I run the code below (got …
0
votes
4answers
89 views
Clarification on a header without #includes
Hi all :)
I was reading some code from the Doom 3 SDK ( in a VS solution ) when I found a header like this:
#ifndef __PLAYERICON_H__
#define __PLAYERICON_H__
class idPlayerIcon {
…
1
vote
1answer
29 views
Xcode header files
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 …
0
votes
2answers
17 views
What headers does a SWF file send when requesting data from a URL
When requesting data with:
<param value="data-file=http://url-to-my/json.script" name="flashvars">
via an SWF file, what request type would "http://url-to-my/json.script" receive. It doesn't …
0
votes
1answer
127 views
Add a header to a REST WCF request - EnvelopeNone does not support adding Message Headers exception
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. …
0
votes
4answers
168 views
Proper layout of a C++ header file
What is the proper layout of a C++ .h file?
What I mean is header guard, includes, typedefs, enums, structs, function declarations, class definitions, classes, templates, etc, etc
I am porting an …
0
votes
1answer
38 views
PagedCollectionView when wrapping an ObservableCollection in a DataGrid clears Column headers when no data is present
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 …
0
votes
3answers
36 views
How to read HTTP response headers from web service response?
Hi,
How can i read HTTP response headers from web service response in C#?
Best Regards,
Guy Bertental
5
votes
2answers
115 views
Duplicate Referrer Header - HTTP.sys barfs
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 …
0
votes
1answer
13 views
Data is not sent with http response in my http server
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 …
0
votes
3answers
61 views
File header or general comment
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.
By general comment I mean the comment at the top of …
4
votes
7answers
238 views
Is it a good idea to put all project headers into one file HEADERS.h?
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 …
