Return-Path: Delivered-To: apmail-ws-axis-c-dev-archive@www.apache.org Received: (qmail 47365 invoked from network); 13 Mar 2006 13:50:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 13 Mar 2006 13:50:04 -0000 Received: (qmail 82985 invoked by uid 500); 13 Mar 2006 13:49:51 -0000 Delivered-To: apmail-ws-axis-c-dev-archive@ws.apache.org Received: (qmail 82948 invoked by uid 500); 13 Mar 2006 13:49:50 -0000 Mailing-List: contact axis-c-dev-help@ws.apache.org; run by ezmlm Precedence: bulk list-help: list-unsubscribe: List-Post: List-Id: "Apache AXIS C Developers List" Reply-To: "Apache AXIS C Developers List" Delivered-To: mailing list axis-c-dev@ws.apache.org Received: (qmail 82933 invoked by uid 99); 13 Mar 2006 13:49:50 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Mar 2006 05:49:50 -0800 X-ASF-Spam-Status: No, hits=1.4 required=10.0 tests=SPF_NEUTRAL X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: 80.100.69.191 is neither permitted nor denied by domain of rbindels@gmail.com) Received: from [80.100.69.191] (HELO Biggie.bitech.mine.nu) (80.100.69.191) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 13 Mar 2006 05:49:49 -0800 Received: by Biggie.bitech.mine.nu (Postfix, from userid 65534) id 5F43A9020; Mon, 13 Mar 2006 14:49:28 +0100 (CET) Received: from [192.168.0.11] (unknown [83.137.136.162]) (using TLSv1 with cipher RC4-MD5 (128/128 bits)) (Client did not present a certificate) by Biggie.bitech.mine.nu (Postfix) with ESMTP id 747BE9018 for ; Mon, 13 Mar 2006 14:49:27 +0100 (CET) Subject: simpla-axis-server From: Roel Bindels To: axis-c-dev@ws.apache.org Content-Type: text/plain Date: Mon, 13 Mar 2006 14:51:57 +0100 Message-Id: <1142257918.7972.22.camel@IA-P12.beek-ia.gti-ia-zo.nl> Mime-Version: 1.0 X-Mailer: Evolution 2.4.0 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Hello Listers, Can somebody please fill me in, in what this piece of code should do. It's a cut from the function SimpleAxisTransport::readFromClient() in the simple-axis-server. In my application I get a "/" back from this function.... // **** code **** unsigned int uiServiceStartPos = strReceived.find ("POST ") + strlen ("POST "); unsigned int uiServiceEndPos = strReceived.find (" ", uiServiceStartPos); m_strServiceURI = strReceived.substr (uiServiceStartPos, uiServiceEndPos - uiServiceStartPos); // **** code **** greetings Roel Bindels