[lnkForumImage]
TotalShareware - Download Free Software

Confronta i prezzi di migliaia di prodotti.
Asp Forum
 Home | Login | Register | Search 


 

Forums >

comp.lang.ruby

secure client api for a web service

crashoverride111

1/24/2009 7:56:00 PM

Hello,

I have to make a client api using ruby, to a java web service.

Using wsdl2ruby, I generated the client stubs and now I am trying to
use one of many popular methods of web service in a secure way i.e.
digital signature etc.

Is there a CXF libraries (jar files) equivalent in Ruby that I can
just import and start using their methods?

What other ways are there to start building a secure client api?

Thanks,
Carla
2 Answers

Albert Schlef

1/25/2009 12:49:00 AM

0

Carla wrote:
> What other ways are there to start building a secure client api?

I'm not familiar with java and the technologies you mentioned, but I'd
simply instruct my users (programmers) to access my api using https://.
Their first call would be to the login page. Subsequent calls would need
to send the session cookie.
--
Posted via http://www.ruby-....

crashoverride111

1/27/2009 6:17:00 PM

0

On Jan 24, 7:48 pm, Albert Schlef <albertsch...@gmail.com> wrote:
> Carla wrote:
> > What other ways are there to start building a secure client api?
>
> I'm not familiar with java and the technologies you mentioned, but I'd
> simply instruct my users (programmers) to access my api using https://.
> Their first call would be to the login page. Subsequent calls would need
> to send the session cookie.
> --
> Posted viahttp://www.ruby-....

When I am trying to connect to the web service, I am getting
(SOAP::FaultError) back that says Request does not contain required
Security header. How do I add one?