ContributionsMost RecentMost LikesSolutionsMutiple hosts in Maven build via jenkins I don't know if anyone has encountered this, but we are running Soapui Test via maven/jenkins build. We pass in the IP of the system to test from another job. However if we build more than one system there are mutiple IP's, has anyone encountered this? I have passed the job a file with both IPs however it seems to only take the last IP value. Re: Surefire Junit reportsOkay I think I fixed it by using ${basedir} in the POM <outputFolder>${basedir}/target/surefire-reports</outputFolder> I'm still not sure why, as I have another project that doesn't use that basedir and it works.Surefire Junit reportsAll I'm trying to get my junit reports to run on a maven. However the reports run, but shows 0 for all of them, but I get success on jenkins everything publishes. I think it's a reference to the reports as it looks like the surefire plugin looks at the folder in relation to /target/site so /target/surefire-reports. However the surefire reports are generating into /target/classes/surefire-reports. My pom.xml has outputfolder set to ./target/surefire-reports however it goes into classes/target/surefire-reports, so something is telling it to start in target/classes. Has anyone experienced this? </projectProperties> <printReport>true</printReport> <settingsFile>.soapui-settings.xml</settingsFile> <outputFolder>./target/surefire-reports</outputFolder> Re: POST ParametersHi Marek I reset the REST project, and just used the parameterized url sent to me by the developer in the curl command. So I am getting a response of HTTP/1.1 202 Accepted Date: Fri, 22 Nov 2013 16:08:13 GMT Server: Apache/2.2.15 (Unix) mod_jk/1.2.15 X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1 TransactionID: C8D-5E7 Content-Length: 0 Content-Type: text/plain Set-Cookie: BIGipServerCUGQA001YYZA_80=2118775818.20480.0000; path=/ Keep-Alive: timeout=15, max=100 Connection: Keep-Alive So I am investigating on the app end why it's not processing now.Re: POST ParametersHi Marek Here is the post POST https://***.webapps.**********.com/gateway-ws/GatewayServlet?ClientAppVer=1&FileSize=1&FileName=1&ClientAppID=1&LanguageISOCode=ar_ae&MessageTypeID=1&DeviceID=1&DevicePIN=1&Ticket=INC000026727837&FileContents=1&MessageTypeVer=1&TimeStamp=1&MessageID=1 HTTP/1.1 Accept-Encoding: gzip,deflate Content-Type: application/x-www-form-urlencoded Content-Length: 0 Host: ****.webapps.************.com Connection: Keep-Alive User-Agent: Apache-HttpClient/4.1.1 (java 1.5) Response: HTTP/1.1 400 Bad Request Date: Thu, 21 Nov 2013 21:07:21 GMT Server: Apache/2.2.15 (Unix) mod_jk/1.2.15 X-Powered-By: Servlet 2.5; JBoss-5.0/JBossWeb-2.1 TransactionID: 252-BDE GatewayErrorCode: 12 Content-Length: 967 X-Cnection: close Content-Type: text/html;charset=utf-8 Set-Cookie: BIGipServerCUGQA001YYZA_80=2135553034.20480.0000; path=/ Connection: close <html><head><title>JBoss Web/2.1.3.GA - Error report</title><style><!--H1 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:22px;} H2 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:16px;} H3 {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;font-size:14px;} BODY {font-family:Tahoma,Arial,sans-serif;color:black;background-color:white;} B {font-family:Tahoma,Arial,sans-serif;color:white;background-color:#525D76;} P {font-family:Tahoma,Arial,sans-serif;background:white;color:black;font-size:12px;}A {color : black;}A.name {color : black;}HR {color : #525D76;}--></style> </head><body><h1>HTTP Status 400 - </h1><HR size="1" noshade="noshade"><p><b>type</b> Status report</p><p><b>message</b> <u></u></p><p><b>description</b> <u>The request sent by the client was syntactically incorrect ().</u></p><HR size="1" noshade="noshade"><h3>JBoss Web/2.1.3.GA</h3></body></html> One of the developers showed me this to test via curl: curl \-i \-X POST \-H Content-Type:application/x-www-form-urlencoded \-d 'Ticket=INC000026727837&Email=[blah@blah.com|mailto:blah@blah.com]&FileContents=0&FileName=blah&FileSize=0&TimeStamp=Wed May 20 03:40:13 1998&DeviceID=blah&DevicePIN=71009999&ClientAppID=blah&ClientAppVer=blah&MessageTypeID=blah&MessageTypeVer=blah&LanguageISOCode=en&MessageID={00000000-0000-0000-0000-000000000000}' POST ParametersHi I'm trying to test a REST service and am struggling with it. SOAPUI Pro 4.6.1 I am POSTing to the service with parameters, however the parameters I list are not in the order that I setup. I setup my parameters in this order Ticket Email FileName FileSize File Content ClientAppVer ClientAppID LanguageISOCode When I go to form view it shows ClientAppVer FileSize FileName ClientAppID LanguageISOCode etc... Then when I post it, I get GatewayServlet?ClientAppVer=1&FileSize=1&FileName=1&ClientAppID=1&Languag..... And I get a 400 error back saying syntactically incorrect.Scipt for Mock ResponseAll I am having trouble createing a simple script for a mockresponse. Basically trying to create a date response for a request. I have tried mockResponse today = new Date() Which causes an error java.lang.Exception: No signature of method: Can anyone point me in the right direction? Thanks DenHelp with Property TransferOkay I am having a lot of issues trying to get a property transfer going. So I have test case which I want to transfer the property to my next test step. Request <ns0:EntitlementStartDate>2010-10-21</ns0:EntitlementStartDate> Transfer Start Date to the next request in this location. <urn:ContractStartDate></urn:ContractStartDate> So I setup a transfer and maybe my xpath is wrong. In the intial response //ns0:EntitlementCheckResponse[1]/EntitlementStartDate[1] This is the next request: //Create_ETR_Registration/ContractStartDate I am getting an error Missing Match for Target XPath, can someone assist?Security on loading WSDLHi All I'm trying to load a WSDL that requires a username/password to access. Is there somewhere I can input that, or change settings so it will allow a username/password? Otherwise I have to manually login and download the WSDL and load to SOAPUI via local file. THanks Den