where is package javax.xml.rpc located?

I'm getting an error like package javax.xml.rpc does not exist when I tries to compile one simple client program in java for the weservice I created..
[179 byte] By [Hilara] at [2007-10-2 11:01:36]
# 1
hi ,The classes you are looking for will be present in jaxrpc.jarYou can download this jar file and also the related jar files from the location http://java.sun.com/xml/downloads/javaxmlpack.html Thanks
sankalpa at 2007-7-13 3:32:38 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 2

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();}

}

}

Hilara at 2007-7-13 3:32:38 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...
# 3
Looks like your missing another jar FastInfoset.jar or something similar thathas that class in it.
ARTFISHa at 2007-7-13 3:32:38 > top of Java-index,Enterprise & Remote Computing,Enterprise Technologies...