Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
  1. Home
  2. Web Development
  3. Windows 2000 Server

Windows 2000 Server

Scheduled Pinned Locked Moved Web Development
sysadmincomwindows-adminhelpquestion
5 Posts 3 Posters 0 Views 1 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • G Offline
    G Offline
    Grahamfff
    wrote on last edited by
    #1

    I have just installed IIS on my old PC (running Windows 2000). This is to test my Web Site before getting onto the real server. I am using asp to handle the Contact page where users can e-mail me. I have been using JMail in a Send_email.asp, but get the error:- Error Type: Server object, ASP 0177 (0x800401F3) Invalid ProgID. For additional information specific to this message please visit the Microsoft Online Support site located at: http://www.microsoft.com/contentredirect.asp. /My_Site/send_email.asp, line 108 Now line 108 is shown below:-

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

    Have I configured the IIS program corectly. Note this PC is on my home network (shares internet via a gateway PC) and the only e-mail I have on it is my hotmail. i.e. what do I put in these fields:-

    strMyEmailAddress = "myhotmail@hotmail.com"

    strSMTPServerAddress = "smtp.hotmail.com"

    Are the above correct? I did run this VB program to test JMail and it ran OK. On Error Resume Next Set ob = CreateObject("JMail.SMTPMail") If Not ob Is Nothing Then MsgBox "object created OK" Set ob = Nothing Else MsgBox "failed to create object" End IF Are they some settings in Personel Web Manager or somewhere else I need to set? grahamfff

    G 1 Reply Last reply
    0
    • G Grahamfff

      I have just installed IIS on my old PC (running Windows 2000). This is to test my Web Site before getting onto the real server. I am using asp to handle the Contact page where users can e-mail me. I have been using JMail in a Send_email.asp, but get the error:- Error Type: Server object, ASP 0177 (0x800401F3) Invalid ProgID. For additional information specific to this message please visit the Microsoft Online Support site located at: http://www.microsoft.com/contentredirect.asp. /My_Site/send_email.asp, line 108 Now line 108 is shown below:-

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

      Have I configured the IIS program corectly. Note this PC is on my home network (shares internet via a gateway PC) and the only e-mail I have on it is my hotmail. i.e. what do I put in these fields:-

      strMyEmailAddress = "myhotmail@hotmail.com"

      strSMTPServerAddress = "smtp.hotmail.com"

      Are the above correct? I did run this VB program to test JMail and it ran OK. On Error Resume Next Set ob = CreateObject("JMail.SMTPMail") If Not ob Is Nothing Then MsgBox "object created OK" Set ob = Nothing Else MsgBox "failed to create object" End IF Are they some settings in Personel Web Manager or somewhere else I need to set? grahamfff

      G Offline
      G Offline
      Guffa
      wrote on last edited by
      #2

      The usual reason for this error message is that the component is not installed. Have you installed the mail component? In your test program, how did you declare the ob variable? If you didn't declare it, it will be of the type variant. That would mean that in case of failure to create the object, the value in the variable would not be Nothing, but Empty. --- b { font-weight: normal; }

      G 1 Reply Last reply
      0
      • G Guffa

        The usual reason for this error message is that the component is not installed. Have you installed the mail component? In your test program, how did you declare the ob variable? If you didn't declare it, it will be of the type variant. That would mean that in case of failure to create the object, the value in the variable would not be Nothing, but Empty. --- b { font-weight: normal; }

        G Offline
        G Offline
        Grahamfff
        wrote on last edited by
        #3

        Thanks Guffa, yes the JMail was not installed on the computer. I thought that installing IIS was all you needed to do. I havr downloaded and installed/registered JMail.dll. The script now runs a bit further. It hits a problem with objMail.Execute statement. Do I need to make some settings in the IIS or Personel Web Manager. For this testing I am using my hotmail, as thats all I have on this test computer. I use smtp.hotmail.co.uk and myhotmail@hotmail.co.uk Is this correct? Many thanks, Graham. grahamfff

        G V 2 Replies Last reply
        0
        • G Grahamfff

          Thanks Guffa, yes the JMail was not installed on the computer. I thought that installing IIS was all you needed to do. I havr downloaded and installed/registered JMail.dll. The script now runs a bit further. It hits a problem with objMail.Execute statement. Do I need to make some settings in the IIS or Personel Web Manager. For this testing I am using my hotmail, as thats all I have on this test computer. I use smtp.hotmail.co.uk and myhotmail@hotmail.co.uk Is this correct? Many thanks, Graham. grahamfff

          G Offline
          G Offline
          Guffa
          wrote on last edited by
          #4

          Most certainly hotmail won't let you use their smtp server to send mails, if they even have a mail server at that address. If the server has an smtp server installed, you most likely don't need to specify the smtp address at all, or specify localhost as smtp server. --- b { font-weight: normal; }

          1 Reply Last reply
          0
          • G Grahamfff

            Thanks Guffa, yes the JMail was not installed on the computer. I thought that installing IIS was all you needed to do. I havr downloaded and installed/registered JMail.dll. The script now runs a bit further. It hits a problem with objMail.Execute statement. Do I need to make some settings in the IIS or Personel Web Manager. For this testing I am using my hotmail, as thats all I have on this test computer. I use smtp.hotmail.co.uk and myhotmail@hotmail.co.uk Is this correct? Many thanks, Graham. grahamfff

            V Offline
            V Offline
            Vasudevan Deepak Kumar
            wrote on last edited by
            #5

            Graham Not all free web mail providers give access to outbound SMTP. You may like to check out with your dialup or broadband ISP for SMTP services to us. Vasudevan Deepak Kumar Personal Web: http://vdeepakkumar.netfirms.com/ I Blog At: http://deepak.blogdrive.com/

            1 Reply Last reply
            0
            Reply
            • Reply as topic
            Log in to reply
            • Oldest to Newest
            • Newest to Oldest
            • Most Votes


            • Login

            • Don't have an account? Register

            • Login or register to search.
            • First post
              Last post
            0
            • Categories
            • Recent
            • Tags
            • Popular
            • World
            • Users
            • Groups