johvargas / sfdc-wsc

Automatically exported from code.google.com/p/sfdc-wsc
0 stars 0 forks source link

Use ReadTimeout in GaeHttpTransport #75

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
Here's a tip to use the timeout:

    public OutputStream connect(String uri, String soapAction) throws IOException {
        // log.info( uri );   log.info( soapAction );

        url = new URL(uri);
//        request = new HTTPRequest(url,HTTPMethod.POST);
        FetchOptions fetchOptions = FetchOptions.Builder.withDeadline(config.getReadTimeout()/1000);
        request = new HTTPRequest(url, HTTPMethod.POST, fetchOptions);

https://code.google.com/p/sfdc-wsc/source/browse/trunk/wsc23/dist/gae/GaeHttpTra
nsport.java?r=63

Original issue reported on code.google.com by theb...@emanueleziglioli.it on 21 Feb 2013 at 1:30

GoogleCodeExporter commented 8 years ago
Support for GaeHttpTransport incl support for "read timeout" is included in 
this pull-request: https://github.com/forcedotcom/wsc/pull/4

Original comment by jesperudby on 26 Feb 2013 at 5:32