1

PHP フォーム (Drupal 7 を使用) に入力されたデータを SharePoint 2010 に送信するというアイデアは単純に思えます。

検索して区別できるように、各フォーム エントリはアイテムとして SharePoint に記録する必要があります。したがって、SharePoint のリストまたはフォーム ライブラリが機能すると思います。どこから始めればよいかを本当に知るには、SharePoint の経験が不足しているだけです。

これが機能する可能性があるとしたら、どのように信じているのか知りたいです。

4

1 に答える 1

2

これは確かに機能します。フォーム データを格納するために必要な列を含むリストを sharepoint で作成する必要があります。次に、PHP コードからリスト Web サービスhttp://<site>/_vti_bin/Lists.asmxを呼び出すことができ、メソッドを使用して項目を追加しますUpdateListItems

MSDN ドキュメントのLists Web ServiceLists.UpdateListItems Method、およびHow to: Update List Itemsを参照してください。これらは PHP を使用していませんが、例を適応させることができるはずです。

リストをクエリするときは、CAML を使用してリスト Web サービスのクエリを作成する必要があります。これらの作成に役立つツールについては、このSO の質問を参照してください。これらのクエリはSOAP、Web サービスに送信するエンベロープにラップされます。

PHP はわかりませんが、以下の引用とコードは、David の IT ブログ - PHP を使用した SharePoint リスト アイテムの作成からのものです。

コードを機能させるには、NuSOAP ライブラリ、独自のローカル Lists WSDL ファイル、そしてもちろん、以下のコード内の独自のパーソナライズされた認証/リスト変数が必要です。このコードは、SharePoint Online と PHP 5.3 でテストされていますが、MOSS 2007 でも動作するはずです。

<?php

// Requires the NuSOAP library
require_once('lib/nusoap.php');

$username = 'yourUsername';
$password = 'yourPassword';
$rowLimit = '150';

/* A string that contains either the display name or the GUID for the list.
 * It is recommended that you use the GUID, which must be surrounded by curly
 * braces ({}).
 */
$listName = "TempList";

/*
 * Example field (aka columns) names and values, that will be used in the
 * CAML query. The values are the attributes of a single list item here.
 * If the field name contains a space in SharePoint, replace it
 * here with _x0020_ (including underscores).
 */
$field1Name = "Title";
$field2Name = "Address";
$field3Name = "Premium_x0020_customer";

$field1Value = "John Smith";
$field2Value = "USA";
$field3Value = "1";

/* Local path to the Lists.asmx WSDL file (localhost). You must first download
 * it manually from your SharePoint site (which should be available at
 * yoursharepointsite.com/subsite/_vti_bin/Lists.asmx?WSDL)
 */
$wsdl = "http://localhost/phpsp/Lists.wsdl";

//Basic authentication is normally used when using a local copy a the WSDL. Using UTF-8 to allow special characters.
$client = new nusoap_client($wsdl, true);
$client->setCredentials($username,$password);
$client->soap_defencoding='UTF-8';

//CAML query (request), add extra Fields as necessary
$xml ="
 <UpdateListItems xmlns='http://schemas.microsoft.com/sharepoint/soap/'>
 <listName>$listName</listName>
 <updates>
 <Batch ListVersion='1' OnError='Continue'>
 <Method Cmd='New' ID='1'>
 <Field Name='$field1Name'>$field1Value</Field>
 <Field Name='$field2Name'>$field2Value</Field>
 <Field Name='$field3Name'>$field3Value</Field>
 </Method>
 </Batch>
 </updates>
 </UpdateListItems>
";

//Invoke the Web Service
$result = $client->call('UpdateListItems', $xml);

//Error check
if(isset($fault)) {
 echo("<h2>Error</h2>". $fault);
}

//extracting the XML data from the SOAP response
$responseContent = utf8_decode(htmlspecialchars(substr($client->response,strpos($client->response, "<"),strlen($client->response)-1), ENT_QUOTES));

echo "<h2>Request</h2><pre>" . utf8_decode(htmlspecialchars($client->request, ENT_QUOTES)) . "</pre>";
echo "<h2>Response header</h2><pre>" . utf8_decode(htmlspecialchars(substr($client->response,0,strpos($client->response, "<")))) . "</pre>";
echo "<h2>Response content</h2><pre>".$responseContent."</pre>";

//Debugging info:
//echo("<h2>Debug</h2><pre>" . htmlspecialchars($client->debug_str, ENT_QUOTES) . "</pre>");
unset($client);
?>
于 2013-09-26T09:39:24.613 に答える