/* Richard A. DeVenezia * SUGI 29 - "Greetings from the Edge" * www.devenezia.com/papers */ data _null_; length s $200; declare javaobj juri ('java/net/URI', 'http', 'www.sas.com'); juri.callStringMethod ('toString', s); put s=; run;