문제

iOS에서 워크 플로 (예 : SharePoint Designer)에 대한 작업을 구현할 수 있습니까? 어쩌면 SharePoint의 서비스를 호출하여 각 워크 플로의 워크 플로우 목록, 노드 목록을 가져 와서 iOS의 트리로 그릴 수 있습니까?

이것은 일반적인 질문이며, 어떻게 할 수 있는지에 대한 높은 수준의 그림을 얻고 싶습니다.

도움이 되었습니까?

해결책

There is no web service to interact with workflows. (You could write a custom one I guess).

Edit

There is a Workflow Web Service: workflow.asmx, it is just undocumented for SP 2010.

What kind of operations are you trying to perform? That is a pretty broad area, and depending on the desired action, there may be different "better" approaches to take.

If you're trying to initiate a workflow, one way you could achieve that would be to set the workflow to start on the creation of a new list item (and hit that with Lists.asmx). This method also allows you to pass in initialization data in the list's columns.

If you're trying to act on a specific step in a workflow, I don't believe you'd be able to do so without writing a custom web service, or a custom workflow to act on your target.

Check out this similar question on SO: SharePoint, Workflow and Web Services - restart workflow

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 sharepoint.stackexchange
scroll top