Programming Help
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
 
User Name:
Password:
Remember me
Go Back   ASP Free ForumsOtherProgramming Help

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread ASP Free Forums Sponsor:
  #1  
Old February 6th, 2004, 08:32 PM
krismj krismj is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Location: OH
Posts: 6 krismj User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Question server.createobject failed

here is the error i am getting:
Server object error 'ASP 0177 : 800401f3'

Server.CreateObject Failed

/competitiondynamics.com-asp/send.asp, line 18

Systemmessage, messageid = 0x800401f3
I am using dreamweaver to make an email contact form at www.competitiondynamics.com click on software demo. i figured out one problem was with my set mailer. i now have server.createobject("cdonts.newmail")
and am getting the same error i was getting with the other code which was wrong.
i'm using jumpline server and the program they have on it to read the asp is chilisoft.

any suggestions to correct this? i'm desperate to fix this. i've been asking for help at a bunch of forums for over a week.

Reply With Quote
  #2  
Old February 6th, 2004, 08:38 PM
Memnoch's Avatar
Memnoch Memnoch is offline
Unholy Moderator
ASP Free God 15th Plane (12000 - 12499 posts)
 
Join Date: Oct 2003
Location: In hell, where did you think?
Posts: 12,025 Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level) 
Time spent in forums: 3 Weeks 6 Days 12 h 21 m 3 sec
Reputation Power: 628
I am assuming the error is on the
Code:
Set ??? = Server.CreateObject("CDONTS.NewMail")

line of code???

Are you sure the cdonts.dll file is on the server and registered???

Reply With Quote
  #3  
Old February 6th, 2004, 08:43 PM
krismj krismj is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Location: OH
Posts: 6 krismj User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
I'm not sure. I can find out. Here is the whole page. Will you see if you can find anything eles that might be causeing the trouble?

<%@ Language=VBScript %>

<html>
<head>
<title>Thank You!</title>
<meta name="description" content="Operating for over 12 years, Competition Dynamics On Board Computer Systems, has provided the racing industry with high quality data acquisition systems while keeping an emphasis on affordability and ease of use.">
<meta name="keywords" content"competition, dynamics, Competition, Dynamics, competition dynamics, Competition Dynamics, data aquisition, computers, racing, racing products, das, das 2000, 2000, data recorder, recorder, Shelbyville, data, sensors, race sensors, racing sensors, weather, station, weather station">
<script language="JavaScript">
<!--
function MM_openBrWindow(theURL,winName,features) { //v2.0
window.open(theURL,winName,features);
}
//-->
</script>
</head>
<body background="images/formbg.gif" onLoad="javascript:MM_openBrWindow('demo/Das_Demo.zip','Demo','width=400,height=450')">
<%
Set objMail = Server.CreateObject("CDONTS.NewMail")
objMail.ServerAddress = "mail.competitiondynamics.com"
objMail.Sender = Request.QueryString("requiredemail")
objMail.SenderName = Request.QueryString("requiredlast")
objMail.Subject = "Contact Form"
objMail.AddRecipient "kris@nddev.com"
objMail.Body = "Someone has downloaded the demo software!" &vbCRLf
objMail.AppendText" " &vbCRLf
objMail.AppendText"FirstName: " &Request.QueryString("requiredfirst") &vbCRLf
objMail.AppendText"LastName: " &Request.QueryString("requiredlast") &vbCRLf
objMail.AppendText"Address: " &Request.QueryString("requiredaddress") &vbCRLf
objMail.AppendText"City: " &Request.QueryString("requiredcity") &vbCRLf
objMail.AppendText"State: " &Request.QueryString("requiredstate") &vbCRLf
objMail.AppendText"Zip: " &Request.QueryString("requiredzip") &vbCRLf
objMail.AppendText"Country: " &Request.QueryString("requiredcountry") &vbCRLf
objMail.AppendText"Email: " &Request.QueryString("requiredemail") &vbCRLf
objMail.AppendText"DaytimePhone: " &Request.QueryString("requireddayphone") &vbCRLf
objMail.AppendText"EveningPhone: " &Request.QueryString("requiredevephone") &vbCRLf
objMail.AppendText"HomePhone: " &Request.QueryString("requiredhomephone") &vbCRLf
objMail.AppendText"CellPhone: " &Request.QueryString("requiredcellphone") &vbCRLf
objMail.AppendText"WhatRacing?: " &Request.QueryString("requiredtype") &vbCRLf
objMail.AppendText"Wants to be contacted?:" &Request.QueryString("requiredcontact") &vbCRLf
objMail.AppendText"Wants to be on mail list?:" &Request.QueryString("requiredmail") &vbCRLf
objMail.AppendText"How did you hear about us?: " &Request.QueryString("requiredhearabout") &vbCRLf
objMail.AppendText"Comments: " &Request.QueryString("comments") &vbCRLf
objMail.AppendText" " &Request.ServerVariables ("HTTP_USER_AGENT") &vbCRLf
objMail.AppendText" " &Request.ServerVariables ("REMOTE_ADDR") &vbCRLf
objMail.AppendText" " &Request.ServerVariables ("REMOTE_HOST") &vbCRLf
objMail.AppendText" " &Request.ServerVariables ("REMOTE_SOFTWARE") &vbCRLf

ON Error Resume NEXT
objMail.Execute
IF Err.number <> 0 THEN Response.Write ( "There was an error while sending your request" & err.message )End If
%>
<font face="arial" size="2" color="#000000">Thank you for filling out our form. Your download will begin automatically.

</body>
</html>

Quote:
Originally Posted by krismj
here is the error i am getting:
Server object error 'ASP 0177 : 800401f3'

Server.CreateObject Failed

/competitiondynamics.com-asp/send.asp, line 18

Systemmessage, messageid = 0x800401f3
I am using dreamweaver to make an email contact form at www.competitiondynamics.com click on software demo. i figured out one problem was with my set mailer. i now have server.createobject("cdonts.newmail")
and am getting the same error i was getting with the other code which was wrong.
i'm using jumpline server and the program they have on it to read the asp is chilisoft.

any suggestions to correct this? i'm desperate to fix this. i've been asking for help at a bunch of forums for over a week.

Reply With Quote
  #4  
Old February 6th, 2004, 08:46 PM
Memnoch's Avatar
Memnoch Memnoch is offline
Unholy Moderator
ASP Free God 15th Plane (12000 - 12499 posts)
 
Join Date: Oct 2003
Location: In hell, where did you think?
Posts: 12,025 Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level)Memnoch User rank is Brigadier General (60000 - 70000 Reputation Level) 
Time spent in forums: 3 Weeks 6 Days 12 h 21 m 3 sec
Reputation Power: 628
If you are getting a Server.CreateObject failed error.
Chances are the cdonts.dll file either isn't on the server, or it isn't registered. You code won't work either way. You should contact your ISP and ask them.

Reply With Quote
  #5  
Old February 6th, 2004, 08:49 PM
krismj krismj is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Feb 2004
Location: OH
Posts: 6 krismj User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
i will try it. thank you.

Reply With Quote
  #6  
Old October 13th, 2005, 07:04 PM
JedinSyd JedinSyd is offline
Registered User
ASP Free Newbie (0 - 499 posts)
 
Join Date: Oct 2005
Posts: 1 JedinSyd User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: 6 m 22 sec
Reputation Power: 0
Windows 2003 doesn't support CDonts

http://support.microsoft.com/default.aspx?scid=kb;en-us;315197
could the problem be as simple as that?

Reply With Quote
Reply

Viewing: ASP Free ForumsOtherProgramming Help > server.createobject failed


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump





 Free IT White Papers!
 
Create the Optimal Architecture for your Critical Applications
Warburton's the largest independently owned bakery in the UK faced a number of difficult challenges in providing the most robust yet efficient IT infrastructure for their organization's success. IBM's services combined with their xSeries servers created the perfect platform for their SAP environment with sufficient flexibility, and did so in very time effective fashion.

 
Five Best Practices for Deploying a Successful Service-Oriented Architecture
This white paper describes the benefits you can expect with SOA, and how IBM can help take your business there.

 
Gartner Magic Quadrant for Application Delivery Controllers
Gartner summarizes its view on Application Delivery Controllers, evaluates strengths and weaknesses of solutions, and provides Magic Quadrant reporting for a quick comparison across all vendors. Learn from Gartner how you can benefit from an all-in-one device like Citrix NetScaler that delivers the highest levels of availability, performance and security.

 
Knowledge is Power
What you don't know can hurt you, and is likely costing you money and increasing your security risks during an era of scarce resources. This white paper proposes six key strategies that enterprise security managers can use to improve their network defense posture.

 
Rationalizing the Multi-Tool Environment
The rationalized multi-tool approach is flexible, scalable and cost effective. It provides the necessary input to the IT service management business processes. It preserves prior investments in monitoring tools, empowers technologists to select the best tools with which to do their jobs, and enhances effective response to incidents.

 

Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2010 by Developer Shed. All rights reserved. DS Cluster 11 Hosted by Hostway
For more Enterprise Application Development news, visit eWeek