Click here to Skip to main content
15,883,709 members
Home / Discussions / Web Development
   

Web Development

 
AnswerRe: Uploads and server-side processing for large files. Pin
Bradml16-Feb-07 11:17
Bradml16-Feb-07 11:17 
GeneralRe: Uploads and server-side processing for large files. Pin
walkeraj16-Feb-07 11:21
walkeraj16-Feb-07 11:21 
GeneralRe: Uploads and server-side processing for large files. Pin
Bradml16-Feb-07 11:43
Bradml16-Feb-07 11:43 
QuestionRe: Uploads and server-side processing for large files. Pin
walkeraj20-Feb-07 7:00
walkeraj20-Feb-07 7:00 
QuestionHelp, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
DoomedOne16-Feb-07 2:49
DoomedOne16-Feb-07 2:49 
AnswerRe: Help, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
Bradml16-Feb-07 11:15
Bradml16-Feb-07 11:15 
GeneralRe: Help, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
DoomedOne20-Feb-07 3:16
DoomedOne20-Feb-07 3:16 
GeneralRe: Help, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
DoomedOne20-Feb-07 3:24
DoomedOne20-Feb-07 3:24 
Ups!!!, sorry

The wsdl is not shown in the prior message, I forget to mark ignore tags.

Here iy is:

<wsdl:definitions xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:tm="http://microsoft.com/wsdl/mime/textMatching/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/" xmlns:tns="http://localhost/WebServices" xmlns:s="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" targetNamespace="http://localhost/WebServices" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/">
<wsdl:types>
<s:schema elementFormDefault="qualified" targetNamespace="http://localhost/WebServices">
<s:element name="HelloWorld">
<s:complexType />
</s:element>
<s:element name="HelloWorldResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="HelloWorldResult" type="s:string" />
</s:sequence>
</s:complexType>
</s:element>
<s:element name="ListaCiudades">
<s:complexType />
</s:element>
<s:element name="ListaCiudadesResponse">
<s:complexType>
<s:sequence>
<s:element minOccurs="0" maxOccurs="1" name="ListaCiudadesResult" type="tns:ArrayOfString" />
</s:sequence>
</s:complexType>
</s:element>
<s:complexType name="ArrayOfString">
<s:sequence>
<s:element minOccurs="0" maxOccurs="unbounded" name="string" nillable="true" type="s:string" />
</s:sequence>
</s:complexType>
</s:schema>
</wsdl:types>
<wsdl:message name="HelloWorldSoapIn">
<wsdl:part name="parameters" element="tns:HelloWorld" />
</wsdl:message>
<wsdl:message name="HelloWorldSoapOut">
<wsdl:part name="parameters" element="tns:HelloWorldResponse" />
</wsdl:message>
<wsdl:message name="ListaCiudadesSoapIn">
<wsdl:part name="parameters" element="tns:ListaCiudades" />
</wsdl:message>
<wsdl:message name="ListaCiudadesSoapOut">
<wsdl:part name="parameters" element="tns:ListaCiudadesResponse" />
</wsdl:message>
<wsdl:portType name="ServiceSoap">
<wsdl:operation name="HelloWorld">
<wsdl:input message="tns:HelloWorldSoapIn" />
<wsdl:output message="tns:HelloWorldSoapOut" />
</wsdl:operation>
<wsdl:operation name="ListaCiudades">
<wsdl:input message="tns:ListaCiudadesSoapIn" />
<wsdl:output message="tns:ListaCiudadesSoapOut" />
</wsdl:operation>
</wsdl:portType>
<wsdl:binding name="ServiceSoap" type="tns:ServiceSoap">
<soap:binding transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="HelloWorld">
<soap:operation soapAction="http://localhost/WebServices/HelloWorld" style="document" />
<wsdl:input>
<soap:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="ListaCiudades">
<soap:operation soapAction="http://localhost/WebServices/ListaCiudades" 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="ServiceSoap12" type="tns:ServiceSoap">
<soap12:binding transport="http://schemas.xmlsoap.org/soap/http" />
<wsdl:operation name="HelloWorld">
<soap12:operation soapAction="http://localhost/WebServices/HelloWorld" style="document" />
<wsdl:input>
<soap12:body use="literal" />
</wsdl:input>
<wsdl:output>
<soap12:body use="literal" />
</wsdl:output>
</wsdl:operation>
<wsdl:operation name="ListaCiudades">
<soap12:operation soapAction="http://localhost/WebServices/ListaCiudades" 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="Service">
<wsdl:port name="ServiceSoap" binding="tns:ServiceSoap">
<soap:address location="http://localhost/WebService/Service.asmx" />
</wsdl:port>
<wsdl:port name="ServiceSoap12" binding="tns:ServiceSoap12">
<soap12:address location="http://localhost/WebService/Service.asmx" />
</wsdl:port>
</wsdl:service>
</wsdl:definitions>

AnswerRe: Help, problem with Web Service (ASP.NET, VWD 2005, XP, IIS 5.1) Pin
DoomedOne26-Mar-07 8:24
DoomedOne26-Mar-07 8:24 
GeneralDisplay PDF in ASP.NET Pin
Brady Kelly16-Feb-07 0:55
Brady Kelly16-Feb-07 0:55 
AnswerRe: Display PDF in ASP.NET Pin
Ankur.Bakliwal16-Feb-07 2:19
Ankur.Bakliwal16-Feb-07 2:19 
GeneralRe: Display PDF in ASP.NET Pin
Sylvester george16-Feb-07 2:37
Sylvester george16-Feb-07 2:37 
GeneralRe: Display PDF in ASP.NET Pin
badgrs16-Feb-07 3:19
badgrs16-Feb-07 3:19 
Questionfor ajax, do i nid... Pin
Nekshan15-Feb-07 20:11
Nekshan15-Feb-07 20:11 
AnswerRe: for ajax, do i nid... Pin
Bradml15-Feb-07 22:54
Bradml15-Feb-07 22:54 
AnswerRe: for ajax, do i nid... Pin
badgrs15-Feb-07 23:05
badgrs15-Feb-07 23:05 
GeneralRe: for ajax, do i nid... Pin
Bradml15-Feb-07 23:58
Bradml15-Feb-07 23:58 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 4:57
theJazzyBrain16-Feb-07 4:57 
GeneralRe: for ajax, do i nid... Pin
Bradml16-Feb-07 11:12
Bradml16-Feb-07 11:12 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 13:39
theJazzyBrain16-Feb-07 13:39 
GeneralRe: for ajax, do i nid... Pin
Bradml16-Feb-07 13:48
Bradml16-Feb-07 13:48 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain17-Feb-07 0:01
theJazzyBrain17-Feb-07 0:01 
AnswerRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 4:51
theJazzyBrain16-Feb-07 4:51 
GeneralRe: for ajax, do i nid... Pin
led mike16-Feb-07 4:57
led mike16-Feb-07 4:57 
GeneralRe: for ajax, do i nid... Pin
theJazzyBrain16-Feb-07 5:33
theJazzyBrain16-Feb-07 5:33 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.