0

我想知道,如何正确“使用”在 ASP.net WebService 方法中返回的DataTable 。

我处理这个例子:

ASP.net 网络服务:

[WebMethod]
public DataTable searchDatabase(string search)
{

    SqlConnection conn = null;
    SqlDataReader rdr = null;
    conn = new
                    SqlConnection("Data Source=ASUSX301A\\MSSQLINSTANCE;Initial Catalog=db_sp_vaje;Integrated Security=True;Pooling=False");
    conn.Open();

    // 1.  create a command object identifying
    //     the stored procedure
    SqlCommand cmd = new SqlCommand(
        "dbo.sp_iskanje", conn); //here is my stored procedure which works 100%

    // 2. set the command object so it knows
    //    to execute a stored procedure
    cmd.CommandType = CommandType.StoredProcedure;

    // 3. add parameter to command, which
    //    will be passed to the stored procedure
    cmd.Parameters.Add(
        new SqlParameter("@myInput", search));

    // execute the command
    SqlDataAdapter da = new SqlDataAdapter();
    da.SelectCommand = cmd;
    DataTable dt = new DataTable();
    dt.TableName = "oglasi";
    dt.WriteXml(@"path", true);
    da.Fill(dt);

    // iterate through results, printing each to console


    return dt; 
}

如果我在 ASP.net 中调用这个 web 服务也可以正常工作,我会从带有循环的数据表中得到结果。

现在如何从 web 服务中获取可以在 PHP 中显示/回显的数据表?

到目前为止,我的 PHP 文件中有这个:(顺便说一句:如果我在 PHP 中从 ASP.net 调用默认的 HelloWorld() webservice 方法效果很好)

$client = new SoapClient("http://localhost:10994/WebService.asmx?WSDL");
$params->Param1 = "car"; //this is search variable
$result = $client->searchDatabase($params)->searchDatabaseResult;

print_r ($result);

结果是: php错误

4

2 回答 2

0

你试过这个:

$params->search = "car"; //this is search variable

它对我来说很好,但我不知道如何使用行和列:-(

于 2013-06-03T07:44:06.173 回答
0

我尝试了这样的事情并且工作正常。

$client = new SoapClient("http://localhost/WebService.asmx?WSDL");
$result = $client->__soapCall("functionName", array($SoapCallParameters));

var_dump($result->functionNameResult);
于 2015-01-19T05:10:12.627 回答