在android中,我收到以下错误:
NativeStart.main(String [])行:不可用[本机方法]
我的代码正在尝试使用Web服务:
import java.io.IOException;
import android.app.Activity;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
import android.os.Bundle;
import org.ksoap2.SoapEnvelope;
import org.ksoap2.serialization.SoapObject;
import org.ksoap2.serialization.SoapSerializationEnvelope;
import org.ksoap2.transport.HttpTransportSE;
import org.xmlpull.v1.XmlPullParserException;
import android.app.*;
import android.content.Context;
import android.os.*;
import android.widget.TextView;
import android.net.ConnectivityManager;
import android.net.NetworkInfo;
public class Project_InvokeServiceActivity extends Activity {
/** Called when the activity is first created. */
private static final String SOAP_ACTION = "http://tempuri.org/userg";
private static final String METHOD_NAME = "userg";
private static final String NAMESPACE = "http://tempuri.org/";
private static final String URL = "https://amaman.NewService/Permissions.asmx";
// TextView tv;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
// tv=(TextView)findViewById(R.id.text1);
// call();
TextView tv = new TextView(this);
SoapObject request = new SoapObject(NAMESPACE, METHOD_NAME);
request.addProperty("username", "222222");
request.addProperty("ID", "123");
SoapSerializationEnvelope envelope = new SoapSerializationEnvelope(SoapEnvelope.VER11);
envelope.dotNet = true;
envelope.setOutputSoapObject(request);
setContentView(tv);
try { HttpTransportSE androidHttpTransport = new HttpTransportSE(URL);
tv.setText("t");
ConnectivityManager cm = (ConnectivityManager) getSystemService(Context.CONNECTIVITY_SERVICE);
NetworkInfo netInfo = cm.getActiveNetworkInfo();
if (netInfo != null && netInfo.isConnectedOrConnecting()) {
tv.setText("connected"+netInfo.getExtraInfo());
}
else{
tv.setText("not conn");
}
try{
androidHttpTransport.call(SOAP_ACTION, envelope);
tv.setText("t1");
}catch(Exception e){
//tv.setText(e.getClass().getName());
}
// tv.setText("inside2");
Object result = (Object)envelope.getResponse();
} catch (Exception e2) {
// TODO Auto-generated catch block
//e.printStackTrace();
TextView tv5 = new TextView(this);
//tv3.setText(e1.getMessage());
// tv.setText(result.toString());
tv5.setText("exception"+e2.getClass()+"xxx");
setContentView(tv);
}
// tv.setText(result.toString());
// tv.setText("inside");
// setContentView(tv);
}
我的程序正在连接到互联网…。但是它在下面的行中引发异常:
androidHttpTransport.call(SOAP_ACTION, envelope);
并且异常messege为NULL。传递的所有参数都是正确的。AndroidManifest.xml也可以。
在Log Cat中,我遇到以下异常:java.net.SocketException:协议不支持地址族
也尝试将其添加到您的AndroidManifest.xml中:
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
您还需要捕获此异常:
catch(SocketException ex)
{
Log.e("Error : " , "Error on soapPrimitiveData() " + ex.getMessage());
ex.printStackTrace();
}
下面的代码是TCP客户端的套接字编程示例。 但当我运行该操作时,connect()作为协议不支持的地址族返回。
IPv6的相同代码可以在WebLogic的同一台机器上工作。 有什么建议吗?
问题内容: 在我编写的一个应用程序中,我在特定计算机上有一个 **java.net.SocketException** : java.net.SocketException:协议族不支持的地址族:connect 这台特定的计算机运行Windows 7 32位,并通过本地连接(Ethernet)连接到Internet。该应用程序可在其他通过Windows 7和Windows 8通过本地连接或Wi-
WorkerMan在接口上支持各种协议,只要符合ConnectionInterface接口即可(参见定制通讯协议章节)。 为了方便开发者,WorkerMan提供了HTTP协议、WebSocket协议以及非常简单的Text文本协议、可用于二进制传输的frame协议。开发者可以直接使用这些协议,不必再二次开发。如果这些协议都不满足需要,开发者可以参照定制协议章节实现自己的协议。 开发者也可以直接基于t
我们正在编写一个应用程序,它必须使用HTTPS与几个服务器通信。它需要与AWS通信(使用AWS库),还需要与我们使用TLS1.2的一些内部服务通信。 我首先将HttpClient更改为使用TLS1.2SSLContext: 并且(通过spring)将这个SchemeRegistry注入到DefaultHttpClient对象中,但是这样做会从AWS得到错误,因此我假设(我可能错了)AWS不支持TL