kashiwazakinenji / chromedevtools

Automatically exported from code.google.com/p/chromedevtools
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

java.lang.NoClassDefFoundError: org/chromium/sdk/wip/WipBackendFactory #89

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I try to add debug support for chrome application.

When I write code in eclipse I don't have any error during compilation. In 
runtime I got en following error:

!STACK 0
java.lang.NoClassDefFoundError: org/chromium/sdk/wip/WipBackendFactory

-2.WipBrowser browser = WipBrowserFactory.INSTANCE.createBrowser(new 
-1.InetSocketAddress("localhost", port), new EmptyLoggerFactory());
0.      
1. WipBackendFactory factory = new WipBackendFactory();
2. WipBackend backend = factory.create();
3. try
4. {
5.    browser.getTabs(backend);
6. } 
7. catch (IOException e)
8. {
9.    e.printStackTrace();
10.}

So I have an error in line 1. what is the problem?

Original issue reported on code.google.com by yu.pitom...@gmail.com on 19 Aug 2013 at 9:40