Failed to start MDS cs

When I try to run the Blackberry application in the simulator, I get the following error : "MDS CS failed to start. Reason:". The error message is not very useful because it does not give a reason. Its simple. I was wondering if anyone else saw this error?

My setup is Windows 7, Eclipse with the Webworks plugin

The error occurs when I try to start the MDS connection service in Eclipse.

+4
source share
4 answers

I found that this was caused by installing the java SDK in the wrong folder. I installed it in the x86 file folder (64 bit). I reinstalled the program file folder (32 bit) and updated the environment variables and started working.

0
source

There was the same problem. In my case, I needed to run Eclipse as an administrator; apparently the scripts want to create a log file somewhere in the Program Files directory.

+3
source

I had similar problems, and after I returned the path / java _home / java install (eventually sent to c: \ java), I got the error "no logservice loaded".

(by the way, the file 'run.bat' has a line that has this code:

start cmd /v:on /c "java.exe" 

remove "start" and the window will stop disappearing on error.)

I also installed JDE 7 from RIM, and the MDS installed there worked fine. So I renamed the MDS folder in the Eclipse plugin and copied the MDS folder from under JDE to the plugin folder. Now it works great. Sometimes I have to close the simulator manually.

+1
source

I had such a problem.

The problem for me was that mds work with JDK 1.5 and, of course, I have JDK 6 installed.

I had to install JDK 1.5 and do this:

  • put the environment variable in JDK5 and execute mds
  • set a normal environment and run eclipse.
0
source

Source: https://habr.com/ru/post/1343624/


All Articles