为什么老是报Unconnected sockets not implemented翻译错误

下次自动登录
现在的位置:
& 综合 & 正文
svn切换用户,报“501 Method Not Implemented”错误
在项目上右键,选择TortoiseSVN--&settings,在弹出的TortoiseSVN Settings页面中选择“Saved Data”选项,然后点击“Authentication data”对应的“Clear”按钮,清除一下之前的认证信息就可以了。
&&&&推荐文章:
【上篇】【下篇】Stack Overflow is a community of 4.7 million programmers, just like you, helping each other. Join them, it only takes a minute:
Iam using HTTPClient 4.0 to connect a remote server and transfer file using HTTPS.
When i tried to connect i get the exception "java.net.SocketException: Unconnected sockets not implemented".
Please look at the stack trace
java.net.SocketException: Unconnected sockets not implemented
at java.lang.Throwable.&init&(Throwable.java:196)
at java.lang.Exception.&init&(Exception.java:41)
at java.io.IOException.&init&(IOException.java:40)
at java.net.SocketException.&init&(SocketException.java:29)
at javax.net.SocketFactory.createSocket(SocketFactory.java:2)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at mons.httpclient.protocol.ReflectionSocketFactory.createSocket(Unknown Source)
at mons.httpclient.protocol.SSLProtocolSocketFactory.createSocket(Unknown Source)
at mons.httpclient.HttpConnection.open(Unknown Source)
at mons.httpclient.HttpMethodDirector.executeWithRetry(Unknown Source)
at mons.httpclient.HttpMethodDirector.executeMethod(Unknown Source)
at mons.httpclient.HttpClient.executeMethod(Unknown Source)
at mons.httpclient.HttpClient.executeMethod(Unknown Source)
.personalsoft.ftpseguro.utilidades.TransmisionHTTP.ejecutarTransmisionHTTP(TransmisionHTTP.java:107)
.personalsoft.ftpseguro.utilidades.TransmisionFTPNew.ejecutarTransmisionAuto(TransmisionFTPNew.java:483)
.personalsoft.ftpseguro.utilidades.TransmisionFTPNew.ejecutarTransmision(TransmisionFTPNew.java:1016)
.personalsoft.ftpautomatico.ConexionThread.run(ConexionThread.java:58)
at java.lang.Thread.run(Thread.java:595)
The same error is found while using HTTP Client 3.1.
My Environment
Application Server : Websphere application server 6.1.0.23
Java : JDK 1.5.0.16
Actually a more complete answer than suppressingfire is
Add com.ibm.ws.admin.client_7.0.0.jar to java build
This solves the java.lang.NoClassDefFoundError: com.ibm.ffdc.Manager error.
Add to setup:
import java.security.S
Security.setProperty("ssl.SocketFactory.provider", "com.ibm.jsse2.SSLSocketFactoryImpl");
This solves the Cannot find the specified class com.ibm.websphere.ssl.protocol.SSLSocketFactory
43.4k1187134
When I enabled javax.net.debug, I noticed that there was a missing class com..ibm.websphere.ssl.protocol.SSLSocketFactory.
I was experiencing trouble in unit tests that invoke httpclient. What I ended up doing was to add this line to my TestClass.setUp()
Security.setProperty("ssl.SocketFactory.provider", "com.ibm.jsse2.SSLSocketFactoryImpl");
Your Answer
Sign up or
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Post as a guest
By posting your answer, you agree to the
Not the answer you're looking for?
Browse other questions tagged
Stack Overflow works best with JavaScript enabledStack Overflow is a community of 4.7 million programmers, just like you, helping each other. Join them, it only takes a minute:
Iam using HTTPClient 4.0 to connect a remote server and transfer file using HTTPS.
When i tried to connect i get the exception "java.net.SocketException: Unconnected sockets not implemented".
Please look at the stack trace
java.net.SocketException: Unconnected sockets not implemented
at java.lang.Throwable.&init&(Throwable.java:196)
at java.lang.Exception.&init&(Exception.java:41)
at java.io.IOException.&init&(IOException.java:40)
at java.net.SocketException.&init&(SocketException.java:29)
at javax.net.SocketFactory.createSocket(SocketFactory.java:2)
at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
at java.lang.reflect.Method.invoke(Method.java:585)
at mons.httpclient.protocol.ReflectionSocketFactory.createSocket(Unknown Source)
at mons.httpclient.protocol.SSLProtocolSocketFactory.createSocket(Unknown Source)
at mons.httpclient.HttpConnection.open(Unknown Source)
at mons.httpclient.HttpMethodDirector.executeWithRetry(Unknown Source)
at mons.httpclient.HttpMethodDirector.executeMethod(Unknown Source)
at mons.httpclient.HttpClient.executeMethod(Unknown Source)
at mons.httpclient.HttpClient.executeMethod(Unknown Source)
.personalsoft.ftpseguro.utilidades.TransmisionHTTP.ejecutarTransmisionHTTP(TransmisionHTTP.java:107)
.personalsoft.ftpseguro.utilidades.TransmisionFTPNew.ejecutarTransmisionAuto(TransmisionFTPNew.java:483)
.personalsoft.ftpseguro.utilidades.TransmisionFTPNew.ejecutarTransmision(TransmisionFTPNew.java:1016)
.personalsoft.ftpautomatico.ConexionThread.run(ConexionThread.java:58)
at java.lang.Thread.run(Thread.java:595)
The same error is found while using HTTP Client 3.1.
My Environment
Application Server : Websphere application server 6.1.0.23
Java : JDK 1.5.0.16
Actually a more complete answer than suppressingfire is
Add com.ibm.ws.admin.client_7.0.0.jar to java build
This solves the java.lang.NoClassDefFoundError: com.ibm.ffdc.Manager error.
Add to setup:
import java.security.S
Security.setProperty("ssl.SocketFactory.provider", "com.ibm.jsse2.SSLSocketFactoryImpl");
This solves the Cannot find the specified class com.ibm.websphere.ssl.protocol.SSLSocketFactory
43.4k1187134
When I enabled javax.net.debug, I noticed that there was a missing class com..ibm.websphere.ssl.protocol.SSLSocketFactory.
I was experiencing trouble in unit tests that invoke httpclient. What I ended up doing was to add this line to my TestClass.setUp()
Security.setProperty("ssl.SocketFactory.provider", "com.ibm.jsse2.SSLSocketFactoryImpl");
Your Answer
Sign up or
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Post as a guest
By posting your answer, you agree to the
Not the answer you're looking for?
Browse other questions tagged
Stack Overflow works best with JavaScript enabledinformix数据库报not implemented yet的SQL错误是什么原因造成的_百度知道
informix数据库报not implemented yet的SQL错误是什么原因造成的
我有更好的答案
not implemented yet 即未执行意思再仔细查看哪步没执行
两个数据库的日志模式是否一致?可以检查一下。
其他类似问题
为您推荐:
informix的相关知识
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁VMware Workstation 无法恢复错误: (vcpu-0) NOT_IMPLEMENTED 请问怎么解决,这个虚拟机_百度知道
VMware Workstation 无法恢复错误: (vcpu-0) NOT_IMPLEMENTED 请问怎么解决,这个虚拟机
VMware Workstation 恢复错误: (vcpu-0) NOT_IMPLEMENTED d:/build/ob/bora-;bora/devices/mainmem/mainMemHosted.c:2122 志文件位于 E:\虚拟机系统\vmware.log
核文件位于 E:\虚拟机系统\vmware-vmx-2316.dmp
请请求支持并包含志文件与核文件内容
要收集提交 VMware 技术支持数据请帮助菜单选择收集支持数据 直接运行 Workstation 目录vm-support脚本. 我基本支持权力进行复
提问者采纳
客户机使用VMWare虚拟CPU没实现功能直接装宿主机吧用麻烦
提问者评价
感谢你的回答。。Q
其他类似问题
为您推荐:
vmware的相关知识
其他1条回答
虚拟机行虚拟机系统行 啊系统行直接栓楼知道虚拟机汉化
等待您来回答
下载知道APP
随时随地咨询
出门在外也不愁}

我要回帖

更多关于 implemented翻译 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信