Hi there,
I'm using utl_tcp to establish a http-communication to webserver. (utl_http does not fit because I need the POST-Method to send XML)
When I open the connection the first time and send data, reading raises utl_tcp.end_of_input, so I close the connection again. Works fine.
Any following attempts using the same procedure (open/write/read/close) raise utl_tcp.network error when trying to read from the open connection.
Rebooting the database resets the status, so I get end_of_input again for one time, then network_error.
Is the utl_tcp.close_all_connections not releasing the connection ? Any Idea ?
thanx in advance
6502
00 c0 LDA #'B'
02 c0 STA $0400
05 c0 LDA #'Y'
07 c0 STA $0401
0a c0 LDA #'E'
0c c0 STA $0402
0f c0 RET