A new one.
I have a webservice on PB12.5.Net that calls another WS on PB11.5.1, and that call takes 4 minutes.... not the execution just the invocation.
I add a log to every since method that is being executed:
log of webservice on PB12.5.Net (caller):
Clase: uo_picfeWS, Método: obtenerTxtCorreo, Entrada de Tipo de Solicitud: 1
****11:21:53****
Clase: uo_picfeWS, Método: obtenerPlantilla, Entrada de Tipo de Solicitud: 1
****11:21:53****
Clase: uo_picfeWS, Método: obtenerPlantilla, Salida de Tipo de Solicitud: 1
****11:21:53****
Clase: uo_picfeWS, Método: obtenerTxtCorreo, Antes de Invocar obtenerdwhtml para Tipo de Solicitud: 1 <------before the Invocation of method obtenerdwhtml from webservice 2 on PB11.5.1
****11:25:46****
Clase: uo_picfeWS, Método: obtenerTxtCorreo, Después de Invocar obtenerdwhtml para Tipo de Solicitud: 1 <------after the Invocation of method obtenerdwhtml from webservice 2 on PB11.5.1
****11:25:46****
Clase: uo_picfeWS, Método: obtenerTxtCorreo, Salida de Tipo de Solicitud: 1
****11:25:46****
log of webservice 2 on PB11.5.1 :
****11:25:42****
Clase: uo_picfeWSUtil115, Método: obtenerdwhtml, Entrada de Plantilla: 1 <---- log at the first line of method obtenerdwhtml (Entrance)
****11:25:43****
Clase: uo_picfeWSUtil115, Método: obtenertxtplantilla, Entrada de Plantilla: 1
****11:25:44****
Clase: uo_picfeWSUtil115, Método: obtenertxtplantilla, Salida de Plantilla: 1
****11:25:44****
Clase: uo_picfeWSUtil115, Método: obtenerdwhtml, Entrada a Generación de Plantilla Principal: 1
****11:25:44****
Clase: uo_picfeWSUtil115, Método: obtenerdwhtml, Salida de Generación de Plantilla Principal: 1
****11:25:44****
Clase: uo_picfeWSUtil115, Método: obtenertxtplantillaanexa, Entrada de Plantilla: 1
****11:25:44****
Clase: uo_picfeWSUtil115, Método: obtenertxtplantillaanexa, Salida de Plantilla: 1
****11:25:45****
Clase: uo_picfeWSUtil115, Método: obtenerdwhtml, Entrada a Generación de Plantilla Anexa: 1
****11:25:45****
Clase: uo_picfeWSUtil115, Método: obtenerdwhtml, Salida de Generación de Plantilla Anexa: 1
****11:25:45****
Clase: uo_picfeWSUtil115, Método: obtenerdwhtml, Entrada a Generación de Plantilla Anexa: 1
****11:25:45****
Clase: uo_picfeWSUtil115, Método: obtenerdwhtml, Salida de Generación de Plantilla Anexa: 1
****11:25:45****
Clase: uo_picfeWSUtil115, Método: obtenerdwhtml, Salida de Plantilla: 1 <---- log at the last line of method obtenerdwhtml (Exit)
Is there anything need it to configurate this part? why is the invocation taking so long?
Both webservices are deployed in the same server and use the same DB (is not taking time on the execution so is not a problem connecting to the DB), is the calling between them, no authentication is explicitly required (for now).