Application Loader: Apple's web service operation was not successful

瘦欲@ 提交于 2019-12-12 11:31:43

问题


I'm trying to upload an app with Application Loader but I get following error :

Apple's web service operation was not successful Unable to authenticate the package: 54005906.itmsp An unknown error occurred. (2010)

What is the problem? I really can't find any info.


回答1:


Its was problem with Apples process. Worked the day after!




回答2:


I would check following 1. Profile, username, password, certificate 2. Clean Build and Try again.




回答3:


I kept getting it for several days until I changed Deployment Target from 3.1.3 to 4.3.




回答4:


I just selected Standard Architectures in both Project and Target, and it worked for me.




回答5:


I had the same error but fixed it by changing Build Active Architecture Only from

Release YES to Release NO.




回答6:


When submitting a question like this you need to include all the error messages

If you choose to post only the error messages that you think are relevant, you are probably going to choose the wrong messages. If you know how to indentify the extraneous info, you probably don't need to post a question to StackOverflow at all. ;-)

When submitting a question like this there are a few things to note:

• If you submit enough failures in some given time frame, Apple will stop allowing you to connect/submit for some other time frame!

- This is a situation that seems to correct itself overnight in most cases. You can use a different authorized account to get around this. (Create a new one if you gotta.)

• The first 2 items are red herrings

Apple's web service operation was not successful

  • In spite of how it sounds, this doesn't mean it couldn't connect. This simply means that the ultimate goal was not successful.
  • As a metaphor: if (ApplicationLoader.DeliverYourApp(SelectedFile)){log("Delivery Successful");} else {msg("Apple's web service operation was not successful");}

Unable to authenticate the package: 81680085.itmsp

  • Before Apple accepts your package on their server, they want it to pass a few "field sobriety" checks.
  • From their perspective, it's like "cloud computing". They are saving server resources by doing analysis in the cloud. And the cloud is the workstations of all their developer.apple.com members.

• The "Background Activity" panel (revealed by clicking "Activity...") is very useful to watch.

Seeing "Could not start delivery: all transports failed diagnostics" makes you think there is some form of connection or login error (especially when combined with the top 2 errors. If you open the Background Activity panel early on and watch the entire process, you see that the message that is RED in the screenshot above actually goes through these states:

  • Upload package to the iTunes Store
  • Authenticating with the iTunes Store
  • Verifying assets with the iTunes Store
  • Could not start delivery: all transports failed diagnostics

Finally, the error in my screenshot actually means...

The IPA file I was given fixes the bug that prevented my previous upload from succeeding, however, the developer forgot to increment the build number and Apple re-rejects it out of principle. This could be avoided if they would implement a build script that does something alone the lines of git log --oneline | wc -l. This is pretty much exactly the way I do it in my projects.



来源:https://stackoverflow.com/questions/12322397/application-loader-apples-web-service-operation-was-not-successful

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