Hi again Deepak,

Indeed, this got put on hold because, while we do refer people to Stack 
Overflow, Stack has its own set of rules for questions, and your question 
is "on hold" because it's not clear reading it that your issue is code 
related. Reading your question, it's unclear where your issue arises and 
what causes it. Honestly looking into it I'd just say "ask your network 
admin to check your firewall", because with the info you gave, the issue 
seems to be there. This makes it off-topic for stack indeed. Including more 
information will get it reopened, provided that the added information 
follows Stack's "how to ask a good question" article 
<http://stackoverflow.com/help/how-to-ask>.

But again, even if you add code, this is still a bit unclear, as it's still 
not indicated what fails to access what. Is it your dev_server that cannot 
access one URL, all URLs, or is it that once you deploy, your app cannot 
access some URLs, or other appspots, or even your devserver?

I would suggest you edit your question extensively on Stack, including the 
code you've just given, and a clearer problem statement. At that point the 
question will be sent to the "reopen" queue, where members can vote to have 
it reopened for answers.

Cheers!

On Wednesday, July 29, 2015 at 10:50:39 AM UTC-4, Deepak Kumar wrote:
>
> 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
>  
> <http://www.google.com/url?q=http%3A%2F%2Fstackoverflow.com%2Fquestions%2F31685166%2Fgoogle-appengine-firewall-notificationyour-access-has-been-blocked-by-firewal&sa=D&sntz=1&usg=AFQjCNG5feSR3dO0Xk6OqvpvogBY6GDkuA>
>  
> ) 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 google-appengine+unsubscr...@googlegroups.com.
To post to this group, send email to google-appengine@googlegroups.com.
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/111f4ac2-7e62-4d28-8861-6b149ecc6f24%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to