I already have an existing application implemented using java in app engine....now i want to connect this servlet from c# forms program ?,...this is the tried out code for request
HttpWebRequest authRequest = (HttpWebRequest)HttpWebRequest.Create(googleLoginUrl);
byte[] buffer = Encoding.ASCII.GetBytes(postData);
authRequest.ContentLength = buffer.Length;
Stream postDataStr=authRequest.GetRequestStream();
postDataStr.Write(buffer, 0, buffer.Length);
postDataStr.Close();
now it is connected to the GSE(Google Servlet Engine)...i want a response for this....how to implement that?