Return-Path: Delivered-To: apmail-ws-axis-dev-archive@www.apache.org Received: (qmail 7657 invoked from network); 8 Mar 2005 04:59:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 8 Mar 2005 04:59:12 -0000 Received: (qmail 97510 invoked by uid 500); 8 Mar 2005 04:58:58 -0000 Delivered-To: apmail-ws-axis-dev-archive@ws.apache.org Received: (qmail 97358 invoked by uid 500); 8 Mar 2005 04:58:58 -0000 Mailing-List: contact axis-dev-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-dev@ws.apache.org list-help: list-unsubscribe: List-Post: Delivered-To: mailing list axis-dev@ws.apache.org Received: (qmail 97334 invoked by uid 99); 8 Mar 2005 04:58:57 -0000 X-ASF-Spam-Status: No, hits=0.4 required=10.0 tests=DNS_FROM_RFC_ABUSE,RCVD_BY_IP,SPF_HELO_PASS,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (hermes.apache.org: domain of babloosony@gmail.com designates 64.233.170.196 as permitted sender) Received: from rproxy.gmail.com (HELO rproxy.gmail.com) (64.233.170.196) by apache.org (qpsmtpd/0.28) with ESMTP; Mon, 07 Mar 2005 20:58:57 -0800 Received: by rproxy.gmail.com with SMTP id z35so2236677rne for ; Mon, 07 Mar 2005 20:58:55 -0800 (PST) DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:message-id:date:from:reply-to:to:subject:cc:in-reply-to:mime-version:content-type:content-transfer-encoding:references; b=VfBWPRB2PRxFhddp/l2jaLP3uYuRobC+0K2pjyK0y5jkXIzLFnn4o9ritSVF9DP4ZrFk5a/c4ozSupCivMZ0Jk25cnFBsL93L7WO/JTCgUQ9Hm3TAJ6S48XirdweCgJ7K2qjmahCvB7Cmkl6M+Gnc8EuW19j8E9WzgbvxGIN+a8= Received: by 10.38.150.6 with SMTP id x6mr212113rnd; Mon, 07 Mar 2005 20:58:55 -0800 (PST) Received: by 10.38.82.50 with HTTP; Mon, 7 Mar 2005 20:58:55 -0800 (PST) Message-ID: Date: Tue, 8 Mar 2005 10:28:55 +0530 From: babloosony Reply-To: babloosony To: Dino Chiesa , stevel@apache.org Subject: Re: Interropability testing between j2ee and .NET Cc: axis-user@ws.apache.org, axis-dev@ws.apache.org In-Reply-To: Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit References: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Dino Chiesa & Steve Loughran, Thank you for your kind and detailed response. I'll try the same. Thanks & Regards, Kumar. On Mon, 7 Mar 2005 07:44:39 -0800, Dino Chiesa wrote: > There is no standalone ".NET soap toolkit" . > > There is a thing called the Microsoft SOAP Toolkit. It was a COM-based > library, suitable for use within VB6 and other COM environments. The MS > SOAP Toolkit went through several revisions. The latest is v3.0. None > of these revisions used .NET technology. The SOAP toolkit goes out of > support in June 2005. Microsoft guidance is for those using the SOAP > Toolkit to move to .NET. > > The .NET Framework is the all-up managed app framework. Web services > support is built in, but so are lots of other features like IO, > threading, transactions, data access and so on. There is no way to > install "Just the IO" or "Just the data access" pieces of the .NET > Framework, nor is there a way to install "Just the webservices piece". > > The Framework runtime (something like a JRE) is a 22mb download. > http://www.microsoft.com/downloads/details.aspx?FamilyId=262D25E3-F589-4 > 842-8157-034D1E7CF3A3&displaylang=en > It includes stuff you need to run apps built on .NET. > > The Framework SDK (like JDK) is a ~120mb download. > http://www.microsoft.com/downloads/details.aspx?familyid=9b3a2ca6-3647-4 > 070-9f41-a333c6b9181d&displaylang=en > > The SDK includes command line tools for building apps that run on the > .NET Framework: compilers, debuggers, and other tools and utilities > related to app development. There are no visual tools included in the > SDK (except for a visual debugger). > > In a twist, the Framework *runtime* (the 22mb thing) includes compilers > for VB.NET and C#. So you could just download that. Write apps in any > text editor, compile them with vbc.exe or csc.exe. > > If you want to sign assemblies, do debugging, use makefiles, or use XML > Serialization, then you will also want the full SDK. If you want to > generate client-side proxies from a WSDL file, then you need the SDK, as > it includes the wsdl.exe tool. > > Both the Framework and SDK are free downloads, though of course you have > to already have licensed Windows. > > If you install either of the above and you use Windows Update, you will > be promoted to install SP1 of the .NET Framework, soon. > > Now, separate from those things, Visual Studio .NET is the visual > development environment. It's big, installs from a DVD. It requires > the .NET SDK. It's a commercial tool, prices vary. > > Unlike some Java environments, which bundle a runtime install (JRE) in > the SDK (JDK), with .NET that is not the case. So you must install both > the runtime piece and the SDK piece, if you want to use the .NET > Framework SDK. > > > -----Original Message----- > From: babloosony [mailto:babloosony@gmail.com] > Sent: Sunday, March 06, 2005 6:34 AM > To: axis-user@ws.apache.org; axis-dev@ws.apache.org > Subject: Interropability testing between j2ee and .NET > > Hi All, > > I have exposed ejb as document/wrapped web service on java platform that > uses AXIS 1.2 RC2. I can test also successfully consume the ejb web > service. However I want to write a client in .NET and consume my > j2ee/java ejb document/wrapped web service. > > Now my question is can I install light weight .NET soap toolkit on my > windows 2000 computer and consume wsdl exposed by my j2ee based > websphere 5.0 application server deployed ejb web service. I dont want > to install the heavy weight .NET MS-Visual Studio that has .NET soap > toolkit in it to do this interropability testing. Can anyone please > redirect me to relevant docs, links and information. > > Thanks & Regards, > Kumar. >