문제

I want to use the addmusic example that apple have created for the IPod library access and be able to play the music in MY application; I however dont know which files to copy and how to combine the two... can someone please tell me what to do? I already have created a button in MY application which will then upon click do the same thing that the button in the AddMusic example does to open up the Mediapicker thing. Any help will be greatly appreciated.

도움이 되었습니까?

해결책

시스템 계정의 컨텍스트 내에서 생성 된 오래된 "항목이 워크 플로우가 아니 었습니다."문제가 발생합니다.

다음 PowerShell 스크립트를 실행하여 플래그가 설정되어 있거나 그렇지 않은지 확인하십시오.그것이 설정되어 있지 않다면, 이것은 당신의 문제가 매우 가능성이 높습니다.

$spWebService = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$spWebService.DeclarativeWorkflowAutoStartOnEmailEnabled
.

설정이 설정되어 있지 않으면 다음을 실행하십시오.

$spWebService = [Microsoft.SharePoint.Administration.SPWebService]::ContentService
$spWebService.DeclarativeWorkflowAutoStartOnEmailEnabled = $true
$spWebService.Update()
.

속성의 이름으로 속지 마십시오 ... 시스템 계정을 통해 항목을 목록에 삽입하는 방법을 효과합니다.

PowerShell에 편안하지 않으면 stsadm 대안이 있습니다 ... 알려주세요.

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