Contact Info

Crumbtrail

ActiveXperts.com » Network Component » How to Use Network Component » WOL (Wake-On-LAN) » Coldfusion

ColdFusion WOL Sample Source Code

Network Component provides an easy-to-use development interface to a variety of IP protocols. By using Network Component, you can very easily create or enhance applications with network features.

Network Component features the following: DNS, FTP, HTTP, HTTPs, ICMP Ping, IP-to-Country, MSN, NTP, RSH, SCP, SFTP, SNMP v1/v2c (Get, GetNext, Set), SNMP Traps, SNMP MIB, SSH, TCP, Telnet, TFTP, UDP, Telnet, Wake-On-LAN and more.

Network Component can be well integrated into any development platform that supports ActiveX objects.



Step 1: Download and install the Network Component

Download Network Component from the ActiveXperts Download Site and start the installation. The installation guides you through the installation process.

Step 2: Create a new ColdFusion document

Create a new blank webdocument with the ".cfm" extention. First of all we are going to build the form whitch commands and properties of the device can be filled in. Then we are going to make a source code that connects to the device.

Step 3: Implementation

 <cfobject class="AxNetwork.Wol" type="com" name="objWol" Action="Create">  

It can be very helpfull to check for errors before executing some code. Applying this can be done easily:

if(objWol.LastError eq "0"){
  Some code
}

Appendix: Full source code

<!--- creating the object --->
<cfobject class="AxNetwork.Wol" type="com" name="objWol" Action="Create">

<cfoutput>
<html>
<head>
 <title>ActiveXperts Network Component Wake on LAN Sample in ColdFusion</title>
  <style>
  <!--
  body{
    text-align: center;
  }
  h2{
   font-family: verdana;
   color: navy;
   font-weight: bold;
  }
  form{
   margin: 0px;
  }
  .input{
   font-family: verdana;
   font-size: 9pt;
   color: navy;
   border: 1px solid navy;
   background-color: white;
   width: 325px;
  }
  
  .button{
   font-family: verdana;
   font-size: 9pt;   
   width: 325px;
  }
  .table{
   font-family: verdana;
   font-size: 9pt;
   color: navy;
   border: 1px solid navy;
   width: 500px;
  }
  div{
    width: 325px; 
    height: 50px; 
    overflow: auto; 
    text-align: left; 
    font-size: xx-small; 
    font-family: verdana;
    border: 1px solid navy;
  }
  a{
    font-family: verdana;
    font-size: 8pt;
    color: red;
  }
  -->
 </style>
</head>
<body>
</cfoutput>

<cfscript>
    strMac = "00-10-4B-BA-7A-51";      
    strResult = "";    
    
    strLogfile = GetTempDirectory() & "WakeonLan.log";
    strComponent = "Module [" & objWol.Module & "]; Build [" & objWol.Build & "]";
    
    if (isDefined("URL.txtMac")){
      strMac = URL.txtMac;
    }     
    
    if (isDefined("URL.txtLogfile")){
      strLogfile = URL.txtLogfile;
    }

    if(IsDefined("URL.Submitbutton")){
      objWol.Logfile = strLogfile;
      objWol.WAkeUp(strMac);
      strResult = objWol.LastError & ": " & objWol.GetErrorDescription(objWol.LastError);	
    }
</cfscript>



<cfoutput>

</head>
<body>
<form method=get>

<h2>ActiveXperts Network Component CF Sample - Wake on LAN</h2>

<table class=table>
 <tr>
  <td>Component:</td>
  <td>#strComponent#</td>
 </tr>
 <tr>
  <td>Mac:</td>
  <td><input class=input type=text name=txtMac value="#strMac#"></td>
 </tr>
 <tr>
    <td> </td>
    <td><input class=button type=submit name=submitbutton value="Wake up!"></td>
 </tr>
 <tr>
    <td>Logfile:</td>
    <td><input class=input type=text name=txtLogfile value="#strLogfile#"></td>
 </tr>
 <tr>
  <td><b>Result: </b></td>
  <td>#strResult#</td>
 </tr>
</table>

</form>
<br />


<p>This sample is based on ActiveXperts Network Component, an <a target="blank" href="https://www.activexperts.com">ActiveXperts Software</a> product.</p>
<a href="index.cfm">Back to main page</a>

</body>
</html>

</cfoutput>

You can download the complete samples here. There are many other working Network Component scripts on our site and shipped with the product.