-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1
kpalania,
kpalania wrote:
> I am trying to access a REST service from within an application deployed in
> Tomcat but, however, this call seems to fail:
>
> PostMethod method = new PostMethod("http://...";);
>
> I am able to call the same service usi
this is AXIS REST code .. structure your client code as
String epr="http://MySiteIsGreatestSiteOnEarth.com";;
ServiceClient client = new ServiceClient();
Options options = new Options();
client.setOptions(options);
options.setTo(new Endp
On Wed, Dec 3, 2008 at 11:17 PM, kpalania <[EMAIL PROTECTED]> wrote:
>
> I am trying to access a REST service from within an application deployed in
> Tomcat but, however, this call seems to fail:
>
> PostMethod method = new PostMethod("http://...";);
>
> I am able to call the same service using Po