salve, sto sviluppando un web service client a partire dal wsdl con eclipse ma quando lo lancio prendo una eccezione
org.apache.axis.ConfigurationException: No service named authorize is available
puo' essere perché il web service non è disponibile? o è piu' probabile che abbia configurato male il client? ho notato che non c'è nessun wsdd generato da eclipse... puo' funzionare il client senza wsdd?
Qualcuno ha un modo per generare il wsdd a partire dal wsdl? in tal caso potete postare qui il wsdd e me lo copio? :-)
Questo è il wsdl:

<?xml version="1.0" encoding="UTF-8"?>
<definitions xmlns:tns="od_notify_webservice"
xmlns:wsr="http://www.openuri.org/2002/10/soap/reliability/"
xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
xmlns:http="http://schemas.xmlsoap.org/wsdl/http/"
xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
xmlns:soap12enc="http://www.w3.org/2003/05/soap-encoding"
xmlns:conv="http://www.openuri.org/2002/04/wsdl/conversation/"
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
xmlns:s="http://www.w3.org/2001/XMLSchema"
xmlns="http://schemas.xmlsoap.org/wsdl/"
targetNamespace="od_notify_webservice">
<types>
<xsd:schema xmlns:xsd="http://www.w3.org/2001/XMLSchema"
xmlns:stns="java:com.etnoteam.pepat.ondemand.viewl ayer.wsdata"
elementFormDefault="qualified"
attributeFormDefault="qualified"
targetNamespace="java:com.etnoteam.pepat.ondemand. viewlayer.wsdata">
<xsd:complexType name="ODPepDataWS"
abstract="true">
</xsd:complexType>
<xsd:complexType name="ODPepNotifyRequestWS">
<xsd:complexContent>
<xsd:extension base="stns:ODPepDataWS">
<xsd:sequence>
<xsd:element type="xsd:string"
name="cod_risposta_csp"
minOccurs="1"
nillable="true"
maxOccurs="1">
</xsd:element>
<xsd:element type="xsd:string"
name="id_autorizzazione"
minOccurs="1"
nillable="true"
maxOccurs="1">
</xsd:element>
<xsd:element type="xsd:string"
name="messaggio_csp"
minOccurs="1"
nillable="true"
maxOccurs="1">
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
<xsd:complexType name="ODPepNotifyResponseWS">
<xsd:complexContent>
<xsd:extension base="stns:ODPepDataWS">
<xsd:sequence>
<xsd:element type="xsd:string"
name="cod_risposta_conferma"
minOccurs="1"
nillable="true"
maxOccurs="1">
</xsd:element>
<xsd:element type="xsd:string"
name="id_autorizzazione"
minOccurs="1"
nillable="true"
maxOccurs="1">
</xsd:element>
<xsd:element type="xsd:string"
name="messaggio"
minOccurs="1"
nillable="true"
maxOccurs="1">
</xsd:element>
</xsd:sequence>
</xsd:extension>
</xsd:complexContent>
</xsd:complexType>
</xsd:schema>
</types>
<message name="notify">
<part xmlnsartns="java:com.etnoteam.pepat.ondemand.viewlayer. wsdata"
type="partns:ODPepNotifyRequestWS"
name="oDPepNotifyRequestWS">
</part>
</message>
<message name="notifyResponse">
<part xmlnsartns="java:com.etnoteam.pepat.ondemand.viewlayer. wsdata"
type="partns:ODPepNotifyResponseWS"
name="result">
</part>
</message>
<portType name="NotifyPort">
<operation name="notify">
<input message="tns:notify">
</input>
<output message="tns:notifyResponse">
</output>
</operation>
</portType>
<binding type="tns:NotifyPort"
name="NotifyPort">
<soap:binding style="rpc"
transport="http://schemas.xmlsoap.org/soap/http">
</soap:binding>
<operation name="notify">
<soapperation style="rpc"
soapAction="">
</soapperation>
<input>
<soap:body namespace="od_notify_webservice"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
use="encoded">
</soap:body>
</input>
<output>
<soap:body namespace="od_notify_webservice"
encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"
use="encoded">
</soap:body>
</output>
</operation>
</binding>
<service name="Notify">
<port name="NotifyPort"
binding="tns:NotifyPort">
<soap:address location="http://localhost:7001/ODNotifyWS/notify">
</soap:address>
</port>
</service>
</definitions>

grazie infinite