MDS ExplorerBrowse, search, and open files stored in an Oracle MDS (Metadata Services) repository directly from VS Code — without opening JDeveloper. MDS is the metadata store used by Oracle SOA Suite, Oracle Service Bus, and Oracle BPM Suite to persist artifacts such as WSDLs, XSDs, XSLTs, DVMs, and BPEL processes. Features
RequirementsJavaA JDK (not just JRE) is required to compile and run the JDBC bridge.
Oracle JDBC driver (
|
| Setting | Description | Default |
|---|---|---|
mdsExplorer.javaPath |
Path to java.exe or a JDK home directory. Leave empty to auto-detect. |
(auto-detect) |
mdsExplorer.ojdbcJarPath |
Full path to ojdbc8.jar. Leave empty to auto-detect from JDeveloper install. |
(auto-detect) |
Commands
All commands are accessible via the MDS Explorer tree view context menus.
| Command | Where | Description |
|---|---|---|
| Add Connection | Title bar + |
Add a new MDS connection |
| Connect | Connection node | Connect and load the tree |
| Disconnect | Connected connection node | Disconnect and clear the tree |
| Remove Connection | Connection right-click | Delete a saved connection |
| Refresh | Any node right-click | Reload children from the database |
| Search Documents | Connected connection right-click | Live path search across the repository |
| Open in New Tab | Document right-click or + icon |
Open file in a permanent tab |
Copy oramds:/ Path |
File or folder right-click | Copy the MDS path to clipboard |
JDBC URL Formats
All standard Oracle JDBC URL formats are supported:
# SID format
jdbc:oracle:thin:@hostname:1521:DBSID
# Service name (EZConnect)
jdbc:oracle:thin:@//hostname:1521/service.domain
# TNS descriptor
jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=hostname)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=service)))
Known Issues
- Documents are read-only — the extension is a viewer only; writing back to MDS is not supported
- Very large decomposed XML files (type-0 content stored in
MDS_COMPONENTS) may take longer to reconstruct - Auto-detection of Java and ojdbc paths covers JDeveloper 14c on Windows; other layouts may require manual settings
How It Works
The extension spawns a small Java helper (MdsBridge.java) as a child process, compiled on first use from your local JDK. Communication uses a simple tab-delimited, Base64-encoded line protocol over stdin/stdout. This avoids any dependency on Oracle Instant Client and works transparently with Oracle Native Network Encryption.
Following extension guidelines
Ensure that you've read through the extensions guidelines and follow the best practices for creating your extension.
Working with Markdown
You can author your README using Visual Studio Code. Here are some useful editor keyboard shortcuts:
- Split the editor (
Cmd+\on macOS orCtrl+\on Windows and Linux). - Toggle preview (
Shift+Cmd+Von macOS orShift+Ctrl+Von Windows and Linux). - Press
Ctrl+Space(Windows, Linux, macOS) to see a list of Markdown snippets.
For more information
Enjoy!