| Author |
Message |
Alex
Guest
|
Posted:
Tue Nov 15, 2005 5:58 pm Post subject:
Calendaring problem |
|
|
Hello (excuse for my English).
I have a problem with a vb exe. I must save appointments on the exchange
server in user's mailboxes.
I connect with ADO using "msdaipp.dso" provider. (the connection is ok)
With lot of platform (for ex: winXP, win2003 server) the program work
properly.
The error 80004005 came out on this instruction.
iAppt.DataSource.SaveToContainer connstr & "/calendar", conn
-iAppt is a new CDO.Appointment
-connstr is the exchange server mailbox URL
-conn is the ADODB.Connection with IPP provider.
I have Exchange 2003 server on Win2000 server sp4. The exe is on a win2000
server (must be on win2000).
There's no way to save appointments between win2000 server os and exchange
2003. I didn't fount anything helpful on microsoft.com support.
Someone can help me?
|
|
| Back to top |
|
 |
Glen Scales [MVP]
Guest
|
Posted:
Wed Nov 16, 2005 9:55 am Post subject:
Re: Calendaring problem |
|
|
Using CDOEX over Msdaipp.dso is not supported see
http://support.microsoft.com/default.aspx?kbid=281899&product=edk . Also,
MSDAIPP cannot run directly on an Exchange 2003 Server.
Remotely it usually does work under the covers all it is using is WebDAV so
as long as your not trying to use SSL (where you might get a certificated
warning) or Forms Based Authentication which this DLL has no provision to
deal with. Check the version of the CDOEX.DLL you are using the Exchange
2000 SP3 and 4 dll usually work okay for me but Exchange 2003 versions won't
work at all and early Exchange 2000 versions had different problems. You
should really consider converting your code to WebDAV which is a more
supportable method. see
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/e2k3/e2k3/_esdk_creating_an_appointment_webdav.asp
Cheers
Glen
"Alex" <Alex@discussions.microsoft.com> wrote in message
news:E6122C28-656A-4734-ACCD-C9AEA583AAE5@microsoft.com...
| Quote: | Hello (excuse for my English).
I have a problem with a vb exe. I must save appointments on the exchange
server in user's mailboxes.
I connect with ADO using "msdaipp.dso" provider. (the connection is ok)
With lot of platform (for ex: winXP, win2003 server) the program work
properly.
The error 80004005 came out on this instruction.
iAppt.DataSource.SaveToContainer connstr & "/calendar", conn
-iAppt is a new CDO.Appointment
-connstr is the exchange server mailbox URL
-conn is the ADODB.Connection with IPP provider.
I have Exchange 2003 server on Win2000 server sp4. The exe is on a win2000
server (must be on win2000).
There's no way to save appointments between win2000 server os and exchange
2003. I didn't fount anything helpful on microsoft.com support.
Someone can help me? |
|
|
| Back to top |
|
 |
Alex
Guest
|
Posted:
Wed Nov 16, 2005 9:58 am Post subject:
Re: Calendaring problem |
|
|
I used WebDAV for my EXE and it worked.
I put it in my dll and it also worked.
Thank you very much.
"Glen Scales [MVP]" ha scritto:
| Quote: | Using CDOEX over Msdaipp.dso is not supported see
http://support.microsoft.com/default.aspx?kbid=281899&product=edk . Also,
MSDAIPP cannot run directly on an Exchange 2003 Server.
Remotely it usually does work under the covers all it is using is WebDAV so
as long as your not trying to use SSL (where you might get a certificated
warning) or Forms Based Authentication which this DLL has no provision to
deal with. Check the version of the CDOEX.DLL you are using the Exchange
2000 SP3 and 4 dll usually work okay for me but Exchange 2003 versions won't
work at all and early Exchange 2000 versions had different problems. You
should really consider converting your code to WebDAV which is a more
supportable method. see
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/e2k3/e2k3/_esdk_creating_an_appointment_webdav.asp
Cheers
Glen
"Alex" <Alex@discussions.microsoft.com> wrote in message
news:E6122C28-656A-4734-ACCD-C9AEA583AAE5@microsoft.com...
Hello (excuse for my English).
I have a problem with a vb exe. I must save appointments on the exchange
server in user's mailboxes.
I connect with ADO using "msdaipp.dso" provider. (the connection is ok)
With lot of platform (for ex: winXP, win2003 server) the program work
properly.
The error 80004005 came out on this instruction.
iAppt.DataSource.SaveToContainer connstr & "/calendar", conn
-iAppt is a new CDO.Appointment
-connstr is the exchange server mailbox URL
-conn is the ADODB.Connection with IPP provider.
I have Exchange 2003 server on Win2000 server sp4. The exe is on a win2000
server (must be on win2000).
There's no way to save appointments between win2000 server os and exchange
2003. I didn't fount anything helpful on microsoft.com support.
Someone can help me?
|
|
|
| Back to top |
|
 |
|
|
|
|