0 Usuarios y 1 Visitante están viendo este tema.
Que tal Eliseo, algo que quieras corregir en el mensaje ... Muy buen ejemplo, gracias...
HolaMuy bueno amigo, lo voy a probar, se ve sencillo, claro esta muy bien explicado.Saludos
Excelente Eliseo (Y), pregunta, ¿en vez de usar IIS, puedo trabajar con Apache?.Saludos.
No saben como se puede consumir los webservices de un servidor Glassfish desde delphi 2009?
package hola;import javax.ejb.Stateless;import javax.jws.WebMethod;import javax.jws.WebService;@WebService@Stateless(name = "Hola")public class Hola { @WebMethod public String hola(String param) { return "Hola: " + param; }}
<?xml version="1.0" encoding="utf-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SOAP-ENV:Body> <yq1:hola xmlns:yq1="http://demo/"> <arg0>Daniel</arg0> </yq1:hola> </SOAP-ENV:Body></SOAP-ENV:Envelope>
<?xml version="1.0" encoding="utf-8"?><SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <SOAP-ENV:Body> <ns2:holaResponse xmlns:ns2="http://demo/"> <return>Hola: Daniel</return> </ns2:holaResponse> </SOAP-ENV:Body></SOAP-ENV:Envelope>
<?xml version="1.0" encoding="UTF-8"?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Header/><S:Body><ns2:hola xmlns:ns2="http://hola/"><arg0>Daniel</arg0></ns2:hola></S:Body></S:Envelope>
<?xml version="1.0" encoding="UTF-8"?><S:Envelope xmlns:S="http://schemas.xmlsoap.org/soap/envelope/"><S:Body><ns2:holaResponse xmlns:ns2="http://hola/"><return>Hola: Daniel</return></ns2:holaResponse></S:Body></S:Envelope>