Hi ,

I tried to parse the Http url and parse the json response in my web 
application using GAE. The same piece of code in normal web application 
working perfect.
But in case of GAE the output is comming in the below error in console.

Access DeniedYou don't have permission to access 
"http://nseindia.com/live_market/dynaContent/live_watch/get_quote/ajaxGetQuoteJSON.jsp?";
 
on this server.

Reference #18.1fde387d.1414600288.10500f60

Code :

URL page = new URL(ajax + scrip + "&random=" + Math.random() );

System.out.println(page);

BufferedReader br = new BufferedReader(new InputStreamReader(

page.openStream()));

String line = "";

while ((line = br.readLine()) != null) {

// ...

System.out.println(line);

}

Please help me to resolve this issue. Pls drop a mail to 
[email protected], if any one got idea on this 


Thanks in Advance

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-appengine.
For more options, visit https://groups.google.com/d/optout.

Reply via email to