我正在尝试使用javax servlet将java中的桌面应用程序连接到谷歌应用引擎。但我不知道该怎么做。
登录的网络服务器管理器就像这样
public class UserServicesP3Servlet extends HttpServlet
{
public void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOException
{
doGet(req,resp);
}
并在浏览器中使用
连接else if(address.indexOf("/dinamicas/login")!=-1)
{
StringMaisAutenticado sma = Autenticacao.login(req,resp,param1,param2);
resposta = sma.string;
utilizadorAutenticado = sma.utilizadorAutent;
}
我不确定要在桌面上做什么来登录。有人能指出我正确的方向吗?
感谢您的时间。