I hava trouble with apache soap v2.2

2002-02-20 Thread 고 탁현
I installed apache soap v2.2 on weblogic6.1, and finished all works on your install guides. on the size of client, classpath=.;mail.jar;activation.jar;soap.jar;xerces.jar;.\soap2_2 . But, I can't test your server-side installation. After I run command-line "java org.apache.soap.server.Service

java client for .NET webservice and Co

2002-02-20 Thread Elise_Dupont
Hi, i wanted to look at the soap-dev archives before to post my question, went on the web site "http://archive.covalent.net/" but it seems that it doesn't reply... so before to annoy you with a "maybe already posted question" can you give me a way to look in archives ? regards, Elise

Re: java client for .NET webservice and Co

2002-02-20 Thread Elise_Dupont
okay so after have looked at many documentation, i didn't find the solution so i post my question here : what i must create is a java client that sends a DataSet to a .NET webservice. This webservice takes the DataSet and add it into a SQL server database. My problem is : how to create a DataSet

Re: java client for .NET webservice and Co

2002-02-20 Thread Elise_Dupont
i also do have a WSD file : RE: java client for .NET webservice and Co
Hi ,   Sending a dataset using the SOAP protocol is simply impossible for the following reasons :     1 There is no definition of what a dataset is inside the XmlSchema basic types.   2 A dataset may contain undefined binary data that will not comply with http protocol usually used at the

Re: java client for .NET webservice and Co : found some information but notall

in fact (tell me if i'm wrong),i guess i just have to transform my java object into a XML SOAP object, specifying a shema (my wsd file), and then send this xml SOAP object to the .NET webservice. is there a class to do this ? is the Class SOAPMappingRegistry doing this ? i'm not sure (A SOAPMapp

RE: java client for .NET webservice and Co

even if i do have an xsd file ? it's a shema of the dataset right ? so you think i should send X strings in stead of one xml object, and then it's up to the .NET webservice to get those strings and create it's own dataset with ? (or to insert them in the SQL server DB directly) ? (i ask you becau

Re: java client for .NET webservice and Co

A DataSet is a construct that ADO.NET works with, right? If so, to have an Apache SOAP client send a DataSet, you need to create a DataSet Java class that implements the org.apache.xml.Serializer interface. That interface has a single method named marshal, which is responsible for writing the XM

Re: java client for .NET webservice and Co

Great, i looked at the API reference, the definition seems to fit, but i didn't find the way tospecify my xsd shema ? thanks again Elise Dupont Software developer Technology Development Group Europe Lionbridge Technologies - France Buropolis 1 - 124

RE: java client for .NET webservice and Co

>so you think i should send X strings in stead of one xml object, and then it's up to the .NET webservice to get those strings and create it's own dataset with ? (or to insert them in the SQL server DB directly) ?   It's up to the .NET service to provide an extra interface to be able to in

Re: java client for .NET webservice and Co

There is another object in ADO.NET - DataReader. It is pretty close to JDBC. Usual way *when client is receiving* data is to expose it as DataReader, and then load DataSet from DataReader. You have different problem. DataSet serialized representation is documented (I don't have the docs right now

Re: java client for .NET webservice and Co

Apache SOAP does not use XSD or WSDL. It is based on serializing and deserializing Java classes. There is no tool to generate the Java classes or serialization code from XSD or WSDL. There are other SOAP implementations for Java (e.g. GLUE and Idoox) that *may* do this, but I am not sufficientl

Re: java client for .NET webservice and Co

I've heard recently of Castor, a data binding for Java. the code seems very simple, with many shema struture supported. maybe is it the solution for my problem ? this would transform my java object into an XML object right ? Elise Dupont Software

Re: java client for .NET webservice and Co

I hope someone else on this list has maintained a more current knowledge of the market than I. The Java alternatives I am familiar with are WASP (http://www.systinet.com) and GLUE (http://www.themindelectric.com). These seem like very nice products and have what appear to be reasonable licensing

RE: java client for .NET webservice and Co

>Personally, I do not care for the technique of turning everything into a >string. Of course, I don't like storing and passing data as DataSets, >either. My preference is to pass "objects" that have some meaning to your >application domain. For example, you appear to be sending a DataSet I ful

Unsubscribe Me

**Disclaimer Information contained in this E-MAIL being proprietary to Wipro Limited is 'privileged' and 'confidential' and intended for use only by the individual or entity to which it is addressed. You are notified that any

Re: java client for .NET webservice and Co

thanks to all, i should have enought elements now to find a solution (no i don't use EJB) i think i will use Castor or Zeus, and bind myjava object into a simple XML, based upon my xsd file regards, elise, xml learning girl :) Elise Dupont Software

Re: java client for .NET webservice and Co

Of course, architecturally I don't like 'generic database tools' servers like 'data inserters', either. ;-) Scott Nichol - Original Message - From: "Jean-Yves MENGANT" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, February 20, 2002 12:00 PM Subject: RE: java client for .NE