Managed refers to code that requires and will only execute under the control of a Common Language Runtime (CLR). Any code written in C# or Visual Basic .NET is managed code.
0
votes
0answers
8 views
ServiceContract Interfaces implemented by none-WCF deployments
I have a .NET Library that I'm using as a CORE Library for my various applications, both web and desktop.
It's made up of Classes, Interfaces, and Collections that inherit from Generic ...
0
votes
0answers
35 views
compare 2 managed object addresses in unmanaged code
breaking my head to get solution to a problem,
I need to compare 2 managed object in unmanaged code.
i.e
compare if I already accessed to managed object,the compaction is in unmanaged code.
my ...
1
vote
0answers
14 views
On Amazon AWS services, is there a way to get Heroku-like managed EC2 instances?
Is there a way to get Heroku-like managed EC2 instance on AWS where upgrading to the latest system packages are done for me? Basically, I can still get a root-shell if I want, but otherwise, all the ...
0
votes
0answers
53 views
Passing a struct by reference from managed to unmanaged code?
my struct looks like this in c code:
typedef struct _REQUEST {
char D [_D_MAX+1];
char M [_M_MAX+1];
char T [_T_MAX+1];
char ClRef [_CL_REF_MAX+1];
char load [_LOAD_MAX];
...
-1
votes
0answers
54 views
C# pass float array to managed c++ for evaluation [closed]
I want to pass c# float array to managed c++ function and evaluate it.
c++ code:
void Variant::CopyToFloats(array<float>^ dst)
{
unsigned int n = this->data_uint8->Length;
...
1
vote
1answer
21 views
ServiceStack + 3rd Party COM Inteop + Context disconnected exception
I'm getting Context Disconnected errors when testing my ServiceStack service. I assume it's due to failing race conditions between the GC for the COM object's response callback thread, my ServiceStack ...
0
votes
1answer
64 views
How to send a struct by ref containing a string from C# to unmanaged C++ library
I need to send a struct from C# managed code to a C library. The C library will populate the values in the struct. I have been trying to pass the struct as a reference so that the C# code will get ...
0
votes
0answers
14 views
take value befor submit the form
So I summarize my problem is to arrive at a file upload in a well-determined format. eg save as format C: \ PDF \ reference_compot.pdf
I have added a component interface with inputtexts.
I type the ...
0
votes
0answers
32 views
Hibernate: Merging Two Managed Entities
What is the most elegant/correct way of merging two managed (persistent) objects of the same kind with updating references to the merged object and dropping one object?
Consider the following ...
0
votes
1answer
36 views
Stuck on calling convention calling Managed CLI method from unmanaged C++
I am trying to call a managed method from unmanaged code. However, the managed code is requiring that I use the '(__clrcall) calling convention, and my unmanaged C++ code refuses to let me use the ...
0
votes
1answer
57 views
How to pass an integer “pointer” from C# to managed CLI C++
This should be easy (and it is in C++) but I cannot find the right syntax to perform the following task:
In C# I have an integer 'result' that I want to pass to a managed C++ function.
In the ...
0
votes
0answers
63 views
How to link managed code DLL into unmanaged/Native c++ code
Calling managed code from native code
Have a legacy native c++ software and want to add new features using managed code.
Read about lot of interop discussion, which mainly focus on calling native ...
-2
votes
0answers
7 views
Managed Server solutions with pre-installed Atlassian Software [closed]
My goal is to get a managed server loaded with a git repo and a bunch of Atlassian Software (eg jira, confluence, stash, fisheye, etc) and nightly backups. Since we are a startup we don't have a ton ...
1
vote
0answers
30 views
Bitmap file Integrity/Validity checking to confirm completion of Save Progress
Heyo,
I'm trying to find out if the Save-Progress of a bitmap file is completed, can't use the lock state or UNC Journal for it.. And heres why:
Running a FileSystemWatcher i detect file creations ...
0
votes
2answers
95 views
How do I marshal a pointer to a series of null-terminated strings in C#?
I need some help with the following. I've got a c++ API (no access to source) and I'm struggling with the methods returning char* attributes, or returned structures containing char* attributes. ...
1
vote
0answers
34 views
appointment in the Outlook Calendar
I am using VB.Net and EWS Managed API to create appointments in Exchange 2010. When i call the "Save" method, an appointment is not created on the first machine but when i use the same Code on the ...
0
votes
0answers
120 views
Drupal 7 form managed file default value not working
I'm using druapl 7 form to allow users to upload images for a slideshow. The managed file is working great to upload and save the files and I can see the entries in the database. All is good when ...
0
votes
2answers
59 views
Is System.Data.SqlClient code managed code?
Are the queries executed in a C# progamm using System.Data.SqlClient namespace cosnidered managed or umanaged code?
Every time the connection is closed , (conn.Close() method is used) does the ...
0
votes
0answers
88 views
Managed DirectX 9.0c: Using dynamically created texture with a shader
I am very new to DirectX and 3D graphics programming in general, and I find myself in a position of having to expand some previously written Managed DirectX code.
To put it simply, we have many 3D ...
8
votes
2answers
162 views
Scratch memory in a managed environment
I'm working on a fluid simulation in C#. Each cycle I need to calculate the velocity of the fluid at discrete points in space. As part of that calculation, I need a few tens of kilobytes for scratch ...
3
votes
1answer
33 views
How can I programmatically determine if a DLL is managed or unmanaged?
How can I, in a program, determine if a DLL is managed or unmanaged code? We're using this code to make sure all of our managed DLLs are MSIL. But it throws an exception on unmanaged DLLs so I need a ...
0
votes
1answer
175 views
JSF managedbean has variables with different scope
I have some variables in JSF managedbean with different scopes (that I feel).
In the following snippet, userTable is used in both login() and register() method.
But roleList is used only in register() ...
0
votes
1answer
131 views
Threadpool queueuserworkitem with many threads
Heads up: I am not very familiar with working with threadpool, which might be obvious from the following code. I am under the impression that I could push many values into this queue and then it would ...
2
votes
1answer
85 views
Cannot inject bean into JSF managed bean with specific name in spring
In the following snippet, when I give the @ManagedBean a specific name, userService and authenticationService are not injected. But if I use only @ManagedBean without name, the injection works fine. ...
0
votes
0answers
489 views
The given path's format is not supported
Foreach(Item item in FindItemResults)
{
byte[] ContentBytes;
MimeContent mc;
item.Load(new PropertySet(ItemSchema.MimeContent));
mc = item.MimeContent;
ContentBytes = mc.Content;
item.Load();
...
4
votes
1answer
141 views
Pass string from unmanaged code to managed
I have a problems with passing string from unmanaged code to managed.
In my unmanaged class (unmanagedClass.cpp) I have a pointer to function from managed code:
TESTCALLBACK_FUNCTION testCbFunc;
...
2
votes
1answer
108 views
How can I use a .net assembly from another application's bin directory if it's not in the GAC?
I'm developing a managed C++ application that will interface with another company's product. Their product is .net based, and the main API to use comes from a .net assembly, called foo.dll.
My ...
0
votes
3answers
127 views
Set post build action for all projects in a solution
is there any way of setting and/or changing the post build event/action for all projects in an entire solution? I have some solutions with up to 50 projects in it which all need the same post build ...
1
vote
0answers
213 views
How to passing byte[] of data from native ios (plugin code) to c# unity?
I have this native code in ios plugin:
int _mergeImage(const unsigned char* imageBackground,
int backgroundArraySize, int backgroundWidth, int backgroundHeight,
const unsigned ...
0
votes
2answers
87 views
Managed and unmanaged code error C3699
I am working on a game which uses C# and C++. Classes for models are written in C# and levels structure is stored in XML files. When I want read it in C++ and want to build project I have this strange ...
0
votes
1answer
182 views
Oracle Managed ODP.NET can't find tnsnames.ora
My managed ODP.net webapp works locally but when deploying it to a server, it fails with the error:
"TNS:listener does not currently know of service requested in connect descriptor"
From looking ...
0
votes
1answer
611 views
Allocating array in unmanaged C++ code after passing IntPtr pointer in C#, Marshaling Types
I'm trying to implement some project involving marshaling arrays between managed C# and unmanaged C++ codes. I'm facing a problem and none of the solutions found by me on web seem to work. I would ...
0
votes
1answer
112 views
add managed C++ to a C# GUI
The new Visual Studio 2012 has removed the Windows Forms Application (WFA) as a Template. The reason for this has been stated by MS to be that VC++ is not the best way to do a GUI. So for maximum ...
5
votes
1answer
183 views
Any ideas how to integrate F# code with native C++?
I want to implement one (maybe crazy) thing. I want to use some F# code in native C++. More precisely, I want to write functional data structures in F# and use it in C++ code.
I have no idea how can ...
0
votes
2answers
907 views
'Autodiscover service couldn't be located' when trying to access Exchange 2010 account with EWS MANAGED API
I am using Auto discover service Url for a specified e-mail address.
ExchangeService Service = new ExchangeService(ExchangeVersion.Exchange2010);
Service.Credentials = new ...
0
votes
1answer
180 views
How to pass array of bitmaps from managed C++ to unmanaged C++
I currently have an array of System::Drawing::Bitmaps in a dll in managed C++ code. I would like to be able to call into the method in the managed C++ from unmanaged(native) C++. The question is how ...
0
votes
1answer
171 views
Managed C dll calling C# dll, FileNotFoundException
I have an application environment that is essentially a plug in where:
host application calls into unmanaged c++ dll which calls into managed C++ dll which calls into C# dll
This is a fairly known ...
0
votes
1answer
26 views
'Kinecter::getCloud' : this functon cannot be compiled as managed, consider using #pragma unmanaged
(The "Functon" is a compiler typo not mine :P)
my question,
What I need to do, is get the pointcloud(XYZRGBA) data from pcl unmanaged C++, to C#.
I do this with the following code:
Unmanaged.cpp ...
0
votes
1answer
115 views
C++ vector with managed objects
Hello I need to have vector (or some other data structure, which is similar) filled with managed objects.
Usually I can write:
std::vector<Object> vect;
But I cannot use:
...
0
votes
1answer
69 views
Determine which .NET assembly calling unmanaged code
I have .NET assembly that calling functions from unmanaged DLL written in C (without CLR support). Is there any way that unmanaged DLL can determine which assembly calls their code? I'm looking for ...
0
votes
1answer
245 views
WM_COPYDATA from c++ to C#
I'm developing 4 applications (using founded examples in internet) with Visual Studio 2010: 2 in C++ MFC (named: SenderCpp and ReceiverCpp) and 2 in C# (named: SenderCsh and ReceiverCsh) to test the ...
0
votes
1answer
70 views
NotSupportedException on OracleDataAdapter.SafeMapping After Migrating to Managed ODP.NET
I recently migrated my code from the native version of ODP.NET to the managed version, and all of a sudden, accessing the SafeMapping property on OracleDataAdapter gives the following exception:
...
0
votes
1answer
109 views
System.NullReferenceException when using gcroot
Turns out this error had nothing to do with gcroot - I connected some constructors shoddily and lost the instantiated object on the way.
For the record, all versions of the code below worked after ...
0
votes
0answers
143 views
How to Save ItemAttachments uisng EWS Managed API
Is it possible to save an ItemAttachment? For FileAttachment we using the following EWS Managed API Code to save,
if(attachment is FileAttachment)
{
FileAttachment fAttachment = new ...
0
votes
1answer
101 views
SAML in WebLogic
I need to configure SAML between 2 or more applications deployed in WebLogic 10.3.6 server.
I successfully configure SAML between 2 different domains, but I need to use SAML between 2 applications in ...
1
vote
2answers
278 views
Searching Of Folders in Public Folders by giving its PATH Name
Is it possible to search for all folders and sufolders in public folders by giving the path of the folders by using Exchange Web Service(EWS) Managed Api?
1
vote
2answers
140 views
Searching Of Folders in Public Folders by giving its PATH
Is it possible to search for all folders and sufolders in public folders by giving the path of the folders??
0
votes
1answer
66 views
Can a C# class automatically manage unamanaged resources
I'm wrapping some native code that has some manual resource handling. I want my C# wrapper to handle this without passing the responsibility on to the clients. Is this possible, or will I inevitably ...
0
votes
1answer
79 views
Use managed objects in pure native code
Here I go:
I have a codebase which was written in Linux(C++) and which was moved to Windows. I used CMake to get the sln file. I opened the sln file in Visual Studio 2010 and built the project with ...
1
vote
1answer
78 views
Is SharpGen useful for other projects than SharpDX or should I go with SWIG?
Has anyone used SharpGen (from SharpDX) for generating wrappers in other projects than SharpDX itself? I wan't to decide whether to use SharpGen or Swig to generate a wrapper for a C++ library.
The ...






