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 14th Plane (11500 - 11999 posts)
 
Join Date: Oct 2003
Location: In hell, where did you think?
Posts: 11,760 Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 3 Weeks 5 Days 5 h 22 m 16 sec
Reputation Power: 443
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 14th Plane (11500 - 11999 posts)
 
Join Date: Oct 2003
Location: In hell, where did you think?
Posts: 11,760 Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level)Memnoch User rank is Lieutenant Colonel (40000 - 50000 Reputation Level) 
Time spent in forums: 3 Weeks 5 Days 5 h 22 m 16 sec
Reputation Power: 443
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


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





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway