Sabun Erken sonu

0 Cevap php

i'm trying to write a php soap server but i keep getting the folow error on louding the wsdl file:

WSDLSOAP-ERROR: Parsing WSDL: Couldn't load from 'files.wsdl' : Premature end of data in tag definitions line 2

wsdl dosyası gibi görünüyor:

        <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="TemperatureService"
     targetNamespace="http://www.mysite.com/soap/files.wsdl"
     xmlns:tns="http://www.mysite.com/soap/files.wsdl"
     xmlns:xsd="http://www.w3.org/2001/XMLSchema"
     xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
     xmlns="http://schemas.xmlsoap.org/wsdl/">

        <!------------------------
                        DATATYPES
        ------------------------->
        <types>
        </types>

        <!------------------------
                        MESSAGES
        ------------------------->
        <message name="createReleaseRequest">
            <part name="title" type="xsd:string"/>
            <part name="size" type="xsd:string"/>
            <part name="key" type="xsd:string"/>
        </message>
        <message name="createReleaseResponse">
            <part name="rlsid" type="xsd:string"/>
        </message>

        <!------------------------
                        PORTTYPES
        ------------------------->
        <portType name="DBPortType">
            <operation name="createRelease">
                <input message="tns:createReleaseRequest" />
                <output message="tns:createReleaseResponse" />
            </operation>
        </portType>
     </definitions>

ve php dosyası:

<?php
ini_set("soap.wsdl_cache_enabled", "0");

$server = new SoapServer("files.wsdl");
$server->setClass("handleDB");
$server->handle();

class handleDB {
 ////
}
?>

amyone Ben ne yapıyorum yanlış biliyor

0 Cevap