0

I am trying to upload an ipa file (call it a.ipa) into iTunes Connect via application loader. While the uploading process pending at "Verifying assets with the iTunes Store" more than 8 hours. And validation for a.ipa is fine, uploaded another ipa also worked fine. Does anyone had the same issue? Or any suggestions? Thank you.

Eric Aya
  • 69,473
  • 35
  • 181
  • 253
edw
  • 1
  • 1
  • 3

2 Answers2

2

I've had this issue too. I was connected to a network that I think was blocking a needed port. When I disconnected from that network and tried another it worked.

Kyle Redfearn
  • 2,172
  • 16
  • 34
2

I had the same problem on our corporate network. The fix was to add proxy settings and disable the protocols that were being stopped by the proxy. If you know you have a proxy in the network path, edit the file :

/Applications/Xcode.app/Contents/Applications/Application\ Loader.app/Contents/MacOS/itms/java/lib/net.properties​

Place the following settings in the net.properties file, of course using your proxy hostname:

 http.proxyHost=proxy.example.com
 ​http.proxyPort=80
 ​http.nonProxyHosts=localhost|127.*|[::1]|*.example.com
 ​https.proxyHost=proxy.example.com
 https.proxyPort=80

Then, go into the application loader's preferences screen and deselect all the protocols except anything that says DAV or WebDAV. This will ensure that HTTP/S is the only protocol attempted for connections.

Will
  • 102
  • 1
  • 6