Search found 4 matches

by newmi
Tue Nov 18, 2008 4:58 am
Forum: NetBurner Software
Topic: http client ?
Replies: 5
Views: 8600

Re: http client ?

hm, that was my first step. i also fetched some network packets from my browser with wireshark. the only thing i do wrong, is that i dont use "HTTP/1.1", but it doesnt make a difference :(
by newmi
Mon Nov 17, 2008 4:42 am
Forum: NetBurner Software
Topic: http client ?
Replies: 5
Views: 8600

Re: http client ?

hi,
i used the example code, to download any files via http.
with some files it works great. for example with

char DestGet[] = "GET /search?hl=de&q=http+request+get&btnG=Suche&meta=\r\n";
char DestName[] = "www.google.de";


but with

char DestGet[] = "GET /download/wetter.htm\r\n";
char ...
by newmi
Mon Nov 17, 2008 4:36 am
Forum: NetBurner Software
Topic: Netburner only accessible from some internet providers.
Replies: 17
Views: 17195

Re: Netburner only accessible from some internet providers.

hey,
did you solve the problem?
i have a strange problem, to download files via http in germany. i think it could be the same reason

thx
by newmi
Mon Nov 03, 2008 5:11 am
Forum: NetBurner Software
Topic: variable in html file
Replies: 0
Views: 3834

variable in html file

hi, im new and im trying to get the example from the network programming guide working.
i just want to show the value of a variable in a html-file
here is my html-code.

<HTML>
<BODY>
here comes the variable:
Value = <!--VARIABLE testvar -->
</BODY>
</HTML>


and here is my c++ code:

#include ...