Hi
I have built app that display asp pages using WebView but some of the
page want the authentication (Username ,Password ) to login I want my
application to auto login to this page using Username and Password
from my Application
This is my code Please Help
public class eadvantage extends Activity {
/** Called when the activity is first created. */
WebView mWebView; @Override public void onCreate(Bundle
savedInstanceState) { super.onCreate(savedInstanceState);
setContentView(R.layout.eadvantage);
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost("http://www.ucsi.edu.my/
advantage/new/main.asp");
try {
// Add your data
List<NameValuePair> nameValuePairs = new
ArrayList<NameValuePair>(2);
nameValuePairs.add(new BasicNameValuePair("txtUserID",
"12345));
nameValuePairs.add(new BasicNameValuePair("txtPassword",
"12345"));
httppost.setEntity(new UrlEncodedFormEntity(nameValuePairs));
// Execute HTTP Post Request
HttpResponse response = httpclient.execute(httppost);
mWebView = (WebView) findViewById(R.id.webview);
mWebView.getSettings().setJavaScriptEnabled(true);
mWebView.loadUrl("http://www.ucsi.edu.my/advantage/new/
main.asp");
mWebView.setWebViewClient(new WebViewClient());
--
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en