ContributionsMost RecentMost LikesSolutionsRe: create automatically all steps in JIRA by running testCases in SOAPUI Hi everyOne, Thanks for your comments. I understand from your post that it's currently not supported but I don't think that it's not possible to do. if TestRail POST request it's executed before each step maybe could solve the problem about DSloop. however, the JIRA API details support creation of the test and step details itself so I'm going to get solution with this way in my project Thanks Rivka create automatically all steps in JIRA by running testCases in SOAPUI Hi I have ~50 projects that created in readyAPi and I want to run all of them to JIRA (cloud) I've configured one project to JIRA with testCases and I can also run it successfully. I have only one problem : How can I run them without creating all steps manually in Jira? I want to run only the projects and it's will automatically create all the steps there. (in JIRA) How can I do that? this is very necessary for me because I can't do it manually. Thanks, Rivka Solvedzephyr Integration with Jira server and not only cloud We have ReadyAPI SoapUI Pro and "Zephyr for Jira Server" running and want to integrate them. I see the integration limited only to Cloud do you know how can I configure it to server IP and not only cloud? SolvedRe: Transfer dollar sign as is in the Json request Hi richie Very cool!!::smileyhappy: it works. Thank you very much Re: Transfer dollar sign as is in the Json request Dear richie I'm sorry maybe I was not clear with my question I don't want to translate PAPAYA_WORKING_DIR to any value. I don't want the function of dollar sign at all. I want to pass it as a text '${PAPAYA_WORKING_DIR}'.(with dollar) you can get the following Json as an example (hopefully is not malformed) : { "display": "TESTING", "value": "${PAPAYA_WORKING_DIR}" } in ReadyAPI it's translate to : { "display": "TESTING", "value": "" } Note: I have not any a parameter PAPAYA_WORKING_DIR and it's should not be also. I want to pass it as is in the request.: { "display": "TESTING", "value": "${PAPAYA_WORKING_DIR}" } I hope it's more clear now. Re: Transfer dollar sign as is in the Json request Hi richie I send you before only the problematic part of the JSON and not all content (please ignore about the form of JSON if you see anything related it ) This is the content of JSON { "display": "TESTING", "description": "Run python tool", "metadata": { }, "inputs": ["imagename", "in1", "in2", "in3", "in4"], "steps": [{ "reference": "Step/980", "display": "run_jnj_qc_docker", "arguments": [{ "executableId": "279", "commandDisplay": "rundocker", "parameterType": "PARAMETER", "display": "payload", "value": "{\"container_procedures\":[{\"import\":{\"type\":\"LOAD\",\"json\":{\"file_path\":\"${PAPAYA_WORKING_DIR}\/quay.io.biocontainers.fastqc.0.11.8--1.tar\"}},\"run\":{\"json\":{\"image\":\"quay.io/biocontainers/fastqc:0.11.8--1\",\"detach\":true,\"auto_remove\":false,\"command\":[\"fastqc\",\"-o\",\"analysis\",\"analysis\/%SEQUENCE%_L001_R1_001.fastq.gz\",\"analysis\/%SEQUENCE%_L001_R2_001.fastq.gz\",\"analysis\/%SEQUENCE%_L002_R1_001.fastq.gz\",\"analysis\/%SEQUENCE%_L002_R2_001.fastq.gz\"],\"volumes\":{\"\/scratch\/\":{\"bind\":\"\/references\",\"mode\":\"ro\"},\"${PAPAYA_WORKING_DIR}\/\":{\"bind\":\"\/analysis\",\"mode\":\"rw\"}},\"stdout\":true,\"stderr\":true}}}]}" }] }] } "value" field should contain text value only so you can see the JSON for this field with slashes. Thanks Rivka Transfer dollar sign as is in the Json request Hi I have a JSON that contains in body "$" and I should transfer it By POST Rest request as is. "value": "{\"container_procedures\":[{\"import\":{\"type\":\"LOAD\",\"json\":{\"file_path\":${PAPAYA_WORKING_DIR}\/quay.io.biocontainers.fastqc.0.11.8--1.tar\"}" But this character is known as a dollar sign in the body of REST and transferred as an empty value : "value": "{\"container_procedures\":[{\"import\":{\"type\":\"LOAD\",\"json\":{\"file_path\":\"\/quay.io.biocontainers.fastqc.0.11.8--1.tar\"} I tried with \$ but it doesn't help. could you please advise how can I solve it? Thanks Solved