Я работаю над настраиваемым поставщиком аутентификации для Cognos.У нас есть веб-сервис, который будет прослушивать запросы авторизации.В целях тестирования я просто пытаюсь отправить пользователя / пароль (будет изменен позже, чтобы использовать информацию о сеансе).
Я пытался заставить POC работать в простом консольном приложении Java перед реализациейтаможенный поставщик.У меня проблемы с получением клиента для связи с веб-сервисом.Я использовал wsimport для генерации своих классов с использованием флага keep.Я перенес сгенерированные java-файлы в свой проект Eclipse и создал основной метод, подобный следующему:
CognosAuthentication service = new CognosAuthentication();
CognosAuthenticationSoap soapClient = service.getCognosAuthenticationSoap();
CognosUser user = soapClient.validateDevSession("username", "password");
System.out.println(user == null ? "User was null" : user.getUserName());
Я попытался также указать URL-адрес службы (как с добавленным в конце «? Wsdl», так и сnot):
CognosAuthentication service = new CognosAuthentication(new URL("http://somehost/CognosAuthentication.asmx"), new QName("http://tempuri.org/", "CognosAuthentication"));
Где находится WSDL, сгенерированный службой:
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://tempuri.org/" xmlns:s1="http://www.ourcompany.com/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" targetNamespace="http://tempuri.org/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:types>
<s:schema elementFormDefault="qualified" targetNamespace="http://tempuri.org/">
<s:import namespace="http://www.ourcompany.com/" />
<s:element name="ValidateSession">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="username" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="expires" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="userId" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="authToken" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="ValidateSessionResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="1" maxOccurs="1" ref="s1:ValidateSessionResult" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="ValidateDevSession">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="username" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="password" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="ValidateDevSessionResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="1" maxOccurs="1" ref="s1:ValidateDevSessionResult" />
</s:sequence>
</s:complexType>
</s:element>
</s:schema>
<s:schema elementFormDefault="qualified" targetNamespace="http://www.ourcompany.com/">
<s:element name="ValidateSessionResult" nillable="true" type="s1:CognosUser" />
<s:complexType name="CognosUser">
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="CognosSlot" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="GroupName" type="s:string" />
<s:element minOccurs="0" maxOccurs="1" name="UserName" type="s:string" />
</s:sequence>
</s:complexType>
<s:element name="ValidateDevSessionResult" nillable="true" type="s1:CognosUser" />
</s:schema>
</wsdl:types>
<wsdl:message name="ValidateSessionSoapIn">
<wsdl:part name="parameters" element="tns:ValidateSession" />
</wsdl:message>
<wsdl:message name="ValidateSessionSoapOut">
<wsdl:part name="parameters" element="tns:ValidateSessionResponse" />
</wsdl:message>
<wsdl:message name="ValidateDevSessionSoapIn">
<wsdl:part name="parameters" element="tns:ValidateDevSession" />
</wsdl:message>
<wsdl:message name="ValidateDevSessionSoapOut">
<wsdl:part name="parameters" element="tns:ValidateDevSessionResponse" />
</wsdl:message>
<wsdl:portType name="CognosAuthenticationSoap">
<wsdl:operation name="ValidateSession">
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Gets user information based on the authentication token</wsdl:documentation>
<wsdl:input message="tns:ValidateSessionSoapIn" />
<wsdl:output message="tns:ValidateSessionSoapOut" />
</wsdl:operation>
<wsdl:operation name="ValidateDevSession">
<wsdl:documentation xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">Gets user information based on the authentication token</wsdl:documentation>
<wsdl:input message="tns:ValidateDevSessionSoapIn" />
<wsdl:output message="tns:ValidateDevSessionSoapOut" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="CognosAuthenticationSoap" type="tns:CognosAuthenticationSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="ValidateSession">
<soap:operation soapAction="http://tempuri.org/ValidateSession" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="ValidateDevSession">
<soap:operation soapAction="http://tempuri.org/ValidDevSession" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:binding name="CognosAuthenticationSoap12" type="tns:CognosAuthenticationSoap">
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="ValidateSession">
<soap12:operation soapAction="http://tempuri.org/ValidateSession" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="ValidateDevSession">
<soap12:operation soapAction="http://tempuri.org/ValidDevSession" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="CognosAuthentication">
<wsdl:port name="CognosAuthenticationSoap" binding="tns:CognosAuthenticationSoap">
<soap:address location="http://mbeard2/LMS/app/analytics/CognosAuthentication.asmx" />
</wsdl:port>
<wsdl:port name="CognosAuthenticationSoap12" binding="tns:CognosAuthenticationSoap12">
<soap12:address location="http://mbeard2/LMS/app/analytics/CognosAuthentication.asmx" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
Я предполагаю, что я выполнил все правильные шаги, используя wsimport.Проблема, с которой я сталкиваюсь, заключается в том, что она никогда ничего не делает .Я могу запустить Fiddler и смотреть, что сетевой трафик не происходит.Объект user всегда имеет значение null.Есть что-то, что мне нужно настроить?Есть ли что-то странное в том, что веб-сервис является сервисом C # / ASP.NET?Я что-то упускаю из-за того, как я использую структуру запроса SOAP?
Я не получаю никаких ошибок ни во время компиляции, ни при запуске кода.Я чесаю голову за ответы!