0

これは ClickOnce に関する私の 3 回目の投稿ですが、それぞれに独自の主題があるため、誰も気にしないことを願っています。既存のアプリを新しいサーバーに緊急に移行しています。ClickOnce アプリケーションをサーバーに公開し (オンラインでのみ使用し、インストール用ではありません)、Web ブラウザー経由で実行しようとすると、「続行できません。アプリケーションの形式が正しくありません。アプリケーション ベンダーに連絡してください」というメッセージ ボックスが表示されます。この詳細ログには以下が含まれます。(個人情報なので、URLの一部文字列を*でマスキングしました)

PLATFORM VERSION INFO
Windows : 5.1.2600.196608 (Win32NT)
Common Language Runtime : 4.0.30319.1
System.Deployment.dll : 4.0.30319.1 (RTMRel.030319-0100)
clr.dll : 4.0.30319.1 (RTMRel.030319-0100)
dfdll.dll : 4.0.30319.1 (RTMRel.030319-0100)
dfshim.dll : 4.0.31106.0 (Main.031106-0000)

SOURCES
Deployment url: http://**.**.***.173:10080/*****/ClickOnce/*********.application?comid=*****&userjpname=************&userfullname=************&canregist=True&canmanage=True&systemid=0

ERROR SUMMARY
Below is a summary of the errors, details of these errors are listed later in the log.
* Activation of http://**.**.***.173:10080/*****/ClickOnce/*********.application?comid=*****&userjpname=************&userfullname=************&canregist=True&canmanage=True&systemid=0 resulted in exception. Following failure messages were detected:
+ Exception reading manifest from http://**.**.***.173:10080/*****/ClickOnce/*********.application?comid=*****&userjpname=************&userfullname=************&canregist=True&canmanage=True&systemid=0: the manifest may not be valid or the file could not be opened.
+ Manifest XML signature is not valid.
+ The digital signature of the object did not verify.

COMPONENT STORE TRANSACTION FAILURE SUMMARY
No transaction error was detected.

WARNINGS
There were no warnings during this operation.

OPERATION PROGRESS STATUS
* [2012/07/24 13:16:39] : Activation of http://**.**.***.173:10080/*****/ClickOnce/*********.application?comid=*****&userjpname=************&userfullname=************&canregist=True&canmanage=True&systemid=0 has started.

ERROR DETAILS
Following errors were detected during this operation.
* [2012/07/24 13:16:39] System.Deployment.Application.InvalidDeploymentException (ManifestParse)
- Exception reading manifest from http://**.**.***.173:10080/*****/ClickOnce/*********.application?comid=*****&userjpname=************&userfullname=************&canregist=True&canmanage=True&systemid=0: the manifest may not be valid or the file could not be opened.
- Source: System.Deployment
- Stack trace:
at System.Deployment.Application.ManifestReader.FromDocument(String localPath, ManifestType manifestType, Uri sourceUri)
at System.Deployment.Application.DownloadManager.DownloadDeploymentManifestDirectBypass(SubscriptionStore subStore, Uri& sourceUri, TempFile& tempFile, SubscriptionState& subState, IDownloadNotification notification, DownloadOptions options, ServerInformation& serverInformation)
at System.Deployment.Application.DownloadManager.DownloadDeploymentManifestBypass(SubscriptionStore subStore, Uri& sourceUri, TempFile& tempFile, SubscriptionState& subState, IDownloadNotification notification, DownloadOptions options)
at System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl)
at System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)
--- Inner Exception ---
System.Deployment.Application.InvalidDeploymentException (SignatureValidation)
- Manifest XML signature is not valid.
- Source: System.Deployment
- Stack trace:
at System.Deployment.Application.Manifest.AssemblyManifest.ValidateSignature(Stream s)
at System.Deployment.Application.ManifestReader.FromDocument(String localPath, ManifestType manifestType, Uri sourceUri)
--- Inner Exception ---
System.Security.Cryptography.CryptographicException
- The digital signature of the object did not verify.

- Source: System.Deployment
- Stack trace:
at System.Deployment.Internal.CodeSigning.SignedCmiManifest.Verify(CmiManifestVerifyFlags verifyFlags)
at System.Deployment.Application.Manifest.AssemblyManifest.ValidateSignature(Stream s)

COMPONENT STORE TRANSACTION DETAILS
No transaction information is available.

私のサーバーアドレスはhttp://**.**.***.173:10080で、clickonce アプリはhttp://**.**.***.173:10080/*****/ClickOnceフォルダーに公開されています。

comid、userjpname、userfullname、canregist、canmanage、True、systemid などのいくつかの奇妙なパラメーター (またはクエリ文字列?) を含むアプリケーション マニフェスト ファイル (.manifest) を見つけようとしたため、エラーが返されたと思います。

私の配置マニフェスト ファイルでは、アプリケーション マニフェスト ファイルの場所は次のように指定されています。これらのパラメータがどこから来たのかわかりません。

<dependentAssembly 
    dependencyType="install"  
    codebase="MYAPPNAME_9_9_9_99\MYAPPNAME.exe.manifest"
    size="8532">
<assemblyIdentity
    name="MYAPPNAME.exe"
    version="1.0.1.43"
    publicKeyToken="*************"
    language="neutral"
    processorArchitecture="msil"
    type="win32" />
4

1 に答える 1

0

アプリケーション マニフェストと配置マニフェストに再度署名しようとしましたか?

あなたの説明をもう一度読んで、私は少し混乱しています。

まず、アプリケーション マニフェストを作成します。

それからあなたはそれに署名します。

次に、配置マニフェストを作成し、アプリケーション マニフェストを明示的にポイントします。

それから、これにもサインしてください。

(ところで、何かを変更するたびに署名部分を実行する必要があります。)

于 2012-07-24T09:57:08.130 に答える