Language Interoperability is the ability of code to interact with code that is written using a different programming language. Language Interoperability can help maximize code reuse and, therefore, improve the efficiency of the development process.
Questions tagged [language-interoperability]
193 questions
0
votes
1 answer
C bindings for Cocoa API?
My relations with Objective-C and XCode are perfectly summarized as «hate from the first sight». Emotional as it is, I`d still like to develop GUI apps in C, the way I`m used to (.C files, .H files, Makefile and Clang), even for MacOS X ≥ 10.8.
I…

hidefromkgb
- 5,834
- 1
- 13
- 44
0
votes
2 answers
"Some JS files act more like libraries - they [...] never manipulate QML component instances directly" - middle ground?
Quote from Defining JavaScript Resources In QML:
Some JavaScript files act more like libraries - they provide a set of helper functions that take input and compute output, but never manipulate QML component instances directly.
What if I want a JS…

Stefan Monov
- 11,332
- 10
- 63
- 120
0
votes
1 answer
C++ OptionalAttribue and C# Intellisense
I'm writing a C++/CLI library which is supposed to be used by C# (managed) applications.
I want to write a method which accepts optional parameters, which in C# would be written as:
void Function (object obj, object opt1 = null, int opt2 = 0)
When…

EZLearner
- 1,614
- 16
- 25
0
votes
1 answer
Hadoop Interoperability
I have a doubt in Hadoop related to interoperability.
Can a single zookeeper interact with both Solr and Hbase system ? If yes how is it going to interact.
Also
Let us consider we have a zookeeper which is interacting with both a Solr system as…

Raj Sharma
- 21
- 2
- 8
0
votes
0 answers
Interoperability in Hadoop
I was going through Hadoop and I have 2 questions:
How is interoperability achieved in Hadoop
Can the Zookeeper work along with the name node in HDFS Master Node and if yes then how is interoperability achieved and how do they interact with the…

Raj Sharma
- 21
- 2
- 8
0
votes
1 answer
Issues while using swift code in objective-c
I am very new to iOS who is trying to use swift in objective-c. I created a swift class in the objective-c project and i am able to call that class from an objective-c view controller.
The problem is if i make any changes in the swift code, it…

golldy
- 1,279
- 1
- 15
- 31
0
votes
1 answer
interoperability java and c++
i want to write a program in two different languages java and c++ that needs a dynamic and interactive communication between its c++ component and java component.i know there is jni and jna for invoking native methods in java but i do not think this…

mehrdad
- 51
- 1
- 7
0
votes
2 answers
How do you use Python with C and Java simultaneously?
Edit<<<<<<<
The question is:
-How do you launch C code from python? (say, in a function)
-How do you load Java code into python? (perhaps in a class?)
-Can you simply work with these two in a python program or are there special…

stackoverflow101
- 33
- 4
0
votes
1 answer
Accessing WCF Services Callbacks from Non Microsoft Clients
WCF is supposed to be interoperable, WCF services can be accessed from microsoft & non-microsoft clients, but only Microsoft clients can access WCF callback services.
The question is: Is it possible for non-microsoft clients to access WCF callback…

Mohamed Al-Hosary
- 488
- 8
- 25
0
votes
1 answer
How could I get a useful printout of an objc enum from swift code?
vp.verifyEmail(self.textClaim) {(OYIDCVerificationStatus status)
in
println("verifying email \(self.textClaim) returned \(status)")
}
yields "verifying email foo@bar returned (Enum Value)"
(which obviously is of no practical…

Anton Tropashko
- 5,486
- 5
- 41
- 66
0
votes
2 answers
gcc 4.8.1 compiling .c files as c++ in ubuntu 12.04
One of my users is getting an error message when trying to compile a C part of our mixed C/C++ codebase on ubuntu 12.04 with gcc 4.8.1
We have a library in C++ with some C-linkage functions in, and want to compile a C program linking to it. The…

JoeZuntz
- 1,092
- 10
- 16
0
votes
1 answer
C# wrapper to C++ function - Run once, works okay. Run twice, program hangs
So I am working with a c# wrapper to a C++ library, and trying to add another function. I have created the function declaration in C# and it is working. But it only works once. When I try to run it the second time, the program hangs.
The interop…

JayGee
- 577
- 6
- 16
0
votes
0 answers
How to include Fortran .inc files to C program
I have a program written in Fortran, and some variables are defined in .inc files. I want to call self-written C function from the Fortran program, and this function must read and write data to the variables. How should I let know C function about…

user983302
- 1,377
- 3
- 14
- 23
0
votes
2 answers
What are the limitations of WCF HTTPBinding?
I am developing a .NET application (say A) which will talk to other .NET applications (say B). The application A is going to be consumed by a Java application (say X). I am currently using Apache Thrift. Thrift is great except for the basic support…

Prasanna
- 760
- 2
- 6
- 16
0
votes
2 answers
How do I create an interface to convert a c character array for fortran
I am writing a module in c for a fortran program and I need to pass some strings to the fortran program. I am unable to modify the fortran code, but can write my own fortran code to call the existing code. I have tried googling this and there are a…

William Everett
- 751
- 1
- 8
- 18