DBA Data[Home] [Help]

APPS.WSH_OTM_HTTP_UTL dependencies on DBMS_LOB

Line 335: l_length:=DBMS_LOB.GETLENGTH(l_context_params);

331: -- only up to 32767 characters
332: -- Utl_Http.Write_Text(l_request,l_context_params);
333: l_amt:= 32000;
334: l_pos:= 1;
335: l_length:=DBMS_LOB.GETLENGTH(l_context_params);
336: IF (l_debug_on) THEN
337: WSH_DEBUG_SV.log(l_module_name,'Length',l_length);
338: END IF;
339: WHILE(l_length > 0)

Line 349: dbms_lob.read(l_context_params, l_amt, l_pos, l_buffer);

345: END IF;
346: IF (l_debug_on) THEN
347: WSH_DEBUG_SV.log(l_module_name,'l_amt', l_amt);
348: END IF;
349: dbms_lob.read(l_context_params, l_amt, l_pos, l_buffer);
350: Utl_Http.Write_Text(l_request,l_buffer);
351: l_length:=l_length-l_amt;
352: l_pos := l_pos + l_amt;
353: --}