Ciao,
Scusa se ti rompo ancora....
Ma se adotto la strada che mi hai consigliato del DataGrid,
Come faccio ad associargli il contenuto del mio webService.
Sai dirmi che codice devo mettere? oppure consigliarmi un tutorial il mio web Service si chiama UNIBI_TicketList
Questo è il wsdl:
<?xml version="1.0" encoding="utf-8"?>
<wsdl:definitions xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="urn:UNIBO_TicketList" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" targetNamespace="urn:UNIBO_TicketList" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:types>
<s:schema elementFormDefault="qualified" targetNamespace="urn:UNIBO_TicketList">
<s:element name="OpGetList" type="tns:GetListInputMap" />
<s:complexType name="GetListInputMap">
<s:sequence>
<s:element name="Qualification" type="s:string" />
</s:sequence>
</s:complexType>
<s:element name="OpGetListResponse" type="tns:GetListOutputMap" />
<s:complexType name="GetListOutputMap">
<s:sequence>
<s:element maxOccurs="unbounded" name="getListValues">
<s:complexType>
<s:sequence>
<s:element name="Case_ID" type="s:string" />
<s:element name="Create_Time" type="s:dateTime" />
<s:element name="Request_Urgency" type="tns:Request_UrgencyType" />
<s:element name="Status" type="tns:StatusType" />
<s:element name="Summary" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
</s:sequence>
</s:complexType>
<s:simpleType name="Request_UrgencyType">
<s:restriction base="s:string">
<s:enumeration value="Low" />
<s:enumeration value="Medium" />
<s:enumeration value="High" />
<s:enumeration value="Urgent" />
</s:restriction>
</s:simpleType>
<s:simpleType name="StatusType">
<s:restriction base="s:string">
<s:enumeration value="New" />
<s:enumeration value="Assigned" />
<s:enumeration value="Work In Progress" />
<s:enumeration value="Pending" />
<s:enumeration value="Resolved" />
<s:enumeration value="Closed" />
</s:restriction>
</s:simpleType>
<s:element name="AuthenticationInfo" type="tns:AuthenticationInfo" />
<s:complexType name="AuthenticationInfo">
<s:sequence>
<s:element name="userName" type="s:string" />
<s:element name="password" type="s:string" />
<s:element minOccurs="0" name="authentication" type="s:string" />
<s:element minOccurs="0" name="locale" type="s:string" />
<s:element minOccurs="0" name="timeZone" type="s:string" />
</s:sequence>
</s:complexType>
</s:schema>
</wsdl:types>
<wsdl:message name="OpGetListSoapIn">
<wsdl:part name="parameters" element="tns:OpGetList" />
</wsdl:message>
<wsdl:message name="ARAuthenticate">
<wsdl:part name="parameters" element="tns:AuthenticationInfo" />
</wsdl:message>
<wsdl:message name="OpGetListSoapOut">
<wsdl:part name="parameters" element="tns:OpGetListResponse" />
</wsdl:message>
<wsdl:portType name="UNIBO_TicketListPortType">
<wsdl:operation name="OpGetList">
<wsdl:input message="tns:OpGetListSoapIn" />
<wsdl:output message="tns:OpGetListSoapOut" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="UNIBO_TicketListSoapBinding" type="tns:UNIBO_TicketListPortType">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" style="document" />
<wsdl:operation name="OpGetList">
<soap:operation soapAction="urn:UNIBO_TicketList/OpGetList" style="document" />
<wsdl:input>
<soap:header message="tns:ARAuthenticate" part="parameters" use="literal" />
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
</wsdl:binding>
<wsdl:service name="UNIBO_TicketListService">
<wsdl:port name="UNIBO_TicketListSoap" binding="tns:UNIBO_TicketListSoapBinding">
<soap:address location="http://it-l-vbvirtual/arsys/services/ARService?server=KSERVER&webService=UNIBO_TicketList" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>
GRAZIE 1000