I would like to integrate the DOORS tool(requirement gathering tool) into my java application. My application is a standalone application built in java, Can I integrate DOORS tool as a plugin or any other way into my java application.
Can we integrate DOORS tool as a plugin to a java application?
225 Views Asked by Prafull At
1
There are 1 best solutions below
Related Questions in JAVA
- I need the BIRT.war that is compatible with Java 17 and Tomcat 10
- Creating global Class holder
- No method found for class java.lang.String in Kafka
- Issue edit a jtable with a pictures
- getting error when trying to launch kotlin jar file that use supabase "java.lang.NoClassDefFoundError"
- Does the && (logical AND) operator have a higher precedence than || (logical OR) operator in Java?
- Mixed color rendering in a JTable
- HTTPS configuration in Spring Boot, server returning timeout
- How to use Layout to create textfields which dont increase in size?
- Function for making the code wait in javafx
- How to create beans of the same class for multiple template parameters in Spring
- How could you print a specific String from an array with the values of an array from a double array on the same line, using iteration to print all?
- org.telegram.telegrambots.meta.exceptions.TelegramApiException: Bot token and username can't be empty
- Accessing Secret Variables in Classic Pipelines through Java app in Azure DevOps
- Postgres && statement Error in Mybatis Mapper?
Related Questions in CRM
- CRMSDK QueryExpression didn't return all the related attributes
- Python API and Salesforce Rest API Data discrepancy in returning number of records
- I am getting issues with vtiger the open source crm, was working fine but now when i try to configure mailbox it loads foever doesnt work
- Tring to call A simple Zoho API that returns a photo, and hit a wall of confusion?
- Prisma Error code: 'P2010' Getting unknown model error
- Odoo CRM problem in binding attribute to a record.field value
- Error when running a crm in php: Module name is missing or incorrect. Please check the module name
- how to check metadata api in get request in postman Zoho CRM Developer account this issues replicate 401 unauthorized
- Automatically activating Record Creation and Update rule - Dynamics CRM
- Using Dynamics Web API to Retrieve List of Leads that have been Reassigned
- Enable rule not showing in command checker and not run
- Embedding custom web components in Salesforce CRM
- Compare Count of record for the first and last of the month across a range of months in CRM Analytics
- Issue with OOB Role 'Salesperson'
- Persisted permissions for CRM using CASL
Related Questions in IBM-DOORS
- DXL : Comparing attributes of objects across modules
- How can I fix my code so that it still deletes indentations, but doesn't delete numbers in tables, etc. in DXL?
- How to Compare 2 modules in DOORS?
- is it possible to link attribute enumerations (Types) to objects in another module in DOORS?
- DXL: Attribute Comparison between Two Modules in DOORS
- Open a selected baseline in read only mode
- Set a sensitivity label for an excel workbook created from DOORS DXL
- DXL : How to list all attribute names in a current module?
- Missing links when specific baseline is determined
- Has anyone managed to log into an IBM Jazz Team server with matlab http requests using j_security_check url?
- Importing DOORS attributes enum change not recognized
- Unable to execute a DXL script within DOORS
- Write data in excel from DOORS
- DXL script that can read a module and print the AttributeDefinitionBaseType
- DXL DOORS restore attribute text from session
Related Questions in REQUIREMENTS-MANAGEMENT
- is it possible to link attribute enumerations (Types) to objects in another module in DOORS?
- Custom relation created in Cameo - date attribute not showing up in table?
- Relation between stakeholder and functional requirements
- Where to put a small utility function that I would like to use across multiple packages/projects that I develop?
- Visualising nodes classified in heirarchies and their relationshops
- How to understand the meaning of high level requirement and low level requirement in DO-178C?
- Acceptance test design in Requirements Validation (Software Engineering)
- Is it possible to dynamically define enumarated type based on another attributes values in IBM DOORS?
- requirement traceabilty in gitlab
- Is it possible to export reports from Jama Connect with baseline signatures
- Can we integrate DOORS tool as a plugin to a java application?
- How can I run my program when I already had the module and the error said: ModuleNotFoundError?
- Update objects from two modules with same attribute in DOORS
- How to install highest version of a Python package which doesn't break my App?
- Requirement tracking Doxygen
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
Domorans project DriveDOORS might be an approach for you. See https://github.com/domoran/DriveDOORS.
Generally, there is no other official way to communicate with DOORS other than starting DXL scripts and getting the results from these scripts, so for every solution you implement you will have to have a DOORS client installed that you communicate with.
Update: I stand corrected: you should be able to use OSLC, see https://www.ibm.com/developerworks/rational/library/oslc-services-rational-doors/index.html
MDconnect by Sodius was a 3rd party tool that helped here, but it seems to be discontinued. But you could ask sodius at https://www.sodiuswillert.com whether they still support it.
Also, with DOORS 9.2 there was a C API that might be usable with java as well, but this also seems to be discontinued, I could not find a later version than this: http://download.boulder.ibm.com/ibmdl/pub/software/rationalsdp/documentation/product_doc/DOORS/version_9-1/doors_api_manual.pdf
Hope this helps Mike