<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>SmarterTrack :: Get Ticket URL</title> </head> <body> <form action="#" method="post"> Enter Ticket Number: <input type="text" name="ticket" maxlength="17" /> <input type="submit" value="go" /> </form> <?php if (isset($_POST['ticket'])) { // User and Server Variables $user='STusername'; $pswd='STpassword'; $wsdl = "http://support.mycompany.com/Services2/svcTickets.asmx?wsdl"; // Soap Request $ticket=$_POST['ticket']; $param=array('authUserName'=>$user, 'authPassword'=>$pswd, 'ticketNumber'=>$ticket); $smartclient = new soapclient($wsdl, $param); $list=$smartclient->GetTicketURL($param); // Soap Response $list=$list->GetTicketURLResult; $url=$list->RequestResult; // Display URL print "$url"; } ?> </body> </html>
Trouble logging in? Simply enter your email address OR username in order to reset your password.
For faster and more reliable delivery, add noreply@smartertools.com to your trusted senders list in your email software.