Hi Patrice, Thanks for your quick response.
I posted this on Stack Overflow as well ( http://stackoverflow.com/questions/31685166/google-appengine-firewall-notificationyour-access-has-been-blocked-by-firewal ) but they have marked this 'On Hold', and thats why i posted this here. further, just for clarification.. In my web app, I am trying to fetch a url (outside from google cloud network, lets say hosted on AWS or GoDaddy) and if i print that url response.. i get this warning message. And this is coming for every url access. URL url = new URL(urlString); HttpURLConnection conn = (HttpURLConnection) url.openConnection(); conn.setConnectTimeout(REQUEST_TIME_OUT); conn.setReadTimeout(REQUEST_TIME_OUT); conn.setDoOutput(true); int length = dataToBePost.length(); conn.setRequestProperty("Content-Length", (String.valueOf(length))); OutputStreamWriter wr = new OutputStreamWriter(conn.getOutputStream()); wr.write(dataToBePost); wr.flush(); InputStream inStream = conn.getInputStream(); //using inStream now On Wednesday, 29 July 2015 00:46:50 UTC+5:30, Deepak Kumar wrote: > > I am trying to fetch http url in my app, it works fine on my local server > (dev env) but when i deploy this on Google AppEngine.. it shows below > Firewall Notification > > > "Firewall Notification - Your access has been blocked by firewall policy > 732. If you have any further concerns, please contact your network > administrator for more information." > > > I am not getting even a single clue... Can anyone help me out? > -- 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. To view this discussion on the web visit https://groups.google.com/d/msgid/google-appengine/a9c94c52-a34a-43d7-a8ef-00604dc9557d%40googlegroups.com. For more options, visit https://groups.google.com/d/optout.
