Archive for January, 2015
“Lessons learned” …creating a complex DNG Extension with Javascript
Posted by rtcpractise in Uncategorized on 31/01/2015
Currently I’m working on a big DNG Extension that will: Search Artefacts and their link structure Create a Workitem “Mirror” at RTC…Workitems with similar names and the same link structure Link the DNG Artefacts with their RTC Workitems counterparts. Sounds simple, just create a loop to get the Artefacts and then create the related Workitems. But […]
How to enable CORS on a Websphere Application Server (WAS 8.5)
Posted by rtcpractise in CORS, Javascript on 07/01/2015
In case you have a little DNG Javascript embedded in a Webpage and you want to access RTC (running in a different domain) , then you need CORS. The question is “how to enable it with WAS? It seems that WAS itself could not configured but the WAS Apps (i.e. ccm) could be. This means you […]
RM Queries (OSLC and REST)
Posted by rtcpractise in DNG, OSLC on 07/01/2015
Here are the results of “How to create OSLC Queries in DNG with the help of RM OSLC”. Available informations: Using OSLC capabilities in the Requirements Management application Access OSLC services from IBM Rational DOORS RRC Reportable REST API RRC/DNG REST Questions Example: How to find all Artefacts of an Artefact Type like “AuthReq”? https://jazzserver.ibm.com:9443/rm/views?oslc.query=true&projectURL=https://jazzserver.ibm.com:9443/rm/process/project-areas/_bhyT8F6sEeSwto_B6N2_1w&oslc.prefix=rm=<http://www.ibm.com/xmlns/rdm/rdf/>&oslc.select=*&oslc.where=rm:ofType=<https://jazzserver.ibm.com:9443/rm/types/_cdJI8V6sEeSwto_B6N2_1w> […]
Copy/Backup a SD Card
Posted by rtcpractise in Cubie, Raspberry Pi on 02/01/2015
After some failures there is an easy way to copy a Raspberry Pi SDCard (with Homematic CCU running in a lxc container) from one SD Card /dev/sdb to another SC Card /dev/sdc: mount (to see the mounted filesystems an their names) umount /dev/sdb1 umount /dev/sdc1 sudo dd if=/dev/sdb of=/dev/sdc bs=4096 conv=notrunc,noerror