PHP example:
<?php $xhe_host = "127.0.0.1:707"; //+ cef //connect the object to control the emulator, if not already connected if(!isset($path)) $path = "../../../Templates/xweb_human_emulator.php"; require($path); //Start echo "<hr> <font color = blue> webpage->".basename(__FILE__)."</font> <hr>"; //through a proxy $mail->set_proxy("socks://127.0.0.1: 9150"); //1 echo "1.Let's connect to Yandex POP3:"; echo $mail->pop3_connect("pop.rambler.ru", 995, "user", "password")." n"; //2 echo "2.Get the number of letters:"; echo $mail->get_message_count_via_pop3()." n"; //no proxy $mail->set_proxy(""); //3 echo "3.Let's connect to POP3 mail.ru:"; echo $mail->pop3_connect("pop.mail.ru", 995, "user", "password")." n"; //4 echo "4.Get the number of letters:"; echo $mail->get_message_count_via_pop3()." n"; //five echo "5.Disconnect from POP3:"; echo $mail->pop3_disconnect()." n"; //end echo "<hr> <br>"; //Quit $app->quit(); ?>
Python example:
# Additional paths import sys sys.path.insert(0, '../../../Templates PY/') xhe_host = "127.0.0.1:7057" from xweb_human_emulator import * # Start echo("<hr> <font color = blue> mail.xxxxxxxxx </font> <hr>") # via proxy mail.set_proxy("socks://127.0.0.1: 9150") # 1 echo("1.Let's connect to Yandex POP3:") echo(mail.pop3_connect("pop.rambler.ru", 995, "user", "password"), " ") # 2 echo("2.Get the number of emails:") echo(mail.get_message_count_via_pop3(), " ") # no proxy mail.set_proxy("") # 3 echo("3.Let's connect to POP3 mail.ru:") echo(mail.pop3_connect("pop.mail.ru", 995, "user", "password"), " ") # 4 echo("4.Get the number of emails:") echo(mail.get_message_count_via_pop3(), " ") # five echo("5.Disconnect from POP3:") echo(mail.pop3_disconnect(), " ") # end echo("<hr> <br>") # Quit app.quit()
C# example:
#region using using System; using System.Diagnostics; using System.Collections.Generic; using System.Linq; using System.IO; using System.Text; using System.Threading; using XHE; using XHE.XHE_DOM; using XHE.XHE_System; using XHE.XHE_Window; using XHE.XHE_Web; #endregion class Program: XHEScript { static void Main(string [] args) { //init XHE server = "127.0.0.1:7057"; InitXHE(); //Start echo("<hr> <font color = blue> mail->pop3_connect </font> <hr>"); //through a proxy mail.set_proxy("socks://127.0.0.1: 9150"); //1 echo("1.Let's connect to Yandex POP3:"); echo(mail.pop3_connect("pop.rambler.ru", 995, "user", "password") + " n"); //2 echo("2.Get the number of letters:"); echo(mail.get_message_count_via_pop3() + " n"); //no proxy mail.set_proxy(""); //3 echo("3.Let's connect to POP3 mail.ru:"); echo(mail.pop3_connect("pop.mail.ru", 995, "user", "password") + " n"); //4 echo("4.Get the number of letters:"); echo(mail.get_message_count_via_pop3() + " n"); //five echo("5.Disconnect from POP3:"); echo(mail.pop3_disconnect() + " n"); //end echo("<hr> <br>"); //Quit app.quit(); } }
Java Script example:
xhe_host = "127.0.0.1:7057"; echo = require("../../../Templates JS/xweb_human_emulator.js"); //Start echo("<hr> <font color = blue> mail->pop3_connect </font> <hr>"); //through a proxy mail.set_proxy("socks://127.0.0.1: 9150"); //1 echo("1.Let's connect to Yandex POP3:"); echo(mail.pop3_connect("pop.rambler.ru", 995, "user", "password") + " n"); //2 echo("2.Get the number of letters:"); echo(mail.get_message_count_via_pop3() + " n"); //no proxy mail.set_proxy(""); //3 echo("3.Let's connect to POP3 mail.ru:"); echo(mail.pop3_connect("pop.mail.ru", 995, "user", "password") + " n"); //4 echo("4.Get the number of letters:"); echo(mail.get_message_count_via_pop3() + " n"); //five echo("5.Disconnect from POP3:"); echo(mail.pop3_disconnect() + " n"); //end echo("<hr> <br>"); //Quit app.quit();