ContributionsMost RecentMost LikesSolutionsSoapUI 4.0.1 Download brokenI am unable to download the soapui 4.0.1 for linux, it seems to take a very long time to write the last little bit of the file, but once its written I can not extract the zip, looking in the zip it has three items; META-INf (directory), xulrunner-iwindows-info (file) and xulrunner-windows.zip (file). Not sure whats going on, but I can download 4.0.0 without issueRe: Fast InfosetWell, tried changing the javo opts, but that seems to have no effect.... hmmmmFast InfosetHi all, Does anybody if soapUi supports the sending and recieving of soap message using the fast infoset "setting". I can switch fast infoset on, and see its mime type in the header, however I wish to test that is actually sending messages in fast infoset format, and from what I can see in the heads, while it tells soapUi it can handle fast infoset, fast info set is not being used. I am currently using the open source version, but if its a feature of the pro version thats fine, i just need to know if its possible. Thanks GavinRe: Mocking Webservice with the maven pluginThis seems to be one possible answer: viewtopic.php?t=1923Mocking Webservice with the maven pluginHi all, I am hoping you can help me. I am trying to use soapUI to mock a webservice. All of teh tuturials I have so far found have the tests in the soapUI file, all I want is for teh maven plugin to mock the webservice so I can run the tests from JUnit. I currently have it set up thus: <plugin> <groupId>eviware</groupId> <artifactId>maven-soapui-plugin</artifactId> <version>4.0</version> <configuration> <projectFile>${basedir}/src/test/resources/Mock-Transaction-Processor-soapui-project.xml</projectFile> <printReport>true</printReport> <exportAll>true</exportAll> <outputFolder>${project.build.directory}/soapui</outputFolder> </configuration> <executions> <execution> <id>soap-integration-test</id> <phase>pre-integration-test</phase> <goals> <goal>test</goal> </goals> </execution> </executions> </plugin> I figure I want soapUI to start at the pre-integration stage, and then failsafe will kick off its test at integreation test. The only thing is, the mocked webservice doesnt seem to exist at the expected location. I can run this all manually from the standalone soapUI just having an issue automating it. ThanksSoap Monitor not proxy-ing https?Hi, I have a webservice client that is written in Java and talks to a third party webservice. The webservice sets behind https. SOAPUI can get to the wsdl and send requests to the service no problem, however it appears that the monitor tool only proxies http request as I get a 500 error when I try to proxy for the above webservice on https: error: java.io.IOException: Unable to tunnel through proxy java settings: -Dhttps.proxyHost=localhost -Dhttps.proxyPort=1975 the Monitor tool has its port set to 1975, and is listening on 127.0.0.1. Any thoughts would be great