Troubleshooting
Eclipse sometimes losing SDK in eclipse.ini
Eclipse Mars requires at least v7 so it will fail to load with system default if its v6. Resolve by adding this to eclipse.ini -vm D:/dev/eclipse/java_1.7_64/bin/javaw.exe. Needs more investigation (maybe a config file update will fix). (COMPLETE, problem not happening with sdk7)
install Java SE Development Kit (=JDK) http://www.oracle.com/technetwork/java/javase/downloads/index.html
The Java Development Kit (JDK) is an implementation of either one of the Java SE, Java EE or Java ME platforms. Oracle strongly suggests that they now use the term JDK to refer to the Java SE Development Kit. The Java EE SDK is available with or without the JDK, by which they specifically mean the Java SE 7 JDK. Java Development Kit (JDK) 1.8 (officially named Java SE 8), JDK (Java SE Development Kit) includes a complete JRE plus tools for developing.
Enable Search On Windows7
1.go into control panel -> programs and features. 2.Click the link to “Turn Windows Features on or off” 3.Find “Windows Search” in the list, and check the checkbox (FYI: We have found two templates, VDP03-RAD85-RTC4-v1.2 & VDP03-RAD85-RTC4-v1.3, come up with an empty features list so you will not be able to turn on Windows Search for slices based on those templates). 4.Click OK
disable screen lockout on the slices
1.RegEdt32 (Start => Run => RegEdt32 (or Regedit)
4GB installed RAM, only 2.75GB usable?
Try running msconfig
, going to boot, then advanced options and see if the Max memory
button is checked. The general consensus was that it should not be.
handy tip for WID
if you ever need to trace service flows through a module... Just right click on the module in question, in the menu, hit "Test -> Attach", and when the window opens press play. traces all the traffic through that module
NPM isn't working well with the proxy
By default, NPM should use your default proxy settings when downloading dependencies. In some cases, developers have reported that this is not happening. If this happens to you, follow the steps below to directly set the NPM proxy values.
- First make sure that you followed the steps above correctly and then restarted your machine.
- Open up your command line tool and run the following commands in order to delete any user defined proxy settings:
npm config delete proxy npm config delete https-proxy
- Restart your command line tool and see if the issue is resolved.
- If the issue is still not resolved, run the following command in order to set the proxy specifically in your NPM config:
npm config set proxy http://localhost:3128 npm config set https-proxy http://localhost:3128