Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 103165
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T01:04:49+00:00 2026-05-11T01:04:49+00:00

I am developing, a simple SharePoint Sequential Workflow which should be bound to a

  • 0

I am developing, a simple SharePoint Sequential Workflow which should be bound to a document library. When associating the little workflow to a document library, I checked these options

  • Allow this workflow to be manually started by an authenticated user with Edit Items Permissions.
  • Start this workflow when a new item is created.
  • Start this workflow when an item is changed.

Now I upload a document to this library and the workflow starts and for instance sends a mail. It completes and everything is fine.

When I select Edit Properties on the new Item and save a change, the workflow is fired again. Absolutely what we expected.

Even when copying a new Item into the library with help of the Copy.asmx Webservice, the workflow starts normally.

But now I want to update the item via the SharePoint WebService Lists.asmx.

My CAML goes here:

<Method ID='1' Cmd='Update'>   <Field Name='ID'>1</Field>   <Field Name='myDummyPropertyField'>NewValue</Field> </Method> 

The Item is being updated (timestamp changed and a dummy property, too) but the workflow does NOT start again.

This behaviour is reproducable on our development and test system.

Checking the error logs (C:\Program Files\Common Files\Microsoft Shared\web server extensions\12\LOGS) I discovered a strange error message:

09/25/2008 16:51:40.17  w3wp.exe (0x1D94)                           0x1D60  Windows SharePoint Services     General                         6875    Critical    Error loading and running event receiver Microsoft.SharePoint.Workflow.SPWorkflowAutostartEventReceiver in Microsoft.SharePoint, Version=12.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c. Additional information is below.  : The object specified does not belong to a list. 

Anybody who can confirm this behavior? Or any solution hints?


I am keeping you informed of any developments on this topic.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. 2026-05-11T01:04:50+00:00Added an answer on May 11, 2026 at 1:04 am

    Finally, we got through the support services processes at Microsoft and got a solution!

    First, Microsoft stated this to be a bug. It is a minor bug, because there is a good workaround, so it may take some longer time, until this bug will be fixed (the support technician said something with next service pack oder next version (!)).

    But now for the problem.

    The reaseon

    Let’s take a look at the CAML code from my question:

    <Method ID='1' Cmd='Update'>   <Field Name='ID'>1</Field>   <Field Name='myDummyPropertyField'>NewValue</Field> </Method> 

    For any reason the Workflow Manager does not work with the ID, we entered in the second line. Strange, all other SharePoint commands are working with the ID, but not the Workflow Manager. The Workflow Manager works with the ‘fully qualified’ document name. So, because we had no clue and didn’t entered any fully qualified document name, the Workflow Manager defaults to the name of the current document library. And now the error message begins to make sense:

    The object specified does not belong to a list. 

    Of course, the object (document library) does not belong to a list, it IS the list.

    The solution

    We have to add one more line to our CAML Query:

    <Field Name='FileRef'>/sites/mySite/myDocLib/myFolder/myDocument.txt</Field> 

    The FileRef passes the fully qualified document name to the Workflow Manager, which – now totally happy – starts the workflow of the item.

    Be careful, you have to include the full absolute server path, omitting your server name (found for example in ServerRelativePath property of your SPItem).

    Full working CAML Query:

     <Method ID='1' Cmd='Update'>     <Field Name='ID'>1</Field>     <Field Name='FileRef'>/sites/mySite/myDocLib/myFolder/myDocument.txt</Field>     <Field Name='myDummyPropertyField'>NewValue</Field>   </Method> 

    The future

    Perhaps this undocumented behaviour will be fixed in one of the upcoming service packs, perhaps not. Microsoft Support apologized and is going to release an MSDN Article on this topic. For the next month I hope this article on stackoverflow will help developers in the same situation.

    Thanks for reading!

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 137k
  • Answers 137k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer for property, value in vars(theObject).items(): print(property, ":", value) Be aware… May 12, 2026 at 7:18 am
  • Editorial Team
    Editorial Team added an answer Trac uses this for example on its diff pages and… May 12, 2026 at 7:18 am
  • Editorial Team
    Editorial Team added an answer I don't know about "best," but if you want to… May 12, 2026 at 7:18 am

Related Questions

This is a question for a WSS/SharePoint guru. Consider this scenario: I have an
I'm trying to upload documents to SharePoint using web services attaching custom metadata to
I am developing a simple platform game in Java using BlueJ. Over the next
I am developing a simple platform game using Java using BlueJ as the IDE.

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.