PHP コードを使用して、.net で記述された Web サービスを呼び出しています。.net webservice の関数には、return ステートメントと out パラメーターがあります。戻り変数の値は取得できますが、out パラメーターは取得できません。webservice の関数の戻り値と out パラメータの両方を取得する方法はありますか?
vFileID
PHPでsoapCallを介して次のWebサービスから取得するにはどうすればよいですか? PHP コード
$client = new SoapClient("abc.wsdl");
$result = $client->__soapCall("SendFile", $params);
出力:
object(OIntegrate_Response)[301]
public 'version' => null
public 'schemaVersion' => null
public 'schemaDocumentation' => null
public 'contentType' => null
public 'cacheControl' => null
public 'data' => string '8129ac11-ab01-4abd-bbd8-1af79dbe1019' (length=36)
private 'errors' =>
array (size=0)
empty
.net コードは次のとおりです。
[WebMethod(EnableSession = true)]
public string SendFile(string vFileName, string vDescription, bool vLastChunk, bool vFirstChunk, Int32 vStartByte, byte[] vBytes, string vFileID, string vFile, out Int32 vID)
{
avFileTransferManager tmpFileManager;
avFileManager tmpManager = new avFileManager();
vID = 0;
if (vFirstChunk)
{
vFileID = System.Guid.NewGuid().ToString();
tmpFileManager = new avFileTransferManager();
}
else
{
tmpFileManager = GetFileManager(vFileID);
}
tmpFileManager.AddChunk(vStartByte, vBytes);
if (vLastChunk)
{
//Store file in database.
avFile tmpFile = tmpManager.DeserializeFile(vFile);
tmpFile.LockSize = false;
tmpFile.FileStream = tmpFileManager.FileStream;
//tmpFile.Name = vFileName;
//tmpFile.Description = vDescription;
tmpFile = tmpManager.SaveFile(tmpFile);
vID = tmpFile.ID;
//Remove tmp-file from memory.
Session.Remove(vFileID);
}
else
Session[vFileID] = tmpFileManager; //Store tmp-file in session object.
return vFileID;
}