What is the difference between SoapUI, SoapUI Pro, SoapUI NG, SoapUI NG Pro and ReadyAPI.
Please help me to make clear about the difference between SoapUI, SoapUI Pro, SoapUI NG, SoapUI NG Pro and ReadyAPI. Previously it was just open source version (SoapUI) and paid version (SoapUI Pro). Very easy to understand. Now I got really confused. Please someone explain the difference between all the mentioned versions.14KViews0likes3CommentsHow to set SoapUI project properties via Maven command line
I have a few project properies in SoapUI project. I also have those project properties overriddenin Maven pom.xml, for eg. ... <projectProperties> <value>propname1=propvalue1</value> <value>propname2=propvalue2</value> ... <value>propname9=propvalue9</value> </projectProperties> When running from command line using maven, SoapUI property values are overridden by the ones in Maven pom.xml, as expected. I need to run SoapUI from command line using Maven but needto use the properties specified in SoapUI project, not Maven. Is there any way to specify these properties in Maven command line? If not, is there any other solution? Versions: SoapUI Pro 5.1.2 maven-soapui-pro-plugin 4.5.1 I also found a related post (http://forum.soapui.org/viewtopic.php?t=20839) and tried to use the flag -Dsoapui.projectProperties but have not been successful. Since exact syntax is not specified in the post, I tried many variationsFor eg: - -Dsoapui.projectProperties.propname1.value="propvalue1" -Dsoapui.projectProperties.proname1="propvalue1"7.7KViews0likes3CommentsHow can I include dependencies from an external jar file into a groovy script test step
Hello Community, I am using the ready-api maven plugin. I have my dependency in the pom.xml. The depedency is being downloaded. My question is how can I use the classes in this jar file in a groovy test step. I have tried using an import statement, but the script does not know where to locate the jar. As a side note, we do not have admin rights on our local machines so I cannot install the jar file to the soapUi install directory. So, I need a way to tell SoapUi how to find the Jar file. I pulled my code out into intelliJ and it works, but I cannot get it to work inside of soapUi.Solved3.7KViews0likes5CommentsHTTP/1.1 404 Not Found error during Post call
Hi, I am performing Http post request passing end point url but i am getting 404 all the time. I tried changing the url but same issue occurred. Kindly let me know if there is any properties that needs to be updated. I am using Ready API 1.9.03.2KViews0likes2CommentsChange a Test Rest Request's link to project's request? "Open Request Editor"
Hello, The problem is that we initially set up each project's Rest Service as a newelement. Now we find that we should have had fewer elements and just add the Ressources etc under one if the endpoint is identical. In SoapUI Pro we have defined a project and several TestSuits each having several Testcases with several Rest Requests linking back to the project. But I cannot find anyway to change the link from the SoapUI window elements back to the project window elements, am I missing something here? :) Thanks for any help understanding this.2.4KViews0likes7CommentsReadyAPI 2.8.0 getting 401 error when attempting to send the request
When we attempt to send a request to an endpoint that requires kerberos authentication I keep getting a 401 error Request RAW: POST http://matrix-133-cdi.matrix.sjrb.ad/customers HTTP/1.1 Connection: close Accept-Encoding: gzip,deflate X_SHAW_TRANSACTION_ID: 00005557 User-Agent: Fiddler X_SHAW_ORIGINATING_IP_ADDRESS: 10.15.184.88 X_SHAW_ORIGINAL_MODULE_ID: NetCracker X_SHAW_ORIGINATING_HOST_NAME: devcoreoeml017.matrix.SJRB.AD Content-Type: application/vnd.shaw.customer+xml X_SHAW_ORIGINATING_USER_ID: lruser003 Content-Length: 1697 Host: matrix-133-cdi.matrix.sjrb.ad <Customer xmlns="http://services.sjrb.ad/customer"> <Identity> <Title>Mr</Title> <FirstName>Nate</FirstName> <MiddleNameInitial>M</MiddleNameInitial> <LastName>Phone</LastName> </Identity> <IsOrganization>False</IsOrganization> <Status>New</Status> <SalesLeads> <SalesLead>1</SalesLead> </SalesLeads> <CustomerAlerts> <CustomerAlert>1</CustomerAlert> </CustomerAlerts> <PrivacyRequested>True</PrivacyRequested> <Credentials> <Password>1112</Password> <MembershipNumber>121213</MembershipNumber> <DriversLicense>233334</DriversLicense> </Credentials> <CreditScore>Netural</CreditScore> <CreditScoreDate>2010-04-14T00:00:00Z</CreditScoreDate> <BillingPreferences> <BillingLevelOfDetail>Detail</BillingLevelOfDetail> <BillingDeliveryMethod>Paper</BillingDeliveryMethod> <BillingLanguage>English</BillingLanguage> <BillingDeliveryFormat>Normal</BillingDeliveryFormat> <BillingEmails> <BillingEmail> <Address>hello@here.com</Address> </BillingEmail> </BillingEmails> <BillingAddresses> <BillingAddress> <AisId>272272</AisId> </BillingAddress> </BillingAddresses> </BillingPreferences> <ContactInformation> <ContactEmail> <Address>john.doe@domain.ca</Address> </ContactEmail> <PhoneNumbers> <PhoneNumber> <IsPrimary>True</IsPrimary> <PhoneType>Home</PhoneType> <Number>4032223334</Number> <Extension>78</Extension> </PhoneNumber> <PhoneNumber> <IsPrimary>False</IsPrimary> <PhoneType>Home</PhoneType> <Number>4033332222</Number> <Extension>1</Extension> </PhoneNumber> </PhoneNumbers> </ContactInformation> <Accounts></Accounts> </Customer> Response RAW: HTTP/1.1 401 Unauthorized Content-Type: text/html; charset=us-ascii Server: Microsoft-HTTPAPI/2.0 WWW-Authenticate: Negotiate oXwweqADCgEBoQsGCSqGSIb3EgECAqJmBGRgYgYJKoZIhvcSAQIC Date: Thu, 01 Aug 2019 22:52:11 GMT Connection: close Content-Length: 341 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN""http://www.w3.org/TR/html4/strict.dtd"> <HTML><HEAD><TITLE>Not Authorized</TITLE> <META HTTP-EQUIV="Content-Type" Content="text/html; charset=us-ascii"></HEAD> <BODY><h2>Not Authorized</h2> <hr><p>HTTP Error 401. The requested resource requires user authentication.</p> </BODY></HTML> I followed the document for kerberos that smartbear has, added the following to vmoptions.txt -Djavax.security.auth.useSubjectCredsOnly=false -Djava.security.auth.login.config=/Users/nmowbray/Documents/Kerberos_SoapUI/login.conf -Djava.security.krb5.conf=/Users/nmowbray/Documents/Kerberos_SoapUI/krb5.conf Custom Properties Follow Redirects true Follow 302 Redirect with GET false Username user01 Password password Domain shaw Using the exact same setup in ReadyAPI 2.6.0 this request works with no issuesSolved2.2KViews0likes3CommentsControlling FTPTestStep from groovy
Hello there I am currently stuck trying to transfer files with the FTP-Step provided in SoapUI Pro. The files are generated before sending, and there may be a large amount of files to send. The amount of files to send are determined after generation, I currently use a loop to iterate through all the files and add their information to the FTP-Step and then run it. Basically boiled down it's the following code: new File(path).listFiles().each{ ftpStep.setLocalPath(it.getPath()) ftpStep.setFileName(it.getName()) ftpStep.run(testRunner, context) } Sadly the transfer seems to fail every time, providing the following error: Unable to upload the file: null Looks to me like the testRunner gets confused and is unable to apply the filePath properly. testRunner and context are passed down from the invoked variables. If I execute the FTP-Step without any modifications afterwards, it sends the previously configured file to the server without problems, so I can only assume that something with the run() function is not working properly. I would appreciate any sort of help or workaround - but just confirming my problem would be sufficient for me to create a bug ticketSolved2.2KViews0likes10CommentsReadyAPI log date manipulation
Hi, I was wondering if it is possible to manipulate the date logged in 'ReadyAPI log' for a test request run. My scenario : - I need to log a past date after running a particular REST request test step, instead of the current system date. I have attached an image of the date that I would like to be altered using a script or whichever means is possible. Thanks, NeerajaSolved2.2KViews0likes7Comments