You are viewing a plain text version of this content. The canonical link for it is here.
Posted to java-dev@axis.apache.org by Adhamh Findlay <af...@austin.rr.com> on 2003/07/23 21:25:01 UTC

DOH.. Actually port 5049 is closed on nagoya Re: 15695 - user guide web service does not exist

Call me Homer...

I'll send an email to the webmaster and ask what's up.

Adhamh

On 7/23/03 1:22 PM, "Adhamh Findlay" <af...@austin.rr.com> wrote:

> So I'm working on 15695.  Simple bug.  The example web service used doesn't
> seem to exist.   http://soapinterop.org takes me to a domain parking page
> from register.com...
> 
> Are there any services on ws.apache.org that I could use instead?  If not
> could I write one to be hosted there for examples such as this?
> 
> public class TestClient
> {
>  public static void main(String [] args) {
>      try {
>          System.out.println("Trying nagoya");
>          String endpoint =
>                   "http://nagoya.apache.org:5049/axis/services/echo";
>    
>          Service  service = new Service();
>          Call     call    = (Call) service.createCall();
> 
>          call.setTargetEndpointAddress( new java.net.URL(endpoint) );
>          System.out.println("Trying echoString");
>          call.setOperationName(new QName("http://soapinterop.org/",
> "echoString") );
> 
>          // Call to addParameter/setReturnType as described in
> user-guide.html
>          //call.addParameter("testParam",
>          //                  org.apache.axis.Constants.XSD_STRING,
>          //                  javax.xml.rpc.ParameterMode.IN);
>          //call.setReturnType(org.apache.axis.Constants.XSD_STRING);
> 
>          String ret = (String) call.invoke( new Object[] { "Hello!" } );
> 
>          System.out.println("Sent 'Hello!', got '" + ret + "'");
>      } catch (Exception e) {
>          System.err.println(e.toString());
>      }
>  }
> }
> 
> [amsterdam:samples/userguide/example1] adhamh# java
> samples.userguide.example1.TestClient
> java.net.ConnectException: Connection refused
> 
> 


Re: Nagoya, who to contact?Re: DOH.. Actually port 5049 is closed on nagoya

Posted by Tetsuya Kitahata <te...@nifty.com>.
On Fri, 25 Jul 2003 10:55:31 -0500
(Subject: Nagoya, who to contact?Re: DOH..  Actually port 5049 is closed on nagoya)
Adhamh Findlay <af...@austin.rr.com> wrote:

> On 7/23/03 2:25 PM, "Adhamh Findlay" <af...@austin.rr.com> wrote:
> 
> > Call me Homer...
> > 
> Does anyone know who to contact about nagoya issues?  I sent an email to
> pier@apache.org, but I haven't heard anything back.

He is in japan (vacation!) now, however, I can not contact with him
too.... Pierrrrrrrrrrrrrrrr!!! where are you!?!?! ;-)

(Maybe stefano@apache.org can help you...)

Sincerely,

-- Tetsuya. (tetsuya@apache.org)

-----------------------------------------------------
Tetsuya Kitahata --  Terra-International, Inc.
E-mail: kitahata@bb.mbn.or.jp : tetsuya@apache.org
http://www.terra-intl.com/
(Apache Jakarta Translation, Japanese)
http://jakarta.terra-intl.com/


Re: Nagoya, who to contact?Re: DOH.. Actually port 5049 is closed on nagoya

Posted by Steve Loughran <st...@iseran.com>.
Adhamh Findlay wrote:

> On 7/23/03 2:25 PM, "Adhamh Findlay" <af...@austin.rr.com> wrote:
> 
> 
>>Call me Homer...
>>
> 
> Does anyone know who to contact about nagoya issues?  I sent an email to
> pier@apache.org, but I haven't heard anything back.

sam ruby is the keeper of the port 5049 server; rubys@apache.org. If it 
isnt running, it is probably due to some nightly build/deployment defect


Re: Nagoya, who to contact?Re: DOH.. Actually port 5049 is closed on nagoya

Posted by Davanum Srinivas <di...@yahoo.com>.
I will take care of this early next week.

Thanks,
dims

--- Adhamh Findlay <af...@austin.rr.com> wrote:
> On 7/23/03 2:25 PM, "Adhamh Findlay" <af...@austin.rr.com> wrote:
> 
> > Call me Homer...
> > 
> Does anyone know who to contact about nagoya issues?  I sent an email to
> pier@apache.org, but I haven't heard anything back.
> 
> Thanks,
> 
> A
> 
> > I'll send an email to the webmaster and ask what's up.
> > 
> > Adhamh
> > 
> > On 7/23/03 1:22 PM, "Adhamh Findlay" <af...@austin.rr.com> wrote:
> > 
> >> So I'm working on 15695.  Simple bug.  The example web service used doesn't
> >> seem to exist.   http://soapinterop.org takes me to a domain parking page
> >> from register.com...
> >> 
> >> Are there any services on ws.apache.org that I could use instead?  If not
> >> could I write one to be hosted there for examples such as this?
> >> 
> >> public class TestClient
> >> {
> >>  public static void main(String [] args) {
> >>      try {
> >>          System.out.println("Trying nagoya");
> >>          String endpoint =
> >>                   "http://nagoya.apache.org:5049/axis/services/echo";
> >>    
> >>          Service  service = new Service();
> >>          Call     call    = (Call) service.createCall();
> >> 
> >>          call.setTargetEndpointAddress( new java.net.URL(endpoint) );
> >>          System.out.println("Trying echoString");
> >>          call.setOperationName(new QName("http://soapinterop.org/",
> >> "echoString") );
> >> 
> >>          // Call to addParameter/setReturnType as described in
> >> user-guide.html
> >>          //call.addParameter("testParam",
> >>          //                  org.apache.axis.Constants.XSD_STRING,
> >>          //                  javax.xml.rpc.ParameterMode.IN);
> >>          //call.setReturnType(org.apache.axis.Constants.XSD_STRING);
> >> 
> >>          String ret = (String) call.invoke( new Object[] { "Hello!" } );
> >> 
> >>          System.out.println("Sent 'Hello!', got '" + ret + "'");
> >>      } catch (Exception e) {
> >>          System.err.println(e.toString());
> >>      }
> >>  }
> >> }
> >> 
> >> [amsterdam:samples/userguide/example1] adhamh# java
> >> samples.userguide.example1.TestClient
> >> java.net.ConnectException: Connection refused
> >> 
> >> 
> > 
> 


=====
Davanum Srinivas - http://webservices.apache.org/~dims/

__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

Nagoya, who to contact?Re: DOH.. Actually port 5049 is closed on nagoya

Posted by Adhamh Findlay <af...@austin.rr.com>.
On 7/23/03 2:25 PM, "Adhamh Findlay" <af...@austin.rr.com> wrote:

> Call me Homer...
> 
Does anyone know who to contact about nagoya issues?  I sent an email to
pier@apache.org, but I haven't heard anything back.

Thanks,

A

> I'll send an email to the webmaster and ask what's up.
> 
> Adhamh
> 
> On 7/23/03 1:22 PM, "Adhamh Findlay" <af...@austin.rr.com> wrote:
> 
>> So I'm working on 15695.  Simple bug.  The example web service used doesn't
>> seem to exist.   http://soapinterop.org takes me to a domain parking page
>> from register.com...
>> 
>> Are there any services on ws.apache.org that I could use instead?  If not
>> could I write one to be hosted there for examples such as this?
>> 
>> public class TestClient
>> {
>>  public static void main(String [] args) {
>>      try {
>>          System.out.println("Trying nagoya");
>>          String endpoint =
>>                   "http://nagoya.apache.org:5049/axis/services/echo";
>>    
>>          Service  service = new Service();
>>          Call     call    = (Call) service.createCall();
>> 
>>          call.setTargetEndpointAddress( new java.net.URL(endpoint) );
>>          System.out.println("Trying echoString");
>>          call.setOperationName(new QName("http://soapinterop.org/",
>> "echoString") );
>> 
>>          // Call to addParameter/setReturnType as described in
>> user-guide.html
>>          //call.addParameter("testParam",
>>          //                  org.apache.axis.Constants.XSD_STRING,
>>          //                  javax.xml.rpc.ParameterMode.IN);
>>          //call.setReturnType(org.apache.axis.Constants.XSD_STRING);
>> 
>>          String ret = (String) call.invoke( new Object[] { "Hello!" } );
>> 
>>          System.out.println("Sent 'Hello!', got '" + ret + "'");
>>      } catch (Exception e) {
>>          System.err.println(e.toString());
>>      }
>>  }
>> }
>> 
>> [amsterdam:samples/userguide/example1] adhamh# java
>> samples.userguide.example1.TestClient
>> java.net.ConnectException: Connection refused
>> 
>> 
>