我有.net内置的webservice,看起来像这样:
[ServiceContract]
public interface IRestService
{
[OperationContract]
[WebGet(UriTemplate = "object/{name}")]
Object GetObject(string name);
}
public class api : IRestService
{
OSAE.OSAE osae = new OSAE.OSAE("WebService");
public Object GetObject(string name)
{
// lookup object
OSAEObject OSAEobj = osae.GetObjectByName(name);
Object obj = new Object();
obj.Name = OSAEobj.Name;
obj.Address = OSAEobj.Address;
obj.Type = OSAEobj.Type;
obj.Container = OSAEobj.Container;
obj.Enabled = OSAEobj.Enabled;
obj.Description = OSAEobj.Description;
return obj;
}
}
当我只是使用浏览器调用它时,这将给出一个看起来像这样的响应:
<Object xmlns="http://schemas.datacontract.org/2004/07/OSAERest" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<Address/>
<Container>SYSTEM</Container>
<Description>Email</Description>
<Enabled>0</Enabled>
<Name>Email</Name>
<Properties xmlns:a="http://schemas.microsoft.com/2003/10/Serialization/Arrays" i:nil="true"/>
<Type>EMAIL</Type>
</Object>
我需要能够使用PHP来使用它。我尝试过使用Pest(https://github.com/educoder/pest),但我无法解决任何问题。这是我的尝试:
<?php
require_once 'Includes/PestXML.php';
$pest = new PestXML('http://localhost:8732/api');
$things = $pest->get('/object/email');
$names = $things->xpath('//Object/Description');
while(list( , $node) = each($names)) {
echo $node,"\n";
}
?>
如何使用PHP正确使用我的Web服务响应?
答案 0 :(得分:2)
将WebGet声明更改为以下内容:
[WebGet(ResponseFormat = WebMessageFormat.Json, UriTemplate = "object/{name}")]
然后,只需调用json_decode($ result)就可以在PHP中使用响应。 (以下示例)
$url = "http://localhost:8732/api/object/wibble";
$response = file_get_contents($url);
$jsonData = json_decode($response);
var_dump($jsonData);
如果将“json_decode”第二个参数设置为true,则会获得关联数组而不是对象图。