Hello,
I created a GWT application, tested it locally and later deployed it on Appengine. Everything was working well. Later I added code that uses SDC (Secure Data Connector). It looks something like this..
URLFetchService fetcher = URLFetchServiceFactory.getURLFetchService();
HTTPRequest fetchreq = new HTTPRequest(dataURL);
HTTPResponse resp = fetcher.fetch(fetchreq);
Every time I run it, the fetcher.fetch method throws an exception that says... "com.google.apphosting.api.ApiProxy$CallNotFoundException: The API package 'urlfetch' or call 'Fetch()' was not found."
I tried changing the classpath, but nothing seems to help.
I created a separate GWT application given in the tutorial and added the above code to it. It works just fine, which implies that something is wrong with my project setup... missing jar in Classpath.. or something like that.
Please help. Thanks.
--
You received this message because you are subscribed to the Google Groups "Google App Engine" group.
To post to this group, send email to
google-a...@googlegroups.com.
To unsubscribe from this group, send email to
google-appengi...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/google-appengine?hl=en.