Return-Path: Delivered-To: apmail-ws-axis-user-archive@www.apache.org Received: (qmail 76683 invoked from network); 18 Apr 2008 04:04:18 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 18 Apr 2008 04:04:18 -0000 Received: (qmail 52806 invoked by uid 500); 18 Apr 2008 04:04:11 -0000 Delivered-To: apmail-ws-axis-user-archive@ws.apache.org Received: (qmail 52783 invoked by uid 500); 18 Apr 2008 04:04:11 -0000 Mailing-List: contact axis-user-help@ws.apache.org; run by ezmlm Precedence: bulk Reply-To: axis-user@ws.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list axis-user@ws.apache.org Received: (qmail 52772 invoked by uid 99); 18 Apr 2008 04:04:11 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 17 Apr 2008 21:04:11 -0700 X-ASF-Spam-Status: No, hits=2.0 required=10.0 tests=HTML_MESSAGE,HTTP_ESCAPED_HOST,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of harichandrasekhar@gmail.com designates 209.85.198.226 as permitted sender) Received: from [209.85.198.226] (HELO rv-out-0506.google.com) (209.85.198.226) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Apr 2008 04:03:28 +0000 Received: by rv-out-0506.google.com with SMTP id k40so182061rvb.28 for ; Thu, 17 Apr 2008 21:03:41 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to:subject:mime-version:content-type; bh=9bavCDaNeygjSycVfRMYkqwSbWLhMHZLYQj7G9CIkIo=; b=W/T263iyLiFCK04M/XpEfnnwYIrSRlhC+3cGj9X3N9Z/k2Ix4WkJASmJxjFEZ0fsPa4p2BcsXqzYdqUuSnRo6ze5pzYhoUzIzLCzRDlKaFHoFOjyQb164El6d0v8Vw1NZLRftnImdTD3pjycRmhz341BSYdd//x5LtBcb+VKPCY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:mime-version:content-type; b=PC1c8c1rFRPfn6Yt4tHiCkODN6p2ba73a0b01TQ1cYwnw1rH2ZUW0cVa+381RrN7BhiDnuZLBFs+ZI0vjnUvg/AaE5OVyjVpiftcLmULkXjeZwEV+PTtN69kSKc1ZCHzukTBx0C5d1i03GDGc7dy1kR37TeYYZY8D8JTAZQEfNM= Received: by 10.141.71.8 with SMTP id y8mr1264354rvk.63.1208491421523; Thu, 17 Apr 2008 21:03:41 -0700 (PDT) Received: by 10.141.84.18 with HTTP; Thu, 17 Apr 2008 21:03:41 -0700 (PDT) Message-ID: <51b3d9a20804172103o688abc44r8b022252ec1f0d3b@mail.gmail.com> Date: Fri, 18 Apr 2008 14:03:41 +1000 From: "Hari C" To: axis-user@ws.apache.org Subject: Client Not able to invoke the webservice MIME-Version: 1.0 Content-Type: multipart/alternative; boundary="----=_Part_2115_1387507.1208491421512" X-Virus-Checked: Checked by ClamAV on apache.org ------=_Part_2115_1387507.1208491421512 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline I have a webservice which is running in weblogic application server.All the request to the weblogic from the external world comes to the weblogic through iplanet webserver. The webservice which i have written is servicing two clients. one is External application and the request from this application comes through the iplanet and the second one is an internal application which runs in the same application server, same domain but in a different EAR. For the second client i have provided axis generated client stub to invoke the webserver. The outside application is able to invoke the service properly using my URL which is like http:// Name>/services/MyService . When it comes to the internal user which uses the AXIS generated client code for accessing the webservice is getting an error when the same URL is given. i.e. by using the DNS name it is failing.The error message is "Un Known " When i use my instead of the it is working fine.I was expecting that the stub will send the request like how the external system sends i.e. client will send the http request to the internet and then DNS name will be resolved and it comes back to my service via iplanet. When i change it to host name is it some thing like a local invocation is done? I would like to know why the same URL which is working for the external system is not working for the intrernal client. Could any one tell me how actually client generates a http request? Is it the same way a web browser generates it. Is there a good document which explains how axis client generates the http request. -- Hari.C ------=_Part_2115_1387507.1208491421512 Content-Type: text/html; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline

I have a webservice which is running in weblogic application server.All the request to the weblogic from the external world comes to the weblogic through

iplanet webserver. The webservice which i have written is servicing two clients. one is External application and the request from this application comes

through the iplanet and the second one is an internal application which runs in the same application server, same domain but in a different EAR. For the

second client i have provided axis generated client stub to invoke the webserver.

The outside application is able to invoke the service properly using my URL which is like http://<DNS Name>/services/MyService .

When it comes to the internal user which uses the AXIS generated client code for accessing the webservice is getting an error when the same URL is given. i.e.

by using the DNS name it is failing.The error message is "Un Known <DNS name>"

When i use my <hostname> instead of the <DNS name> it is working fine.I was expecting that the stub will send the request like how the external system sends

i.e. client will send the http request to the internet and then DNS name will be resolved and it comes back to my service via iplanet. When i change it to

host name is it some thing like a local invocation is done?

I would like to know why the same URL which is working for the external system is not working for the intrernal client. Could any one tell me how actually

client generates a http request? Is it the same way a web browser generates it. Is there a good document which explains how axis client generates the http

request.


--
Hari.C

------=_Part_2115_1387507.1208491421512--