Re: SecureSocketFactory pluggability?

2003-12-19 Thread Rodrigo Ruiz
For your tests, you can use this: Security.insertProviderAt(new MyProvider(), 1); to add your custom provider programmatically, so you will not have to modifiy your global java configuration :-) Regards, Rodrigo Ruiz Stuart Miller wrote: Gary, thank you very much indeed for this. I will try

Re: Proxying SSL certificates

2003-12-17 Thread Rodrigo Ruiz
tablishing a secure channel between both servers should maintain the server security, as long as the middle server is secure, of course ;-) Best regards, Rodrigo Ruiz Rodrigo Ruiz wrote: Hi all, I am developing a web service(I will call it frontend) that must act as a client for a second w

Re: Proxying SSL certificates

2003-12-17 Thread Rodrigo Ruiz
is meant to be used by a single user per application, and I have a server with a different user per thread. But I will open another thread for this ;-) Thanks anyway, Rodrigo Ruiz Rick Kellogg wrote: Rodrigo, It has been my experience you will not find the performance acceptable. Using SSL

Proxying SSL certificates

2003-12-16 Thread Rodrigo Ruiz
use the incoming certificate as the credentials for the backend. Is this possible? Thanks in advance, Rodrigo Ruiz

Attachments memory consumption

2003-12-16 Thread Rodrigo Ruiz
appreciate any comments on this idea :-) Thanks in advance, Rodrigo Ruiz

Re: Réf. : Re: Réf. : Re: problem with client-config.wsdd

2003-12-05 Thread Rodrigo Ruiz
Just out of curiosity, why did you placed axis dependent code in your common/lib directory? Is it a tomcat extension, a valve, or something like this? If it is not, you should move those classes to the webapp WEB-INF/lib directory. Regards, Rodrigo Ruiz [EMAIL PROTECTED] wrote: I've al

Re: Bug? Stateful Session EJB support

2003-12-05 Thread Rodrigo Ruiz
Hi Pedro, Pedro Salazar wrote: On Thu, 2003-12-04 at 16:59, Rodrigo Ruiz wrote: Here it is my little proposal (I'm not saying it is easy or fast to implement ;-) ) For each stateful EJB, create two services: [snip] My two cents ;-) Rodrigo Ruiz Very interesting, indeed.

Re: Bug? Stateful Session EJB support

2003-12-04 Thread Rodrigo Ruiz
Keith Hatton wrote: Thanks for your ideas, Rodrigo. I am going to sleep on it. I like the idea as it forms a design pattern and as you say, allows the client to take a more standard approach to the service, and also because over the past few days I have discovered some of the delights of working

Re: Using handlers to look at method parameter values

2003-12-04 Thread Rodrigo Ruiz
this? Regards, Rodrigo Ruiz Saravanan Markandeyan wrote: Thanks a LOT!. I think I can use this, maybe extend the RPCProvider class and override the invokeMethod method, and I will have access to the method and all the method Parms. Now I am trying to figure out how to let my service use my

Re: Bug? Stateful Session EJB support

2003-12-04 Thread Rodrigo Ruiz
: - you stick to web services standards: your web service is stateless - your code is portable to the provider you like most The process of these services creation can be automatized, for example, through perl scripts, or through a java doclet. My two cents ;-) Rodrigo Ruiz Keith Hatton wrote: H

Re: Using handlers to look at method parameter values

2003-12-04 Thread Rodrigo Ruiz
If your service uses RPC style, you may find something in the code of RPCProvider. It should contain the code to obtain the argument values array HTH, Rodrigo Ruiz Saravanan Markandeyan wrote: Thanks for your response. I tried looking into the MessageContext, I am able to get the method name

Re: Bug? Stateful Session EJB support

2003-12-04 Thread Rodrigo Ruiz
rhaps invalidating the session will make the provider to call the remove() method for you (I haven't read the EJBProvider code). If it is so, you could modify your client wrapper to encapsulate the session invalidation in a remove() method :-) Cheers, Rodrigo Ruiz Keith Hatton wrote: Well, I

Re: Bug? Stateful Session EJB support

2003-12-04 Thread Rodrigo Ruiz
Well, IMHO if Axis allows session scope for its web services, it should also allow some session lifecycle support. Otherwise, what is the point in allowing this scope? Just an opinion ;-) Rodrigo Ruiz Harald Pollak wrote: as much as I have understood: Webservice are from ground stateless and

Re: Remote method with no arguments?

2003-12-03 Thread Rodrigo Ruiz
Daniel, try this: call.invoke((Object[]null); or call.invoke(new Object[] {}); It works for me :-) HTH, Rodrigo Ruiz

Re: How to control access to certain fields in a bean map.

2003-12-01 Thread Rodrigo Ruiz
want to use a subclass for serializing / deserializing a given base class. This is the reason why you need to implement your own serializer to do this. HTH, Rodrigo Ruiz pratibha dadegaonkar wrote: Hi I have a bean class wherein i have the details like address id, place, state and all info

Re: Limiting Max Number Of Concurrent Requests

2003-12-01 Thread Rodrigo Ruiz
concurrency control structures, you can see http://gee.cs.oswego.edu/dl/cpj/ There you will find a link to the "util.concurrent" library. Hope this helps, Rodrigo Ruiz John Green wrote: Hello, I am using JBoss, Tomcat, and AXIS 1.1. Is there a way to limit the max number of

Re: Deleting attachments

2003-11-27 Thread Rodrigo Ruiz
helps you, Rodrigo Ruiz Heinz Schwarz wrote: I have some Axis-Webservices which deliver binary files via attachments. After sending the attachment, I have to delete this (temporary) attachment. What is the best way to do this ? How can I be sure that my client has received the attachment ? Thanks Heinz

Attaching a remote URL contents that is authenticated

2003-11-26 Thread Rodrigo Ruiz
r requiring Digest authentication. Anybody knows if there is something missing in my code? Perhaps a call to activate the authentication mechanism, or something similar? Thanks in advance, Rodrigo Ruiz

Re: WebServices chaining

2003-10-13 Thread Rodrigo Ruiz
use simple synchronization instead, and let the JVM do the hard work for you. On the other hand, if you need transactional processing, maybe your best option would be to implement it on session EJBs, and let the EJB container deal with all that stuff. Hope it helps, Rodrigo Ruiz - Origin

Re: Login/Password for using WS

2003-10-13 Thread Rodrigo Ruiz
axis.session.Session session = AxisEngine.getCurrentMessageContext().getSession(); boolean authFlags[] = (boolean[]) session.get("auth-flags"); This will bind your code to Axis, but AFAIK there is no standard way to get a session instance from within a service method. Hope it helps you

Using interfaces in Type Mappings

2003-08-07 Thread Rodrigo Ruiz
for me.   I am associating to the bean class the interface serializer, and the class deserializer. Reading the docs, it seems that WSDD does not support this.   Does anybody know how to express this combination in a wsdd file?   Thanks in advance,   GRIDSYSTEMS        Rodrigo Ruiz

Re: Axis attachment file created in the Temp directory

2003-07-29 Thread Rodrigo Ruiz
The class AxisServletBase in Axis 1.0, does the following during initialization: String attdir= servlet.getInitParameter(AxisEngine.ENV_ATTACHMENT_DIR); if (attdir != null) environment.put(AxisEngine.ENV_ATTACHMENT_DIR, attdir); I have not tested it, but I guess you can specify your attachment di

Re: Axis attachment file created in the Temp directory

2003-07-29 Thread Rodrigo Ruiz
a real image instance could, for example, delete the file after building the object instance. It is not automatic, but at least you will have some encapsulation :-) HTH, Rodrigo Ruiz - Original Message - From: "Subhendu Kumar mohanty" <[EMAIL PROTECTED]> To: <[EMAIL P

Can method parameters be documented in WSDL?

2003-07-23 Thread Rodrigo Ruiz
1.0 -- GRIDSYSTEMS Rodrigo Ruiz Aguayo Parc Bit - Son EspanyolAnalista Programador 07120 Palma de Mallorca[EMAIL PROTECTED] Baleares - España Tel:+34-971435085 www.gridsystems.comFax:+34-971435082

Can constants be declared in WSDL?

2003-07-23 Thread Rodrigo Ruiz
Hi all, Most of my custom types have constant declarations for certain parameters. Is there any way to include them in a WSDL descriptor? Thanks in advance, -- GRIDSYSTEMSRodrigo Ruiz Aguayo Parc Bit - Son EspanyolAnalista Programador 07120 Palma de Mallorca

registering default type mappings in client code

2003-06-10 Thread Rodrigo Ruiz
, or some example code? Thanks -- GRIDSYSTEMSRodrigo Ruiz Aguayo Parc Bit - Son EspanyolR&D 07120 Palma de Mallorca[EMAIL PROTECTED] Baleares - España www.gridsystems.com