Forum Discussion

Olyster's avatar
Olyster
New Contributor
8 years ago

Multiple asynchronous HTTP Request WMTS

Hi there,

 

I'm looking for a way to test a WMTS server.

 

As you may know a request to a WMTS server generates multiple http asynchronous requests (to get jpegs or pngs).

 

What would be the best way to send multiple asynchronous http requests using SOAP UI ?

 

For now, I trying to get it to work using groovy. I tried Http-Builder-0.6.jar but there's missing dependencies (CatalogResolver) and I'm new to java.

 

I can see that there's multiple .jar related to http in the lib folder : commons.httpclient-3.1.jar, google.http.client-1.21.0.jar, httpclient-4.1.1.jar

 

What would be the best way to achieve this ?

 

In the meantime, I'll decompile those .jar to get some informations.

 

Thanks

 

1 Reply

  • Olyster's avatar
    Olyster
    New Contributor

    Hi,

     

    I finally used org.apache.commons.httpclient.HttpClient to make httprequests

     

    and I used an array of threads to launch my asynchronous HTTPRequest

     

    Thanks