DBA Data[Home] [Help]

APPS.WSH_OTM_HTTP_UTL dependencies on DBMS_LOB

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

325: -- only up to 32767 characters
326: -- Utl_Http.Write_Text(l_request,l_context_params);
327: l_amt:= 32000;
328: l_pos:= 1;
329: l_length:=DBMS_LOB.GETLENGTH(l_context_params);
330: IF (l_debug_on) THEN
331: WSH_DEBUG_SV.log(l_module_name,'Length',l_length);
332: END IF;
333: WHILE(l_length > 0)

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

339: END IF;
340: IF (l_debug_on) THEN
341: WSH_DEBUG_SV.log(l_module_name,'l_amt', l_amt);
342: END IF;
343: dbms_lob.read(l_context_params, l_amt, l_pos, l_buffer);
344: Utl_Http.Write_Text(l_request,l_buffer);
345: l_length:=l_length-l_amt;
346: l_pos := l_pos + l_amt;
347: --}