ContributionsMost RecentMost LikesSolutionsRe: How to combine 2 XML requests Yes, Groovy would work. In fact, I already created a Groovy script to include these 2 and other steps. I am hoping there is a way to combine the 2 requests in one API without Groovy. I do not know this context.expand function. I will read up on this. How to combine 2 XML requests Is it possible to combine 2 XML requests with the same end point? Execute Request 2 only if response status of Request 1 is "0". Request 1: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://www.net2.com/mega/view/soap/types"> <soapenv:Header/> <soapenv:Body> <typ:SearchRequest limit="1"> <typ:searchParams view="enum-dns.zones.enum.e164enum_net.data" key="number='3133140001' rrid=0"/> </typ:SearchRequest> </soapenv:Body> </soapenv:Envelope> Request 2: <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:typ="http://www.net2.com/mega/view/soap/types"> <soapenv:Header/> <soapenv:Body> <typ:GetRequest view="enum-dns.zones.enum.e164enum_net.data" key="number='3133140001' rrid=0"/> </soapenv:Body> </soapenv:Envelope> How do I convert a API to proper XML formats I have a few APIs like below. Is there any quick way to reformat it to proper XML format? <?xml version="1.0" encoding="ISO-8859-1" standalone="yes"?><PORT_REQUEST_ACK><HEADER><ORIGINATOR>SMG</ORIGINATOR><DESTINATION>SMARTD</DESTINATION><MESSAGE_ID>176886</MESSAGE_ID><MSGTYPE>PQA</MSGTYPE><TIMESTAMP>05232022085432</TIMESTAMP></HEADER><REQ_NO>XP01022143859690</REQ_NO><VER_ID_REQ>02</VER_ID_REQ><NLSP>XP01</NLSP><NNSP>XP01</NNSP><ONSP>XP02</ONSP><NRSELLNM></NRSELLNM><D_TSENT>052320220854</D_TSENT></PORT_REQUEST_ACK> Re: Slow Response from high versions of SoapUI Maybe the displays of WS-I Settings are incorrect. I checked System Properties of V5.5 (left) and V5.6.1 (right). The 2 SoapUI use different Java libraries. Re: Slow Response from high versions of SoapUI How do I check the Java version of each SoapUI in my laptop? As per your suggestion, I compared the settings (Preferences) in each version of SoapUI in my laptop. "Proxy Setting: Automatic" in all versions. I did find something strange in Tool location in WS-I Settings: Laptop-1 V5.5 C:\Users\pierret\AppData\Local\Programs\SmartBear\SoapUI-5.5.0/wsi-test-tools Laptop-1 V5.6.1 C:\Users\pierret\AppData\Local\Programs\SmartBear\SoapUI-5.5.0/wsi-test-tools Laptop-2 V5.7 C:\Program Files\SmartBear\SoapUI-5.6.0/wsi-test-tools Laptop-2 V5.6.1 C:\Program Files\SmartBear\SoapUI-5.6.0/wsi-test-tools Laptop_2 V5.5 C:\Program Files\SmartBear\SoapUI-5.6.0/wsi-test-tool Looks to me that all versions of SoapUI in a laptop use the same wsi-test-tools. Note that every time I install SoapUI, I choose all the default installaiotn settings. Do these wsi-test-tools increase the latency of the API requests? Re: Slow Response from high versions of SoapUI I have multiple versions of SoapUI installed in my laptop. Does each SoapUI has it own Java version? Someone told me that SoapUI 5.5.0 uses Java 8 and SoapUI 5.7 uses Java 16 (JDK). Maybe the latency is introduced by Java 16. Is there a way to make SoapUI 5.7 to use Java 8? Re: Still running V5.5.0 I installed SoapUI 5.7.0 and now I have both SoapUI 5.6.1 and 5.7.0 in my laptop. I noticed that in V5.7.0, the response is RAW. How do I change the default to XML? Don't want to have to click on XML every time. Slow Response from high versions of SoapUI I was running V5.5.0 in laptop-1 and all went well. I upgraded to V5.6.1 recently and noticed that some (not all) API ran slow. I mean the response went from 100-300ms to 5000-15000ms. I have another laptop, laptop-2, running V5.6.0 and it is fine; same API would get the response within 100-200ms. The projects are the same because although laptop-1 is my main laptop, I copied the whole SOAPUI-PROJECTS directory from laptop-1 to laptop-2 every week. In laptop-2, I now have both V5.6.0 and 5.7.0. Sure enough, the same API would get the response a lot quicker in V5.6.0 than V5.7.0. My conclusion is V5.5.0 and V5.6.0 are quicker than V5.6.1 and V5.7.0. Do this make sense to you? Any help is appreciated. Re: SoapUI V5.7.0 I installed V5.7.0. Something is strange but it belongs to another topic. SoapUI V5.7.0 I am running V5.6.1 and I can see the V5.7.0 is available. To upgrade, I would have to click on "Download and Install". What else do I have to do? Do I have to import all the projects again? If something is not working, how would I go back to V5.6.0 or V5.6.1? Thanks. Solved