ibm-jazz

RTC Simple ID Query Results in 404?

我的未来我决定 提交于 2020-04-11 08:35:07
问题 I'm trying to simply "find" an RTC ticket by ID and it's telling me 404 not found. Maybe I'm supposed to be replacing _ggTXcJdTEeCznlnpJMXHdQ with something? Or jazz or oslc or contexts or the http://purl.org/dc/terms/? I have no idea what's placeholder or not and what I'm supposed to change to be specific to me from the docs. public static void GetTicket(string credentials) { string localhost = "my.host.com"; string WtId = "2494443" string item = "https://" + localhost + ":9443/jazz/oslc

“Access-Control-Allow-Origin” CORS issue when using Vue.js for client side and Express for server side

不羁的心 提交于 2020-01-15 10:06:08
问题 I'm trying to make a call to my API on Jazz using Vue.js and Axios, but I am getting the following error: Access to XMLHttpRequest at 'https://jazz.api.com/api/extra_stuff _here' from origin 'http://localhost' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. I've been looking at other solutions like https://enable-cors.org/server_expressjs.html or adding "Content-Type

“Access-Control-Allow-Origin” CORS issue when using Vue.js for client side and Express for server side

你离开我真会死。 提交于 2020-01-15 10:05:17
问题 I'm trying to make a call to my API on Jazz using Vue.js and Axios, but I am getting the following error: Access to XMLHttpRequest at 'https://jazz.api.com/api/extra_stuff _here' from origin 'http://localhost' has been blocked by CORS policy: Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. I've been looking at other solutions like https://enable-cors.org/server_expressjs.html or adding "Content-Type

How to create a repository workspace which contains all of the components of a stream using scm tool?

别来无恙 提交于 2020-01-02 07:57:32
问题 I'm attempting to automate the updating of a file in a stream using 'scm' Here is how I think it should work : Login to the repository as current user (me) Create a new repository workspace which contains all of the components of a given Stream Load the components of the newly created workspace Update the file I'm on point 2. Reading about the 'create workspace' doc on http://pic.dhe.ibm.com/infocenter/rtc/v1r0m0/index.jsp?topic=%2Fcom.ibm.team.scm.doc%2Ftopics%2Fc_scm_cli.html it does'nt

Error while delivering code in RTC

喜欢而已 提交于 2019-12-23 01:37:10
问题 I m setting up RTC on Ubuntu 12.10 64 bit. My RTC and JDK7 are also 64 bit versions. Whenever I try to deliver code using RTC I get an error: Error logged from Process Client UI: No more handles [MOZILLA_FIVE_HOME='/opt/xulrunner/'] (java.lang.UnsatisfiedLinkError: Could not load SWT library. Reasons: /opt/IBM/TeamConcert/configuration/org.eclipse.osgi/bundles/613/1/.cp/libswt-mozilla-gtk-3659.so (libxpcom.so: cannot open shared object file: No such file or directory) swt-mozilla-gtk (Not

Error while delivering code in RTC

我是研究僧i 提交于 2019-12-23 01:37:06
问题 I m setting up RTC on Ubuntu 12.10 64 bit. My RTC and JDK7 are also 64 bit versions. Whenever I try to deliver code using RTC I get an error: Error logged from Process Client UI: No more handles [MOZILLA_FIVE_HOME='/opt/xulrunner/'] (java.lang.UnsatisfiedLinkError: Could not load SWT library. Reasons: /opt/IBM/TeamConcert/configuration/org.eclipse.osgi/bundles/613/1/.cp/libswt-mozilla-gtk-3659.so (libxpcom.so: cannot open shared object file: No such file or directory) swt-mozilla-gtk (Not

How to get workitem based on modified date and time using RTC Java API

懵懂的女人 提交于 2019-12-12 09:06:08
问题 I want to query RTC with modified date. My query is to check modified date is same as given date and time but the response that I am getting is based on given date and it is ignoring time. Response: Queried Date: 08/07/2015 15:44:09 Id: 2583 Modified date :2015-08-07 14:43:19.157 Id: 2582 Modified date :2015-08-07 14:43:19.419 Ideally, both the records should not be received in response as it is before given time. Below is my code: IQueryableAttributeFactory factory = QueryableAttributes

Querying Jazz RTC Work Items via OSLC

妖精的绣舞 提交于 2019-12-06 14:02:33
问题 I am able to get workitem if I know the ticket id using following request https://example.com:8081/ccm/oslc/workitems/37702.json. I want to query RTC to get all wrorkitems owned by a gievn user or based on tags. I am using the folllowing query to get data but unable to get the details. Search based on owner of workitem https://example.com:8081/ccm/oslc?oslc_cm.query=dc:owner="abc@gmail.com" Search based on tags https://example.com:8081/ccm/oslc?oslc_cm.query=dc:subject="mc" 回答1: Another way

How to download a file from IBM Jazz revision control server using ant task?

筅森魡賤 提交于 2019-12-06 06:02:54
I am very new to IBM Jazz, i have downloaded RTC-BuildSystem-Toolkit which includes eclipse plugin and ant build task definitions. My question is how to download/fetch a file from Jazz server? Do i have to use teamFetch anttask? <teamFetch repositoryAddress="https://dev.1-gateway.org/ccm/" userId="u12345" password="p12345" workspaceName="??" buildResultUUID="??" destination="??" verbose="true" /> Instead of Teamfetch , I would rather try the (non-ant) command scm load , which is the command-line equivalent of the GUI action: Right-click on the component of the repository workspace -> context

How to create a repository workspace which contains all of the components of a stream using scm tool?

拥有回忆 提交于 2019-12-06 05:18:44
I'm attempting to automate the updating of a file in a stream using 'scm' Here is how I think it should work : Login to the repository as current user (me) Create a new repository workspace which contains all of the components of a given Stream Load the components of the newly created workspace Update the file I'm on point 2. Reading about the 'create workspace' doc on http://pic.dhe.ibm.com/infocenter/rtc/v1r0m0/index.jsp?topic=%2Fcom.ibm.team.scm.doc%2Ftopics%2Fc_scm_cli.html it does'nt mention how to create a new workspace which contains all of the components of a given stream. So how can I