SOAP Struct question

2002-03-21 Thread Paco Avila
I have a method that returns an object (a bean). The server is configured to serialize this object using the BeanSerializer. The returned XML is a Struct? -- GRIDSYSTEMS Francisco Jose Avila BermejoParc Bit - Son Espanyol Responsable Área Desarrollo07120 Palma de Mallorca [EMAIL

Re: How to call a web service from a web app or html page

2002-02-24 Thread Paco Avila
Hi, you can user SOAP from an applet in a web page. You can access the applet methos from JavaScript. I have been using kSOAP which is a very small SOAP implementation and works fine. Also you can find a SOAP implementatin in JavaScript but only works in Explorer. -- GRIDSYSTEMS

Re: error run descriptor.xml

2002-01-31 Thread Paco Avila
Try with this: isd:service xmlns:isd="http://xml.apache.org/xml-soap/deployment" id="urn:Hello" !-- Definicion de los metodos de la clase -- isd:provider type="java" scope="Application" methods="sayHelloTo" !-- Definicion de la clase -- isd:java class="hello.HelloServer"

Re: Can Apache SOAP work withs 2D arrays?

2001-09-13 Thread Paco Avila
Hi there, Can you please elaborate a bit more on your question? Do you mean that you want to transmit 2-D arrays as RPC paramaters or something? Regards, Well, I think that multidimensional arrays are not SOAP compliant in Apache SOAP. This is a piece of the SOAP documentation: Arrays may

About multidimensional arrays in Apache SOAP

2001-09-11 Thread Paco Avila
Well, I think that multidimensional arrays are not SOAP compliant in Apache SOAP. This is a piece of the SOAP documentation: Arrays may be multi-dimensional. In this case, more than one size will appear within the asize part of the arrayType attribute: SOAP-ENC:Array

Re: Delphi client for webservice over Apache SOAP

2001-08-29 Thread Paco Avila
You can try WASP tools from Idoox (http://www.idoox.com). I have made and deployed an rpc-oriented web service by using Apache-SOAP, After that I create a java client to test it. It worked fine over jrun 3.0 as app server but now I am trying to implement a SOAP based client in

Re: Problem with and as parameter value

2001-08-23 Thread Paco Avila
That's because you can't have special characters like and in your strings. Try encoding them using base64 encoding. The character shold be converted to lt; and to gt;. This should be done in the SOAP library, I think...

XML compression in SOAP messages

2001-08-20 Thread Paco Avila
Hi, is possible to compress the XML sent in a SOAP message? Is this feature include in the SOAP specification?

Re: Delphi Client Java Server

2001-08-16 Thread Paco Avila
Can I program a Delphi Client for a Java Server? For Example,My Java sample server is addressbook sample that come Apache-Soap 2.2. How to program this client? I know the first step is generation a WSDL file. How to generate this WSDL? Create by myself or by

Problems with MIME

2001-07-24 Thread Paco Avila
What about the file name in the MIME sample? It is null. Thanks.