native-code

What is the best way to access SOAP WebServices from portable native code?

I need to access a SOAP webservice (written in .NET with MS SQL backend, FWIW) from several different platforms, so my common denominator is native C++. Is there a portable library for this or I should roll my own solution? ...

Adobe AIR 2 Native API/Code

will using Adobe AIR 2 Native API/Code make the app platform specific? if so what might be the use of using AIR in such a case, so that i can have a front end using existing web technologies? ...

How fast is VB .net compared to native code for arithmetic?

I need to write software that will do a lot of math. Mostly it will be matrix multiplication with integers to compute DCT. How much faster should I expect the code to run in native c as compared to VB .Net? Factor of 2, factor of 10, factor of 1000...? Has someone tried and collected statistics on this? ...

How should I name a native DLL distributed in both 32-bit and 64-bit form?

I have a commercial product that's a DLL (native 32-bit code), and now it's time to build a 64-bit version of it. So when installing on 64-bit Windows, the 32-bit version goes into Windows\SysWOW64, and the 64-bit version goes into... Windows\System32! (I'm biting my tongue here...) Or the DLL(s) can be installed alongside the client app...

If you were developing shareware softwares for windows, would you target the .Net Framework or use native code?

For the sake of the question, by 'shareware' I mean a software which is relatively small in size (up to few dozens of mb) and available for download and evaluation through a web site. I'm asking this question, because I don't understand something regarding the current state of windows commercial desktop development. It seems to me tha...

C# Invoke method Class/Interface (native code, cost)

Hello, Suppose we have some class A that implements some interface I I i = new A(); i.method(); // example 1 A a = (A)i; a.method() // example 2 The IL code generated for each call to "method()" is same, but which one of invocations to method "method()" have more cost in native code and why? Any help will be appreciated. ...

How to load jni from sd card on android 2.1?

I want to load third-party jni library in runtime. I've tried to load directly from sdcard. It expectedly failed. I've tried to copy library from sdcard to /data/data/app/ and then System.load(/data/data/app/libjni.so) It works on HTC HERO, but fails on HTC Legend with Android 2.1. it fails during execution of native code and write to lo...

How do you use the C language to produce a ruby gem?

I would like to see some source code or maybe a link to some that gives at least a stub for writing ruby gems in the C languages (C++?? is that possible too?) Also, some of you may know that Facebook compiles some of their code natively as php extensions for better performance. Is anyone doing this in Rails? If so, what has been your ex...

Compile JavaScript to Native Code with V8

Is it really possible, with Google's V8 Engine, to compile JavaScript into Native Code, save it as a binary file, and execute it whenever I want through my software envorinment, on any machine? ...

Java to native code

Is there any way to compile from Java to machine code? ...

How do I distribute C# apps to computers with an unknown version of .Net?

I wrote a small app that I need to distribute to 700+ computers, the problem being that the computers can be running any version of Windows (though most likely XP or better) with any version of .Net framework installed with internet connections all from OC3 to dialup. I considered bundling .Net with my application but the .net installer...

Changing CIL code into Native code in C#

Possible Duplicate: Is there some way to compile a .NET application to native code? When you compile a C# application, it is compiled to CIL code, to be interpreted by the framework when it is ran, but im wondering if its possible to generate a native x86 EXE file stub for my application(s). This way it is not possible to di...

Salamander .NET Linker - How does it work?

I'd like a step through of how the Salamander does what it does? I will include a few points im particularly interested in - Link On Demand The linker starts with the entry methods (which you can configure), and recursively walks the call graph to link only the required bits of MSIL code. Unused code will not be linked into the...

How can I see the native code generated by CLR?

Is there any way to see the native code generated by CLR? In java there is a option "-XX:+PrintOptoAssembly" to see the native code compiled by JIT. So is there any similar thing for CLR? ...

can MSIL be converted to Java Native Code ?

Dotnet CLR converts the language code to MSIL. While Java Code be converted to Native Code that is platform independent. Can we convert this MSIL to Native Code ? So the Dotnet will automatically become platform independent. ...

C++ Reads/Writes XML without CLR

I know this is a very stupid question and I'm very new to C++. I'm developing Starcraft AI, it is DLL file. I'm trying to use XML to gather some data to the bot, however whenever I build the DLL with /clr option. The bot doesn't load properly. So, my question is what is CLR and is there a way to read/write XML without using /clr build ...

Sound Analysis/Editing in Android

Hello, I'd like to know how difficult it is to analyze and edit sound in android. My project would be a kind of DJ application. I think AudioTrack is the most appropriate library, right ? How does the few android DJ apps work to display the spectrum of the sound, apply effect, change the speed, mix ect ... Do they use a more powerful ...

Can't find PInvoke DLL on Windows Mobile

I am working on Windows Mobile application. Whenever I download some sample which is using wrapper around native code (using DllImport), it always gives "Can't find PInvoke DLL" error. I am using VS 2005 with C# on 64-bit Windows 7 OS. I have checked many of solution on stackoverflow as well as othersites, but with no solution to my p...