- (defun getuip( address / ob html)
- (setq ob (vlax-create-object "Msxml2.XMLHTTP"))
- (vlax-invoke-method ob "open" "get" address "false")
- (if (vl-catch-all-error-p (vl-catch-all-apply 'vlax-invoke-method (list ob "send")))
- (princ "\nµ±Ç°ÎÞÍøÂçÁ¬½Ó")
- (setq html (vlax-get-property ob "responseText"))
- )
- (vlax-release-object ob)
- html
- )
- (getuip "http://icanhazip.com" )
|