Re: Does SOAP support attachments with JDK1.3

2005-02-18 Thread Scott Nichol
Apache SOAP can send and receive MIME attachments, so it could be used to upload a zip file if the service supports MIME attachments. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message

I want to deploy the soap service in my own context

2005-02-17 Thread Tao Jiang
Hi, all for example : http://localhost/tct2api/tctapi/servlet/rpcrouter.wss rather than http://localhost/soap/servlet/rpcrouter how can i do ? Thanks and regards.

Axis or SOAP...

2005-01-13 Thread Jim
I was interested in evaluating for use Apache Java class libraries for SOAP/WSDL. My questions are the following: o Should I be using Axis or SOAP? o Does the SOAP project supercede the Axis project? Which should I be using. I will investigate both, but was just wondering if . Thanks

Re: Axis or SOAP...

2005-01-13 Thread Scott Nichol
You should use Axis. It continues to evolve to support new and updated standards. Notably, it supports WSDL 1.1 and JAX-RPC, the latter implying that you could use Axis now and decide to switch to another implementation in the future if necessary. Apache SOAP supports SOAP 1.1 and SOAP

Re: Create SOAP message (Document style) using Apache SOAP HELP !!!

2004-12-10 Thread Scott Nichol
[EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 09, 2004 1:37 PM Subject: Create SOAP message (Document style) using Apache SOAP HELP !!! Are there any sample codes in the Apache SOAP or any other SOAP Java framework that will allow us to easily create SOAP Document style messages

Create SOAP message (Document style) using Apache SOAP HELP !!!

2004-12-09 Thread ab ab
Are there any sample codes in the Apache SOAP or any other SOAP Java framework that will allow us to easily create SOAP Document style messages to interface with MS .NET #C web services? Thanks much for any help ... Tom __ Do you Yahoo

Re: Create SOAP message (Document style) using Apache SOAP HELP !!!

2004-12-09 Thread Martin Gainty
PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, December 09, 2004 1:37 PM Subject: Create SOAP message (Document style) using Apache SOAP HELP !!! Are there any sample codes in the Apache SOAP or any other SOAP Java framework that will allow us to easily create SOAP Document style messages

Re: Create SOAP message (Document style) using Apache SOAP HELP !!!

2004-12-09 Thread ab ab
Thanks Martin but i'm really looking for an open-source Java SOAP client toolkit (handling SOAP faults etc..) instead of creating a SOAP message request using dom4j which is very simple to implement ... Tom --- Martin Gainty [EMAIL PROTECTED] wrote: Tom- With DOM you can create 1 of 3 clients

RE: Create SOAP message (Document style) using Apache SOAP HELP !!!

2004-12-09 Thread Martin Gainty
PROTECTED] To: [EMAIL PROTECTED] Subject: Create SOAP message (Document style) using Apache SOAP HELP !!! Date: Thu, 9 Dec 2004 10:37:44 -0800 (PST) MIME-Version: 1.0 Received: from mail.apache.org ([209.237.227.199]) by mc4-f11.hotmail.com with Microsoft SMTPSVC(5.0.2195.6824); Thu, 9 Dec 2004 10

Re: Create SOAP message (Document style) using Apache SOAP HELP !!!

2004-12-09 Thread Martin Gainty
: Create SOAP message (Document style) using Apache SOAP HELP !!! Are there any sample codes in the Apache SOAP or any other SOAP Java framework that will allow us to easily create SOAP Document style messages to interface with MS .NET #C web services? Thanks much for any help ... Tom

Axis backward compatibility to Apache Soap w/ messagerouter

2004-12-08 Thread Pramodh Peddi
Hi, I am trying to migrate from soap_2.3 to axis_1.1. The current apache-soap services are using messagerouter. So, all the methods in the services has similar signature like: myservice(Envelope, SOAPContentx request, SOAPContext response) Axis_1.1 does not have these classes

Apache Soap vs Axis

2004-12-02 Thread Pramodh Peddi
My company is trying to make the product more scalable. We are using Apache Soap right now. So, we are considering migrating from Soap to Axis as one of the important sources to enhance the scalability/performance of the product. Can anyone provide any official documentation on how

Re: Compressing SOAP requests

2004-11-15 Thread Nige White
, and no bit-shift operators!) Append the original data length This works in that I can compress data, and output it to a file which gunzip will happily inflate to the original data. I can also see (in my logfile) the correctly inflated SOAP packets coming in to my DBL server. There does seem

Re: Compressing SOAP requests

2004-11-15 Thread Scott Nichol
] To: [EMAIL PROTECTED] Sent: Monday, November 15, 2004 1:22 PM Subject: Re: Compressing SOAP requests Scott Nichol wrote: FYI, deflate follows Zlib as described in RFC 1950 (http://www.ietf.org/rfc/rfc1950.txt?number=1950). The Zlib DEFLATE method of compression is described in RFC 1951

Compressing SOAP requests

2004-11-12 Thread Nige White
(), and inflateEnd() routines, and I get back the data I started with, so the zlib routines I have are consistent with themselves. The good news is that they produce a 3:1 compression ratio on my test string! Unfortunately, they won't uncompress the data I'm receiving from Apache SOAP. Although if I write

Re: Compressing SOAP requests

2004-11-12 Thread Scott Nichol
Standard Zlib is equivalent to HTTP Content-Encoding header value 'deflate'. This differs from 'gzip', in that gzip includes some extra bytes (a header and checksum) in the compressed data. Apache SOAP does not support deflate right now. My experience working with PHP Zlib is that many (most

Re: Compressing SOAP requests

2004-11-12 Thread Scott Nichol
: Friday, November 12, 2004 11:44 AM Subject: Re: Compressing SOAP requests Standard Zlib is equivalent to HTTP Content-Encoding header value 'deflate'. This differs from 'gzip', in that gzip includes some extra bytes (a header and checksum) in the compressed data. Apache SOAP does not support

Re: Compressing SOAP requests

2004-11-12 Thread Nige White
Scott Nichol wrote: The magic header is 8 bytes: \x1f\x8b\x08\x00\x00\x00\x00\x00. Interesting. I've read elsewhere that the header is 10 bytes, but... I've tried writing those 8 bytes followed by the zlib-deflated data, followed by 32 bits of zero. Now, where gunzip -t used to say invalid

Re: Compressing SOAP requests

2004-11-12 Thread Scott Nichol
PROTECTED] Sent: Friday, November 12, 2004 12:48 PM Subject: Re: Compressing SOAP requests Scott Nichol wrote: The magic header is 8 bytes: \x1f\x8b\x08\x00\x00\x00\x00\x00. Interesting. I've read elsewhere that the header is 10 bytes, but... I've tried writing those 8 bytes followed

Re: Compressing SOAP requests

2004-11-12 Thread Scott Nichol
, November 12, 2004 1:08 PM Subject: Re: Compressing SOAP requests Try it without any CRC: I think gzip may be willing to decompress it, anyway. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original

Re: Compressing SOAP requests and using SSL

2004-11-11 Thread Nige White
Scott Nichol wrote: The nightly build can gzip and will un-gzip a gzipped response. The most recent one was posted 6/22/2004 at http://cvs.apache.org/dist/soap/nightly/2004-06-22/. To use SSL from the client, your only code change is to use the new endpoint URL (with https). However, as has

Compressing SOAP requests and using SSL

2004-11-10 Thread Nige White
My boss has just looked at the SOAP client/server system I wrote. I substituted my generated SOAP java client classes in for the Synergy-created java client classes, (I made sure all the method signatures were identical) and ran the web app. It talked to my SOAP server just fine. Looking

RE: Compressing SOAP requests and using SSL

2004-11-10 Thread Hubble, Christopher
If you search the Tomcat and Axis archives you'll see threads on both compressing your requests and using SSL. Chris -Original Message- From: Nige White [mailto:[EMAIL PROTECTED] Sent: Wednesday, November 10, 2004 8:27 AM To: [EMAIL PROTECTED] Subject: Compressing SOAP requests and using

Re: Compressing SOAP requests and using SSL

2004-11-10 Thread Nige White
a Cookie class. There is no Cookie class in my SOAP which is 2.3.1. There is a Cookie class in the source archives, but it's new. Which version of SOAPHTTPConnection should I go back to? Or should I pull out the latest source of Cookie, and use that? Is this a good approach? I want to keep my

Re: Compressing SOAP requests and using SSL

2004-11-10 Thread Daniel Zhang
wrote: My boss has just looked at the SOAP client/server system I wrote. I substituted my generated SOAP java client classes in for the Synergy-created java client classes, (I made sure all the method signatures were identical) and ran the web app. It talked to my SOAP server just fine. Looking

Re: Compressing SOAP requests and using SSL

2004-11-10 Thread Nige White
Daniel Zhang wrote: Yes you can use SSL but it is a different story. You have to configure SSL for both Client and Server side, install the CA certificate, configure the keystore etc. For example, look at Tomcat SSL how-to at http://jakarta.apache.org/tomcat/tomcat-4.1-doc/ssl-howto.html.

AW: Compressing SOAP requests and using SSL

2004-11-10 Thread Malte Kempff
, callName, params, null, Constants.NS_URI_SOAP_ENC, ctx ); call.setSOAPTransport(st); ... Butyou also need to enhance the soap depoloy discriptor looking something like

Re: AW: Compressing SOAP requests and using SSL

2004-11-10 Thread Srikanth . Swaminathan
How do i unsubscribe from this list? Malte Kempff [EMAIL PROTECTED] 11/10/2004 10:43 AM Please respond to soap-user To:[EMAIL PROTECTED] cc: Subject:AW: Compressing SOAP requests and using SSL Hi Nigel, I am using soap2.3.1 for RPCs calling the methods takes

Re: AW: Compressing SOAP requests and using SSL

2004-11-10 Thread Nige White
Call(m_soapServiceName, callName, params, null, Constants.NS_URI_SOAP_ENC, ctx ); call.setSOAPTransport(st); ... Butyou also need to enhance the soap depoloy discriptor looking

AW: AW: Compressing SOAP requests and using SSL

2004-11-10 Thread Malte Kempff
oh I see, the server part is not soap2.3.1 then. When did you download soap2.3.1? The newest compilation of Apache SOAP should have this kind of zipping and unzipping support in the SOAPContext for the client. Malte -Ursprungliche Nachricht- Von: Nige White [mailto:[EMAIL PROTECTED

Re: AW: Compressing SOAP requests and using SSL

2004-11-10 Thread Scott Nichol
Subject: Re: AW: Compressing SOAP requests and using SSL How do i unsubscribe from this list? Malte Kempff [EMAIL PROTECTED] 11/10/2004 10:43 AM Please respond to soap-user To: [EMAIL PROTECTED] cc: Subject:AW: Compressing SOAP requests

Re: Compressing SOAP requests and using SSL

2004-11-10 Thread Scott Nichol
The nightly build can gzip and will un-gzip a gzipped response. The most recent one was posted 6/22/2004 at http://cvs.apache.org/dist/soap/nightly/2004-06-22/. To use SSL from the client, your only code change is to use the new endpoint URL (with https). However, as has been pointed out

Newbie Q: SOAP in the real world

2004-11-09 Thread kynn
Hi! I'm sure this is a FAQ, but I have not been able to find the answer. I'm relatively new to SOAP-based web services. I have seen demonstrations using simple toy examples, but they don't give me a good sense of how mature and presently viable this technology is. Can someone point me

Re: Newbie Q: SOAP in the real world

2004-11-09 Thread Scott Nichol
only mail from specific mail lists. - Original Message - From: [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, November 09, 2004 3:59 PM Subject: Newbie Q: SOAP in the real world Hi! I'm sure this is a FAQ, but I have not been able to find the answer. I'm relatively new

Re: Newbie Q: SOAP in the real world

2004-11-09 Thread Scott Nichol
Also, lots of service providers, ISVs and industry consortiums have defined SOAP APIs. There was just a question from someone using MM7, as an example, and OASIS (http://www.oasis-open.org) has standards many companies in my area (Philadelphia, PA) are using. Scott Nichol Do not send e-mail

Re: Newbie Q: SOAP in the real world

2004-11-09 Thread Jesus M. Salvo Jr.
Scott Nichol wrote: Also, lots of service providers, ISVs and industry consortiums have defined SOAP APIs. There was just a question from someone using MM7, as an example, and OASIS (http://www.oasis-open.org) has standards many companies in my area (Philadelphia, PA) are using. Scott Nichol

Re: How destroy java application using SOAP and Tomcat

2004-11-01 Thread Jaroslav Srytr
Thank you for a response, but I don't know how I have solve my trouble. When I reload a SOAP from Tomcat, it isn't call method finalize of my application. It's createted new soap session only. Jarda - Original Message - From: Jaroslav rtr [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent

Re: How destroy java application using SOAP and Tomcat

2004-11-01 Thread Scott Nichol
mail lists. - Original Message - From: Jaroslav Srytr [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Monday, November 01, 2004 9:27 AM Subject: Re: How destroy java application using SOAP and Tomcat Thank you for a response, but I don't know how I have solve my trouble. When I reload

Re: How destroy java application using SOAP and Tomcat

2004-10-29 Thread Scott Nichol
For application scope, Apache SOAP keeps the instance of your class as part of the ServletContext for the servlet (using setAttribute). I would think that re-loading the Apache SOAP application would cause the old context to be released (no more references to it) and the new one to be created

How destroy java application using SOAP and Tomcat

2004-10-23 Thread Jaroslav rtr
Hi, I use Apache SOAP with Tomcat (5.0.25) and have this trouble with SOAP. I deployed java application. Application works right, but when is SOAP reloaded from Tomcat Manager, is created new instance of class (is called constructor), but old isn't free from a memory. It isn't call method finalize

RE: Migrating from Apache SOAP to Axis

2004-10-19 Thread Shukla, Minaxi
Scott, Is there any possibility that Apache SOAP will have any more major/minor releases? Or should I just build locally and distribute the jar to our customers? I appreciate your help. Thanks -Minaxi -Original Message- From: Shukla, Minaxi Sent: Thursday, October 14, 2004 5

java.net.MalformedURLException while initialize SOAP client

2004-10-14 Thread Pospisil, Pavel
Hallo, I implemented small WS client based on SOAP 2.3.1. This is imported in ORACLE database (needed classes HTTPClient, jsse, ApacheSOAP, ... are loaded into database). Client is running (send data, receive data...), but while initialization (only first time) I become

Re: java.net.MalformedURLException while initialize SOAP client

2004-10-14 Thread Scott Nichol
to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: Pospisil, Pavel [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 14, 2004 7:10 AM Subject: java.net.MalformedURLException while initialize SOAP client

Re: java.net.MalformedURLException while initialize SOAP client

2004-10-14 Thread Martin Gainty
for date in the deployment xml file or call SOAPMappingRegistry.mapTypes() in your application. A more correct DateSerializer is planned that serializes using the ISO date format. Date objects should be converted to xsd:date or xsd:timeInstant to be SOAP compliant. The SOAP spec says, For simple

RE: Migrating from Apache SOAP to Axis

2004-10-14 Thread Shukla, Minaxi
Scott, I tried that, but didn't work. Both the inScopeEncStyle and declEncStyle are null. I traced it back upto RPCMessage.extractFromEnvelope() method and here also the declEnvEncStyle and declBodyEncStyle are null. So, I compared the responses from Apache SOAP service and Axis service

RE: Migrating from Apache SOAP to Axis

2004-10-14 Thread Anne Thomas Manes
I'm not sure you can fix this problem from the Axis perspective. Axis conforms to WS-I Basic Profile, which requires that all faults be formatted as document/literal, therefore they do not (must not) contain an encoding style attribute. Apache SOAP should not require an encoding style attribute

Re: Migrating from Apache SOAP to Axis

2004-10-14 Thread Scott Nichol
the com.sabre.edison.georoute.LLRoutingException xsi:type=ns1:AmbiguityException xmlns:ns1=urn:AmbiguityException element is serialized using http://schemas.xmlsoap.org/soap/encoding/, or at least that is what your type mapping specifies). Scott Nichol Do not send e-mail directly to this e-mail address

Re: Migrating from Apache SOAP to Axis

2004-10-14 Thread Scott Nichol
Message - From: Anne Thomas Manes [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 14, 2004 11:21 AM Subject: RE: Migrating from Apache SOAP to Axis I'm not sure you can fix this problem from the Axis perspective. Axis conforms to WS-I Basic Profile, which requires that all

Re: Migrating from Apache SOAP to Axis

2004-10-14 Thread Scott Nichol
PROTECTED] To: [EMAIL PROTECTED] Sent: Thursday, October 14, 2004 11:36 AM Subject: Re: Migrating from Apache SOAP to Axis Is that specified in version 1.0 or 1.1 of the profile? I had looked at 1.0, but did not see anything there. Perhaps I should look again ;). Scott Nichol Do not send e

RE: Migrating from Apache SOAP to Axis

2004-10-14 Thread Shukla, Minaxi
Thanks Anne and Scott. Now, how do I fix it in Apache SOAP? I replaced the line 408 in Fault.java with following (pass the constant for SOAP encoding): Bean paramBean = xjmr.unmarshall(Constants.NS_URI_SOAP_ENC, RPCConstants.Q_ELEM_PARAMETER

Migrating from Apache SOAP to Axis

2004-10-13 Thread Shukla, Minaxi
Hi, I want to migrate our web services deployed on Apache SOAP 2.2 to Axis 1.1 without having to update the client developed with Apache SOAP. It works fine with good scenarios where the service returns a successful respose. But, when service throws a business exception, the client gets

Re: Migrating from Apache SOAP to Axis

2004-10-13 Thread Scott Nichol
What would help most: capture and post to this list the contents of the response that is causing the client a problem. Depending on your OS and tool preference, you can capture with Network Monitor (Windows), tcpdump (*nix), TcpTunnelGui (Apache SOAP), tcpmon (Axis), tcpTrace/proxyTrace

RE: Migrating from Apache SOAP to Axis

2004-10-13 Thread Shukla, Minaxi
Has anyone come across any issues when migrating from Apache SOAP to Axis? I would really appreciate if anyone can help me with the issue described below. Thanks -Minaxi -Original Message- From: Shukla, Minaxi Sent: Wednesday, October 13, 2004 11:54 AM To: '[EMAIL PROTECTED

Re: Migrating from Apache SOAP to Axis

2004-10-13 Thread Scott Nichol
: Wednesday, October 13, 2004 12:54 PM Subject: RE: Migrating from Apache SOAP to Axis Yes, I have captured the SOAP messages from both the deployments (with Apache SOAP and Axis). See the SOAP messages attached. Thanks for your help -Minaxi routeApacheSOAP.txt routeAxis.txt -Original

RE: Migrating from Apache SOAP to Axis

2004-10-13 Thread Shukla, Minaxi
PM To: [EMAIL PROTECTED] Subject:Re: Migrating from Apache SOAP to Axis Do you have a capture when the Axis service returns a Fault? Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original

Re: Migrating from Apache SOAP to Axis

2004-10-13 Thread Scott Nichol
SOAP to Axis Scott, Both captures has response with Fault. The first part is the request message and after that there is response message. Let me know if you need more info. Thanks -Minaxi -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 13

RE: SOAP NPE Error

2004-09-27 Thread Hubble, Christopher
Ah, okay. Thanks. Chris -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Monday, September 27, 2004 2:06 PM To: [EMAIL PROTECTED] Subject: Re: SOAP NPE Error This list is for Apache SOAP. Please post your Axis question to [EMAIL PROTECTED] Scott Nichol Do

Re: SOAP NPE Error

2004-09-27 Thread Scott Nichol
This list is for Apache SOAP. Please post your Axis question to [EMAIL PROTECTED] Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: Hubble, Christopher [EMAIL PROTECTED

RE: Adding a new soap service problem

2004-09-24 Thread Tommy Kalafut
I am still a little confused by deployment. (I am working with a subcontracted prototype that uses SOAP.) Do you also have to deploy your service in the Soap admin page at http://localhost:8081/soap/admin/index.html? (Your port number may be different.) Tom Kalafut Interchange

Re: Adding a new soap service problem

2004-09-24 Thread Praveen Peddi
I thought there r 2 ways of deploying a soap service. Either using command line or using admin page. I used command line. I don't know if you need to use both. Praveen - Original Message - From: Tommy Kalafut To: [EMAIL PROTECTED] Sent: Friday, September 24, 2004 12

Re: Adding a new soap service problem

2004-09-24 Thread Scott Nichol
[EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Friday, September 24, 2004 11:53 AM Subject: Adding a new soap service problem Hi all, I have 5 soap services running and now I deployed a new service using command line tool as follows: org.apache.soap.server.ServiceManagerClient http://host:port

Re: Adding a new soap service problem

2004-09-24 Thread Scott Nichol
And also the output of java org.apache.soap.server.ServiceManagerClient http://host:port/soap/servlet/rpcrouter list Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail from specific mail lists. - Original Message - From: Scott

Re: Adding a new soap service problem

2004-09-24 Thread Scott Nichol
You can deploy it through that admin page, using the command line and a deployment descriptor file (my preference since all the info to re-deploy the service is there), or by copying the serialized deployment descriptors file that Apache SOAP creates. This last option is for advanced users

Re: Adding a new soap service problem

2004-09-24 Thread Praveen Peddi
I got the sample from onjava.com. You can find all the related data here: http://www.onjava.com/pub/a/onjava/excerpt/java_xml_2_ch2/index.html?page=5. When I executed command line I got the following output: Deployed Services: urn:cd-catalog When I ran soap client to access soap service, I get

Re: Adding a new soap service problem

2004-09-24 Thread Scott Nichol
The error message Error encountered: Unable to resolve target object: javaxml2.CDCatalog means that Apache SOAP found the registered service, but was unable to load the class javaxml2.CDCatalog. The class files for the service must be available to the class loaders servicing the soap

Re: Adding a new soap service problem

2004-09-24 Thread Jonathan Roberts
Hi Praveen, You may want to check that soap can find the jar/class, is it in the path when the server loads JonPraveen Peddi [EMAIL PROTECTED] wrote: I got the sample from onjava.com. You can find all the related data here: http://www.onjava.com/pub/a/onjava/excerpt/java_xml_2_ch2/index.html

Re: Adding a new soap service problem

2004-09-24 Thread Praveen Peddi
. There is also soap folder in {Tomcat-Home}/webapps folder (which was the result of dropping the soap.war into webapps folder and starting the tomcat server while setting up soap for the first time). This soap folder also has a DeployedServices.ds file. I put a servlet HelloServlet.class into {Tomcat-HOME

Problems installing/configuring SOAP Xerces

2004-09-23 Thread Brandon Simzer
Hi, I am having problems getting SOAP and Xerces installed properly. After it is all said and done (download/install tomcat, ant, soap, Xerces the jdk, added all jar files to class path, etc.) I point my browser to: http://localhost:8080/soap/servlet/rpcrouter and instead

RE: Problems installing/configuring SOAP Xerces

2004-09-23 Thread Tommy Kalafut
I can think of 2 possibilities: 1. Did you put all your jar files into your %CATALINA_HOME%\common\lib directory? 2. And did you Deploy Soap on Tomcat via http://localhost:8081/manager/html/? (The port number may be different.) In the WAR File To Deploy section, under Select WAR file

Re: Problems installing/configuring SOAP Xerces

2004-09-23 Thread Scott Nichol
Also, if you downloaded the 2.3.1 release instead of the last nightly build, you do not have the Tomcat 5 installation instructions (http://cvs.apache.org/viewcvs.cgi/*checkout*/ws-soap/java/docs/install/tomcat50.html?rev=1.2). Scott Nichol Do not send e-mail directly to this e-mail address

RE: SOAP and HTTPS

2004-09-15 Thread Daniel Herbison
Title: RE: SOAP and HTTPS I'm unsure on how to configure things. I got the public/private key thing working in java but it seemed straight forward. In java I just let the jvm know where the key store was and it seemed to magically know what to do. I can't find anything on the web talking

RE: SOAP and HTTPS

2004-09-15 Thread Daniel Herbison
Title: RE: SOAP and HTTPS I guess my question is how to use the keytool generated certificate file with perl, php, etc... Does HTTPS_CERT_FILE contain the keystore file or a certificate extraction from it? Do I put the key that is reported by keytool -list in a separate file for use

Re: SOAP and HTTPS

2004-09-15 Thread Scott Nichol
- From: Daniel Herbison [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Wednesday, September 15, 2004 10:56 AM Subject: RE: SOAP and HTTPS I guess my question is how to use the keytool generated certificate file with perl, php, etc... Does HTTPS_CERT_FILE contain the keystore file or a certificate

elements in SOAP header.

2004-09-14 Thread Felipe Palma Dias
I want that all my web services send information in header of message SOAP. The best way to treat these information is to implement a new Provider like RPCJavaProvider? I want to send user and password information in SOAP header

Re: elements in SOAP header.

2004-09-14 Thread Scott Nichol
Your best option is probably to use Apache Axis (http://ws.apache.org/axis). If you must use Apache SOAP, you should weigh two options, writing your own provider so you can continue to use the RPC style of invocation, and using a message style service, in which case you get the full envelope

Re: elements in SOAP header.

2004-09-14 Thread Scott Nichol
PROTECTED] Sent: Tuesday, September 14, 2004 3:38 PM Subject: Re: elements in SOAP header. How does the apache axis handler header elements? --- Scott Nichol [EMAIL PROTECTED] escreveu: Your best option is probably to use Apache Axis (http://ws.apache.org/axis). If you must use Apache SOAP

Re: SOAP and HTTPS

2004-09-14 Thread Scott Nichol
lists. - Original Message - From: Daniel Herbison [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, September 14, 2004 6:54 PM Subject: SOAP and HTTPS I'm trying to access a soap service, Java running under Tomcat, using Soap::Lite. Here is the code: use SOAP::Lite

Re: help! can 1 use SOAP over SOAP?

2004-08-24 Thread Scott Nichol
If you follow the Tomcat 5 installation instructions (http://cvs.apache.org/viewcvs.cgi/*checkout*/ws-soap/java/docs/install/tomcat50.html?rev=1.2), you should be able to create a service class that in turn in an Apache SOAP client, i.e. it calls another Web service. Scott Nichol Do not send

Re: soap attachment error

2004-08-23 Thread Scott Nichol
- From: gurcharan singh [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Sunday, August 22, 2004 3:33 PM Subject: soap attachment error hi! I am attaching a zip file with the SOAP message and sending it to the web service. Earlier I was able to run my code properly but now sudennly i am getting

Re: soap attachment error

2004-08-23 Thread gurcharan singh
Thanxs for ur help.. I have reloaded the TOMCAT again and now it's working, but still not been able to find out the reason for the earlier error. The service is using Apache SOAP COM Provider plugin for developing a interface with a COM DLL.So do u want to say that the service implementation

soap attachment error

2004-08-22 Thread gurcharan singh
hi! I am attaching a zip file with the SOAP message and sending it to the web service. Earlier I was able to run my code properly but now sudennly i am getting this error - Generated fault: [Attributes={}] [faultCode=SOAP-ENV:Server] [faultString=Currently unsupported data type

How Limit String Size parameter in SOAP service

2004-07-21 Thread Philippe Couas
Title: Message Hi, Currtently My SOAP service use method with String parameter. But in fact my String size has always 15 caracters. Could i define a SOAP service with a limited string parameter like StringBuffer(15) Regards, Philippe Philippe COUAS Responsable Développement INFODEV S.A.

Re: How Limit String Size parameter in SOAP service

2004-07-21 Thread Scott Nichol
that validates against XML Schema. My recommendation is to have your service check that the length of the incoming string is 15 characters. If it is not, throw an exception. That exception will be turned into a SOAP Fault by Apache SOAP, which the client will receive. Scott Nichol Do not send e-mail

RE : How Limit String Size parameter in SOAP service

2004-07-21 Thread Philippe Couas
: [EMAIL PROTECTED] Objet : Re: How Limit String Size parameter in SOAP service I think that in WSDL, you can create a type that is a restriction of string and specify that the length is 15. This provides a clue to a WSDL client. However, the service, regardless of whether it is WSDL aware, must

Re: How Limit String Size parameter in SOAP service

2004-07-21 Thread Scott Nichol
The varchar(15) refers to a database data type. Technically, because it is varchar, it can be any length from 0 to 15 characters. In any case, such a piece of data would be exchanged as a string (or xsd:string) using SOAP. Scott Nichol Do not send e-mail directly to this e-mail address

soap 2 / soap 3

2004-07-20 Thread ThomasF
Hello I am a Newbe and use the Apache AXIS Framework (SOAP 3). Is there a way to process Messages with this Framework which correspond to standard the SOAP 2 (Apache SOAP)? friendly reguards Thomas

Missing tomcat_home/webapps/soap/servlet/rpcrouter/

2004-07-16 Thread John Heim
I'm trying to follow the instructions at http://ws.apache.org/soap/docs/install/ and having some difficulty. The main symptom I'm seeing right now is that if I click on the link in the soap admin page to visit the SOAP RPC router URL for this SOAP server, I get a 404 not found error. That's

Re: Missing tomcat_home/webapps/soap/servlet/rpcrouter/

2004-07-16 Thread Scott Nichol
John, Before you try too hard to get Apache SOAP up and running, let me point out that for newcomers Apache Axis (http://ws.apache.org/axis/) is a better place to start. It supports many newer specifications that Apache SOAP does not. Scott Nichol Do not send e-mail directly to this e-mail

Reading MimeBodyPart using MS SOAP

2004-07-12 Thread THOMAS, JAI [AG-Contractor/1000]
We have a document-style web service server using Apache SOAP and client using Microsoft Soap Toolkit 3.0. As response, this web service returns a MimeBodyPart (not a soap envelop). We are having trouble reading the response using MS soap. We are trying with Low level interface but can't

Re: Reading MimeBodyPart using MS SOAP

2004-07-12 Thread Scott Nichol
If you do not send a SOAP Envelope, MS SOAP Toolkit cannot read the response (because it is not a SOAP response). You would instead need to write the code another way, probably using something that deals with plain HTTP instead of SOAP layered on HTTP. Scott Nichol Do not send e-mail directly

RE: Reading MimeBodyPart using MS SOAP

2004-07-12 Thread THOMAS, JAI [AG-Contractor/1000]
Scott, Thanks for the quick respose. Now, can this be done if there is an envelope (ie. accessing MIME attachment)? Also, I believe Apache SOAP doesn't allow sending attachemnts in response. Thanks again Jai -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Monday

Re: Reading MimeBodyPart using MS SOAP

2004-07-12 Thread Scott Nichol
Perhaps I read your e-mail incorrectly. Does the response payload contain only MIME stuff with no text/xml part that is the SOAP envelope? If it does not include a SOAP envelope, it is really not a Web service, and I would expect very few Web service clients to be able to read it. If it has

Re: Reading MimeBodyPart using MS SOAP

2004-07-12 Thread Scott Nichol
Apache SOAP does allow you to send attachments in a response. However, as I pointed out in a separate e-mail that crossed this one, MS SOAP Toolkit does not support MIME, just DIME. Scott Nichol Do not send e-mail directly to this e-mail address, because it is filtered to accept only mail

RE: Reading MimeBodyPart using MS SOAP

2004-07-12 Thread THOMAS, JAI [AG-Contractor/1000]
Does Apache SOAP support DIME? Jai -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Monday, July 12, 2004 10:45 AM To: [EMAIL PROTECTED] Subject: Re: Reading MimeBodyPart using MS SOAP Apache SOAP does allow you to send attachments in a response. However, as I

Re: Reading MimeBodyPart using MS SOAP

2004-07-12 Thread Scott Nichol
12:25 PM Subject: RE: Reading MimeBodyPart using MS SOAP Does Apache SOAP support DIME? Jai -Original Message- From: Scott Nichol [mailto:[EMAIL PROTECTED] Sent: Monday, July 12, 2004 10:45 AM To: [EMAIL PROTECTED] Subject: Re: Reading MimeBodyPart using MS SOAP Apache SOAP

Apache SOAP service - MS SOAP Client

2004-07-05 Thread arvind
  Hi, I have a service installed using Apache SOAP on a linux box. A client code which is a vc++ exe uses MS SOAP toolkit to connect to the Apache service. 1. Call for a method having no parameters is received by the service but the response is not reaching the client. 2. Call for a method

faultCode=SOAP-ENV:Server.Exception:

2004-07-01 Thread arvind
  Hi, I tried to execute the COM example that comes with Apache SOAP. I set the PATH of my WIN2K to the lib of Apache containing the DLLs APACHEADDER.DLL and APACHESUM.DLL. Then i started the Tomcat webserver. Then i registered the dlls and deployed the services using rundemo deploy

Connect MS-SOAP to Apache SOAP End Point

2004-07-01 Thread arvind
  Hi, I wish to know whether it is possible to connect a vc++ code using MS-SOap to a service say urn:calc deployed on http://123.123.123.12:8080/soap/servlet/rpcrouter. Can any one please help me in this regard. Thank you Arvind ARVIND

Re: Connect MS-SOAP to Apache SOAP End Point

2004-07-01 Thread Scott Nichol
While you would have to mentally translate VB to VC++, I have pages on using the MS SOAP Toolkit low-level API (http://www.scottnichol.com/vbclientapachesoap.htm) and high-level API (http://www.scottnichol.com/vbclienthiapachesoap.htm) in clients for Apache SOAP services. Scott Nichol Do

Re: faultCode=SOAP-ENV:Server.Exception:

2004-07-01 Thread Scott Nichol
You probably do not have COMProvider.dll in the right place. Apache SOAP does not put it there for you, and I don't see any instructions for it. In soap-2_3_1\lib, you will find COMProvider.dll. It must be copied to %CATALINA_HOME%/webapps/soap/WEB-INF/classes/org/apache/soap/providers/com

  1   2   3   4   5   6   7   8   9   10   >