Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm using Visual Studio 2008 sp1.

I have an application WinForms deployed internally using ClickONce in shared folder in local network.

The Test Certificate pfx expired in 2035.

I h ave published the update to the internal shared folder severals times.

Note that the project is only set to 'Sign the ClickOnce manifests' and does not sign the assembly.

Now, I publish again new version of my application,

When users click on their icons to run the application we get this error .... It has always updated prior to deploying with the test certificate.

Dirección URL de la implementación          : file:///C:/Documents%20and%20Settings/Usuario.NOTARIAS3/Men%C3%BA%20Inicio/Programas/GrupoBackup/Expediente%20Electr%C3%B3nico.appref-ms%7C
Dirección URL del proveedor de la implementación        : file://192.168.13.111/compartida/AdministradorWin.application

La activación de C:\Documents and Settings\Useuario.NOTARIAS3\Menú Inicio\Programas\GrupoBackup\Expediente Electrónico.appref-ms| dio como resultado una excepción. Se detectaron los siguientes mensajes de error: + The deployment identity does not match the subscription

OPERATION PROGRESS STATUS * [2/20/2008 11:23:21 AM] : Activation of C:\Documents and Settings\Usuario.NOTARIAS3\Menú Inicio\Programas\GrupoBackup\Expediente Electrónico.appref-ms| has started. * [2/20/2008 11:23:21 AM] : Performing necessary update check as specified by the deployment.

ERROR DETAILS

  • [21/06/2010 20:33:10] System.Deployment.Application.DeploymentException (SubscriptionState) - La identidad de la implementación no coincide con la suscripción. - Origen: System.Deployment - Seguimiento de la pila: en System.Deployment.Application.SubscriptionStore.CheckUpdateInManifest(SubscriptionState subState, Uri updateCodebaseUri, AssemblyManifest deployment, Version currentVersion) en System.Deployment.Application.ApplicationActivator.PerformDeploymentUpdate(SubscriptionState& subState, String& errorPageUrl) en System.Deployment.Application.ApplicationActivator.ProcessOrFollowShortcut(String shortcutFile, String& errorPageUrl, TempFile& deployFile) en System.Deployment.Application.ApplicationActivator.PerformDeploymentActivation(Uri activationUri, Boolean isShortcut, String textualSubId, String deploymentProviderUrlFromExtension, BrowserSettings browserSettings, String& errorPageUrl) en System.Deployment.Application.ApplicationActivator.ActivateDeploymentWorker(Object state)

I use regedit for search this key: *HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Uninstall\7e3a7433abfe6213*

PC non updated

AppId
file://192.168.13.111/COMPARTIDA/AdministradorWin.application#AdministradorWin.app, Culture=neutral, PublicKeyToken=4b005ceeffd565b0, processorArchitecture=msil

Version = 1.0.0.14

FileName = Expediente Electrónico

Publisher = GrupoBackup

Folder Name = GrupoBackup

PC UPDATED (uninstall-reinstall, but Iwant AVOID it)

AppId
file://192.168.13.111/compartida/AdministradorWin.application#AdministradorWin.application, Culture=neutral, PublicKeyToken=4b005ceeffd565b0, processorArchitecture=msil

Version = 1.0.0.30

FileName = Expediente Electrónico

Publisher = GrupoBackup

Folder Name = GrupoBackup

SuiteName= OGF Suite

Changes PC Non updated - Pc updated are:

1.) Suite Name is new value ( I set it in properties Publish tab in VS)

2.) Version

and 3.)

AdministradorWin.app

from file://192.168.13.111/COMPARTIDA/AdministradorWin.application#AdministradorWin.app,

vs

AdministradorWin.application,

from file://192.168.13.111/compartida/AdministradorWin.application#AdministradorWin.application,

If I uninstall and then reinstall the app from scratch it all works. However, I was trying to avoid having to do this.

I get this error when I try to deploy a project that was previously successful.

I re-tried, after deleting allthe manifests..but stilll no joy.

Can anyone suggest anything?

many thanks,

Is there a any way to fix this??

UPDATE:

in Publish Options -> Manifests

Use application manifest for trust information is UN CHECKED

Thanks in advance

share|improve this question

2 Answers

did you changed your target CPU from CPUAny to x86?

If you changed this, you will have to reinstall the application.

share|improve this answer
This happened to me. I changed it back to CPUAny and then it worked again. Later I will change it back and have the users reinstall. – AtliB Oct 17 '11 at 11:09

What do you mean when you say this: "Changes: I set Suite Name value; Version and #AdministradorWin.app, vs #AdministradorWin.application".

It's the last bit I'm interested in. Did you change the assembly name?

There's a handful of settings that make up the identity of the deployment. Target CPU (as noted by zezespecial above), installation URL, and assembly name are three of them. Did you change any of these? What other changes did you make to the deployment?

share|improve this answer
I change Suite Name, I think wasonly changes.. – Kiquenet Jan 20 '11 at 12:15
If you change it back, does it fix the problem? I can't imagine this actually causing a problem, but it's worth trying. – RobinDotNet Jan 21 '11 at 8:22
which settings make up the identity of the deployment? I have a similar problem – Martin Mar 22 '11 at 8:39
1  
Deployment Provider URL (uses UpdateURL if filled in; if not, uses Installation URL if filled in; if not, uses Publishing File location). Target CPU. Name (which matches the assembly name). You can see them in the deployment manifest (.application). They don't use certificate any more (public key token), which is why you can change certificates w/o having to uninstall and reinstall. Post back exactly what the problem is? – RobinDotNet Apr 1 '11 at 8:23
1  
Aha, thanks for the insight. In my case, the "InstallFrom" and "InstallURL" settings got modified accidentally. I changed it back (thank you SVN!) and it works now. – Mark Lakata Apr 20 '12 at 0:55

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.