Problem with Webutil program units [message #346927] |
Wed, 10 September 2008 02:19 |
durgadas.menon
Messages: 365 Registered: December 2007 Location: Nowhere
|
Senior Member |
|
|
Hi,
I am having problem with some webutil program units. client_get_file_name was working fine but when I tested client_tool_env and client_win_api_environment it throws exception. I have attached both the console readings here, Can you figure out what can be the problem?
CLIENT_WIN_API_ENVIRONMENT code
declare
uname varchar2(10);
BEGIN
uname:=client_win_api_environment.get_windows_username();
message('This is the username '||uname);
END;
CLIENT_TOOL_ENV.GETVAR code
[ALIGN=center]declare
dirname varchar2(255);
BEGIN
client_tool_env.getvar('C:\', dirname);
message('Here it is '||dirname);
END; [EDITED by DJM: removed extraneous formatting]
[Updated on: Wed, 10 September 2008 02:40] by Moderator Report message to a moderator
|
|
|
|
|
|
|
|
Re: Problem with Webutil program units [message #347176 is a reply to message #347134] |
Wed, 10 September 2008 23:34 |
durgadas.menon
Messages: 365 Registered: December 2007 Location: Nowhere
|
Senior Member |
|
|
unfortunately no...none of the functionalities except the client_Get_file_name (on the BUILTINs page) are working.
I believe the exceptions in the console have to do something about this but do not know what to do about it.
Any other steps I could take?
|
|
|
|
|
|