Hi James,

Thanks for the reply.

I am able to list all the present appointments in the Calendar, but
still not able to figure out a way to enter tasks in the calendar.

Here's what I did..

HttpsURL hrl = new HttpsURL("https://exchgServ/exchange/user/Calendar/";);
NTCredentials ntc = new NTCredentials("user", "password", "exchgServ",
"domain");
wr = new WebdavResource(hrl, ntc, WebdavResource.DEFAULT, 1);

String [] myList = wr.list();

for(int i=0; i<myList.length; i++ ) {
        System.out.println("i: "+i+" value: "+myList[i]);
}

I tried to go through documentation on the MS website, but still not
able to figure it out.

Any suggestions?

Thanks!!
Sud.


On Thu, 13 Jan 2005 18:20:00 -0800, James Mason <[EMAIL PROTECTED]> wrote:
> Read the Exchange documentation on Microsoft's website. There are links
> in the user's list archives.
> 
> You're only going to need the client components of Slide. You'll need to
> translate from the HTTP commands the Microsoft references into the Java
> API that Slide provides. An HTTP sniffer will make this easier, but it
> shouldn't be too hard to figure out from looking at the Javadocs.
> 
> -James
> 
> On Thu, 2005-01-13 at 09:46 -0600, Sudhanshu Singhal wrote:
> > Hello All,
> >
> > I am working on a java application running under tomcat 5.0.28 for
> > managing appointment's. I want to integrate it to MS exchange 2003
> > using the Slide framework. I want my application to update the
> > calendar with the appointment.
> >
> > I went through all the post in the list but couldn't find my way through.
> >
> > Anyone with suggestions?
> >
> > Thanks!!
> > Sud.
> >
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 


-- 
"Discipline is the bridge between goals and accomplishment.." Jim Rohn

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to