Wrox Programmer Forums
|
ASP CDO As of Oct 5, 2005, this forum is now locked. No posts have been deleted. Please use "Classic ASP Professional" at: http://p2p.wrox.com/forum.asp?FORUM_ID=56 for discussions similar to the old ASP Pro Code Clinic or one of the other many remaining ASP and ASP.NET forums here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the ASP CDO section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old July 10th, 2003, 04:25 AM
Registered User
 
Join Date: Jul 2003
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default CDO application in SSL

I encountered this error when i moved my email sending application to an SSL site:

CDO.Message.1 error '80040220'

The "SendUsing" configuration value is invalid.

Can anyone help me?
 
Old March 23rd, 2004, 01:52 AM
Friend of Wrox
 
Join Date: Oct 2003
Posts: 479
Thanks: 0
Thanked 3 Times in 3 Posts
Send a message via MSN to surendran Send a message via Yahoo to surendran
Default

hello
which code you are using.

surendran
(Anything is Possible)
 
Old May 24th, 2005, 09:50 AM
Registered User
 
Join Date: May 2005
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default

I have encountered the same problem as reported by lebron_james.

I have a email sending utility which wrks fine under http. But once after making the website secure i get the following error message.
--------------------ERROR-------------
CDO.Message.1 error '80040212'

The transport lost its connection to the server.

/ssl/sendMail.asp, line 225
---------------------------------------

Here is the source i use to send email
---------------------------------------
 Set cdoConfig = Server.CreateObject("CDO.Configuration")
 With cdoConfig.Fields
        .Item(cdoSendUsingMethod) = cdoSendUsingPort
        .Item(cdoSMTPServer) = "10.237.5.105"
        .Update
 End With

 Set cdoMessage = Server.CreateObject("CDO.Message")

 With cdoMessage
    Set .Configuration = cdoConfig
        .From = emailAddr
        .To = Trim(Request.Form("recipient"))
        .Subject = Request.Form("subject")
        .TextBody = bodyOutput
        .Send
 End With

 Set cdoMessage = Nothing
 Set cdoConfig = Nothing
---------------------------------------

We would require urgent help in this regard.







Similar Threads
Thread Thread Starter Forum Replies Last Post
What is SSL varuna22 Beginning PHP 1 September 18th, 2008 08:13 AM
Javascript and SSL jdhemphill Other Programming Languages 0 January 30th, 2007 05:22 PM
SSL Using Java 1.4.2 jhwong56 BOOK: Beginning Cryptography with Java 18 June 23rd, 2006 06:57 AM
SSL implementation piyush_vish ASP.NET 1.0 and 1.1 Professional 0 January 6th, 2006 07:30 AM
SSL shs BOOK: Beginning ASP.NET 1.0 0 August 24th, 2004 06:16 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.