SoapUI with Fiddler
Try File > Preferences > Proxy Settings Host 127.0.0.1 Port 8888 and use http://localhost/myservice/myservice.asmx Here is a post that explain this a little bit more
Try File > Preferences > Proxy Settings Host 127.0.0.1 Port 8888 and use http://localhost/myservice/myservice.asmx Here is a post that explain this a little bit more
I have had the same problem. I resolved it by disabling the proxy in the SoapUI preferences. (source : http://www.eviware.com/forum/viewtopic.php?f=13&t=12460)
Select File > Preferences (or hit Ctrl + Alt + P) from menu and then pick Editor Settings group. Hit Select Font… next to Edtor Font and choose a different size/font face. Hit OK to confirm your changes. Any already opened editor window must be closed and then reopened in order to above mentioned changes … Read more
SoapUI doesn’t seem to work directly with NTLM authentication, but you can use a proxy such as Burp Suite to do the auth for you. Download Burp Suite from http://portswigger.net/burp/ and crank it up. On Burp’s “Proxy : Intercept” tab, click the button to turn intercept off. On Burp’s “Proxy : Options” tab, make sure … Read more
In SOAPUI 5.0 or higher, you can set it on the basicHttpBinding of your service from the Navigation window on the left (I think it’s the interface) (it’s the parent of all your methods and direct child of the project). Right click on the interface name and choose “Show Interface Viewer”. Then go to the … Read more
If you are facing this problem in latest version of spring boot (2.3.0) make sure to add the following dependency: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-validation</artifactId> </dependency> Observation: In earlier version of Spring Boot (1.4.7), javax.validation used to work out of the box. But, after upgrading to latest version, annotations broke. Adding the following dependency alone doesn’t work: … Read more
Either encode the needed XML entities or use CDATA. <arg0> <!–Optional:–> <parameter1><test>like this</test></parameter1> <!–Optional:–> <parameter2><![CDATA[<test>or like this</test>]]></parameter2> </arg0>