ERROR WEBUTIL. [message #580577] |
Mon, 25 March 2013 23:47 |
|
Dear all,
Firstly, thank you very much for your support me always!
I have problem:
I have one form test webutil. On this form have button "Export" write data to text file
In event WHEN-BUTTON-PRESSED, i have code same below:
Declare
in_file client_text_io.file_type;
linebuf Varchar2(2000);
Begin
in_file := client_text_io.fopen('C:\TEMP\test.txt', 'w');
If client_text_io.is_open(in_file) Then
client_text_io.put_line(in_file, 'Line_text');
client_text_io.fclose(in_file);
synchronize;
End If;
If Not client_text_io.is_open(in_file) Then
client_host('Notepad.exe ');
Else
client_text_io.fclose(in_file);
End If;
exception
when others then
null;
end;
--> Result OK ( Can write to text file follow path: C:\TEMP\test.txt)
-----
However, when i deploy this form to Application server,
and click button "Export" after that raise errors (refer attachment file):
How do i do now? Please support me.
Thanks!
[Updated on: Mon, 25 March 2013 23:48] Report message to a moderator
|
|
|
|
Re: ERROR WEBUTIL. [message #580612 is a reply to message #580605] |
Tue, 26 March 2013 03:18 |
|
Yes, thank you very much for your answer.
With Application server, i already configure Webutil, and now some functions can use Webutil normally.
Please continue support me.
|
|
|
Re: ERROR WEBUTIL. [message #580662 is a reply to message #580612] |
Tue, 26 March 2013 12:26 |
joy_division
Messages: 4963 Registered: February 2005 Location: East Coast USA
|
Senior Member |
|
|
dophuong_cs wrote on Tue, 26 March 2013 04:18Yes, thank you very much for your answer.
With Application server, i already configure Webutil, and now some functions can use Webutil normally.
Please continue support me.
I can't tell from this answer if you have a question or made a statement. Is it working or not?
Why didn't you click on "Details" for a more detailed explanation of your error?
|
|
|