I am currently building a TFS-Dashboard (TFS2015-on premise). We are still using redmine as our ticketing system. I want to get an overview of open tickets per release and display that in the TFS dashboard but cannot seem to find a fitting addin. Great would be an addin for Redmine, but I would also settle for a possiblity to display a webpage. I tried the iframe addin but it would not install:
30.05.2017 11:04:29 - Microsoft VSIX Installer
30.05.2017 11:04:29 - -------------------------------------------
30.05.2017 11:04:29 - Initializing Install...
30.05.2017 11:04:29 - Erweiterungsdetails...
30.05.2017 11:04:29 - Identifier : iframe-dashboard-widget
30.05.2017 11:04:29 - Name : Iframe Dashboard Widget
30.05.2017 11:04:29 - Author : areve
30.05.2017 11:04:29 - Version : 1.0.11
30.05.2017 11:04:29 - Description : A dashboard widget to show an Iframe in TFS/VSTS.
30.05.2017 11:04:29 - Locale : en-US
30.05.2017 11:04:29 - MoreInfoURL :
30.05.2017 11:04:29 - InstalledByMSI : False
30.05.2017 11:04:29 - SupportedFrameworkVersionRange : [0.0,2147483647.2147483647]
30.05.2017 11:04:29 -
30.05.2017 11:04:29 - Unterstützte Produkte :
30.05.2017 11:04:29 - Microsoft.VisualStudio.Services
30.05.2017 11:04:29 - Version :
30.05.2017 11:04:29 -
30.05.2017 11:04:29 - Verweise :
30.05.2017 11:04:29 -
30.05.2017 11:04:29 - Er wird nach passenden Produkten gesucht...
30.05.2017 11:04:29 - Installiertes Produkt gefunden - Microsoft Visual Studio Premium 2013
30.05.2017 11:04:29 - Installiertes Produkt gefunden - Microsoft Visual Studio Professional 2013
30.05.2017 11:04:29 - Installiertes Produkt gefunden - Microsoft Visual Studio 2013 Shell (Integrated)
30.05.2017 11:04:29 - Installiertes Produkt gefunden - Globaler Pfad
30.05.2017 11:04:29 - Installiertes Produkt gefunden - ssms
30.05.2017 11:04:29 - VSIXInstaller.NoApplicableSKUsException: Diese Erweiterung kann auf den derzeit installierten Produkten nicht installiert werden.
bei VSIXInstaller.App.InitializeInstall()
bei System.Threading.Tasks.Task.InnerInvoke()
bei System.Threading.Tasks.Task.Execute()
Can you recommend an addin or solution to the install-problem?
There is not any official plugins or something similar for combining TFS and Redmine for now.
You could add a uservoice or vote for Help --- service hook for redmine, TFS PM will kindly review your suggestion.
To integrate you will either have to roll your own or buy a tool. Such as Takstop which devote to your software integration flows, or Cloudpipes.
The error I got above was due to a rookie mistake - instead of uploading the extension to the TFS-webui I double-clicked it in the file system.
Related
jodConverter 4.2.2
Windows 10
amazon corretto 8 for the java jdk, 1.8.0_212
running from IntelliJ Community (latest)
LibreOffice 6.1.3.1 (64 bit) - installed and runs fine
I try to run this bit of simple code (please excuse bad formatting):
import org.jodconverter.office.OfficeManager;
import org.jodconverter.office.LocalOfficeManager;
import org.jodconverter.JodConverter;
import org.jodconverter.office.OfficeUtils;
import java.io.File;
public class Main {
public static void main(String[] args) {
OfficeManager officeManager = LocalOfficeManager.builder()
.install()
.officeHome("C:\\Program Files\\LibreOffice")
.build();
File inputFile = new File("c:\\users\\dlawler\\desktop\\test.rtf");
File outputFile = new File("c:\\users\\dlawler\\desktop\\test.pdf");
try {
// Start an office process and connect to the started instance (on port 2002).
officeManager.start();
// Convert
JodConverter
.convert(inputFile)
.to(outputFile)
.execute();
} catch (OfficeException e) {
} finally {
// Stop the office process
OfficeUtils.stopQuietly(officeManager);
}
}
}
And I get an error that pops up on the screen:
LoadLibrary failed with error 87: The parameter is incorrect
This is the log:
"C:\Program Files\Amazon Corretto\jdk1.8.0_212\bin\java.exe" "-javaagent:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2018.3.6\lib\idea_rt.jar=51201:C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2018.3.6\bin" -Dfile.encoding=UTF-8 -classpath "C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\charsets.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\ext\access-bridge-64.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\ext\cldrdata.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\ext\dnsns.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\ext\jaccess.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\ext\jfxrt.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\ext\localedata.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\ext\nashorn.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\ext\sunec.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\ext\sunjce_provider.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\ext\sunmscapi.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\ext\sunpkcs11.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\ext\zipfs.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\jce.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\jfxswt.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\jsse.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\management-agent.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\resources.jar;C:\Program Files\Amazon Corretto\jdk1.8.0_212\jre\lib\rt.jar;C:\Projects\Converter\out\production\Converter;C:\Users\dlawler.m2\repository\org\jodconverter\jodconverter-local\4.2.2\jodconverter-local-4.2.2.jar;C:\Users\dlawler.m2\repository\org\jodconverter\jodconverter-core\4.2.2\jodconverter-core-4.2.2.jar;C:\Users\dlawler.m2\repository\commons-io\commons-io\2.6\commons-io-2.6.jar;C:\Users\dlawler.m2\repository\org\apache\commons\commons-lang3\3.7\commons-lang3-3.7.jar;C:\Users\dlawler.m2\repository\com\google\code\gson\gson\2.8.5\gson-2.8.5.jar;C:\Users\dlawler.m2\repository\org\openoffice\juh\4.1.2\juh-4.1.2.jar;C:\Users\dlawler.m2\repository\org\openoffice\jurt\4.1.2\jurt-4.1.2.jar;C:\Users\dlawler.m2\repository\org\openoffice\ridl\4.1.2\ridl-4.1.2.jar;C:\Users\dlawler.m2\repository\org\openoffice\unoil\4.1.2\unoil-4.1.2.jar;C:\Users\dlawler.m2\repository\org\slf4j\slf4j-api\1.7.25\slf4j-api-1.7.25.jar;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2018.3.6\lib\slf4j-log4j12-1.7.25.jar;C:\Program Files\JetBrains\IntelliJ IDEA Community Edition 2018.3.6\lib\log4j.jar;C:\Program Files\LibreOffice\program\classes\java_uno.jar;C:\Program Files\LibreOffice\program\classes\juh.jar;C:\Program Files\LibreOffice\program\classes\jurt.jar" com.connexin.converter.Main
2019-07-03 17:21:40 INFO OfficeProcessManager:294 - Submitting task 'Start' and waiting...
2019-07-03 17:21:40 INFO OfficeDescriptor:97 - soffice info (from exec path): Product: LibreOffice - Version: ??? - useLongOptionNameGnuStyle: true
2019-07-03 17:21:40 INFO OfficeProcess:395 - Starting process with acceptString 'socket,host=127.0.0.1,port=2002,tcpNoDelay=1;urp;StarOffice.ServiceManager' and profileDir 'C:\Users\dlawler\AppData\Local\Temp.jodconverter_socket_host-127.0.0.1_port-2002_tcpNoDelay-1'
2019-07-03 17:21:40 DEBUG AbstractProcessManager:140 - Command line matches! Returning pid: 25300
2019-07-03 17:21:40 INFO OfficeProcess:402 - Started process; pid = 25300
2019-07-03 17:21:40 DEBUG OfficeConnection:91 - Connecting with connectString 'socket,host=127.0.0.1,port=2002,tcpNoDelay=1'
2019-07-03 17:21:42 DEBUG OfficeConnection:91 - Connecting with connectString 'socket,host=127.0.0.1,port=2002,tcpNoDelay=1'
2019-07-03 17:21:43 DEBUG OfficeConnection:91 - Connecting with connectString 'socket,host=127.0.0.1,port=2002,tcpNoDelay=1'
2019-07-03 17:21:44 DEBUG OfficeConnection:91 - Connecting with connectString 'socket,host=127.0.0.1,port=2002,tcpNoDelay=1'
2019-07-03 17:21:45 DEBUG OfficeConnection:91 - Connecting with connectString 'socket,host=127.0.0.1,port=2002,tcpNoDelay=1'
2019-07-03 17:21:47 DEBUG OfficeConnection:91 - Connecting with connectString 'socket,host=127.0.0.1,port=2002,tcpNoDelay=1'
2019-07-03 17:21:48 DEBUG OfficeProcessManager:303 - ExecutionException catched in submitAndWait
java.util.concurrent.ExecutionException: org.jodconverter.office.OfficeException: Office process died with exit code -1073740791
at java.util.concurrent.FutureTask.report(FutureTask.java:122)
at java.util.concurrent.FutureTask.get(FutureTask.java:192)
at org.jodconverter.office.OfficeProcessManager.submitAndWait(OfficeProcessManager.java:299)
at org.jodconverter.office.OfficeProcessManager.startAndWait(OfficeProcessManager.java:254)
at org.jodconverter.office.OfficeProcessManagerPoolEntry.doStart(OfficeProcessManagerPoolEntry.java:168)
at org.jodconverter.office.AbstractOfficeManagerPoolEntry.start(AbstractOfficeManagerPoolEntry.java:144)
at org.jodconverter.office.AbstractOfficeManagerPool.doStart(AbstractOfficeManagerPool.java:188)
at org.jodconverter.office.AbstractOfficeManagerPool.start(AbstractOfficeManagerPool.java:113)
at org.jodconverter.office.LocalOfficeManager.start(LocalOfficeManager.java:38)
at com.connexin.converter.Main.main(Main.java:23)
Caused by: org.jodconverter.office.OfficeException: Office process died with exit code -1073740791
at org.jodconverter.office.ConnectRetryable.attempt(ConnectRetryable.java:87)
at org.jodconverter.office.AbstractRetryable.execute(AbstractRetryable.java:57)
at org.jodconverter.office.ConnectRetryable.execute(ConnectRetryable.java:26)
at org.jodconverter.office.OfficeProcessManager.doStartProcessAndConnect(OfficeProcessManager.java:104)
at org.jodconverter.office.OfficeProcessManager.access$100(OfficeProcessManager.java:40)
at org.jodconverter.office.OfficeProcessManager$4.call(OfficeProcessManager.java:261)
at org.jodconverter.office.OfficeProcessManager$4.call(OfficeProcessManager.java:256)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
Caused by: org.jodconverter.office.OfficeConnectionException: Connection failed: 'socket,host=127.0.0.1,port=2002,tcpNoDelay=1'; java.net.ConnectException: Connection refused: connect
at org.jodconverter.office.OfficeConnection.connect(OfficeConnection.java:170)
at org.jodconverter.office.ConnectRetryable.attempt(ConnectRetryable.java:61)
... 10 more
Caused by: com.sun.star.connection.NoConnectException: java.net.ConnectException: Connection refused: connect
at com.sun.star.lib.connections.socket.socketConnector.connect(socketConnector.java:144)
at com.sun.star.comp.connections.Connector.connect(Connector.java:119)
at org.jodconverter.office.OfficeConnection.connect(OfficeConnection.java:106)
... 11 more
2019-07-03 17:21:48 INFO AbstractOfficeManagerPool:195 - Stopping the office manager pool...
2019-07-03 17:21:48 INFO OfficeProcessManager:294 - Submitting task 'Stop' and waiting...
2019-07-03 17:21:48 DEBUG OfficeProcessManager:138 - Exception catched in doStopProcess
java.lang.NullPointerException
at org.jodconverter.office.OfficeProcessManager.doStopProcess(OfficeProcessManager.java:124)
at org.jodconverter.office.OfficeProcessManager.access$000(OfficeProcessManager.java:40)
at org.jodconverter.office.OfficeProcessManager$5.call(OfficeProcessManager.java:283)
at org.jodconverter.office.OfficeProcessManager$5.call(OfficeProcessManager.java:278)
at java.util.concurrent.FutureTask.run(FutureTask.java:266)
at java.util.concurrent.ThreadPoolExecutor.runWorker(ThreadPoolExecutor.java:1149)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(ThreadPoolExecutor.java:624)
at java.lang.Thread.run(Thread.java:748)
2019-07-03 17:21:48 INFO OfficeProcess:206 - Trying to forcibly terminate process: 'host=127.0.0.1,port=2002,tcpNoDelay=1'; pid: 25300
2019-07-03 17:21:48 INFO OfficeProcessManager:158 - process forcibly terminated with code -1073740791
2019-07-03 17:21:48 INFO OfficeProcessManager:77 - process exited with code -1073740791
2019-07-03 17:21:48 DEBUG OfficeProcess:123 - Deleting instance profile directory 'C:\Users\dlawler\AppData\Local\Temp.jodconverter_socket_host-127.0.0.1_port-2002_tcpNoDelay-1'
2019-07-03 17:21:48 DEBUG OfficeProcessManager:300 - Task 'Stop' executed successfully
2019-07-03 17:21:48 INFO AbstractOfficeManagerPool:213 - Office manager stopped
Process finished with exit code 0
Any idea of what to look for would be MOST appreciated. I'm wondering if Symantec is blocking the ports? 64 bit/32 bit mismatch?
So this has to be a local configuration/system error. I set up the same environment on two other PCs (not in our corporate network) and jodconverter compiled and ran it's tests with no issue. I'm looking into any possible differences (firewall, anti-virus, other loaded programs), that could account for the different behaviors...
Update: this turned out to be the drivers for the super old AMD graphics card in this machine (AMD Radeon HD 7300). The solution was to go into C:\Windows\System32 and rename atig6pxx.dll to atig6pxx.dll.bak. I have not experienced any issues after doing this - but I expect this will disable opengl with this card. For the moment that is not an issue.
F# 4.6 was released for Visual Studio 2019 (https://devblogs.microsoft.com/dotnet/announcing-f-4-6/) but will features and tooling from F# 4.6 every be available for Visual Studio 2017 (namely, I'm interested in anonymous types)?
I have Nightly Releases configured for Visual F# Tools in my installation of Visual Studio 2017, but attempting to update to the latest gives me an installation error (latest version has min VS version targeting VS 16.0, i.e. Visual Studio 2019):
4/22/2019 9:32:08 AM - Microsoft VSIX Installer 4/22/2019 9:32:08 AM -
------------------------------------------- 4/22/2019 9:32:08 AM - vsixinstaller.exe version: 4/22/2019 9:32:08 AM - 16.1.42 4/22/2019
9:32:08 AM - ------------------------------------------- 4/22/2019
9:32:08 AM - Command line parameters: 4/22/2019 9:32:08 AM -
C:\Program Files (x86)\Microsoft Visual
Studio\Installer\resources\app\ServiceHub\Services\Microsoft.VisualStudio.Setup.Service\vsixinstaller.exe,/appidinstallpath:C:\Program
Files (x86)\Microsoft Visual
Studio\2017\Professional\Common7\IDE\devenv.exe,/skuName:Pro,/skuVersion:15.0.28307.586,/appidname:Microsoft
Visual Studio Professional
2017,/culture:en-US,/noep,C:\Users\steph\AppData\Local\Temp\VSIX4htuqo2p.vsix
4/22/2019 9:32:08 AM - -------------------------------------------
4/22/2019 9:32:08 AM - Microsoft VSIX Installer 4/22/2019 9:32:08 AM -
------------------------------------------- 4/22/2019 9:32:08 AM - Initializing Install... 4/22/2019 9:32:08 AM - Extension Details...
4/22/2019 9:32:08 AM - Identifier : VisualFSharp 4/22/2019
9:32:08 AM - Name : Visual F# Tools 4/22/2019 9:32:08
AM - Author : Microsoft.VisualFSharpTools 4/22/2019
9:32:08 AM - Version : 16.0.20190420.1922001 4/22/2019
9:32:08 AM - Description : Deploy Visual F# Tools Binaries to
Visual Studio 4/22/2019 9:32:08 AM - Locale : en-US
4/22/2019 9:32:08 AM - MoreInfoURL :
https://learn.microsoft.com/en-us/dotnet/articles/fsharp/ 4/22/2019
9:32:08 AM - InstalledByMSI : False 4/22/2019 9:32:08 AM -
SupportedFrameworkVersionRange : [4.6,) 4/22/2019 9:32:08 AM -
4/22/2019 9:32:10 AM - SignatureState : ValidSignature 4/22/2019
9:32:10 AM - SignedBy : Microsoft Corporation 4/22/2019
9:32:10 AM - Certificate Info : 4/22/2019 9:32:10 AM -
------------------------------------------------------- 4/22/2019
9:32:10 AM - [Subject] : CN=Microsoft Corporation, OU=OPC,
O=Microsoft Corporation, L=Redmond, S=Washington, C=US 4/22/2019
9:32:10 AM - [Issuer] : CN=Microsoft Code Signing PCA 2010,
O=Microsoft Corporation, L=Redmond, S=Washington, C=US 4/22/2019
9:32:10 AM - [Serial Number] :
330000026ECE6AE5984BFC96A900000000026E 4/22/2019 9:32:10 AM - [Not
Before] : 9/6/2018 5:00:30 PM 4/22/2019 9:32:10 AM - [Not After]
: 9/6/2019 5:00:30 PM 4/22/2019 9:32:10 AM - [Thumbprint] :
99B6246883B4B32EA59AE18B36945D205A876800 4/22/2019 9:32:10 AM -
4/22/2019 9:32:10 AM - Supported Products : 4/22/2019 9:32:10 AM -
Microsoft.VisualStudio.Pro 4/22/2019 9:32:10 AM - Version :
[16.0,) 4/22/2019 9:32:10 AM - 4/22/2019 9:32:10 AM - References
: 4/22/2019 9:32:10 AM - Prerequisites : 4/22/2019 9:32:10 AM
- ------------------------------------------------------- 4/22/2019 9:32:10 AM - Identifier :
Microsoft.VisualStudio.Component.CoreEditor 4/22/2019 9:32:10 AM -
Name : Visual Studio core editor 4/22/2019 9:32:10 AM -
Version : [16.0,) 4/22/2019 9:32:10 AM - 4/22/2019 9:32:10 AM
- Signature Details... 4/22/2019 9:32:10 AM - Extension is signed with a valid signature. 4/22/2019 9:32:10 AM - 4/22/2019 9:32:10 AM -
VSIXInstaller.NoApplicableSKUsException: This extension is not
installable on any currently installed products. at
VSIXInstaller.ExtensionService.GetInstallableData(String vsixPath,
String extensionPackParentName, Boolean isRepairSupported, IStateData
stateData, IEnumerable1& skuData) at
VSIXInstaller.ExtensionService.ComputeInstallableExtensions(IStateData
stateData, Boolean isRepairSupported, Boolean isExtensionPack,
IDictionary2 skuDataMapping, IList1 installableExtensionsPaths)
at VSIXInstaller.App.Initialize(Boolean isRepairSupported) at
VSIXInstaller.App.Initialize() at
System.Threading.Tasks.Task1.InnerInvoke() at
System.Threading.Tasks.Task.Execute()
--- End of stack trace from previous location where exception was thrown --- at
Microsoft.VisualStudio.Telemetry.WindowsErrorReporting.WatsonReport.GetClrWatsonExceptionInfo(Exception
exceptionObject)
The nightly channel is a representation of latest master in the F# codebase, which requires Visual Studio 2019 if you are using it in Visual Studio. Note that the compiler can be used independently of tooling.
If you wish to use F# 4.6 in Visual Studio, you should upgrade to VS 2019.
I got the 5.1 Alpha release today and was unable to get it to completely start. it hangs at (or after) this log message:
INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI: http://tiles.apache.org/tags-tiles is already defined
I am starting it up with the same environment and command that I've been running. 5.0.0. sh wso2server.sh
Here is my full log.
JAVA_HOME environment variable is set to /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/
CARBON_HOME environment variable is set to /servers/wso2is-5.1.0-alpha
[2015-10-05 10:55:09,154] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2 Carbon...
[2015-10-05 10:55:09,155] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating System : Mac OS X 10.10.4, x86_64
[2015-10-05 10:55:09,155] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home : /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre
[2015-10-05 10:55:09,155] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version : 1.7.0_79
[2015-10-05 10:55:09,155] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM : Java HotSpot(TM) 64-Bit Server VM 24.79-b02,Oracle Corporation
[2015-10-05 10:55:09,156] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home : /servers/wso2is-5.1.0-alpha
[2015-10-05 10:55:09,156] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir : /servers/wso2is-5.1.0-alpha/tmp
[2015-10-05 10:55:09,156] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User : jsimon, en-US, America/New_York
[2015-10-05 10:55:09,259] WARN {org.wso2.carbon.core.bootup.validator.util.ValidationResultPrinter} - Carbon is configured to use the default keystore (wso2carbon.jks). To maximize security when deploying to a production environment, configure a new keystore with a unique password in the production server profile.
[2015-10-05 10:55:09,263] INFO {org.wso2.carbon.databridge.agent.thrift.AgentHolder} - Agent created !
[2015-10-05 10:55:09,279] INFO {org.wso2.carbon.databridge.agent.thrift.internal.AgentDS} - Successfully deployed Agent Client
[2015-10-05 10:55:09,405] WARN {org.wso2.carbon.identity.notification.mgt.NotificationMgtConfigBuilder} - Secret Resolver is not present. Will not resolve encryptions in config file
[2015-10-05 10:55:09,486] INFO {org.wso2.carbon.ldap.server.configuration.LDAPConfigurationBuilder} - KDC server is disabled.
[2015-10-05 10:55:12,869] INFO {org.wso2.carbon.user.core.ldap.ReadWriteLDAPUserStoreManager} - LDAP connection created successfully in read-write mode
[2015-10-05 10:55:13,180] INFO {org.wso2.carbon.registry.core.jdbc.EmbeddedRegistryService} - Configured Registry in 69ms
[2015-10-05 10:55:13,577] INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent} - Registry Mode : READ-WRITE
[2015-10-05 10:55:14,068] INFO {org.wso2.carbon.user.core.internal.UserStoreMgtDSComponent} - Carbon UserStoreMgtDSComponent activated successfully.
[2015-10-05 10:55:14,524] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Starting WSO2 Carbon...
[2015-10-05 10:55:14,524] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Operating System : Mac OS X 10.10.4, x86_64
[2015-10-05 10:55:14,524] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Home : /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/jre
[2015-10-05 10:55:14,524] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Version : 1.7.0_79
[2015-10-05 10:55:14,524] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java VM : Java HotSpot(TM) 64-Bit Server VM 24.79-b02,Oracle Corporation
[2015-10-05 10:55:14,524] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Carbon Home : /servers/wso2is-5.1.0-alpha
[2015-10-05 10:55:14,524] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - Java Temp Dir : /servers/wso2is-5.1.0-alpha/tmp
[2015-10-05 10:55:14,524] INFO {org.wso2.carbon.core.internal.CarbonCoreActivator} - User : jsimon, en-US, America/New_York
[2015-10-05 10:55:18,768] INFO {org.apache.catalina.startup.TaglibUriRule} - TLD skipped. URI: http://tiles.apache.org/tags-tiles is already defined
This is at the top of the log at DEBUG level:
JAVA_HOME environment variable is set to /Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home/
CARBON_HOME environment variable is set to /Users/jsimon/Documents/servers/wso2is-5.1.0-alpha
[2015-10-07 07:29:22,411] DEBUG {org.wso2.carbon.context.internal.CarbonContextDataHolder} - Started Setting up Authenticator Configuration
[2015-10-07 07:29:22,573] DEBUG {org.wso2.carbon.context.internal.CarbonContextDataHolder} - Completed Setting up Authenticator Configuration
[2015-10-07 07:29:22,574] DEBUG {org.wso2.carbon.context.internal.CarbonContextDataHolder} - Unload Tenant Task: org.wso2.carbon.context.internal.CarbonContextDataHolder$CarbonContextCleanupTask was registered.
[2015-10-07 07:29:22,574] DEBUG {org.wso2.carbon.context.internal.CarbonContextDataHolder} - there can be a possibility of the same class loading twice and then trying to reset the initial context factory builder
java.lang.RuntimeException: A queue manager instance has already been set.
at org.wso2.carbon.queuing.CarbonQueueManager.setInstance(CarbonQueueManager.java:47)
at org.wso2.carbon.context.internal.CarbonContextDataHolder.<clinit>(CarbonContextDataHolder.java:200)
at org.wso2.carbon.context.CarbonContext.getThreadLocalCarbonContext(CarbonContext.java:123)
at org.wso2.carbon.utils.logging.appenders.CarbonDailyRollingFileAppender$1.run(CarbonDailyRollingFileAppender.java:55)
at org.wso2.carbon.utils.logging.appenders.CarbonDailyRollingFileAppender$1.run(CarbonDailyRollingFileAppender.java:53)
at java.security.AccessController.doPrivileged(Native Method)
at org.wso2.carbon.utils.logging.appenders.CarbonDailyRollingFileAppender.subAppend(CarbonDailyRollingFileAppender.java:53)
at org.apache.log4j.WriterAppender.append(WriterAppender.java:162)
at org.apache.log4j.AppenderSkeleton.doAppend(AppenderSkeleton.java:251)
at org.apache.log4j.helpers.AppenderAttachableImpl.appendLoopOnAppenders(AppenderAttachableImpl.java:66)
at org.apache.log4j.Category.callAppenders(Category.java:206)
at org.apache.log4j.Category.forcedLog(Category.java:391)
at org.apache.log4j.Category.log(Category.java:856)
at org.apache.commons.logging.impl.Log4JLogger.warn(Log4JLogger.java:197)
at org.apache.axiom.util.stax.dialect.StAXDialectDetector.detectDialect(StAXDialectDetector.java:177)
at org.apache.axiom.util.stax.dialect.StAXDialectDetector.getDialect(StAXDialectDetector.java:162)
at org.apache.axiom.util.stax.dialect.StAXDialectDetector.getDialect(StAXDialectDetector.java:154)
at org.apache.axiom.om.util.StAXUtils$7.run(StAXUtils.java:518)
at java.security.AccessController.doPrivileged(Native Method)
at org.apache.axiom.om.util.StAXUtils.newXMLInputFactory(StAXUtils.java:495)
at org.apache.axiom.om.util.StAXUtils.getXMLInputFactory_perClassLoader(StAXUtils.java:566)
at org.apache.axiom.om.util.StAXUtils.getXMLInputFactory(StAXUtils.java:172)
at org.apache.axiom.om.util.StAXUtils.getXMLInputFactory(StAXUtils.java:137)
at org.apache.axiom.om.util.StAXUtils.createXMLStreamReader(StAXUtils.java:224)
at org.apache.axiom.om.util.StAXUtils.createXMLStreamReader(StAXUtils.java:218)
at org.apache.axiom.om.impl.builder.StAXOMBuilder.<init>(StAXOMBuilder.java:170)
at org.wso2.carbon.base.ServerConfiguration.init(ServerConfiguration.java:125)
at org.wso2.carbon.base.ServerConfiguration.forceInit(ServerConfiguration.java:216)
at org.wso2.carbon.base.internal.CarbonBaseActivator.initServerConfiguration(CarbonBaseActivator.java:68)
at org.wso2.carbon.base.internal.CarbonBaseActivator.start(CarbonBaseActivator.java:47)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl$1.run(BundleContextImpl.java:711)
at java.security.AccessController.doPrivileged(Native Method)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.startActivator(BundleContextImpl.java:702)
at org.eclipse.osgi.framework.internal.core.BundleContextImpl.start(BundleContextImpl.java:683)
at org.eclipse.osgi.framework.internal.core.BundleHost.startWorker(BundleHost.java:381)
at org.eclipse.osgi.framework.internal.core.AbstractBundle.resume(AbstractBundle.java:390)
at org.eclipse.osgi.framework.internal.core.Framework.resumeBundle(Framework.java:1176)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:559)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.resumeBundles(StartLevelManager.java:544)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.incFWSL(StartLevelManager.java:457)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.doSetStartLevel(StartLevelManager.java:243)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:438)
at org.eclipse.osgi.framework.internal.core.StartLevelManager.dispatchEvent(StartLevelManager.java:1)
at org.eclipse.osgi.framework.eventmgr.EventManager.dispatchEvent(EventManager.java:230)
at org.eclipse.osgi.framework.eventmgr.EventManager$EventThread.run(EventManager.java:340)
Can be due to some jars being corrupted. Check the md5 of your zip distribution (md5: f96f610d7549e0285766a314e375a9f0 ) and if it matches try extracting it again. For me it works on OS X 10.9 64-bit running jdk1.7.0_79
I had the same issue with 5.1.0.. I tried with Java 8 and WSO2 starts up fine after that.
You can download zip file of the WSO2 Identity Server 5.1.0 Alpha from[1].
Extract it and successfully started the server.
[1] https://github.com/wso2/product-is/releases
I have grails project with CodeNarc Plugin installed and generated xml report. Installed and configured SonarQube with following configurations and versions:
Grails 2.3.7
SonarQube server- 4.5
SonarQube Runner- 2.4
CodeNarc Plugin- 0.22
Sonar-project.properties file contains
#sonar-runner.properties
sonar.projectKey=key
sonar.projectName=Project Name
sonar.projectVersion=1.0
sonar.sources=src, grails-app/services, grails-app/controllers, grails-app/domain
sonar.tests=test/
sonar.language=grvy
sonar.sourceEncoding=UTF-8
sonar.groovy.codenarc.reportPath=target/codenarc/codeNarcXMLReport.xml
Generated CodeNarc XML report and added its report path in file.
Sonar runner analyse project but with zero issues
Sonar runner unable to index resources and throws warning for CodeNarc rules violations.
SonarQube Runner 2.4
Java 1.7.0_21 Oracle Corporation (64-bit)
Linux 3.11.0-26-generic amd64
INFO: Runner configuration file: /media/Others/softwares/sonar-runner-2.4/conf/sonar-runner.properties
INFO: Project configuration file: /media/Others/repo/project/sonar-project.properties
INFO: Default locale: "en_IN", source code encoding: "UTF-8"
INFO: Work directory: /media/Others/repo/project/./.sonar
INFO: SonarQube Server 4.5
11:20:57.146 INFO - Load global referentials...
11:20:57.356 INFO - Load global referentials done: 213 ms
11:20:57.367 INFO - User cache: /home/.sonar/cache
11:20:57.378 INFO - Install plugins
11:20:57.680 INFO - Install JDBC driver
11:20:57.688 INFO - Create JDBC datasource for jdbc:mysql://localhost:3306/sonar?useUnicode=true&characterEncoding=utf8
11:20:59.590 INFO - Initializing Hibernate
11:21:01.310 INFO - Load project referentials...
11:21:02.342 INFO - Load project referentials done: 1032 ms
11:21:02.342 INFO - Load project settings
11:21:03.193 INFO - Loading technical debt model...
11:21:03.218 INFO - Loading technical debt model done: 25 ms
11:21:03.222 INFO - Apply project exclusions
11:21:03.598 INFO - ------------- Scan project
11:21:03.603 INFO - Load module settings
11:21:04.228 INFO - Language is forced to grvy
11:21:04.230 INFO - Loading rules...
11:21:05.224 INFO - Loading rules done: 994 ms
11:21:05.260 INFO - Configure Maven plugins
11:21:05.537 INFO - Compare to previous analysis (2014-12-23)
11:21:05.557 INFO - Compare over 30 days (2014-11-23, analysis of 2014-11-10 17:20:47.0)
11:21:05.578 INFO - Compare to previous version (2014-10-30)
11:21:05.636 INFO - Loaded quality gate 'SonarQube way'
11:21:05.817 INFO - Base dir: /media/Others/repo/project/.
11:21:05.817 INFO - Working dir: /media/Others/repo/project/./.sonar
11:21:05.818 INFO - Source paths: src, grails-app/services, grails-app/controllers, grails-app/domain
11:21:05.818 INFO - Test paths: test
11:21:05.818 INFO - Source encoding: UTF-8, default locale: en_IN
11:21:05.818 INFO - Index files
11:21:06.276 INFO - 226 files indexed
11:21:44.020 INFO - Quality profile for grvy: Sonar way
11:21:44.404 INFO - Sensor QProfileSensor...
11:21:44.416 INFO - Sensor QProfileSensor done: 13 ms
11:21:44.416 INFO - Sensor CodeNarc...
11:21:44.593 WARN - No such rule in Sonar, so violation from CodeNarc will be ignored:
11:21:44.594 WARN - No such rule in Sonar, so violation from CodeNarc will be ignored:
11:21:44.595 WARN - No such rule in Sonar, so violation from CodeNarc will be ignored:
11:21:44.596 WARN - No such rule in Sonar, so violation from CodeNarc will be ignored:
11:21:44.599 WARN - Resource is not indexed. Ignoring violation org.sonar.api.rules.Violation#221
[resource=org.sonar.api.resources.File#4254e18d[key=<null>,deprecatedKey=grails-app/controllers/LoginController.groovy,path=<null>,
dir=grails-app/controllers,filename=LoginController.groovy,language=<null>],rule=Rule[id=427,name=Catch
Exception,key=org.codenarc.rule.exceptions.CatchExceptionRule,configKey=CatchException,plugin=grvy,severity=MINOR,isTemplate=false,status=READY,language=grvy,template=<null>],
message=The type Exception should not be caught,severity=<null>,lineId=93,cost=<null>,createdAt=<null>,switchedOff=false,
checksum=<null>,isNew=false,isManual=false,permanentId=<null>,personId=<null>]
11:21:44.602 WARN - Resource is not indexed. Ignoring violation org.sonar.api.rules.Violation#5e3666d9[resource=org.sonar.api.resources.File#459a60e1[key=<null>,
deprecatedKey=grails-app/controllers/LoginController.groovy,path=<null>,dir=grails-app/controllers,filename=LoginController.groovy,language=<null>],rule=Rule[id=431,name=Unused Method Parameter,key=org.codenarc.rule.unused.UnusedMethodParameterRule,configKey=UnusedMethodParameter,
plugin=grvy,severity=MINOR,isTemplate=false,status=READY,language=grvy,template=<null>],
message=Violation in class LoginController. Method parameter [newSignup] is never referenced in the method authComplete of class LoginController,severity=<null>,lineId=100,cost=<null>,createdAt=<null>,
switchedOff=false,checksum=<null>,isNew=false,isManual=false,permanentId=<null>,personId=<null>]
...
...
...
11:21:45.661 WARN - Resource is not indexed. Ignoring violation org.sonar.api.rules.Violation#6c95883d[resource=org.sonar.api.resources.File#4d23947c[key=<null>,deprecatedKey=test/unit/project/HomeControllerTests.groovy,
path=<null>,dir=test/unit/project,filename=HomeControllerTests.groovy,language=<null>],rule=Rule[id=643,name=Empty Method,key=org.codenarc.rule.basic.EmptyMethodRule,configKey=EmptyMethod,plugin=grvy,
severity=MINOR,isTemplate=false,status=READY,language=grvy,template=<null>],
message=Violation in class HomeControllerTests. The method tearDown is both empty and not marked with #Override,severity=<null>,lineId=121,cost=<null>,createdAt=<null>,switchedOff=false,checksum=<null>,
isNew=false,isManual=false,permanentId=<null>,personId=<null>]
11:21:45.661 INFO - Sensor CodeNarc done: 1245 ms
11:21:45.662 INFO - Sensor GroovySensor...
11:21:48.552 INFO - GMetrics completed: 1493ms
11:21:49.580 INFO - GMetrics completed: 941ms
11:21:51.285 INFO - GMetrics completed: 1601ms
11:21:51.561 INFO - GMetrics completed: 156ms
11:21:52.081 INFO - GMetrics completed: 488ms
11:21:52.167 INFO - Sensor GroovySensor done: 6505 ms
11:21:52.167 INFO - Sensor Groovy CoberturaSensor...
11:21:52.167 INFO - Analyzing Cobertura report: target/test-reports/cobertura/coverage.xml
11:21:52.955 INFO - Sensor Groovy CoberturaSensor done: 788 ms
11:21:52.956 INFO - Sensor ScmActivitySensor...
11:21:52.956 INFO - Trying to guess scm provider from project layout...
11:21:52.956 INFO - Found SCM type: git
11:21:52.958 INFO - Retrieve SCM blame information with encoding UTF-8...
11:21:55.580 INFO - Retrieve SCM blame information with encoding UTF-8 done: 2622 ms
11:21:55.581 INFO - Sensor ScmActivitySensor done: 2625 ms
11:21:55.585 INFO - Sensor InitialOpenIssuesSensor...
11:21:55.597 INFO - Sensor InitialOpenIssuesSensor done: 11 ms
11:21:55.597 INFO - Sensor ProjectLinksSensor...
11:21:55.607 INFO - Sensor ProjectLinksSensor done: 10 ms
11:21:55.608 INFO - Sensor VersionEventsSensor...
11:21:55.733 INFO - Sensor VersionEventsSensor done: 125 ms
11:21:55.733 INFO - Sensor FileHashSensor...
11:21:55.743 INFO - Sensor FileHashSensor done: 9 ms
11:21:55.743 INFO - Sensor CPD Sensor (wrapped)...
11:21:55.743 INFO - DefaultCpdEngine is used for grvy
11:21:55.751 INFO - Cross-project analysis disabled
11:21:56.330 INFO - Sensor CPD Sensor (wrapped) done: 587 ms
11:21:56.918 INFO - Execute decorators...
11:22:01.785 INFO - Store results in database
11:22:10.256 INFO - ANALYSIS SUCCESSFUL, you can browse http://localhost:9000/dashboard/index/project
11:22:10.392 INFO - Executing post-job class org.sonar.plugins.core.issue.notification.SendIssueNotificationsPostJob
11:22:10.393 INFO - Executing post-job class org.sonar.plugins.core.batch.IndexProjectPostJob
11:22:10.461 INFO - Executing post-job class org.sonar.plugins.dbcleaner.ProjectPurgePostJob
11:22:10.473 INFO - -> Keep one snapshot per day between 2014-11-25 and 2014-12-22
11:22:10.475 INFO - -> Keep one snapshot per week between 2013-12-24 and 2014-11-25
11:22:10.475 INFO - -> Keep one snapshot per month between 2009-12-29 and 2013-12-24
11:22:10.476 INFO - -> Delete data prior to: 2009-12-29
11:22:10.482 INFO - -> Clean project [id=225]
11:22:10.487 INFO - <- Clean snapshot 8702
INFO: ------------------------------------------------------------------------
INFO: EXECUTION SUCCESS
INFO: ------------------------------------------------------------------------
Total time: 1:15.303s
Final Memory: 26M/737M
INFO: ------------------------------------------------------------------------
I have installed all necessary plugins in SonarQube Server
After all configuration why these rules are getting ignored and zero issues generated for project ?
I have the same problem with getting ignored issues generated from codenarc report.
I found similar topic in sonarqube Nabble service that probably removing from codenarc report from path attributes every "grails-app/domain/", "grails-app/services/" etc. will resolve the problem, but this is only the source of the problem, there is nothing about how to do it automatically.
Below I attached the link to this post in the article.
http://sonarqube.15.x6.nabble.com/No-Issues-and-code-coverage-for-groovy-in-multi-language-project-with-SonarQube-4-2-tp5023761p5023806.html
We had this same problem. The issue surrounded SonarQube not being able to process violations in the CodeNarc report XML file. As shared in a previous answer, entries in the XML file that looks like the following:
...
<Package path='grails-app' totalFiles='54' filesWithViolations='46' priority1='10' priority2='92' priority3='610'/>
<Package path='grails-app/controllers' totalFiles='16' filesWithViolations='16' priority1='6' priority2='71' priority3='299'/>
<Package path='grails-app/controllers/com' totalFiles='16' filesWithViolations='16' priority1='6' priority2='71' priority3='299'/>
<Package path='grails-app/controllers/com/...' totalFiles='16' filesWithViolations='16' priority1='6' priority2='71' priority3='299'/>
...
will cause them to be ignored. As a work-around, we wrote a groovy script that strips out the "grails-app" and "grails-app/<folder>/" from the report file so that it looks like the following:
...
<Package path='com' totalFiles='16' filesWithViolations='16' priority1='6' priority2='71' priority3='299'/>
<Package path='com/...' totalFiles='16' filesWithViolations='16' priority1='6' priority2='71' priority3='299'/>
...
The script is run during our Jenkins builds after the report is generated and before the Sonar analysis is performed.
We are running SonarQube 4.5.1 (LTS) and using the version 1.0.1 of the Groovy plugin.
I follow the guide : http://www.highcharts.com/docs/export-module/setting-up-the-server
Windows : 7
JDK : 8.0.20
Maven : 3.2.3
Apache Tomcat : 8.0.12
Highcharts-export-web : Version f97fbcf5f0d8cc72942a3b680e0e2a187ba1aedf and v4.0.4
I put the war into the webapps folder and I start the server. The server does not start
I have tried on several versions (checkout from 5 November 2014 and the last tag v4.0.4). It produces the same output
I have tried jetty version too, and this is the same result.
Output of the startup.bat
05-Nov-2014 16:14:23.756 INFO [main] org.apache.catalina.core.AprLifecycleListen
er.init The APR based Apache Tomcat Native library which allows optimal performa
nce in production environments was not found on the java.library.path: C:\devtoo
ls\jdks\jdk1.8.0_20\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C
:\ProgramData\Oracle\Java\javapath;C:\devtools\Microchip\mplabc32\v2.02\bin;C:\d
evtools\Microchip\MPLAB C30\bin;C:\Windows\system32;C:\Windows;C:\Windows\System
32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;C:\Program Files (x86)\Micro
soft ASP.NET\ASP.NET Web Pages\v1.0\;C:\Program Files\Microsoft SQL Server\110\T
ools\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\;C:\Progra
m Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Serv
er\100\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\100\Tools\Binn\VSSh
ell\Common7\IDE\;C:\Program Files (x86)\Microsoft Visual Studio 9.0\Common7\IDE\
PrivateAssemblies\;C:\Program Files (x86)\Microsoft SQL Server\100\DTS\Binn\;C:\
Program Files (x86)\Common Files\Roxio Shared\DLLShared\;C:\Program Files (x86)\
Common Files\Roxio Shared\10.0\DLLShared\;C:\Program Files\Microsoft\Web Platfor
m Installer\;C:\Program Files (x86)\Microsoft Team Foundation Server 2013 Power
Tools\;C:\Program Files (x86)\Microsoft Team Foundation Server 2013 Power Tools\
Best Practices Analyzer\;C:\Program Files (x86)\Windows Kits\8.1\Windows Perform
ance Toolkit\;C:\devtools\Microchip\MPLAB C32 Suite\bin;C:\Program Files\Microso
ft SQL Server\120\Tools\Binn\;C:\devtools\Git\cmd;C:\devtools\Git\bin;C:\Program
Files (x86)\Microsoft SDKs\TypeScript\1.0\;C:\devtools\adt-bundle-windows-x86-2
0140624\sdk\tools;C:\devtools\apache-ant-1.9.4\bin;C:\devtools\jdks\jdk1.8.0_20\
bin;C:\Program Files\Symantec.cloud\PlatformAgent\;C:\devtools\apache-maven-3.2.
3\bin;;.
05-Nov-2014 16:14:24.006 INFO [main] org.apache.coyote.AbstractProtocol.init Ini
tializing ProtocolHandler ["http-nio-8080"]
05-Nov-2014 16:14:24.075 INFO [main] org.apache.tomcat.util.net.NioSelectorPool.
getSharedSelector Using a shared selector for servlet write/read
05-Nov-2014 16:14:24.078 INFO [main] org.apache.coyote.AbstractProtocol.init Ini
tializing ProtocolHandler ["ajp-nio-8009"]
05-Nov-2014 16:14:24.081 INFO [main] org.apache.tomcat.util.net.NioSelectorPool.
getSharedSelector Using a shared selector for servlet write/read
05-Nov-2014 16:14:24.082 INFO [main] org.apache.catalina.startup.Catalina.load I
nitialization processed in 651 ms
05-Nov-2014 16:14:24.110 INFO [main] org.apache.catalina.core.StandardService.st
artInternal DÚmarrage du service Catalina
05-Nov-2014 16:14:24.110 INFO [main] org.apache.catalina.core.StandardEngine.sta
rtInternal Starting Servlet Engine: Apache Tomcat/8.0.12
05-Nov-2014 16:14:24.158 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployWAR DÚploiement de l'archive C:\devtools\apache-tomcat-8.0.12
-Highcharts\webapps\highcharts-export-web.war de l'application web
05-Nov-2014 16:14:24.177 WARNING [localhost-startStop-1] org.apache.catalina.sta
rtup.SetContextPropertiesRule.begin [SetContextPropertiesRule]{Context} Setting
property 'antiJARLocking' to 'true' did not find a matching property.
[ERROR] [localhost-startStop-1 04:14:26] (ContextLoader.java:initWebApplicationC
ontext:307) Context initialization failed
**java.lang.IllegalArgumentException**
at org.springframework.asm.ClassReader.(Unknown Source)
at org.springframework.asm.ClassReader.(Unknown Source)
at org.springframework.asm.ClassReader.(Unknown Source)
at org.springframework.core.type.classreading.SimpleMetadataReader.(SimpleMetadataReader.java:52)
at org.springframework.core.type.classreading.SimpleMetadataReaderFactor
y.getMetadataReader(SimpleMetadataReaderFactory.java:80)
at org.springframework.core.type.classreading.CachingMetadataReaderFacto
ry.getMetadataReader(CachingMetadataReaderFactory.java:101)
at org.springframework.core.type.classreading.SimpleMetadataReaderFactor
y.getMetadataReader(SimpleMetadataReaderFactory.java:76)
at org.springframework.context.annotation.ConfigurationClassParser.getIm
ports(ConfigurationClassParser.java:298)
at org.springframework.context.annotation.ConfigurationClassParser.getIm
ports(ConfigurationClassParser.java:300)
at org.springframework.context.annotation.ConfigurationClassParser.getIm
ports(ConfigurationClassParser.java:300)
at org.springframework.context.annotation.ConfigurationClassParser.doPro
cessConfigurationClass(ConfigurationClassParser.java:230)
at org.springframework.context.annotation.ConfigurationClassParser.proce
ssConfigurationClass(ConfigurationClassParser.java:153)
at org.springframework.context.annotation.ConfigurationClassParser.parse
(ConfigurationClassParser.java:130)
at org.springframework.context.annotation.ConfigurationClassPostProcesso
r.processConfigBeanDefinitions(ConfigurationClassPostProcessor.java:285)
at org.springframework.context.annotation.ConfigurationClassPostProcesso
r.postProcessBeanDefinitionRegistry(ConfigurationClassPostProcessor.java:223)
at org.springframework.context.support.AbstractApplicationContext.invoke
BeanFactoryPostProcessors(AbstractApplicationContext.java:630)
at org.springframework.context.support.AbstractApplicationContext.refres
h(AbstractApplicationContext.java:461)
at org.springframework.web.context.ContextLoader.configureAndRefreshWebA
pplicationContext(ContextLoader.java:383)
at org.springframework.web.context.ContextLoader.initWebApplicationConte
xt(ContextLoader.java:283)
at org.springframework.web.context.ContextLoaderListener.contextInitiali
zed(ContextLoaderListener.java:112)
at org.apache.catalina.core.StandardContext.listenerStart(StandardContex
t.java:4751)
at org.apache.catalina.core.StandardContext.startInternal(StandardContex
t.java:5175)
at org.apache.catalina.util.LifecycleBase.start(LifecycleBase.java:150)
at org.apache.catalina.core.ContainerBase.addChildInternal(ContainerBase
.java:724)
at org.apache.catalina.core.ContainerBase.addChild(ContainerBase.java:70
0)
at org.apache.catalina.core.StandardHost.addChild(StandardHost.java:714)
at org.apache.catalina.startup.HostConfig.deployWAR(HostConfig.java:919)
at org.apache.catalina.startup.HostConfig$DeployWar.run(HostConfig.java:
1704)
at java.util.concurrent.Executors$RunnableAdapter.call(Unknown Source)
at java.util.concurrent.FutureTask.run(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor.runWorker(Unknown Source)
at java.util.concurrent.ThreadPoolExecutor$Worker.run(Unknown Source)
at java.lang.Thread.run(Unknown Source)
05-Nov-2014 16:14:26.930 SEVERE [localhost-startStop-1] org.apache.catalina.core
.StandardContext.startInternal Error listenerStart
05-Nov-2014 16:14:27.028 SEVERE [localhost-startStop-1] org.apache.catalina.core
.StandardContext.startInternal Erreur de dÚmarrage du contexte [/highcharts-expo
rt-web] suite aux erreurs prÚcÚdentes
05-Nov-2014 16:14:27.040 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployWAR Deployment of web application archive C:\devtools\apache-
tomcat-8.0.12-Highcharts\webapps\highcharts-export-web.war has finished in 2á882
ms
05-Nov-2014 16:14:27.041 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployWAR DÚploiement de l'archive C:\devtools\apache-tomcat-8.0.12
-Highcharts\webapps\richCharts.war de l'application web
05-Nov-2014 16:14:28.470 INFO [localhost-startStop-1] com.sun.faces.config.Confi
gureListener.contextInitialized Initializing Mojarra (1.2_13-b01-FCS) for contex
t '/richCharts'
05-Nov-2014 16:14:28.476 WARNING [localhost-startStop-1] com.sun.faces.config.Co
nfigureListener.contextInitialized JSF1059: WARNING! The com.sun.faces.verifyOb
jects feature is to aid developers not using tools. It shouldn''t be enabled if
using an IDE, or if this application is being deployed for production as it wil
l impact application start times.
log4j:WARN No appenders could be found for logger (org.ajax4jsf.renderkit.Chamel
eonRenderKitFactory).
log4j:WARN Please initialize the log4j system properly.
05-Nov-2014 16:14:29.403 INFO [localhost-startStop-1] com.sun.faces.spi.Injectio
nProviderFactory.createInstance JSF1048: PostConstruct/PreDestroy annotations pr
esent. ManagedBeans methods marked with these annotations will have said annota
tions processed.
05-Nov-2014 16:14:31.062 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployWAR Deployment of web application archive C:\devtools\apache-
tomcat-8.0.12-Highcharts\webapps\richCharts.war has finished in 4á020 ms
05-Nov-2014 16:14:31.064 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory DÚploiement du rÚpertoire C:\devtools\apache-tomcat
-8.0.12-Highcharts\webapps\docs de l'application web
05-Nov-2014 16:14:31.088 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deployment of web application directory C:\devtools
\apache-tomcat-8.0.12-Highcharts\webapps\docs has finished in 24 ms
05-Nov-2014 16:14:31.088 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory DÚploiement du rÚpertoire C:\devtools\apache-tomcat
-8.0.12-Highcharts\webapps\examples de l'application web
05-Nov-2014 16:14:31.525 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deployment of web application directory C:\devtools
\apache-tomcat-8.0.12-Highcharts\webapps\examples has finished in 436 ms
05-Nov-2014 16:14:31.525 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory DÚploiement du rÚpertoire C:\devtools\apache-tomcat
-8.0.12-Highcharts\webapps\host-manager de l'application web
05-Nov-2014 16:14:31.566 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deployment of web application directory C:\devtools
\apache-tomcat-8.0.12-Highcharts\webapps\host-manager has finished in 41 ms
05-Nov-2014 16:14:31.567 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory DÚploiement du rÚpertoire C:\devtools\apache-tomcat
-8.0.12-Highcharts\webapps\manager de l'application web
05-Nov-2014 16:14:31.595 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deployment of web application directory C:\devtools
\apache-tomcat-8.0.12-Highcharts\webapps\manager has finished in 28 ms
05-Nov-2014 16:14:31.596 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory DÚploiement du rÚpertoire C:\devtools\apache-tomcat
-8.0.12-Highcharts\webapps\ROOT de l'application web
05-Nov-2014 16:14:31.620 INFO [localhost-startStop-1] org.apache.catalina.startu
p.HostConfig.deployDirectory Deployment of web application directory C:\devtools
\apache-tomcat-8.0.12-Highcharts\webapps\ROOT has finished in 25 ms
05-Nov-2014 16:14:31.626 INFO [main] org.apache.coyote.AbstractProtocol.start St
arting ProtocolHandler ["http-nio-8080"]
05-Nov-2014 16:14:31.637 INFO [main] org.apache.coyote.AbstractProtocol.start St
arting ProtocolHandler ["ajp-nio-8009"]
05-Nov-2014 16:14:31.640 INFO [main] org.apache.catalina.startup.Catalina.start
Server startup in 7558 ms
Do you have a stable version which does not contain this problem ?