Return-Path: Delivered-To: apmail-ws-axis-user-archive@www.apache.org Received: (qmail 48336 invoked from network); 28 Jun 2004 18:09:04 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 28 Jun 2004 18:09:04 -0000 Received: (qmail 66937 invoked by uid 500); 28 Jun 2004 18:09:05 -0000 Delivered-To: apmail-ws-axis-user-archive@ws.apache.org Received: (qmail 66874 invoked by uid 500); 28 Jun 2004 18:09:03 -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: Delivered-To: mailing list axis-user@ws.apache.org Received: (qmail 66859 invoked by uid 99); 28 Jun 2004 18:09:02 -0000 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [62.65.148.17] (HELO adriana.s-h.ch) (62.65.148.17) by apache.org (qpsmtpd/0.27.1) with ESMTP; Mon, 28 Jun 2004 11:09:01 -0700 content-class: urn:content-classes:message Subject: WS that retrieve username and passwords MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Date: Mon, 28 Jun 2004 20:14:33 +0200 Message-ID: X-MimeOLE: Produced By Microsoft Exchange V6.0.6249.0 X-MS-Has-Attach: X-MS-TNEF-Correlator: Thread-Topic: WS that retrieve username and passwords Thread-Index: AcRdM7mRAFSidxMwQqm0XanOiNelTQAB96xA From: "Michael Muller" To: X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N Hi all, I have a Java Client that make this request=A0: Service service =3D new Service(); Call call =3D (Call) service.createCall(); call.setTargetEndpointAddress( new java.net.URL(endpoint) ); call.setOperationName( new QName("urn:bc", "execute")); call.setUsername( username ); call.setPassword( password ); xmlResponse =3D (String) call.invoke( new Object[] {"Default", = xmlRequest } ); I need to create a service that respond this client. So I've created a server class: public class Urnbc { public String execute(Object param1, Object param2){ // } } My question is: How to retrieve the password and username from this class? Thanks in advance, Michael