I moved to the latest stable build 701 , and I am getting this error.
Note that am moving up from the previous stable build and have not imported the database.
any ideas why?
Related
I'm trying to create a rabbitmq client for a remote server with react-native. I found multiple packages for that ( react-native-rabbitmq and react-native-amqp ), both of them don't work and give the same error :
A problem occurred evaluating project ':react-native-rabbitmq'.
> Could not find method compile() for arguments [directory 'libs'] on object of type
org.gradle.api.internal.artifacts.dsl.dependencies.DefaultDependencyHandler.
These two are the only packages that give me this error, tried to add and delete other package and that works fine. I also tried to change gradle version to older and newer ones ( also did this with package versions ). Wiping user data from virtual device and created new one didn't work neither. Same with deleting and recreating node_modules.
What am i doing wrong ?
I tried looking for some descriptive answer but didn’t found one.
What I did
Upgraded NserviceBus from 5x to 7x
This implicitly upgraded nugets:
NserviceBus.RavenDb (3x to 5x)
RavenDb.Client (3.0 to 3.5.5)
Raven.Abstractions (3.5.5)
RavenDb client build is 35247. So cannot upgrade RavenDbClient nuget to higher version.
Error:
RunTime error. "System.MissingMethodException: Method not found: Raven.Abstractions.Data.BatchResult"
The service handling messages is also having some already processed RavenMigrations (inheriting from Migration). I tried to test them (by changing id and find out that Migrations crash with some error as shown in image underneath:
Scratching my head on this error for a while now. Any hints what could be wrong?
Note: This error was not happining with RavenDb.Client nuget 3.0
After upgrading to VS 2017 15.9.2 i get the following error when trying to save the changes after using the TableAdapter Configuration Wizard.
"Could not load file or assembly 'Microsoft.SqlServer.Types, Version=15.0.0.0 ......... Could not find the file"
If I edit the dataset using the designer and try to add a Column to a tableadapter, I get the same error.
Have no errors running the project, its only the designer that does not work.
This error persists even if I start a new project.
Checking under "C:\Windows\assembly", I only have version 12 and 13 installed. However, checking nuget, the latest version is 14.0.1016.290?
How can i change the version the wizard/designer is using? Or where can I get the version 15?
In drupal 7, website I am using search API, and trying to index data, getting error
An error occurred while trying to retrieve additional information from the Solr server: "500" Status: PWC6033: Unable to compile class for JSP PWC6197: An error occurred at line: 41 in the jsp file: /admin/stats.jsp PWC6199: Generated servlet error: The type java.util.Map$Entry cannot be resolved. It is indirectly referenced from required .class files org.apache.jasper.JasperException: PWC6033: Unable to compile class for JSP PWC6197: An error occurred at line: 41 in the jsp file: /admin/stats.jsp PWC6199: Generated servlet error: The type java.util.Map$Entry cannot be resolved. It is indirectly referenced from required .class files at org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:123) at org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:296) at org.apache.jasper.compiler.Compiler.generateClass(Compiler.java:376) at org.apache.jasper.compiler.Compiler.compile(Compiler.java:437) at org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:608) at org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:360) at org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:486) at org.apache.jasper.servlet.JspServlet.service(JspServlet.java:380) at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
Granted I am using ApacheSolr rather than Search API, but I think this issue may not be Drupal module dependent. I had this problem locally when trying to use either Solr 3.5.0 or Solr 3.6.2 on my mac. When I switched to using Solr 4.9.1 this issue went away. I downloaded Solr 4.9.1, and placed it outside the root of my drupal install. I then copied the files from
[my-site]/sites/all/modules/contrib/apachesolr/solr-conf/solr-4.x to [wherever you put the solr download]/solr-4.9.1/example/solr/collection1/conf (the file structure for the conf files looks different for solr 4 and solr 3). Then start solr as usual - from within solr-4.9.1/example run java -jar java.jar
I get errors from both build and website precompile on App Harbor that seem to originate from multiple versions of the C# dynamic assemblies. They both start with warnings that look like:
2>CSC : warning CS1685: The predefined type 'System.Runtime.CompilerServices.CallSite' is defined in multiple assemblies in the global alias; using definition from 'd:\temp\qb3ydb5o.xoq\input\packages\IronJS.Core.0.2.0.1\lib\net40\Microsoft.Scripting.Core.dll' [D:\temp\qb3ydb5o.xoq\input\...csproj]
The build passes, but website precompile has these warnings but fails:
(0): error CS0656: Missing compiler required member 'Microsoft.CSharp.RuntimeBinder.Binder.InvokeMember'
d:\temp\qb3ydb5o.xoq\output\_PublishedWebsites\...cshtml(4): error CS1969: One or more types required to compile a dynamic expression cannot be found. Are you missing a reference?
I wonder if it has anything to do with how IronJS is packaged? Can someone help me troubleshoot this error?
I fixed this by removing references to Microsoft.Scripting.Core and Microsoft.Scripting.ExtensionAttribute. These were added by the IronJS NuGet package. I still have AppHarbor build errors, but those are because AppHarbor isn't doing a clean build (different problem).
Edit: I submitted an issue with IronJS: https://github.com/fholm/IronJS/issues/92