A sharepoint info path form calls this ASMX web service. The webservice inserts items into a sharepoint list like so...
item["Area"] = Area;
item["Problem"] = Problem;
item["Notes"] = notes;
item.Update();
clientcontext.ExecuteQuery();
The record gets inserted into the list but the workflow is unable to trigger. What's weird is that if I try running the same code locally on my machine, I can insert into the list and trigger the workflow.
However, when running the asmx on the sharepoint front end web server, it can insert into the list but will not trigger the work flow. Any ideas why?