edw
edw

Reputation: 1

Application Loader stuck at Verifying assets with the iTunes Store

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.

Upvotes: 0

Views: 2909

Answers (2)

Will
Will

Reputation: 102

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.

Upvotes: 2

Kyle Redfearn
Kyle Redfearn

Reputation: 2281

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.

Upvotes: 2

Related Questions