The ClientBackend class needs to connect to the FedOne server. You have it configured to connect to 127.0.0.1. That's the local loopback address. I imagine that App Engine does not allow connections to 127.0.0.1 (or any other Google internal IP space). Also, you are not running the FedOne server in an App Engine service. You will have to run FedOne on a separate internet addressable server, then use that IP:port when instantiating ClientBackend. This is not secure BTW.
-Tad On Thu, Sep 17, 2009 at 11:44 AM, leadylynx <[email protected]> wrote: > > Hi, I have next problem. > I put this code in my servlet in App Engine project : > new ClientBackend("ad...@localhost", "127.0.0.1", 9876); > Then i run it(i mean my project). And have this exception in result: > java.security.AccessControlException: access denied > (java.net.SocketPermission 127.0.0.1:9876 connect,resolve) > Can anyone say why this happens? > > (excuse me if i should place this message not at Wave Protocol forum) > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Wave Protocol" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/wave-protocol?hl=en -~----------~----~----~----~------~----~------~--~---
