"win7.chung-mei.net" server seems can't support some Components .....

tedwang

Perch
I find the "win7.chung-mei.net" server seems can't support some Components .....
I can't sent email and upload files with Jmail Components and Aspsmartupload.......
But....As the following web page http://www.jodohost.com/reseller.asp....
Components: CDONTS, CDOSYS, AspMail, AspEMAIL, AspSecured, AspUpload, AspImage, AspSock, AspPOP3, AspNTTP, AspDNS, AspMX, AspPing, AspCrypt, AspINET, ASPJpeg, Dundas Mailer, Dundas Upload, w3 JMail, w3 SiteTree, ASPTear, ASPSmartUpload, Office Web Components
:(
Thanks for your requiring much attention and concern !!

Best Regards
Chung-mei's MIS Ted Wang
 
This is being looked into. All the components are supported on all servers and if they are not working, they'll be corrected
 
Hi ~

I write a testcom.asp for test some Components on win7.chung-mei.net ....

the code is....
"
<%
on error resume next

response.write "test Components ...<br>"

Set UploadObj = Server.CreateObject("aspSmartUpload.SmartUpload")

if err.number <> 0 then

response.write err.description & "----> aspSmartUpload can't be created ....<br>"

else

response.write "----> aspSmartUpload can be created ....<br>"

end if

err.Clear


Set UploadObj = Server.CreateObject("JMail.SMTPMail")

if err.number <> 0 then

response.write err.description & "----> JMail can't be created ....<br>"

else

response.write "----> JMail can be created ....<br>"

end if

err.Clear


Set UploadObj = Server.CreateObject("JMail.SMTPMail")

if err.number <> 0 then

response.write err.description & "----> JMail can't be created ....<br>"

else

response.write "----> JMail can be created ....<br>"

end if

err.Clear

Set MailObj=Server.Createobject("CDONTS.NewMail")

if err.number <> 0 then

response.write err.description & "----> CDONTS can't be created ....<br>"

else

response.write "----> CDONTS can be created ....<br>"

end if

%>

"
But the result is .....

test Components ...
006~ASP 0177~Server.CreateObject Failed~800401f3----> aspSmartUpload can't be created ....
006~ASP 0177~Server.CreateObject Failed~800401f3----> JMail can't be created ....
006~ASP 0177~Server.CreateObject Failed~800401f3----> JMail can't be created ....
----> CDONTS can be created ....
 
Back
Top