I have come across the error (in the question title) while saving records from a form. Now I've tried it when running my forms with my PC acting as the server (Oracle 9i OAS) and the client (via Internet Explorer browser), and also with a separate server (Oracle Application Server 10g) and my PC as the client. This only happens when I'm inserting a new record from a secondary form that had data populated from the calling form.
For example, and application record is created then saved. Then a button to call the corporation screen is pressed and details of the application populate fields in the corp screen. At that point I add more data and the save. This is when the application crashes, but the browser remains open. Now if I modify and existing corporation from an existing application, when I save everything runs normal.
Some other details are:
Java Exception:
oracle.forms.net.Connectio
nException
: Forms session <18> aborted: unable to communicate with runtime process.
Now I looked at the possible solution by Oracle: "This can be confirmed by looking for a log message like "Unable to switch to Workin Directory: <workingDirectory>" in the application.log file. I did look at the log, and saw no error like this but did see other errors
05/02/01 18:57:41 forms90web: Forms session <31> aborted: unable to communicate with runtime process.
05/02/01 18:57:41 forms90web: Forms session <31> exception stack trace:
java.net.SocketException: Connection reset at java.net.SocketInputStream
.read(Sock
etInputStr
eam.java:1
68)
at java.io.BufferedInputStrea
m.fill(Buf
feredInput
Stream.jav
a:183)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].server.http.A
JPRequestH
andler.run
(AJPReques
tHandler.j
ava:125)
at com.evermind[Oracle Application Server Containers for J2EE 10g (9.0.4.0.0)].util.Releasab
leResource
PooledExec
utor$MyWor
ker.run(Re
leasableRe
sourcePool
edExecutor
.java:192)
at java.lang.Thread.run(Threa
d.java:534
)
Then saw this in the error log
[Tue Feb 01 18:05:23 2005] [error] [client 10.11.90.37] [ecid: 1107309923:147.22.88.31:33
24:3532:33
38,0] File does not exist: d:/orahome2/forms90/java/j
ava/awt/Ke
yboardFocu
sManager.c
lass
[Tue Feb 01 18:05:23 2005] [error] [client 10.11.90.37] [ecid: 1107309923:147.22.88.31:33
24:3532:33
39,0] File does not exist: d:/orahome2/forms90/java/s
un/applet/
AppletView
er.class
[Tue Feb 01 18:05:23 2005] [error] [client 10.11.90.37] [ecid: 1107309923:147.22.88.31:33
24:3532:33
40,0] File does not exist: d:/orahome2/forms90/java/s
un/applet/
AppletView
er.class
[Tue Feb 01 18:05:24 2005] [error] [client 10.11.90.37] [ecid: 1107309924:147.22.88.31:33
24:3532:33
42,0] File does not exist: d:/orahome2/forms90/java/o
racle/form
s/registry
/default.d
at
[Tue Feb 01 18:06:00 2005] [error] [client 10.11.90.37] [ecid: 1107309960:147.22.88.31:33
24:3532:33
62,0] File does not exist: d:/orahome2/apache/apache/
htdocs/for
ms90/listv
al.gif
[Tue Feb 01 18:06:00 2005] [error] [client 10.11.90.37] [ecid: 1107309960:147.22.88.31:33
24:3532:33
63,0] File does not exist: d:/orahome2/apache/apache/
htdocs/for
ms90/listv
al.gif
[Tue Feb 01 18:06:00 2005] [error] [client 10.11.90.37] [ecid: 1107309960:147.22.88.31:33
24:3532:33
64,0] File does not exist: d:/orahome2/apache/apache/
htdocs/for
ms90/listv
al.gif
[Tue Feb 01 18:06:07 2005] [error] [client 10.11.90.37] [ecid: 1107309967:147.22.88.31:33
24:3532:33
73,0] File does not exist: d:/orahome2/apache/apache/
htdocs/for
ms90/listv
al.gif
that it was looking for other Java files and also some gif files (listval.gif).
The point is, is that my Oracle Home is set properly yet this error still occurs.
Any clues as to what this could be? This is a showstopper for my app and I can't release it into QA let alone production.
Gio