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.14KViews0likes3CommentsPlease help with importing WSDL and XSD's
Hi, I am a first time SoapUI user and could really use some help to get me started on the right path. My goal is to make a first connection to a Soap API so I can test if the credentials that I received, provide me with access to the API. The problem I'm running into: When I import the WSDL file, SoapUI doesn't seem to do anything with the XSD files. How do I include the XSD's in the testsuite? Software:SoapUI Pro (ReadyAPI 3.3.2) *The WSDL and XSD's are attached in this post, the service offers the choice to receive attachments with SwA or MTOMSolved11KViews0likes2CommentsAdd a pdf as an attachment for a mock response
I am reading a file from my system and i need to send it as a pdf attachment in my mock response. I am using ready api. Can any body give me advice please? I have tried the below code and when the request is made, the pdf is downloaded but it fails to load it on the browser. String filename='C:/soapui.log' File file = new File(filename); def headers = mockResponse.responseHeaders headers["Content-Type"]=["application/pdf"] headers["Content-Disposition"]=["attachment.pdf"] mockResponse.responseHeaders=headers How do i return a file as a pdf,which i am reading in from my system Any suggestions please? Thank youSolved10KViews0likes8CommentsRetreiving data from Mongo db using Groovy and assigning it to a test case property
Hi, I'm looking to create a test step that can connect toMongoDB, run a query, and then assign the result to a test case property. I have the connection working and I can retrieve a result as a row count. However I cannot get the actual result to assign it to a test case property. I know how to assign a value to a test case property but simply cannot get the result in order to do that. Below is my existing code. I'm connecting to a MongoDB called database called 'digital', within that there is a collection called 'QuoteSummary'. Within 'QuoteSummary' I'm searching for a "quoteRefNo" where "workReferenceNo" = GPE0024879. Its the resulting "quoteRefNo" that I want to assign to a test case property. import com.gmongo.GMongoClient import com.mongodb.MongoCredential import com.mongodb.ServerAddress import com.mongodb.BasicDBObject def credentials = MongoCredential.createCredential('hidden_user', 'digital', 'hidden_pwsd' as char[]) def serverAddress = new ServerAddress('hidden_servername_and_port') def mongo = new GMongoClient(serverAddress, [credentials]) def db = mongo.getDB('digital') BasicDBObject query = new BasicDBObject("workReferenceNo":"GPE0024879") BasicDBObject query1 = new BasicDBObject(quoteRefNo: 1,_id: 0) def collection = db.getCollection('QuoteSummary') //log.info(collection.find(query).count()) log.info(collection.find((query),(query1)).count())Solved10KViews0likes5CommentsHow to connect to an Oracle Thin DB which is identified by 'Service Name' instead of SID
There is a requirement for me to connect to an Oracle thin DB which is identified by 'Service Name' instead of SID. Our DBA advised that SID is a thing of the past and they’re using Service Name now as best practice and for operational reasons. But from SOAP UI Pro i dont see an option to enterService Name in DB configurations, whereas SID is shown instead. Please advice the steps to achieve this.Solved7.2KViews0likes12CommentsHow do I pass a long null by soapui?
I try the following and i can't work fine <Vf: NullableparentNumber = "true" /> <vf:IDCuotapartista nillable="true" type="int"/> <vf:IDCuotapartista nillable="true" type="long"/> The signature of the property in the following <DataMember(IsRequired:=True)> Public Property ascx() As Nullable(Of Long)6KViews0likes5CommentsHow to transfer a value from one test case to another using groovy
Hi, In my first test case, I have a soap request from which I get an account id in the response. Below is theresponse that I get. <CreatAccountResponse> <Account> <AccountId>ACCT11011294</AccountId> </Account> </CreatAccountResponse> In my second test case, I have a request where I have to use the account id created in the first test case. <UpdateAccountRequest> <Account> <AccountId>"need to use account id from the first test case</AccountId> <AccountStatus>ACTIVE</AccountStatus> </Account> </UpdateAccountRequest> so my question is how can I transfer the account id from my first test case soap response to my second test case via Groovy script. Regards, UmairSolved5.7KViews0likes3CommentsRequestFilter.filterRequest Script applied to only specific Test Cases
hello, I have a Project in SoapUI that contains lots of Test Cases. I have created a Event Handler Script to add a Header to the Rest Requests that uses the RequestFilter.filterRequest Event. My problem is I want to apply the Event script to ALL Test Cases that do not end in the words "- forbidden" (See photo below) How should I go about this problem? If I use the field 'Target' in the Event Handler? If so how do I filter using test cases names that end in "- forbidden"? If I try and include in the logic of the Event Handler to check if the Test Case name, I'm unable to access the TestRunner to access the test case name.Solved4.4KViews0likes5CommentsLooking for Ready!API Users
If you are a Ready!API user feel free to contact me directly. I'm looking to observe how you are using the product. I would like to capture your emotions and interactions when using the application as I'm working on improving the usability of the application. You can email me directly at veronica.clarke@smartbear.com. - Veronica {Lead Uxer}4.1KViews1like0CommentsHow to create SoapUI NG project from Swagger over HTTPS?
How do Icreate a SoapUI NG project from Swagger over HTTPS? I tried an see an error message An error of type SSLHandshakeException occurred. javax.net.ssl.SSLHandshakeException: java.security.cert.CertificateException: No subject alternative names present Any help is appreciated. Thanks in advance.Solved3.8KViews0likes5Comments