RE: SMTP transport API

2001-12-05 Thread Arvind Gudipati
Title: RE: SMTP transport API Though it seems unlikely that im going to use the SMTP as transport, i'd be glad to have a copy of the same. Im planning to add some more admin pages and functionality to the Apache Soap Server, which include listing of all the instances of a particular servic

RE: SMTP transport API

2001-12-05 Thread Lucas Gonze
I've been fooling with the SMTP binding over the past few days, Arvind. Net result is that it's raw, probably more of a proof of concept than anything. For example, javadoc is scant, documentation is sometimes inaccurate, when you send a message your thread blocks for the response from the pop3

SOAP is trying to Instantiate the Interface

2001-12-05 Thread brian . bonner
We've implemented a service with the following interface: com.xyz.Response execute(com.xyz.Command); Where xyz.Response is an interface containing a method: Object getValue and xyz.Command is an interface containing a method: xyz.Response execute() We are sending over Commands that implement

dont unsubscribe

2001-12-05 Thread Madan, Kapil
Please check the catalina.bat which should have this jar mentioned set CP=%CATALINA_HOME%\bin\bootstrap.jar;%JAVA_HOME%\lib\tools.jar;> mail.jar -Original Message- From: Steven Howe [mailto:[EMAIL PROTECTED]] Sent: 05 December 2001 15:33 To: [EMAIL PROTECTED] Subject: RE: unsubscribe

Generic SOAP client to webservices (Newbie follow-up)

2001-12-05 Thread brian . bonner
I found the XMI encoding style from the constant in the apache package. I suspect this is correct...http://www.ibm.com/namespaces/xmi Brian Bonner

Generic SOAP client to webservices (Newbie follow-up)

2001-12-05 Thread brian . bonner
On a similar note, If I've created an Interface that a bunch of classes implement, Can I have it deserialize using the Interface and using the getClass() method for the parameter? I'd like to be able to send a variety of commands via SOAP w/o having to have special "clients" for each service

RE: RE

2001-12-05 Thread Rino Srivastava
I'll give it a try. Thanks, Vinod. Rino -Original Message- From: Vinod Soni [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 05, 2001 11:52 AM To: [EMAIL PROTECTED] Subject: Re: RE well...I don;t have an example, but I guess you can do it this way...I never did it though. Call cal

Re: RE

2001-12-05 Thread Vinod Soni
well...I don;t have an example, but I guess you can do it this way...I never did it though. Call call1 = new Call(); ... Response resp = Call.invoke(url, ""); Vector v = resp.getParams(); and then pass this vector to the new call. Call call2 = new Call(); call2.setParams(v); call.invoke(url2

RE: RE

2001-12-05 Thread Rino Srivastava
Hi vinod: Can you elaborate more on this? Can you give me an example? Thanks. Rino -Original Message- From: Vinod Soni [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 05, 2001 11:41 AM To: [EMAIL PROTECTED] Subject: Re: RE Take out the Parameter from the Response object...and pa

Re: Soap with Tomact

2001-12-05 Thread venkata akella
hi If u are using tomcat4 then try to do this or similar to this(as u are on unix box) change if you didnt. It worked for me. Open catalina.bat around line #75 u will see something like set CLASSPATH=%CP% change it to set CLASSPATH=%CP%;%CLASSPATH% Sastry --- Steven Howe <[EMAIL PROTECTED]>

Re: RE

2001-12-05 Thread Vinod Soni
Take out the Parameter from the Response object...and pass it as a Parameter to Call to another method on the client - Original Message - From: "Rino Srivastava" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 05, 2001 5:34 PM Subject: RE > Hello everyone: > >

Generic SOAP client to webservices

2001-12-05 Thread Maneesha Jain
Hi, Question 1: --- I'm trying to write a dynamic Apache SOAP Client that can call any relatively simple web service, say on www.xmethods.com. Some of these services use complex types or nested beans as input/output parameters. On the client side, it seems, I would need to create a Java

RE

2001-12-05 Thread Rino Srivastava
Hello everyone: I have a question for you guys. Suppose I have a Client and Server program. The server returns some response back to the Client. Now if I want to use this response in another method on the server, how can I accomplish this? Rino

SMTP transport API

2001-12-05 Thread Arvind Gudipati
Title: SMTP transport API Hi all, There seems to be not enough documentation for SOAP SMTP transport API. Has anyone tested the SMTP transport API ? Are there any known issues with SMTP transport API? thnx, Arvind CONFIDENTIALITY NOTICE:  E-mail

RE:passing values from one page to another as in JSPs

2001-12-05 Thread Rino Srivastava
Hi there: Can someone tell me if it is possible to pass values from one page to another as we do in JSPs? Or how else can you accomplish this? Thanks. Rino

Antwort: RE: unsubscribe me

2001-12-05 Thread Ruben_Inoto
Don't get angry, but this seems a classpath problem. Maybe you are confusing environment variable classpath and server classpath. Have a closer look in your tomcat.bat (.sh) and check it again, probably you have spelt it wrong. Ruben "Steven Howe" <[EMAIL PROTECTED]> on 12/05/2001 04:3

RE: deployment descriptor

2001-12-05 Thread Shinta Tjio
Title: deployment descriptor Hi, Arvind, we are thinking about doing the same thing. I haven't actually written the code yet, but it seems like what we need to do is to extend the class BaseConfigManager and list this class in your soap.xml file.   Apache SOAP has sample of classes that e

RE:passing values from one page to another

2001-12-05 Thread Rino Srivastava
Hi all: Can someone tell me if it is possible to pass values from one page to another as we do in JSPs? Thanks. Rino

Help with attributes to Parameters

2001-12-05 Thread Vinod Soni
Hi All,   Can someone help me with this ? I am trying to create a XML tag which is something like this: MyTagValue   How do I add the 'name' attribute to TAGNAME ??   What I do in my code is this:   Vector v = new Vector(); Parameter p1 = new Parameter("TAGNAME", String.class, "MyTagValue",

RE: unsubscribe me

2001-12-05 Thread Sanders, Corey
The SOAP package depends on two different mail.jar files. You need the mail.jar from Alphaworks for the com/ibm/mail/* packages and the mail.jar from Javamail 1.2 for javax/mail/*. So, the specific ClassNotFoundException you are getting is because it can't find the Javamail mail.jar. I would sug

RE: Soap with Tomact

2001-12-05 Thread Arvind Gudipati
Title: deployment descriptor Steven       If you are sure u have mail.jar in classpath, then make sure that your mail.jar contains javax/mail/MessageException.class file.       Also add in tomcat (or catalina) batch file make sure you add your classpath to the Tomcat (or catalina) startup b

Soap with Tomact

2001-12-05 Thread Steven Howe
Title: deployment descriptor I am having difficulty getting soap to work running through the Tomcat servlet engine. The admin client is fine when ran but I get a problem when I visit the SOAP RPC router URL for the SOAP server. e.g: pointing my browser to http://localhost:8080/soap/servlet/rpc

RE: unsubscribe me

2001-12-05 Thread Steven Howe
As I said in the meassge I have checked and it is it is really getting to me now.. anymore suggestions -Original Message- From: Rino Srivastava [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 05, 2001 3:23 PM To: '[EMAIL PROTECTED]' Subject: RE: unsubscribe me check your classpat

deployment descriptor

2001-12-05 Thread Arvind Gudipati
Title: deployment descriptor Hi all,    Im planning to store the deployment descriptor in a database (or LDAP otherwise! ) .    Wondering if anyone has already done this? thnx, Arvind CONFIDENTIALITY NOTICE:  E-mail may contain confidential information that is legally protected.  Do not

RE: unsubscribe me

2001-12-05 Thread Rino Srivastava
check your classpath. Make sure that mail.jar is in your classpath. Cheers! Rino -Original Message- From: Steven Howe [mailto:[EMAIL PROTECTED]] Sent: Wednesday, December 05, 2001 9:25 AM To: [EMAIL PROTECTED]; Vinod Soni Subject: RE: unsubscribe me I am having difficulty getting soap

RE: unsubscribe me

2001-12-05 Thread Steven Howe
I am having difficulty getting soap to work running through the Tomcat servlet engine. The admin client is fine when ran but I get a problem when I visit the SOAP RPC router URL for the SOAP server. e.g: pointing my browser to http://localhost:8080/soap/servlet/rpcrouter The error being java.la

Re: unsubscribe me

2001-12-05 Thread Vinod Soni
Guys, those who want to unsubscribe, send a blank mail to [EMAIL PROTECTED] Cheers. Vinod. - Original Message - From: "Rahul Kanhere" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, December 05, 2001 2:45 PM Subject: unsubscribe me > Please unsubscribe me. > > __

unsubscribe me

2001-12-05 Thread Rahul Kanhere
Please unsubscribe me. __ Do You Yahoo!? Make a great connection at Yahoo! Personals. http://personals.yahoo.com

unsubscribe me

2001-12-05 Thread Sohoni, Seema (MAN-Corporate)
Please unsubscribe me

MSDN Articles on SOAP Interop With Apace Perl etc...

2001-12-05 Thread Steve Szyszkiewicz
A nice set of links can be found here http://www.msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsrvspec/html/globalxmlwebsrvinterop.asp?frame=true __ Do You Yahoo!? Buy the perfect holiday gifts at Yahoo! Shopping. http://shopping.

RE: returning Object vs Object[]

2001-12-05 Thread Milburn, Christopher FIL
I can see how this works with a class that we can map e.g. in your example 'samples.addressbook.Address' but what about returning the class 'java.lang.Object' We have a general Soap server that currently returns a 'java.lang.Object[]' but our clients want it to return a 'java.lang.Object' on which