If you have chance to make wsdl modify; do it immediately. If not the solution is not so difficult: "USE APACHE AXIS" with eclipse web service client generation wizard as below.
I' ve been already using SoapUI Pro 3.6.1 since license expires. Previous migrations to soapUI newer versions had not caused problems but when starting using SoapUI 4.5.0(free) version resulted destroying existing projects. I checked log file ("C:\...\SmartBear\soapUI-4.5.0\bin\soapui.log") and realised that something went wrong about encoding of soapUI project XMLs. Turkish language characters in wsdl files are located in soapUI project XMLs and they are violating cp1254 character convention and causes below exception log. java.io.CharConversionException: Malformed UTF-8 character: 0xc5 0x3f at org.apache.xmlbeans.impl.piccolo.xml.UTF8XMLDecoder.decode(UTF8XMLDecoder.java:80) at org.apache.xmlbeans.impl.piccolo.xml.XMLStreamReader$FastStreamDecoder.read(XMLStreamReader.java:762) at org.apache.xmlbeans.impl.piccolo.xml.XMLStreamReader.read(XMLStreamReader.java:162) at org.apache.xmlbeans.impl.piccolo.xml.PiccoloLexer.yy_refill(PiccoloLexer.java:3474) at org.apac
In order to create operating system processes (even another java application), running a command, and defining an environment variable; a simple approach is succeeded by using " java.lang.ProcessBuilder " class in Java . Process process = Runtime.getRuntime().exec("cmd /c java -cp bin B"); BufferedReader inputStream = new BufferedReader(new InputStreamReader(process.getInputStream())); String line; while( (line = inputStream.readLine()) != null) { // inputStream is enabling this thread(main method) // to read "System.out" prints of started process (B.main method) System.out.println("#read from inputStream: " + line); } The above example illustrates how to start a java application from another one. /c option has vital importance since the rest of the parameters that command line is fed to run them properly. java command must be in environment variables to run B (which consists the " main(String[] args) " method) and -cp is sta
The motivation to use java.awt.Robot class is creating mouse-keyboard input events to test applications. Testing the application just using rough mouse and key event is extremely difficult. I think, there should be a handy framework to enhance and wrap java.awt.Robot class to support such following functionality: Taking ascii characters to map key events Soft mouse movements instead of instant mouse location changes Recording user actions to regenerate sequence of actions Appropriate xml schema to save actions into xml file windows, unix and mac native implementations to manage os specific actions that are not supported by java.awt.Robot As a kickstart, I tried to explicitly show off setAutoDelay, keyPress, keyRelase, mouseWheel, mouseMove methods usages. Comments over code blocks are covering the all following code target action. Obviously, a single tab key, costs 2 lines of code; this is too much for a single key if you are developing a great application project with hundred