- Community Home
- >
- Networking
- >
- Software Defined Networking
- >
- Re: Dependency Satisfaction Failed Error
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-05-2014 11:11 AM
08-05-2014 11:11 AM
Dependency Satisfaction Failed Error
Hi all,
I am developing an SDN application that registers itself as a packet listener, logs some details about those packets, and attempts to use the Twilio Java API to send SMS alerts in the event of an error. I've installed that API's developing kit on my development VM (ubuntu desktop) and on my SDN controller (running software version 2.2.5). I've also updated my project's pom.xml file to reflect this new dependency. After compiling with no errors using Maven, I am able to load the application onto my controller, but not deploy it. I get a 500: Internal Server Error with the description "Error installing application: com.TestCompany.test;cause: Dependency satisfaction failed"
What can I do to fix my dependency issue?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-21-2014 07:14 PM
08-21-2014 07:14 PM
Re: Dependency Satisfaction Failed Error
Hello ssrirama,
Some missing dependencies may cause the error. So please review the pom.xml and try again.
Google Chrome browser is recommended.
Since you have uploaded the application so it should be in staged state and the application can be installed.
You can also try curl command from HP Van SDN Controller Admin guide[page 77] to install the application
For e.g.
Install an Uploaded (STAGED) Application
curl --noproxy <controller_ip> --header X-Auth-Token:<authentication_token> -ksS --fail --url https://<controller_ip>:<port>/sdn/v2.0/apps/<AppId>/action/ -d install --request POST
Example of Installing an Uploaded Application
curl --noproxy 192.168.49.86 --header X-Auth-Token:c405ff2d249c4a609229466c32932a82 -ksS --fail --url https://192.168.49.86:8443/sdn/v2.0/apps/com.golly.gee/action/ -d install --request POST
If you still face the problem , please share the code/logs/screen shots.
Thanks,
HP SDN Team