(不需中華電信Hisecure API)跨平台支援Windows以及Linux雙系統-專題製作最好工具 自行開發之自然人憑證SDK, 使用此SDK可以開發利用自然人憑證進行資料加密,解密,電子文件簽章,驗證的功能 跨平台支援Windows, Linux雙作業系統, 目前僅提供 C,C++語言函式SDK,若需別種語言可專案處理 此SDK為自行開發, 完全不使用中華電信Hisecure API函式以及SafeSign CSP,故不需向內政部申請使用 使用此SDK可達成 內政部提供 - 自然人憑證API基本應用程式網頁 內所有的功能 並完全相容於上述自然人憑證API基本應用程式, 亦即此SDK產生之簽章可在上述網址中驗證成功,反之亦然
2013年9月17日 星期二
2013年8月5日 星期一
zend doctrine entity generate get set
http://support.orm-designer.com/474/export-to-orm-doctrine2-auto-generates-getters-and-setters
notice: your php entity namespace setting .... if you use zend studio to new class, change entity namespcae to Application\Entity.....or you have other ideas
orm:generate-entities --update-entities="true" --generate-methods="true" [path to your entities]
.notice: your php entity namespace setting .... if you use zend studio to new class, change entity namespcae to Application\Entity.....or you have other ideas
2013年7月14日 星期日
2013年5月12日 星期日
ndk APP_STL := stlport_static
新增一application.mk
將需要參數APP_STL := stlport_static ......
等加入便可 include vector
將需要參數APP_STL := stlport_static ......
等加入便可 include vector
2013年5月8日 星期三
javap 得到Type Signatures
http://rxwen.blogspot.tw/2010/12/tools-for-working-with-android-jni.html
到project的目錄下command:
javap -classpath bin/classes -s -p com.rmd.jni.MainActivity
到project的目錄下command:
javap -classpath bin/classes -s -p com.rmd.jni.MainActivity
得到signature.....
2013年4月19日 星期五
2013年4月8日 星期一
jq cross domain
jquery:
$.ajax({ type: "GET", url: "http://localhost:8000/aa.php",
data: {name: 'Chad'},
dataType: 'jsonp',
jsonp: 'jsonp_callback',
success: function(json) { var tt = json; alert(tt); $("#result").html('submitted successfully'); },
error: function(json) { alert("failure"); $("#result").html('there is error while submit'); } });
/
$jsonp = false;
if ( isset( $_GET[ 'jsonp_callback' ] ) ) {
$_GET[ 'jsonp_callback' ] = strip_tags( $_GET[ 'jsonp_callback' ] );
$jsonp = true;
$pre = $_GET[ 'name' ] . '(';
$post = ');';
} //isset( $_GET[ 'callback' ] )
/* Encode JSON, and if jsonp is true, then ouput with the callback
** function; if not - just output JSON. */
$json = json_encode($_GET[ 'name' ]);
//print( ( $jsonp ) ? $pre . $json . $post : $json );
//print($_GET[ 'jsonp_callback' ].'('.$json.')');
echo $jsonp_callback,$_GET['jsonp_callback'] . "(" . $json . ")";
?>
$.ajax({ type: "GET", url: "http://localhost:8000/aa.php",
data: {name: 'Chad'},
dataType: 'jsonp',
jsonp: 'jsonp_callback',
success: function(json) { var tt = json; alert(tt); $("#result").html('submitted successfully'); },
error: function(json) { alert("failure"); $("#result").html('there is error while submit'); } });
/
$jsonp = false;
if ( isset( $_GET[ 'jsonp_callback' ] ) ) {
$_GET[ 'jsonp_callback' ] = strip_tags( $_GET[ 'jsonp_callback' ] );
$jsonp = true;
$pre = $_GET[ 'name' ] . '(';
$post = ');';
} //isset( $_GET[ 'callback' ] )
/* Encode JSON, and if jsonp is true, then ouput with the callback
** function; if not - just output JSON. */
$json = json_encode($_GET[ 'name' ]);
//print( ( $jsonp ) ? $pre . $json . $post : $json );
//print($_GET[ 'jsonp_callback' ].'('.$json.')');
echo $jsonp_callback,$_GET['jsonp_callback'] . "(" . $json . ")";
?>
訂閱:
文章 (Atom)