Return-Path: Delivered-To: apmail-ws-axis-c-dev-archive@www.apache.org Received: (qmail 63526 invoked from network); 15 Jul 2008 14:41:52 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Jul 2008 14:41:52 -0000 Received: (qmail 89625 invoked by uid 500); 15 Jul 2008 14:41:52 -0000 Delivered-To: apmail-ws-axis-c-dev-archive@ws.apache.org Received: (qmail 89611 invoked by uid 500); 15 Jul 2008 14:41:52 -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 89600 invoked by uid 99); 15 Jul 2008 14:41:52 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Jul 2008 07:41:52 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 15 Jul 2008 14:41:07 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id A3AB8234C169 for ; Tue, 15 Jul 2008 07:41:31 -0700 (PDT) Message-ID: <155414161.1216132891669.JavaMail.jira@brutus> Date: Tue, 15 Jul 2008 07:41:31 -0700 (PDT) From: "ttg (JIRA)" To: axis-c-dev@ws.apache.org Subject: [jira] Created: (AXIS2C-1235) Need a way to specify libcurl options MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org Need a way to specify libcurl options ------------------------------------- Key: AXIS2C-1235 URL: https://issues.apache.org/jira/browse/AXIS2C-1235 Project: Axis2-C Issue Type: New Feature Components: transport/http Affects Versions: Current (Nightly) Reporter: ttg Fix For: Current (Nightly) I need some way to specify additional options for libcurl, but at the moment there is no way to access the CURL* handler. For example I want the client to connect via SOCKS5 proxy with authorization, increase connection timeouts and make it not complain about self-signed SSL certificates. Here is the list of libcurl options I would use: curl_easy_setopt(handler, CURLOPT_PROXY, proxy); curl_easy_setopt(handler, CURLOPT_PROXYPORT, port); curl_easy_setopt(handler, CURLOPT_PROXYTYPE, type); curl_easy_setopt(handler, CURLOPT_PROXYAUTH, CURLAUTH_ANY); curl_easy_setopt(handler, CURLOPT_PROXYUSERPWD, userpwd); curl_easy_setopt(handler, CURLOPT_TIMEOUT, timeout); curl_easy_setopt(handler, CURLOPT_CONNECTTIMEOUT, 10); curl_easy_setopt(handler, CURLOPT_SSL_VERIFYHOST, 0); curl_easy_setopt(handler, CURLOPT_SSL_VERIFYPEER, 0); -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: axis-c-dev-unsubscribe@ws.apache.org For additional commands, e-mail: axis-c-dev-help@ws.apache.org