Very Slow App Upload/Communication Failure - Application Loader

≡放荡痞女 提交于 2019-11-30 19:25:34

Be sure you don't have Charles proxy running as well (or any proxying software). I was bitten by this and took a couple of hours before I figured out it was Charles swallowing all the requests :)

I tried many solutions like using port 80 for https connection but none of the solution worked for me.

#https.proxyPort=443

to

https.proxyPort=80

Changing port didn't work for me.

After many trying many solutions I tried to upload application from two different instances of application loader and it worked like a charm.

I have two different versions of application loader on my machine, one came with XCode4 and one came with XCode5. It always works if I upload application from two instances simultaneously.

alemangui

The problem is that Application Loader uses Java, and Java does not inherit the Mac's proxy settings. The solution is to specify the proxy information to Java.

If you are on a Mac OS pre-10.7.5 (more or less) just look for the Java Preferences application via the spotlight. If not, this SO question specifies how to do so.

In my case, i was using Charles Proxy. So, i closed the CHarles Proxy and able to upload.

SURESH SANKE

I was stuck with same problem while uploading my first application. After trying so many changes nothing worked out fine for me.

Finally I changed Application Loader version. That's it. Worked fine for me. I used Application Loader 2.5.2.

I still have this problem despite trying all the suggestions in the thread. Running App Loader 2.9.1; Java version 7 build 1.7.0.; Yosemite beta 4; Xcode 5.1.1. Also tried all the settings in Java Control Panel General/Network Settings. All firewall ports open for outbound traffic.

Any further suggestions appreciated...

Adding this line in my bash_profile worked for me

export _JAVA_OPTIONS="-Dhttp.proxyHost=my-proxy-server -Dhttp.proxyPort=1080 -DsocksProxyHost=my-socks-server"
  • Xcode 5.1.1 (5B1008)
  • Yosemite Beta
  • java version "1.6.0_65"

After a lot of unsuccessful tries, I went to System Preferences -> Network -> Proxies and enabled "Auto Proxy Discovery". Worked like a charm afterwards.

If you do not have mentioned Charles proxy and the error with uploading came from "nowhere" then try to simply change network and restart your Mac. In my case doing those two did the job, changing just network did not work out.

Go to "System Preference -> Network -> Advanced -> Proxies -> Deselect proxies" if anything selected.

Note: If you want to cross check it, open apple developer account in browser. If it's loaded, this error won't come.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!