【发布时间】:2016-07-13 12:50:19
【问题描述】:
我刚刚尝试创建一个 Demo 类型的新项目(Kitchen Sink)并尝试将其提交(Android Build)到服务器,但它给出了以下 Socket 错误。
我什至没有更改项目中的任何内容;这是原始的演示应用程序。
- Jar 也内置在本地文件夹中
- 我已从 eclipse/codenameone 属性登录我的帐户。
- 我有基本订阅
- 我的网络连接也很好,并且没有使用代理。
- 在 CodeNameOne->Builds 选项卡中看不到任何条目
这是我的 Eclipse 控制台的输出
Buildfile: F:/Setups/Eclipse/workspaceLatest/TestCodeNameOne\build.xml
copy-android-override:
copy-libs:
jar:
[echo] Compile is forcing compliance to the supported API's/features for maximum device compatibility. This allows smaller
[echo] code size and wider device support
[copy] Copying 7 files to F:\Setups\Eclipse\workspaceLatest\TestCodeNameOne\build\tmp
[javac] F:\Setups\Eclipse\workspaceLatest\TestCodeNameOne\build.xml:147: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
[javac] Compiling 19 source files to F:\Setups\Eclipse\workspaceLatest\TestCodeNameOne\build\tmp
[javac] warning: [options] source value 1.5 is obsolete and will be removed in a future release
[javac] warning: [options] target value 1.5 is obsolete and will be removed in a future release
[javac] warning: [options] To suppress warnings about obsolete options, use -Xlint:-options.
[javac] Note: Some input files use or override a deprecated API.
[javac] Note: Recompile with -Xlint:deprecation for details.
[javac] Note: Some input files use unchecked or unsafe operations.
[javac] Note: Recompile with -Xlint:unchecked for details.
[javac] 3 warnings
[jar] Building jar: F:\Setups\Eclipse\workspaceLatest\TestCodeNameOne\dist\TestCodeNameOne.jar
[javac] F:\Setups\Eclipse\workspaceLatest\TestCodeNameOne\build.xml:171: warning: 'includeantruntime' was not set, defaulting to build.sysclasspath=last; set to false for repeatable builds
干净覆盖:
build-for-android-device:
[codeNameOne] You sent an android build without submitting a keystore. Notice that you will receive a build that is inappropriate for distribution (although it could be used for debugging purposes). For further details read http://www.codenameone.com/signing.html
[codeNameOne] Sending build request to the server, notice that the build might take a while to complete!
[codeNameOne] Sending build to account: myemailid@izealiant.com
[codeNameOne] java.net.SocketTimeoutException: Read timed out
[codeNameOne] at java.net.SocketInputStream.socketRead0(Native Method)
[codeNameOne] at java.net.SocketInputStream.socketRead(Unknown Source)
[codeNameOne] at java.net.SocketInputStream.read(Unknown Source)
[codeNameOne] at java.net.SocketInputStream.read(Unknown Source)
[codeNameOne] at sun.security.ssl.InputRecord.readFully(Unknown Source)
[codeNameOne] at sun.security.ssl.InputRecord.read(Unknown Source)
[codeNameOne] at sun.security.ssl.SSLSocketImpl.readRecord(Unknown Source)
[codeNameOne] at sun.security.ssl.SSLSocketImpl.readDataRecord(Unknown Source)
[codeNameOne] at sun.net.www.http.HttpClient.parseHTTPHeader(Unknown Source)
[codeNameOne] at sun.net.www.http.HttpClient.parseHTTP(Unknown Source)
[codeNameOne] at sun.net.www.protocol.http.HttpURLConnection.getInputStream0(Unknown Source)
[codeNameOne] at sun.net.www.protocol.http.HttpURLConnection.access$200(Unknown Source)
[codeNameOne] at com.codename1.build.client.BuildProcess.sendS3Build(BuildProcess.java:366)
[codeNameOne] at com.codename1.build.client.BuildProcess.sendRequestToServer(BuildProcess.java:43 [codeNameOne] at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
[codeNameOne] at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
[codeNameOne] at java.lang.reflect.Method.invoke(Unknown Source)
[codeNameOne] at org.eclipse.ant.core.AntRunner.run(AntRunner.java:371)
[codeNameOne] at org.eclipse.ant.core.AntRunner.run(AntRunner.java:473)
[codeNameOne] at codenameoneplugin.actions.SendBuild$1.run(SendBuild.java:47)
[codeNameOne] at java.lang.Thread.run(Unknown Source)
BUILD FAILED
F:\Setups\Eclipse\workspaceLatest\TestCodeNameOne\build.xml:469: Error in server build process
Total time: 2 minutes 8 seconds
IDE 和操作系统详情
IDE: Eclipse
Desktop OS: Windows 7
【问题讨论】:
标签: codenameone