I am trying to use Gemx's webservices for TV but it has been a while since I programmed and SOAP is bit new to me....
Request and Response below but I can not figure out what I am missing (the service is working with Gemx's default TvServiceWebServices.asmx?op=GetChannelsInTvGroup call to group 11 so not sure what I am missing here...)
Someone point out the error I have made?
And getting a respone of this (ie. no data)
Request and Response below but I can not figure out what I am missing (the service is working with Gemx's default TvServiceWebServices.asmx?op=GetChannelsInTvGroup call to group 11 so not sure what I am missing here...)
Someone point out the error I have made?
Code:
POST /TvServiceWebServices.asmx HTTP/1.0
Host: 192.168.1.3:8080
User-Agent: NuSOAP/0.7.3 (1.114)
Content-Type: text/xml; charset=ISO-8859-1
SOAPAction: "http://tempuri.org/GetChannelsInTvGroup"
Content-Length: 530
<?xml version="1.0" encoding="ISO-8859-1"?>
<SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/">
<SOAP-ENV:Body>
<ns9347:GetChannelsInTvGroup xmlns:ns9347="http://tempuri.org">
<idGroup xsi:type="xsd:int">11</idGroup>
</ns9347:GetChannelsInTvGroup>
</SOAP-ENV:Body>
</SOAP-ENV:Envelope>
And getting a respone of this (ie. no data)
Code:
HTTP/1.1 200 OK
Server: Microsoft-Cassini/1.0.0.0
Date: Sun, 24 Jan 2010 14:45:24 GMT
X-AspNet-Version: 2.0.50727
Cache-Control: private, max-age=0
Content-Type: text/xml; charset=utf-8
Content-Length: 365
Connection: Close
<?xml version="1.0" encoding="utf-8"?>
<soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<soap:Body>
<GetChannelsInTvGroupResponse xmlns="http://tempuri.org/">
<GetChannelsInTvGroupResult />
</GetChannelsInTvGroupResponse>
</soap:Body>
</soap:Envelope>