This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
final class DBConnection { | |
private static $_handle = null; | |
private static $_dsn = "mysql:dbname=mydb;host=my.host.com;port=3306"; | |
private static $_user = "myUserName"; | |
private static $_password = "myPassword"; | |
private static $_options = array(PDO::MYSQL_ATTR_INIT_COMMAND => "SET NAMES utf8"); // SET UTF-8 | |
/** | |
* Deny Construct | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require_once 'Zend/Loader/Autoloader.php'; | |
Zend_Loader_Autoloader::getInstance(); | |
$server = 'http://bugzilla.mydomain.com/xmlrpc.cgi'; | |
$client = new Zend_XmlRpc_Client( $server ); | |
// Create the http client | |
$httpClient = new Zend_Http_Client(); | |
$httpClient->setCookieJar(); | |
$client->setHttpClient( $httpClient ); | |
// Bugzilla Login | |
$params = new Zend_XmlRpc_Value_Struct( |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* require PEAR/XML_RPC2 library | |
* Works fine with bugzilla 4.0.3 | |
*/ | |
require_once 'XML/RPC2/Client.php'; | |
$server = 'http://bugzilla.mydomain.com/xmlrpc.cgi'; | |
$params = array( 'login' => '[email protected]','password' =>'mypassword', 'remember' => 1); | |
$client = XML_RPC2_Client::create( $server ); | |
$userid = $client->__call( 'User.login' , $params ); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
package entrada; | |
import java.io.*; | |
/** | |
* @author Ruben Lacasa | |
* | |
*/ | |
public class Entrada { | |
/** | |
* @param args |
NewerOlder