From: brabuhr on
On Thu, Jul 15, 2010 at 4:29 AM, Dani Dani <laguna53(a)ymail.com> wrote:
> Thank you IKE, but I'm lloking for a sample program to connect to an
> exchange server using soap.

I've used SOAP from Ruby but never against Exchange.

The WSDL would be at https://exchange.example.com/EWS/Services.wsdl,
you also need https://exchange.example.com/EWS/messages.xsd and
https://exchange.example.com/EWS/types.xsd to be able to run
wsdl2ruby.rb on the wsdl.

/tmp> /var/lib/gems/1.8/gems/soap4r-1.5.8/bin/wsdl2ruby.rb --type
client --wsdl Services.wsdl

But, it fails:

FATAL -- app: Detected an exception. Stopping ... incomplete
simpleType (ArgumentError)

/tmp> ls -latr
-rw-r--r-- 1 43041 2010-07-15 16:04 defaultDriver.rb
-rw-r--r-- 1 0 2010-07-15 16:04 default.rb

I'm sorry that this isn't more useful, but maybe somebody knows how to
overcome this.

From: CParticle on
On Jul 11, 8:14 am, Dani Dani <lagun...(a)ymail.com> wrote:
> Hi, I'm looking for a sample programm to test the communication with an
> exchange server - connect, inquire data, add data, delete entry ...
> I was asked to check these possibilities but have no ruby experience.
> Would very much appreciate any help.
>
> Thank you in advance,
> Dany
> --
> Posted viahttp://www.ruby-forum.com/.

I've done a little of this using the IMAP connection and the net/imap
library. Its worked pretty well for me for some calendar stuff I
wanted to do. I can post it if you like its about 250 lines of code
though.

CParticle
From: Dani Dani on
Charged Particle wrote:
>
> I've done a little of this using the IMAP connection and the net/imap
> library. Its worked pretty well for me for some calendar stuff I
> wanted to do. I can post it if you like its about 250 lines of code
> though.
>
> CParticle

Hi, Thanks to all.

Yes Particle if you could post it here or to my email:
laguna53(a)ymail.com
with some explanations, I'll be thankfull for that´. Thank you.

Dani
--
Posted via http://www.ruby-forum.com/.