Forum Discussion

hbjastad's avatar
hbjastad
Contributor
8 years ago
Solved

Turning off "Accept compressed responses from host" programmatically

Hi, I am trying to write an integration test in Java using SoapUI and the following code is able to do that:   // create new project WsdlProject project = new WsdlProject();...
  • nmrao's avatar
    nmrao
    8 years ago

    Any way here it is to change the settings

     

    //Change value what is needed for you true or false
    boolean value = false;
    SoapUI.getSettings().setBoolean(HttpSettings.RESPONSE_COMPRESSION, value);