Modify installed SharePoint feature

Posted by Laura L on Stack Overflow See other posts from Stack Overflow or by Laura L
Published on 2010-01-12T09:17:20Z Indexed on 2010/04/04 6:03 UTC
Read the original article Hit count: 313

Filed under:
|
|
|

I have written a sequential workflow in SharePoint on our development environment. After testing, we decided to deploy this workflow as a feature on the staging environment. We did the following:

  1. copied the strongly named assembly to the GAC using gacutil

  2. copied feature.xml and workflow.xml to WebServerExtensions/12/templates/features/someFolder

  3. installed feature (stsadm command)

  4. activated feature (stsadm command)

All worked exactly as planned and the workflow behaved correctly. The problem was, we decided to change something in the code (a message was not very self explanatory), so on the development machine we updated the message as requested and rebuilt the project.
The problem is, we cannot seem to find a way to correctly get rid of the previous version of this workflow/feature.

To deploy the upgrade, we:

  1. deactivated and uninstalled the feature (stsadm commands), removed also from GAC.

  2. increased the version of the assembly

  3. performed steps 1 to 4 from above.

When using the workflow we are still getting the first message, we cannot find a way to get the new message to be displayed.
What are we missing?

© Stack Overflow or respective owner

Related posts about sharepoint

Related posts about Workflow