<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Sessions]]></title><description><![CDATA[<p>hallo<br />
wundert euch nicht, ich bin neu hier.</p>
<p>nun zu meinem anliegen:<br />
ich hab n progrämmchen in arbeit, in dem ich eine datei auf einem server ansprecen möchte. bin auch soweit, dass ich eine verbindung zum server über sessions gemacht hab.</p>
<p>nun gehts dann an den http-request. und ab da is das problem. denke der request ist gültig, aber es komtm keien antwort. ud da recv() solange wartet bis was gekommen is liegt das ganze programm flach. mir gehts aber nich darum irgenetwas anderes in dieser zeit zu abwickeln zu könenn, sondern die daten zu empfangen.</p>
<p>den request hab ich mit send() abgesetzt. hier ma n auszug aus der funktion. die socketverbindung ist vor dem auszug unten bereits aufgebaut.</p>
<pre><code>//	Request zusammenstellen und abschicken
string strRequestMessage = &quot;GET &quot; + this-&gt;m_strUrl + &quot; HTTP/1.1&quot;; + &quot; HTTP/1.1 Host: &quot; + this-&gt;m_strServer;
cout &lt;&lt; endl &lt;&lt; &quot;  HTTP Request:&quot; &lt;&lt; endl &lt;&lt; &quot;  &gt;&gt; &quot; &lt;&lt; strRequestMessage;

//	Request erfolgreich ausgeführt
if( send( (SOCKET) this-&gt;m_Socket, strRequestMessage.c_str(), strlen( strRequestMessage.c_str() ), 0 ) )
{
	//	Statusmeldung ausgeben
	cout &lt;&lt; endl &lt;&lt; &quot;  &gt;&gt; Uebertragung erfolgreich&quot; &lt;&lt; endl &lt;&lt; endl &lt;&lt; &quot;  &quot;;

	//	Response auswerten und ausgeben
	char szOutput[ 1000 ];
	int nReciveStatus = recv( ( SOCKET ) this-&gt;m_Socket, szOutput, 1000, 0 );				

	if( nReciveStatus &gt; 0 )
	{
		cout &lt;&lt; endl &lt;&lt; &quot;  HTTP Response:&quot; &lt;&lt; endl &lt;&lt; &quot;  &gt;&gt; &quot; &lt;&lt; szOutput;
		szOutput[ nReciveStatus ] = 0;
		cout &lt;&lt; endl &lt;&lt; &quot;  &gt;&gt; &quot; &lt;&lt; szOutput;
	}
}
//	Request fehlgeschlagen
else
	cout &lt;&lt; endl &lt;&lt; &quot;  &gt;&gt; Uebertragung nicht erfolgreich&quot; &lt;&lt; endl &lt;&lt; endl &lt;&lt; &quot;  &quot;;
</code></pre>
<p>schonam danke für eure hilfe.<br />
sebastian</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/123041/sessions</link><generator>RSS for Node</generator><lastBuildDate>Sun, 23 Aug 2026 11:26:59 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/123041.rss" rel="self" type="application/rss+xml"/><pubDate>Wed, 12 Oct 2005 12:56:44 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 12:56:44 GMT]]></title><description><![CDATA[<p>hallo<br />
wundert euch nicht, ich bin neu hier.</p>
<p>nun zu meinem anliegen:<br />
ich hab n progrämmchen in arbeit, in dem ich eine datei auf einem server ansprecen möchte. bin auch soweit, dass ich eine verbindung zum server über sessions gemacht hab.</p>
<p>nun gehts dann an den http-request. und ab da is das problem. denke der request ist gültig, aber es komtm keien antwort. ud da recv() solange wartet bis was gekommen is liegt das ganze programm flach. mir gehts aber nich darum irgenetwas anderes in dieser zeit zu abwickeln zu könenn, sondern die daten zu empfangen.</p>
<p>den request hab ich mit send() abgesetzt. hier ma n auszug aus der funktion. die socketverbindung ist vor dem auszug unten bereits aufgebaut.</p>
<pre><code>//	Request zusammenstellen und abschicken
string strRequestMessage = &quot;GET &quot; + this-&gt;m_strUrl + &quot; HTTP/1.1&quot;; + &quot; HTTP/1.1 Host: &quot; + this-&gt;m_strServer;
cout &lt;&lt; endl &lt;&lt; &quot;  HTTP Request:&quot; &lt;&lt; endl &lt;&lt; &quot;  &gt;&gt; &quot; &lt;&lt; strRequestMessage;

//	Request erfolgreich ausgeführt
if( send( (SOCKET) this-&gt;m_Socket, strRequestMessage.c_str(), strlen( strRequestMessage.c_str() ), 0 ) )
{
	//	Statusmeldung ausgeben
	cout &lt;&lt; endl &lt;&lt; &quot;  &gt;&gt; Uebertragung erfolgreich&quot; &lt;&lt; endl &lt;&lt; endl &lt;&lt; &quot;  &quot;;

	//	Response auswerten und ausgeben
	char szOutput[ 1000 ];
	int nReciveStatus = recv( ( SOCKET ) this-&gt;m_Socket, szOutput, 1000, 0 );				

	if( nReciveStatus &gt; 0 )
	{
		cout &lt;&lt; endl &lt;&lt; &quot;  HTTP Response:&quot; &lt;&lt; endl &lt;&lt; &quot;  &gt;&gt; &quot; &lt;&lt; szOutput;
		szOutput[ nReciveStatus ] = 0;
		cout &lt;&lt; endl &lt;&lt; &quot;  &gt;&gt; &quot; &lt;&lt; szOutput;
	}
}
//	Request fehlgeschlagen
else
	cout &lt;&lt; endl &lt;&lt; &quot;  &gt;&gt; Uebertragung nicht erfolgreich&quot; &lt;&lt; endl &lt;&lt; endl &lt;&lt; &quot;  &quot;;
</code></pre>
<p>schonam danke für eure hilfe.<br />
sebastian</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890601</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890601</guid><dc:creator><![CDATA[ray_ray]]></dc:creator><pubDate>Wed, 12 Oct 2005 12:56:44 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 13:16:50 GMT]]></title><description><![CDATA[<p>CR LF (&quot;\r\n&quot;) fehlt ja im Request völlig. <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f615.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--confused_face"
      title=":confused:"
      alt="😕"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/890614</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890614</guid><dc:creator><![CDATA[rfc]]></dc:creator><pubDate>Wed, 12 Oct 2005 13:16:50 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 13:23:45 GMT]]></title><description><![CDATA[<p>das heißt jetzt? habe sowohl CR LF, als auch \r\n mal ans ende angefügt. aber es ändert sich noch immer nichts. der wartet imemrnoch vergeblich auf eine antwort.</p>
<p>aber eins muss ich ma sagen. in keinem anderen forum wurde das bemerkt bisher. und schon garnich so schnell.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890625</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890625</guid><dc:creator><![CDATA[ray_ray]]></dc:creator><pubDate>Wed, 12 Oct 2005 13:23:45 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 13:51:09 GMT]]></title><description><![CDATA[<p>Ein Beispielrequest sieht folgendermaßen aus:</p>
<blockquote>
<p>GET /index.htm HTTP/1.1*<br />
Host: BlaBla*<br />
*</p>
</blockquote>
<p>Wobei immer bei * ein CLRF hin muss. Es fehlt also nicht nur am Ende ein CLRF (wobei am Ende 2 ClRFs hinmüssen)</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890651</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890651</guid><dc:creator><![CDATA[Rapha]]></dc:creator><pubDate>Wed, 12 Oct 2005 13:51:09 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 13:52:48 GMT]]></title><description><![CDATA[<p>muss ich dann CLRF quasi im klatext schreiben, oedr \r\n da hinpacken?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890653</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890653</guid><dc:creator><![CDATA[ray_ray]]></dc:creator><pubDate>Wed, 12 Oct 2005 13:52:48 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 13:53:16 GMT]]></title><description><![CDATA[<p>ray_ray schrieb:</p>
<blockquote>
<p>bin auch soweit, dass ich eine verbindung zum server über sessions gemacht hab.</p>
</blockquote>
<p>Wie kannst du eine Verbindung über Sessions zu einem Server herstellen? Du meinst Sockets?<br />
Sessions sind eine Möglichkeit Daten (z.B. in PHP) über Requestgrenzen hinweg userabhängig zu speichern.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890654</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890654</guid><dc:creator><![CDATA[Rapha]]></dc:creator><pubDate>Wed, 12 Oct 2005 13:53:16 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 13:54:03 GMT]]></title><description><![CDATA[<p>ray_ray schrieb:</p>
<blockquote>
<p>muss ich dann CLRF quasi im klatext schreiben, oedr \r\n da hinpacken?</p>
</blockquote>
<p>\r\n</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890655</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890655</guid><dc:creator><![CDATA[Rapha]]></dc:creator><pubDate>Wed, 12 Oct 2005 13:54:03 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 13:54:09 GMT]]></title><description><![CDATA[<p>\r\n</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890656</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890656</guid><dc:creator><![CDATA[miller_m]]></dc:creator><pubDate>Wed, 12 Oct 2005 13:54:09 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 13:55:59 GMT]]></title><description><![CDATA[<p>habe die zeile jetzt so:</p>
<pre><code>string strRequestMessage = &quot;GET &quot; + this-&gt;m_strFolder + &quot; HTTP/1.1 CLRF Host: &quot; + this-&gt;m_strServer + &quot; CLRF CLRF&quot;;
</code></pre>
<p>ändern tut sich aber imer noch nix. der wartet noch imer ewig auf antwort.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890660</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890660</guid><dc:creator><![CDATA[ray_ray]]></dc:creator><pubDate>Wed, 12 Oct 2005 13:55:59 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 13:57:01 GMT]]></title><description><![CDATA[<pre><code class="language-cpp">string strRequestMessage = &quot;GET &quot; + this-&gt;m_strFolder + &quot; HTTP/1.1\r\n Host: &quot; + this-&gt;m_strServer + &quot;\r\n\r\n&quot;;
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/890662</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890662</guid><dc:creator><![CDATA[Rapha]]></dc:creator><pubDate>Wed, 12 Oct 2005 13:57:01 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 13:58:29 GMT]]></title><description><![CDATA[<p>sry<br />
werds jetzt mit \r\n probieren</p>
<p>und du hast recht, ich meine sockets. weiß nich wo ich mit meinem kopf war <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/890663</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890663</guid><dc:creator><![CDATA[ray_ray]]></dc:creator><pubDate>Wed, 12 Oct 2005 13:58:29 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 14:00:37 GMT]]></title><description><![CDATA[<p><a href="http://www.faqs.org/rfcs/rfc2068.html" rel="nofollow">http://www.faqs.org/rfcs/rfc2068.html</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/890669</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890669</guid><dc:creator><![CDATA[Vertexwahn]]></dc:creator><pubDate>Wed, 12 Oct 2005 14:00:37 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 14:01:37 GMT]]></title><description><![CDATA[<p>Hol dir Packteyzer (kostenlos) und schau dir an weleche daten du wirklich sendest</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890671</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890671</guid><dc:creator><![CDATA[Vertexwahn]]></dc:creator><pubDate>Wed, 12 Oct 2005 14:01:37 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 14:01:38 GMT]]></title><description><![CDATA[<p>Ein weiteres Problem, das du hast, ist, dass du recv die anzahl der Bytes übergeben musst, die es lesen soll. Wenn du zu wenig angibst, wird nicht der ganze Response empfangen, wenn du zu viel angibst, verzögert sich recv.<br />
Ich hab etwas ähnliches mal im Zuge eines Referates gemacht.<br />
Meine Lösung war, dass ich den Response Header nach dem Content-Length parse, das ja die Anzahl der Bytes im Body angibt.<br />
Hier ein Auszug:</p>
<pre><code class="language-cpp">// receive response
ULONG nBytesTraffic = Cache.nRequestLength;
int nBytesReceived = 0;
BOOL bResponseIsHeader = TRUE;
char cTmpBuffer = 0;
// receive header
UINT nContentLength=0;
char strLastHeaderLine[150];
char cLastChar = 0;
memset(strLastHeaderLine, 0, 150);

while (true)
{
    recv(mySocket, &amp;cTmpBuffer, 1, 0);
    nBytesTraffic ++;
    if (cTmpBuffer != '\n')
    {
        strLastHeaderLine[strlen(strLastHeaderLine)] = cTmpBuffer; // bufferoverrun hier möglich
    }
    else
    {
        UINT nPossibleLength = 0;
        if (sscanf(strLastHeaderLine, &quot;Content-Length: %d&quot;, &amp;nPossibleLength)&gt;0)
        {
            nContentLength = nPossibleLength;
        }
        memset(strLastHeaderLine, 0, 150);
    }
    if (cTmpBuffer == '\r' &amp;&amp; cLastChar=='\n') // nach \r\n endet der Header
    {
        break;
    }
    cLastChar = cTmpBuffer;
}

for (int nBytesLeft=nContentLength; nBytesLeft&gt;0; nBytesLeft--)
{
    recv(mySocket, &amp;cTmpBuffer, 1, 0);
    nBytesTraffic ++;
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/890672</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890672</guid><dc:creator><![CDATA[Rapha]]></dc:creator><pubDate>Wed, 12 Oct 2005 14:01:38 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 14:02:55 GMT]]></title><description><![CDATA[<p>Rapha schrieb:</p>
<blockquote>
<p>Meine Lösung war, dass ich den Response Header nach dem Content-Length parse,</p>
</blockquote>
<p>manchmal wird die Content-Length nicht übermittelt</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890674</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890674</guid><dc:creator><![CDATA[Vertexwahn]]></dc:creator><pubDate>Wed, 12 Oct 2005 14:02:55 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 14:04:22 GMT]]></title><description><![CDATA[<p>in dem rfc stehen diese 2 möglichkeiten</p>
<p>GET <a href="http://www.w3.org/pub/WWW/TheProject.html" rel="nofollow">http://www.w3.org/pub/WWW/TheProject.html</a> HTTP/1.1</p>
<p>GET /pub/WWW/TheProject.html HTTP/1.1<br />
Host: <a href="http://www.w3.org" rel="nofollow">www.w3.org</a></p>
<p>zumindest find ich nur die 2</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890675</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890675</guid><dc:creator><![CDATA[ray_ray]]></dc:creator><pubDate>Wed, 12 Oct 2005 14:04:22 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 14:08:00 GMT]]></title><description><![CDATA[<p>Vertexwahn schrieb:</p>
<blockquote>
<p>manchmal wird die Content-Length nicht übermittelt</p>
</blockquote>
<p>Das hab ich noch nie gesehen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
<p>Andere Lösungs-Theorie:<br />
Das Problem ist, dass der HTTP-Webserver die Verbindung nach dem Request nicht beendet. Du könntest versuchen ein HTTP 1.0 Request zu senden (anstatt 1.1), da der Server afaik die Verbindung nach einem Request schließt</p>
<p>EDIT:<br />
Wenn du unter Windows arbeitest, würde ich den Request nicht von Hand schreiben, sondern WinInet verwenden.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890678</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890678</guid><dc:creator><![CDATA[Rapha]]></dc:creator><pubDate>Wed, 12 Oct 2005 14:08:00 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 14:13:58 GMT]]></title><description><![CDATA[<p>so, habe da jetzt noch ein bissl nach eurer anleitung verändert. das problem war tatsächlich der letzte parameter bei recv. hab den jetzt einfach ma genauso groß gemacht wie die variable für die antwort. die sache is jetzt die. der empfängt jetzt was (dank euch) und hält sich halt nich ewig mit dem warten auf. jedoch gibt er nix aus. die entsprechenden zeilen sind die:</p>
<pre><code class="language-cpp">//	Request zusammenstellen und abschicken
string strRequestMessage = &quot;GET &quot; + this-&gt;m_strFolder + &quot; HTTP/1.1 \r\n Host: &quot; + this-&gt;m_strServer + &quot; \r\n \r\n&quot;;

//	Request erfolgreich ausgeführt
if( send( (SOCKET) this-&gt;m_Socket, strRequestMessage.c_str(), strlen( strRequestMessage.c_str() ), 0 ) )
{
	//	Statusmeldung ausgeben
	cout &lt;&lt; endl &lt;&lt; &quot;  HTTP Request:&quot; &lt;&lt; endl &lt;&lt; &quot;  &gt;&gt; Uebertragung erfolgreich&quot; &lt;&lt; endl &lt;&lt; endl &lt;&lt; &quot;  &quot;;

	//	-------------------------------
	//	Response auswerten und ausgeben
	//	-------------------------------
	int nReciveStatus = recv( ( SOCKET ) this-&gt;m_Socket, this-&gt;m_szRespose, 1000, 1000 );				

	if( nReciveStatus &gt; 0 )
	{
		cout &lt;&lt; endl &lt;&lt; &quot;  HTTP Response:&quot; &lt;&lt; endl &lt;&lt; &quot;  &gt;&gt; &quot; &lt;&lt; this-&gt;m_szRespose;
		this-&gt;m_szRespose[ nReciveStatus ] = 0;
		cout &lt;&lt; endl &lt;&lt; &quot;  &gt;&gt; &quot; &lt;&lt; this-&gt;m_szRespose;
	}
}
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/890683</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890683</guid><dc:creator><![CDATA[ray_ray]]></dc:creator><pubDate>Wed, 12 Oct 2005 14:13:58 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 14:12:32 GMT]]></title><description><![CDATA[<p>Rapha schrieb:</p>
<blockquote>
<p>Ein weiteres Problem, das du hast, ist, dass du recv die anzahl der Bytes übergeben musst, die es lesen soll. Wenn du zu wenig angibst, wird nicht der ganze Response empfangen, wenn du zu viel angibst, verzögert sich recv.</p>
</blockquote>
<p>Genau das hab ich ja bereits angesprochen (siehe mein vorheriger Post) <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/890689</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890689</guid><dc:creator><![CDATA[Rapha]]></dc:creator><pubDate>Wed, 12 Oct 2005 14:12:32 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 14:26:11 GMT]]></title><description><![CDATA[<p>wenn ich mir die nReciveStatus ansehen ist diese auf -1 nach dem recv(). das heißt doch, dass das ganze ien fehrlschlag ist, oder? dann wäre es nämlich kein wunder dass der nix ausgibt. bei -1 geht der ja auch nicht ins if rein, was danach kommt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890706</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890706</guid><dc:creator><![CDATA[ray_ray]]></dc:creator><pubDate>Wed, 12 Oct 2005 14:26:11 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 14:34:58 GMT]]></title><description><![CDATA[<p>Übergib recv mal nicht 1000 sondern z.B. 5</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890715</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890715</guid><dc:creator><![CDATA[Rapha]]></dc:creator><pubDate>Wed, 12 Oct 2005 14:34:58 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 14:40:40 GMT]]></title><description><![CDATA[<p>da ändert sich dann auch nichts, wenn ich 5 oder 9 oer 17 oder so mache. aber mit dem request hat der fehler jetzt nichts zu tun, oder? nich das der request falsch ist.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890724</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890724</guid><dc:creator><![CDATA[ray_ray]]></dc:creator><pubDate>Wed, 12 Oct 2005 14:40:40 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Wed, 12 Oct 2005 17:20:02 GMT]]></title><description><![CDATA[<p>gib dir doch mal den Request mit cout aus und teste ihn mit telnet (poste ihn am besten noch hier rein).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/890825</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/890825</guid><dc:creator><![CDATA[Rapha]]></dc:creator><pubDate>Wed, 12 Oct 2005 17:20:02 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Thu, 13 Oct 2005 06:44:10 GMT]]></title><description><![CDATA[<p>der request sieht eigentlich richtig aus. nur dass halt \r\n vom compiler interprestiert werden. muss ich die zeichen escapen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/891044</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/891044</guid><dc:creator><![CDATA[ray_ray]]></dc:creator><pubDate>Thu, 13 Oct 2005 06:44:10 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Thu, 13 Oct 2005 06:52:53 GMT]]></title><description><![CDATA[<p>der request sieht so aus:</p>
<p>GET /content/news/index.php HTTP 1.0<br />
Host: <a href="http://www.futures-net.de" rel="nofollow">www.futures-net.de</a></p>
<p>die \r\n werden ja bei der ausgabe vom compiler interpretiert. is das vl der fehler?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/891049</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/891049</guid><dc:creator><![CDATA[ray_ray]]></dc:creator><pubDate>Thu, 13 Oct 2005 06:52:53 GMT</pubDate></item><item><title><![CDATA[Reply to Sessions on Thu, 13 Oct 2005 08:00:33 GMT]]></title><description><![CDATA[<p>wie sieht dein quellcode im moment aus?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/891089</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/891089</guid><dc:creator><![CDATA[#######]]></dc:creator><pubDate>Thu, 13 Oct 2005 08:00:33 GMT</pubDate></item></channel></rss>