Return-Path: Delivered-To: apmail-ws-tuscany-commits-archive@locus.apache.org Received: (qmail 26297 invoked from network); 21 Sep 2006 11:14:30 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 21 Sep 2006 11:14:30 -0000 Received: (qmail 77203 invoked by uid 500); 21 Sep 2006 11:14:30 -0000 Delivered-To: apmail-ws-tuscany-commits-archive@ws.apache.org Received: (qmail 77181 invoked by uid 500); 21 Sep 2006 11:14:30 -0000 Mailing-List: contact tuscany-commits-help@ws.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: tuscany-dev@ws.apache.org Delivered-To: mailing list tuscany-commits@ws.apache.org Received: (qmail 77172 invoked by uid 99); 21 Sep 2006 11:14:30 -0000 Received: from idunn.apache.osuosl.org (HELO idunn.apache.osuosl.org) (140.211.166.84) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 21 Sep 2006 04:14:30 -0700 Authentication-Results: idunn.apache.osuosl.org smtp.mail=ajborley@apache.org; spf=permerror X-ASF-Spam-Status: No, hits=-9.4 required=5.0 tests=ALL_TRUSTED,NO_REAL_NAME Received-SPF: error (idunn.apache.osuosl.org: domain apache.org from 140.211.166.113 cause and error) Received: from [140.211.166.113] ([140.211.166.113:61739] helo=eris.apache.org) by idunn.apache.osuosl.org (ecelerity 2.1.1.8 r(12930)) with ESMTP id 2A/D8-04092-D0472154 for ; Thu, 21 Sep 2006 04:14:23 -0700 Received: by eris.apache.org (Postfix, from userid 65534) id CAEBF1A981D; Thu, 21 Sep 2006 04:14:09 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r448515 - in /incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws: Axis2Dispatcher.cpp Axis2Service.cpp Date: Thu, 21 Sep 2006 11:14:09 -0000 To: tuscany-commits@ws.apache.org From: ajborley@apache.org X-Mailer: svnmailer-1.1.0 Message-Id: <20060921111409.CAEBF1A981D@eris.apache.org> X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: ajborley Date: Thu Sep 21 04:14:08 2006 New Revision: 448515 URL: http://svn.apache.org/viewvc?view=rev&rev=448515 Log: Fixed build bug discovered by Windows build introduced in r448463 for new-style module based Axis2c services Modified: incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/Axis2Dispatcher.cpp incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/Axis2Service.cpp Modified: incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/Axis2Dispatcher.cpp URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/Axis2Dispatcher.cpp?view=diff&rev=448515&r1=448514&r2=448515 ============================================================================== --- incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/Axis2Dispatcher.cpp (original) +++ incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/Axis2Dispatcher.cpp Thu Sep 21 04:14:08 2006 @@ -49,7 +49,7 @@ const axis2_env_t *env, axis2_svc_t *svc); -AXIS2_EXTERN axis2_handler_t* AXIS2_CALL +AXIS2_EXPORT axis2_handler_t* AXIS2_CALL Axis2Dispatcher_create(const axis2_env_t *env, axis2_qname_t *qname) { Modified: incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/Axis2Service.cpp URL: http://svn.apache.org/viewvc/incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/Axis2Service.cpp?view=diff&rev=448515&r1=448514&r2=448515 ============================================================================== --- incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/Axis2Service.cpp (original) +++ incubator/tuscany/cpp/sca/runtime/extensions/ws/service/axis2c/src/tuscany/sca/ws/Axis2Service.cpp Thu Sep 21 04:14:08 2006 @@ -245,7 +245,7 @@ axis2_endpoint_ref_t *endpoint_ref = NULL; endpoint_ref = AXIS2_MSG_CTX_GET_FROM(msg_ctx, env); axis2_char_t *address = NULL; - address = AXIS2_ENDPOINT_REF_GET_ADDRESS(endpoint_ref, env); + address = (axis2_char_t*) AXIS2_ENDPOINT_REF_GET_ADDRESS(endpoint_ref, env); axis2_char_t **url_tokens = NULL; url_tokens = axis2_parse_request_url_for_svc_and_op(env, address); string service(url_tokens[0]); --------------------------------------------------------------------- To unsubscribe, e-mail: tuscany-commits-unsubscribe@ws.apache.org For additional commands, e-mail: tuscany-commits-help@ws.apache.org