Apache SOAP and C++ interoperability

2001-07-09 Thread Mukesh
Hi everybody, I want to develop an application which communicates with C++ server and a Java Server using Apache SOAP. I am able to communicate between two Java applications but i am not able to communicate between C++ and Java. Please try to help me. Thank You. Mukesh.

Abstract Method Error while calling Service...???

2001-07-09 Thread Ralf Bierig
Hi, I got the following error, while trying to execute an own service with an own serializer (which worked fine, by the way, under WebSphere Test Environment in VAJava): - Error after starting at the console - Exception in thread "main" java.lang.AbstractMethodError at org.apache

Re: Apache SOAP and C++ interoperability

2001-07-09 Thread Scott Nichol
Please explain your situation in more detail. For example, what is the exact problem you are having and who wrote the C++ server. Scott - Original Message - From: "Mukesh" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Monday, July 09, 2001 7:36 AM Subject: Apache SOAP and C++ intero

Re: Abstract Method Error while calling Service...???

2001-07-09 Thread Ralf Bierig
I use an own serializer for a WrapperClass which has the following signature private byte[] byteArray; public byte[] getByteArray(); This Wrapperclass enable me to write an optimized Serializer for bytes, which I encode as hex values, because the ArraySerializer has a lot of overhead. I have r

Re: Abstract Method Error while calling Service...???

2001-07-09 Thread Scott Nichol
The line of code from which the exception is thrown is s.marshall(inScopeEncStyle, type, value, name, sink, nsStack, xjmr, ctx); In this case, s is a Serializer obtained from your type mapping registry Serializer s = xjmr.querySerializer(type, actualE

cvs commit: xml-soap/java/src/org/apache/soap/encoding SOAPMappingRegistry.java

2001-07-09 Thread rubys
rubys 01/07/09 07:17:27 Modified:java/src/org/apache/soap/encoding SOAPMappingRegistry.java Log: Add support for 2001:base64Binary Revision ChangesPath 1.24 +3 -1 xml-soap/java/src/org/apache/soap/encoding/SOAPMappingRegistry.java Index: SOAPMappingRegi

Re: XML version of MIME multipart messages ?

2001-07-09 Thread Anders W. Tell
Dick Brooks wrote: >You might want to check out XMTP: >http://www.openhealth.org/xmtp/xmtprfc.txt > Thanks, It looks interesting, do you known if anything has happened after this memo was submitted in june 2000 ? /anders -- /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/ /

Re: How to map Element Object?

2001-07-09 Thread dswanson1
As far as I know support for complex types needs to be custom...not sure if you can even deserialize an Element...might want to just pass back a string and load it into a dom on the client...we're using Apache clients with Microsoft Soap servers...passing dom documents (small) back and forth...bu

Error testing sample.messaging

2001-07-09 Thread Jon Ward
I am trying the test the messaging application but get the following error. Can any body help? Sending some messages... RESPONSE: Error parsing source XML for /servlet/messagerouterFatal error in file:/C:/servers/j2ee/home/applications/soap/soap /servlet/messagerouter at line 1: Document

RE: XML version of MIME multipart messages ?

2001-07-09 Thread Dick Brooks
Anders, > Thanks, It looks interesting, do you known if anything has happened > after this memo was submitted in june 2000 ? I investigated XMTP in January 2000, while working on the design of ebXML's Message Service. In the end ebXML TRP decided to go with multipart MIME, so I didn't keep up w

cvs commit: xml-soap/java/samples/interop EchoTestClient.java

2001-07-09 Thread rubys
rubys 01/07/09 08:48:09 Modified:java/samples/interop EchoTestClient.java Log: Conform to the provided WSDL, and be tolerant of dates rounded or truncated to the nearest second. Revision ChangesPath 1.7 +17 -13xml-soap/java/samples/interop/EchoTestClient.ja

setting init parms for non-EJB java service

2001-07-09 Thread Uzay Takaoglu
Hi All, I'm using SOAP 2.2 on Linux. Is it possible to pass set of init paramters to a non-EJB SOAP java component? E.g. Just like servlets passing a config instance to init() method. The sample for the EJB service deployment descriptor contains , can we use the same thing for non-EJB ja

Bugs in Soap 2.2 BeanSerializer?

2001-07-09 Thread Soumen Sarkar
Hi, I tried to exchange the following data structure over SOAP by using SOAP 2.2 Bean Serializer class public class Employee implements Serializable { // not null public String name; // null if no manager public Employee manager; // null if no subordinates,this is a Employee V

cvs commit: xml-soap/java/src/org/apache/soap/server/http MessageRouterServlet.java RPCRouterServlet.java

2001-07-09 Thread dug
dug 01/07/09 16:24:40 Modified:java/src/org/apache/soap Constants.java java/src/org/apache/soap/server/http MessageRouterServlet.java RPCRouterServlet.java Log: Add deployment descriptor to the bag in SOAPContext so people can query the d

Re: setting init parms for non-EJB java service

2001-07-09 Thread Doug Davis
I just checked in a change that will add the DeploymentDescriptor object to the "bag" in the SOAPContext: dd = cntxt.getProperty(Constants.BAG_DEPLOYMENTDESCRIPTOR); Once you have the DD you can query its options: Hashtableprops = dd.getProps(); String value = (String) props.get( "myo

Step by step instructions to build soap

2001-07-09 Thread Eduardo Yánez
Hi!, I found something which i think is a bug, but in order to assure that i need to build my own soap.jar, how could i do this? Thanks in advance! E.Y.