Clarity

 View Only
  • 1.  Outbound SOAP Time Out Time

    Posted Dec 13, 2016 11:29 PM

    I am working on a SOAP web service that is going from PPM to an external party. There is a concern that the external party will take a bit of time before returning a response. I am wanting to know how long PPM will wait before it loses its connection to this external party?

     

    Also, out of curiosity where would this be defined within the product?



  • 2.  Re: Outbound SOAP Time Out Time

    Posted Dec 14, 2016 04:06 AM

    Where (within Clarity/PPM) are you calling that SOAP request - from a GEL script in a process?

     

    I think you are really at the mercy of the network as to how long it will take until you get a timed-out response (rather than anything in Clarity/PPM itself).



  • 3.  Re: Outbound SOAP Time Out Time

    Posted Dec 14, 2016 11:02 AM

    Under the covers I suspect that the invoke tag is using HttpURLConnection object.

     

    If you are having timeout issues, try setting the following properties before calling your web service.

     

    sun.net.client.defaultConnectTimeout

    sun.net.client.defaultReadTimeout

     

    V/r,

    Gene