Error Odatasource editor System.Net.HttpWebresponse - ssis

Hope someone can help me on this. I've created a SSIS package with ODatasource where the feed URL used to work fine couple of days ago. But now it is throwing the following exception:
Cannot access a disposed object. Object name: 'System.Net.HttpWebresponse'.
Anyone encountered this error before? Thanks !

Related

Circular structure to JSON when deploying

Recently, code that I wrote was being deployed to our server, and an error was thrown during deployment that would appear to be my fault.
TypeError: Converting circular structure to JSON
--> starting at object with constructor 'SourceFileObject'
property 'statements' -> object with constructor'Array'
index0 -> object with constructor 'NodeObject'
---property 'parent' closes the circle
at stringify(<anonymous>)
at writeChannelMessage (node:internal/child_process/serialization: 127:20)
at process.target.send(node:internal/child_process:819:17)
at process.target.send(node:internal/child_process:719:19)
at process.send(/*project*/*projectname*/node_modules/pm2/lib/ProcessContainer.js:51:21)
at process.uncaughtListener(/*project*/*projectname*/node_modules/pm2/lib/ProcessContainer.js:275:19
at process.emit(node:events:402:35)
at process.emit(node:domain:475:12)
at process.emit.sharedData.processEmitHook.installedValue [as emit] (/*project*/*projectname*/node_modules/pm2/node_modules/#cspotcode/source-map-support/source-map-support.js745:40)
at process_fatalException(node:internal/process/execution:164:25)
I have been told to fix this, but I can't reproduce any error in my local. I can't post the code, but it is an express backend with a few apis. I know what a circular reference is, and I don't believe I have any in my code, so, just curious if anyone can help me narrow my search at all. Any advice or help would be greatly appreciated.

WindowsError: exception: access violation reading 0x00007FFC00000000

I am running a program that uses Trace32 and when I run the program I error at the tapAccessShiftRaw method in trace32.py (this comes in the trace32 install) and get the error above. I have been looking around at some different posts related to this issues and tried things that are mentioned in posts such as this: Python: WindowsError: exception: access violation reading 0x00000000
or
"WindowsError: exception: access violation..." - ctypes question
But unfortunately none of these solutions seem to help. I'm running this on Windows 10. Any advice on how I can debug this issue would be really appreciated.

Error: VB runtime is not loaded

Edited version, after suggestion from community:
In a Windows 8.1 Phone project (Part of a VB.Net Solution with also a Store app and a Portable Class Library) I get this error message:
Call not possible because VB Runtime is not loaded.
but as far as I can trace the code keeps running in spite of this. Until... eventually an error pops up, telling me that
Could not find Windows Runtime type 'Windows.foundation'
What I have found so far on this subject seems to have a relation with Silverlight and very old versions of VB Runtime. Nothing recent.
Further on during execution in the error trap the following explanation is given:
at System.StubHelpers.WinRTTypeNameConverter.GetTypeFromWinRTTypeName(String typeName, Boolean& isPrimitive)
at System.StubHelpers.SystemTypeMarshaler.ConvertToManaged(TypeNameNative* pNativeType, Type& managedType)
at Windows.UI.Xaml.Controls.Frame.Navigate(Type sourcePageType)
at Dossier365.Mobile.Behaviors.MenuTegelClickAction.ReageerOpMenuKeuze(Object sender, Object parameter).
I have attached a screenshot with the different messages. The Store App runs fine, based on the same PCL.
EDIT: after suggestions below: added DirectCast:
Now a new error message appears: I have no clue what goes on here or moreover: how to overcome this situation. My attempts so far have not lead to a workable solution.
Anyone with a good suggestion or solution?

Easeljs 'createPattern' on 'CanvasRenderingContext2D Issue

I am developing game using easeljs frame work i am getting following error.
Uncaught TypeError: Failed to execute 'createPattern' on 'CanvasRenderingContext2D': No function was found that matched the signature provided.
Any One please help me.
Thanks in advance
manoj kumar

ASP.NET MVC: “An internal error occurred.” when loading certificate bytes with X509Certificate2

I have already spent a few hours to resolve this error. The weird thing is when I use this libraries independently, it works absolutely fine but when I integrate them with my ASP .NET MVC website, it start throwing the following exception. I have also used MachineKeySet flag based on suggestion here but still no luck. Could anyone please help me to get rid of this exception. Thanks.
An internal error occurred.
Description: An unhandled exception
occurred during the execution of the
current web request. Please review the
stack trace for more information about
the error and where it originated in
the code.
Exception Details:
System.Security.Cryptography.CryptographicException:
An internal error occurred.
Source Error:
Line 194: if
(string.IsNullOrEmpty(p12FilePassword))
Line 196: certificate = new X509Certificate2(p12FileBytes, "", X509KeyStorageFlags.MachineKeySet);
Line 197: else
I found the solution here. Looks like a known issue. I used X509KeyStorageFlags.MachineKeySet | X509KeyStorageFlags.PersistKeySet | X509KeyStorageFlags.Exportable flags together and problem disappeared. Other solution is to change the identity of applicationpool to LOCALSERVICE.