Hello. I made a app with WebView to see the my favorite website, slrclub.com
And, I want to post a article, but it is denied. Plz help me out with this problem. What my App did is 1. connet to http://m.slrclub.com/l/free and try to post with button named "글쓰기", which is on the right upper side. then I got the below message. http://m.slrclub.com/bbs/write.php?id=free&page=1&divpage=2167&ss=on&no=&mode=write&sn1=&sid1=&divpage=2167 which means " please post by the proper method" When I try to post by the default browser, it was OK. But when I'm trying to with webview appl. then, it is failed. Plz help me. attach my codes. @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.main); mWebView = (WebView) findViewById(R.id.webview); mWebView.getSettings().setJavaScriptEnabled(true); mWebView.getSettings().setLoadsImagesAutomatically(true); mWebView.getSettings().setCacheMode(RESULT_CANCELED); mWebView.getSettings().setSupportZoom(true); mWebView.getSettings().setPluginsEnabled(true); mWebView.getSettings().setSupportMultipleWindows(false); mWebView.loadUrl("http://m.slrclub.com/l/free"); mWebView.setWebViewClient(new HelloWebViewClient()); } private class HelloWebViewClient extends WebViewClient { @Override public boolean shouldOverrideUrlLoading(WebView view, String url) { view.loadUrl(url); return true; } } -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to android-developers+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/android-developers?hl=en