Есть задача сделать веб сервис, который не ссылается на источники в интернете, а просто должен не выдавать ошибку. То есть есть wsdl фаил, его описание и пример. В SoapUI создается запрос и слушалка через mock, в итоге прога должна выводить через запрос данные из примера. Я не могу понять, почему я не могу создать запрос. Поможет мне кто-нибудь? Вот wsdl фаил HTML: <?xml version="1.0" encoding="UTF-8"?> <wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:comm="description.xsd" xmlns:tns="http://www.webserviceX.NET" targetNamespace="http://yandex.ru"> <!-- Type definitions for input- and output parameters for webservice --> <wsdl:types> <xsd:schema targetNamespace="http://yandex.ru"> <xsd:include schemaLocation="description.xsd"/> </xsd:schema> </wsdl:types> <wsdl:message name="Info"> <wsdl:part name="in" element="comm:Info"/> </wsdl:message> <wsdl:message name="CardInfo"> <wsdl:part name="out" element="comm:CardInfo"/> </wsdl:message> <!-- Port (interface) definitions --> <wsdl:portType name="GetUCDB_IDEndpoint"> <wsdl:eek:peration name="GetInfo"> <wsdl:input message="comm:Info"/> <wsdl:eek:utput message="comm:CardInfo"/> </wsdl:eek:peration> </wsdl:portType> <!-- Port bindings to transports and encoding - HTTP, document literal encoding is used --> <wsdl:binding name="GetUCDB_IDBinding" type="comm:Info"> <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/> <wsdl:eek:peration name="Info"> <soap:eek:peration style="document" soapAction="Info"/> <wsdl:input> <soap:body parts="in" use="literal"/> </wsdl:input> <wsdl:eek:utput> <soap:body parts="out" use="literal"/> </wsdl:eek:utput> </wsdl:eek:peration> </wsdl:binding> </wsdl:definitions>