String arrays

2003-10-16 Thread justin avaya
Hi, I wanted to know if we could pass String arrays in our business logic through AXIS to the client. Thank you. _ See when your friends are online with MSN Messenger 6.0. Download it now FREE! http://msnmessenger-download.com

JAX-RPC over HTTPS

2003-08-21 Thread Justin Avaya
Hi,I'm able to use SSL for JAX-RPC for basic and mutual authentication. However, this requires a certficiate to be installed at the client. I would like to develop an java client to access a JAX-RPC server. All the contents need to be encrypted but I don't need any type for client / server a

Re: java classpath

2003-08-21 Thread Justin Avaya
A good resource I made use of for making AXIS work for the first taime was http://www.pankaj-k.net/axis4tag/ http://www.pankaj-k.net/webservices/index.html chk it out. It tells you abt class path to if you download a pkg ther and read it - Original Message - From: "srinivas reddy" <[EMAIL

Re: HTTPS Server

2003-08-21 Thread Justin Avaya
Have the server only listen to port 443. configure it to not listen to port 80.   -Original Message-From: Justin Avaya [mailto:[EMAIL PROTECTED] Sent: Tuesday, August 19, 2003 9:30 PMTo: [EMAIL PROTECTED]Subject: HTTPS Server   Hi, I am running a web service

HTTPS Server

2003-08-19 Thread Justin Avaya
Hi, I am running a web service on our server [Tomcat]. I can view my interface by doing http://myserver.com/service/Bean1?wsdl I can also view by doing https://myserver.com/service/Bean1?wsdl . The interface changes accordingly to http and https,   Question: Is there to way to allow the requ

Re: client Ip address

2003-08-15 Thread Justin Avaya
gt; ... > if ( req != null ) { > req.getRemoteAddr(); > req.getRemoteHost(); > } > > > > --- Justin Avaya <[EMAIL PROTECTED]> wrote: > > Hi, > > I am writing a simple Java program and using > Apache > > Axis to generate the w

client Ip address

2003-08-14 Thread Justin Avaya
Hi, I am writing a simple Java program and using Apache Axis to generate the web service. I am writing the server. I need to capture the IP address of the client who is trying to connect to me to log him in my database. In a servelt I would use the request object. How do I do it here.   Tha