thank u sankalp,
the error was because i didn't include that jar in the classpath.
but now i'm getting ane error after compilation, while running the client java program..
Exception in thread "main" java.lang.NoClassDefFoundError:org/jvnet/fastinfoset/FastInfosetSource
and my client program is as given below:
// Standard libraries
import javax.xml.rpc.Service;
import javax.xml.rpc.Stub;
// Our glue code
import qotd.Qotd_Service_Impl;
import qotd.Qotd_PortType;
public class qotdClient {
public static String getQuote() throws Exception
{
Qotd_Service_Impl service = new Qotd_Service_Impl();
Qotd_PortType port = service.getQotdPort();
String quote = port.getQuote();
return (quote);
}
public static void main(String[] args)throws Exception
{
try{
String quote = getQuote();
System.out.println(quote);
}
catch (Exception e) {e.printStackTrace();}
}
}