2
A
回答
0
你將不得不使用從我可以告訴的光標(加載一切)。
<?php
/* $this is a class that extends SoapClient using the groupwise.wsdl */
$q = (object)[
'folderType' => 'Mailbox',
'view' => 'count unreadCount'
];
$folder = $this->getFolderRequest($q);
$q = (object)[
'container' => $folder->folder->id,
'view' => 'subject peek noDownload'
];
$cursor = $this->createCursorRequest($q);
$q = (object)[
'container' => $data->folder->id,
'cursor' => $cursor->cursor,
'position' => 'end',
'count' => 20,
'forward' => TRUE
];
$msgs = $this->readCursorRequest($q);
var_dump($msgs);
/* You could also throw readCursorRequest() in a loop and track offset + position for more intensive purposes */
?>
更多閱讀:https://www.novell.com/documentation/developer/groupwise_sdk/gwsdk_gwwebservices/data/b7m3i3x.html
相關問題
- 1. Java GroupWise Mail Client
- 2. API郵件應用程序事件API
- 3. 使用BizTalk 2010連接到Novell Groupwise
- 4. 排序郵件按降序排列
- 5. 使用java郵件API發送郵件
- 6. 使用java郵件api
- 7. 訪問c#的'Novell GroupWise'數據的API。如果我使用「gwtapp.dll」或「GroupWise Web Services」,會有什麼區別?
- 8. 有沒有辦法使用gmail api來安排郵件?
- 9. 如何使用Java郵件API保存已發郵件郵件?
- 10. MySQL groupwise query
- 11. 如何使程序等待使用Java郵件API的郵件傳遞狀態
- 12. 批次的GroupWise電子郵件遷移到Outlook
- 13. Groupwise Max多列
- 14. 使用郵件標題信息在django中排序電子郵件線程
- 15. GroupWise的計算
- 16. 用java發送郵件(我正在使用java郵件API)
- 17. Android - 設置Novell GroupWise日曆同步
- 18. 使用蔚藍servicebus排隊郵件
- 19. Sequelize groupwise maxium
- 20. GroupWise的最大
- 21. GroupWise的股份
- 22. 使用JQuery排序Youtube API數組
- 23. 使用google-docs-api排序錯誤
- 24. 使用自定義的API排序 - removeAndAppend
- 25. 使用API進行排序或算法?
- 26. 不能發送郵件使用Java郵件Api
- 27. 連續郵件服務器使用JAVA郵件API連接
- 28. 使用java郵件API從Outlook 2010發送郵件
- 29. 使用java郵件API訪問yahoo和rediff郵件
- 30. 使用Win API通過Gmail郵件服務器發送郵件
糟糕!對不起,我誤解了,我認爲這是針對Web服務的。 – thinice 2015-02-12 22:49:50