public class WebViewActivity extends Activity {
private WebView webView;
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.webview);
Bundle extras = getIntent().getExtras();
String a =extras.getString("txtPub");
String b =extras.getString("txtPriv");
webView = (WebView) findViewById(R.id.web_view);
webView.getSettings().setJavaScriptEnabled(true);
webView.loadUrl("http://volkova.eu01.aws.af.cm/login/"+a+"+"+b+"/facebook");
when I put a dummy url like http://volkova.eu01.aws.af.cm/login/"type"+"test"/facebook this it also cant connect to the server. but when I manually type in on a stock browser it can connect to the server.