Return-Path: X-Original-To: apmail-axis-java-dev-archive@www.apache.org Delivered-To: apmail-axis-java-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 12E3E6BE3 for ; Thu, 16 Jun 2011 07:40:14 +0000 (UTC) Received: (qmail 59897 invoked by uid 500); 16 Jun 2011 07:40:13 -0000 Delivered-To: apmail-axis-java-dev-archive@axis.apache.org Received: (qmail 59797 invoked by uid 500); 16 Jun 2011 07:40:13 -0000 Mailing-List: contact java-dev-help@axis.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@axis.apache.org Delivered-To: mailing list java-dev@axis.apache.org Received: (qmail 59789 invoked by uid 99); 16 Jun 2011 07:40:12 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jun 2011 07:40:12 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,RFC_ABUSE_POST,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of andreas.veithen@gmail.com designates 209.85.216.173 as permitted sender) Received: from [209.85.216.173] (HELO mail-qy0-f173.google.com) (209.85.216.173) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 16 Jun 2011 07:40:07 +0000 Received: by qyk36 with SMTP id 36so2485692qyk.11 for ; Thu, 16 Jun 2011 00:39:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:in-reply-to:references:from:date :message-id:subject:to:content-type; bh=fNyBXP+9KfKwKKQW41nzoTrwRrnFUhmHEca3xlyGVRk=; b=EIMNDANhLGVgp/CDxHdEx6/FhO/xs0f8IOF0fPictWWmeKyBB6QaxrCOul+E55NXvJ 452Jj+ONxZGTmmnovRxQzrvYi2r5JNuXsImcD3+A+11LQwWhDF0DNazFP9wmxKImwS4y FxtKCdGiTW5+0Cha/+Bcix7XEswY8OCBctJ74= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:from:date:message-id:subject:to :content-type; b=Z8ZETpCLwPDeNOIoLIll96ypOhChRBOzWPSCAy8O84eaha3aCptfI7rUhHyQtpDbT6 UhHRunVor2UeBDxd8J1f4Jc9rTNNcWsJQw8oFwTEX2gTm6miXF/Yc3o4CjlGQw+skd5N G5jei92NNLpMEq9cwNUyLTiuHzvF+mNhmIuNM= Received: by 10.229.65.170 with SMTP id j42mr482590qci.51.1308209986140; Thu, 16 Jun 2011 00:39:46 -0700 (PDT) MIME-Version: 1.0 Received: by 10.229.212.196 with HTTP; Thu, 16 Jun 2011 00:39:26 -0700 (PDT) In-Reply-To: References: From: Andreas Veithen Date: Thu, 16 Jun 2011 09:39:26 +0200 Message-ID: Subject: Re: WSDL generation for the services exposed only in local transport To: java-dev@axis.apache.org Content-Type: text/plain; charset=ISO-8859-1 Since there is a consensus that NonBlockingLocalTransportSender doesn't work with a pure Axis2 setup, is not unit testable and is only relevant for Synapse, the logical conclusion would be that it should not be included in Axis2 but in Synapse. Andreas On Thu, Jun 16, 2011 at 08:43, Heshan Suriyaarachchi wrote: > > > On Wed, Jun 15, 2011 at 1:27 AM, Andreas Veithen > wrote: >> >> On Tue, Jun 14, 2011 at 08:48, Heshan Suriyaarachchi >> wrote: >> > Hi Devs, >> > I am opening up this thread to discuss $subject. >> > Recently, I did some improvements [1] to the Axis2 local transport, >> > inorder >> > to get it working against Synapse nhttp transport. Now the local >> > transport >> > is working fine against the nhttp transport. >> >> To me the statement "getting transport A working against transport B" >> doesn't make sense. Two distinct transports A and B never interact >> directly. Each of them interacts with the Axis2 engine through (in >> principle) well defined APIs. If a component (Synapse in this case) >> based on Axis2 has an issue when using A and B together, then either >> transport A, transport B, the component or the Axis2 engine has an >> issue (or multiple components have an issue), but saying that >> transport A needs to be fixed to work with transport B doesn't make >> sense and is an indication that the fundamental issue has not been >> identified properly. >> >> At this point, what we know is this: >> * NHTTP doesn't work as a transport sender in a standard Axis2 setup >> [1]. It only works in Synapse. That means that from the point of view >> of Axis2, the NHTTP transport is broken. That is of course OK, because >> NHTTP is shipped with Synapse and nobody claims that it is supported >> in a plain Axis2 setup. >> * At some point I tried to figure out what would need to be changed to >> make the NHTTP transport work in Axis2. IIRC the conclusion was that >> one can make it work in Axis2, but then it no longer works in Synapse. >> This would indicate that Synapse actually uses the transport API in a >> way it was not designed for. >> * As indicated in AXIS2-4944, the current version of >> NonBlockingLocalTransportSender doesn't work in Axis2. Unless somebody >> can come up with a valid unit test that exercises this piece of code, >> this would mean that we introduced a broken piece of code in Axis2 in >> order to work around another broken piece of code in a downstream >> project. That is of course not OK. >> >> Note that the issue with NonBlockingLocalTransportSender is also >> blocking the review of other issues such as AXIS2-4991, because it is >> not possible to construct a unit test that validates (or invalidates) >> the proposed patch. That is BTW a general issue with the recent >> patches for the local transport. As far as I can tell, none of them >> added any new unit tests. >> >> [1] At least that was my conclusion when I last looked at it. I'm >> ready to retract that claim if somebody comes up with an example that >> shows how to set up a simple Axis2 client that uses NHTTP as outgoing >> transport. > > As Amila has pointed out earlier, NonBlockingLocalTransportSender is used to > talk to a proxy service from another proxy service. Since the nhttp > transport is written in a non blocking manner, NonBlockingLocalTransport > will work seamlessly against nhttp transport. Since, we are using this > TransportSender to talk between proxy services, it's difficult to come up > with a test case (test client) for this particular usecase. > >> >> > Now, my requirement is to expose an Synapse Proxy Service only in local >> > transport. The reason behind is that, these proxy services which are >> > exposed >> > only in local transport will be used by other proxy services and will >> > not be >> > available for outside parties. Earlier, axis2 local transport did not >> > have a >> > TransportListener. >> > With a TransportListener >> > ==================== >> > I introduced [2] a TransportListener to the local transport. The >> > transport >> > listener's methods are used to calculate the endpoints for the service >> > which >> > will be used in generating the WSDL for the service. Therefore, now if >> > the >> > service exposed in the local transport, the local endpoint is also shown >> > in >> > the WSDL. Although the local endpoints are shown in the WSDL, outside >> > parties can not access the local endpoint. >> > The problem this patch introduce is, now the WSDL shows the local >> > transport >> > endpoints. Which is wrong since external users can not access local >> > transport. >> > So the solution is not to show the local transport endpoints in >> > generated >> > wsdl. For that we may have to change Axis2 code. >> > eg: As an example, I am attaching the following resources to prove my >> > point. >> > The synapse-config.xml is the Synapse Configuration and the attached >> > WSDLs >> > are for the proxy servivces, LocalTransportProxy and SecondProxy. The >> > SecondProxy is exposed only via the local transport and the local >> > endpoints >> > are shown in the WSDL which is wrong IMV. >> > Without a TransportListener >> > ====================== >> > If we did not have a LocalTransportListener and if a service is exposed >> > through local transport only, the WSDL for the service will not be >> > generated. The reason behind is that; inorder to generate the WSDL, >> > there >> > should be a mechanism to derive the endpoints for the service. Since, >> > the >> > TransportListener is not there, there is no mechanism to derive the >> > endpoints for the service(which is only exposed through the local >> > transport). >> > In case the service exposed through http,https,local transports; this >> > wont >> > be the case. Then the WSDL will be generated and only the http,https >> > endpoints will be shown. >> > Without the listener, if we expose a service only in local transport, >> > WSDL >> > generation fails since the endpoints can not be derived for that >> > particular >> > service. >> > >> > Your ideas and feedback on $subject is much appreciated. >> > [1] - https://issues.apache.org/jira/browse/AXIS2-4944 >> > [2] - https://issues.apache.org/jira/browse/AXIS2-5043 >> > >> > >> > -- >> > Regards, >> > Heshan Suriyaarachchi >> > >> > http://heshans.blogspot.com/ >> > >> > >> > --------------------------------------------------------------------- >> > To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org >> > For additional commands, e-mail: java-dev-help@axis.apache.org >> > >> >> --------------------------------------------------------------------- >> To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org >> For additional commands, e-mail: java-dev-help@axis.apache.org >> > > > > -- > Regards, > Heshan Suriyaarachchi > > http://heshans.blogspot.com/ > --------------------------------------------------------------------- To unsubscribe, e-mail: java-dev-unsubscribe@axis.apache.org For additional commands, e-mail: java-dev-help@axis.apache.org