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?
222 Views Asked by Prafull At
1
There are 1 best solutions below
Related Questions in JAVA
- Add image to JCheckBoxMenuItem
- How to access invisible Unordered List element with Selenium WebDriver using Java
- Inheritance in Java, apparent type vs actual type
- Java catch the ball Game
- Access objects variable & method by name
- GridBagLayout is displaying JTextField and JTextArea as short, vertical lines
- Perform a task each interval
- Compound classes stored in an array are not accessible in selenium java
- How to avoid concurrent access to a resource?
- Why does processing goes slower on implementing try catch block in java?
- Redirect inside java interceptor
- Push toolbar content below statusbar
- Animation in Java on top of JPanel
- JPA - How to query with a LIKE operator in combination with an AttributeConverter
- Java Assign a Value to an array cell
Related Questions in CRM
- Identity Provider, MVC,override PasswordSignInAsync, custom storage provider - CRM
- CRM Online 2015 Dashboards
- CRM Advanced Find all the icons in wrong place
- The type or namespace 'Xrm' does not exist
- Dynamic CRM Plugin download Word document
- How do I connect the RIGHT way from One Server SQL to another and make updates?
- CRM 2013 C# Plugin fill Word template
- Dynamics CRM SDK in C# connect with Invalid Password
- Customer data in email campaigns using Business Catalyst
- SugarCRM Report: Can You Measure The Average Length Of Your Sales Cycle In A Report
- Possible to Change Date to Day Week in CRM Chart by xml
- Call Web resource (Html/JS) from CRM plugin?
- retrieve email from CRM in the activities from account entity
- Plugin triggered on deleting reference between Marketing List and Campaign - Plugin Registration Tool
- Refreshing field value underlying record after quick creating record
Related Questions in IBM-DOORS
- Eclipse 4 RCP with ibm rational Doors Database
- DOORS / DXL object attribute "Last Modified On" including time?
- DOORS Compound Filter Dilemma
- Java program for IBM Doors
- DOORS: Insert OLE with explicit type (aka Show PDF as editable information)
- Where are the DXL Files Stored in DOORS
- DXL scrippting for find the enum in attributs
- DXL - Unexpected character output
- DXL script to copy object with pictures combined with strings
- How get string from skip in DOORS DXL
- How to apply a style to Object Text with an OLE inside
- dxl findPlainText check does not match string
- DXL Script to Export DOORS Object Information to Microsoft Word - Randomly Dropping Information
- OleAutoObj is not opening Excel application in my PC
- Is there a way to delete the text in a DXL layout column?
Related Questions in REQUIREMENTS-MANAGEMENT
- Functional requirement
- How to install highest version of a Python package which doesn't break my App?
- Acceptance test design in Requirements Validation (Software Engineering)
- Requirement tracking Doxygen
- Can we integrate DOORS tool as a plugin to a java application?
- Relation between stakeholder and functional requirements
- How can I find all cell references in a row that contain a value, and display them in one cell?
- How to properly model system requirements in UML (Sparx Enterprise Architect)
- TFS Taskboard for Writing Specifications?
- Does it exist a complete chain tool that allows to manage requirements (e.g. ProR), realize UML diagrams, develop code and perform test?
- How to understand the meaning of high level requirement and low level requirement in DO-178C?
- Visualising nodes classified in heirarchies and their relationshops
- How do I map Angular tests/test suites back to JIRA to track them?
- Use Case Diagram for Stack Overflow
- IBM Rational DOORS: How to paste as plain text in DOORS Objects?
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 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