Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> XMLPARSER.Parse time out setting?
I am parsing a webservice from an oracle stored procedure.
example:
parser := xmlparser.newParser;
xmlparser.setValidationMode(parser,false) ;
URL := 'http://www.someaddress/tracsquery.cfm?state_id=03CA5%20500000';
URL := replace(trim(URL), ' ' , '%20');
xmlmsg := xmlparser.parse(TRIM(url));
Works fine if the web service is not busy.
However, If this web servvice is busy or not responding the oracle procedure
hangs.
Does anyone know if you can set a timeout for the parser?
Received on Fri Sep 05 2003 - 15:25:59 CDT
![]() |
![]() |