I'm using WebStorm for development and working with React Native application. I use GraphQL, however, the IDE is continuously giving multiple errors:
tried to use an undeclared directive
The field type 'AWSDateTime' is not present when resolving
Any suggestions on configuration options?
Related
An error sometimes occurs when using the Tomcat plugin for Visual Studio Code on an AWS Cloud9 instance, which runs as follows: TypeError: Cannot set property 'readableListening' of undefined.
Starting the server is impossible without disabling the plugin, reloading the window and re-enabling the plugin.
Does anyone know of a proper fix for this issue? It would be greatly appreciated.
I cloned a .NET core web application project from a git repository I haven't worked on in awhile onto a new computer. Although I'm not getting any errors in Visual Studio 2017, when I try to run the program locally I get the error page cited below in the browser.
Does anyone have any suggestions as to where to look for problems or settings I should change?
HTTP Error 502.5 - Process Failure
I fixed the issue. I needed to modify my visual studio install to include .NET Core 1.0-1.1 development tools for web.
I found that the DLL name must not contain a space. For example the dll name is "my own web api.dll" and then you will get the above error message as well.
Check if your target server has got correct version of core hosting bundles installed and correct values in web.config.
https://www.danielcrabtree.com/blog/400/how-to-fix-iis-http-error-502-5-in-asp-net-core
Check if your dll file name contains space in it. If yes, remove all spaces in it via assembly name in your project property of visual studio.
I'm working with an older webservice and updating it to coincide with our new system. The previous system using SSMS for databases while the new system is using Oracle databases.
The web service is written in VB (potentially VB6) and ran on IIS to a custom built UI. I'm just looking to update it to look for the correct fields and use the correct query for the new Oracle DBs.
The problem I'm running into is that Microsoft has deprecated the Oracle classes, so trying to use classes like OracleCommand and OracleConnection won't work. Instead, we are opting for an Oracle DLL, specifically Oracle.ManagedData.Access but with IIS compiling the VB code on run, it doesn't find the DLL and causes an error.
Any suggestions on how to get a DLL into the ISS compiler at runtime?
The error I am getting is a Compiler Error.
"Compilation Error
Description: An error occurred during the compilation of a resource required to service this request. Please review the following specific error details and modify your source code appropriately.
Compiler Error Message: BC30002: Type 'OracleCommand' is not defined."
Thanks in advance.
I am using WebStorm IDE. I need to know how to integrate flow with WebStorm.
I tried the steps given in this blog post, but it is not showing hints or errors.
I've put together an experimental plugin integrating Flow error reports into IDEA/WebStorm as error annotations:
https://github.com/dsilva/webstorm-plugin-flow-typecheck/releases
See also Flow in JetBrains/IntelliJ IDEA
I got the following two errors when I open Sitecore 6.3 website in Visual Studio 4.0:
Error 1 The virtual path
'/sitecore/shell/Applications/Analytics/ReportRunner/DateSelector.ascx'
maps to another application, which is not allowed.
Error 2 Unknown
server tag 'ds:DateSelector'.
I simply install Sitecore 6.3 (website save into c:/inetpub/wwwroot/sitecoresite/website). When I open this site in Visual Studio 4.0, it shows error.
Can any body tell to me how can I open this or what mistake did I make?
As far as I understand your question, you get the error when you browse the newly installed Sitecore website, which is set up to run under ASP.NET 4.0 application pool. If that's the case, then I should inform you that it is supported to run Sitecore under ASP.NET 4.0 application pools starting from version 6.4.0.
So, you have two options here:
setup your application pool to use ASP.NET 2.0 (make sure .NET 2.0 is installed)
upgrade a Sitecore instance to the 6.4.0+ (which might not be acceptable)
Hope this helps.
I'm not sure if you are having issues because of the way you are opening the project, there are a few issues if you open it as a File-System website project you will want to create a Web Application Project and go from there.
You can look at this blog post :
Simplify Sitecore Visual Studio Project Creation (or the previous version) for information on how to setup a Visual Studio Project correctly for Sitecore.
I actually think this might just be as simple as a missing tilde. So rather having
/sitecore/shell/Applications/Analytics/ReportRunner/DateSelector.ascx
you should have
~/sitecore/shell/Applications/Analytics/ReportRunner/DateSelector.ascx