Tagged Questions

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.

learn more… | top users | synonyms

68
votes
10answers
127k views

How to show loading spinner in jQuery?

In Prototype I can show a "loading..." image with this code: var myAjax = new Ajax.Request( url, {method: 'get', parameters: pars, onLoading: showLoad, onComplete: showResponse} ); function ...
8
votes
6answers
986 views

What is marshalling? What is happening when something is “marshalled?”

I know this question has been asked, at least here. But there wasn't a satisfactory answer, at least not to me. There is a lot of talk about marshalling as regards interoperating with unmanaged code, ...
8
votes
3answers
257 views

What are the best practices in language interoperability?

In a system which requires use of multiple languages, what are the best practices to ensure a loosely-coupled architecture when code is calling another language's code?
7
votes
3answers
4k views

How to convert from from java.util.Map to a Scala Map

A Java API returns a java.util.Map<java.lang.String,java.lang.Boolean>;. I would like to put that into a Map[String,Boolean] So imagine we have: var scalaMap : Map[String,Boolean] = Map.empty ...
6
votes
1answer
175 views

Implementing unsafe Java interfaces

I've ran into a problem recently while developing with Spring Security. It has an interface GrantedAuthority with following signature: public interface GrantedAuthority extends Serializable, ...
5
votes
2answers
214 views

calling methods on .net object from coldfusion

I am trying to instantiate and call methods on a .net object created from a dll from coldfusion. This works when I call methods with one or zero arguments but fails with - ...
5
votes
5answers
2k views

How can I pass data from Perl to Java?

I'm working on some Java <-> Perl interaction. I would like to know what the best way is to pass information from Perl to Java. (Great answers about Perl and Java here and here btw). There's a lot ...
5
votes
2answers
1k views

About using F# to create a Matrix assembly usable from C#

There are no builtin matrix functions in C#, but there are in the F# powerpack. Rather than using a third party or open source C# library, I wonder about rolling my own in F#, and exposing the useful ...
4
votes
3answers
50 views

Unifying enums across multiple languages

I have one large project with components in multiple languages that each depend on some of the same enum values. What solutions have you come up with to unify enums across multiple arbitrary ...
4
votes
2answers
2k views

Calling Java from Clojure

When I try to run the following code (from the REPL) in Clojure: (dotimes [i 5] (.start (Thread. (fn [] (Thread/sleep (rand 1000)) (println (format "Finished %d on %s" i ...
3
votes
1answer
297 views

What's the best way of accessing a DRb object (e.g. Ruby Queue) from Scala (and Java)?

I have built a variety of little scripts using Ruby's very simple Queue class, and share the Queue between Ruby and JRuby processes using DRb. It would be nice to be able to access these from Scala ...
3
votes
5answers
933 views

Embed bash in python

I am writting a Python script and I am running out of time. I need to do some things that I know pretty well in bash, so I just wonder how can I embed some bash lines into a Python script. Thanks
3
votes
2answers
248 views

Polyglot Programming is Coming? How?

I'd love to have the freedom to use various languages for the problems they work best for but I'm not sure how this can be accomplished today. I have had a fair amount of success using web services ...
2
votes
4answers
206 views

Create Indexer in VB.NET which can be used from C#

Can I create a class in VB.NET which can be used from C# like that: myObject.Objects[index].Prop = 1234; Sure I could create a property which returns an array. But the requirement is that the index ...
2
votes
3answers
522 views

can i use bdb(berkeley db) file created by c implementation (python bsddb) by oracle berkeley db java edition?

I have a berkeley db file (*.bdb) which is created by the C implementation(python bsddb module). Is it possible to read this file by a pure java implementation of Berkeley Db? I tried to read it using ...
1
vote
2answers
44 views

Calling scanf from Ada

How do you call scanf from Ada? That is, presumably with an appropriate pragma import declaration, but what would the declaration look like? (I'm interested in how to call C functions of the more ...
1
vote
6answers
110 views

Is CORBA a language?

As i know CORBA is used to maintain interoperability in distributed systems by acting in middle. What i want to know is, is CORBA a language which has its own syntax of coding or do we code in CORBA ...
1
vote
1answer
106 views

Groovy: How to define a java callable with parameters and make it available to groovy shell?

I would like to implement a Groovy interface that takes parameters and returns a result in java and make it available in GroovyShell. However Callable, GroovyCallacble do not take any parameters so ...
1
vote
1answer
151 views

Thread safe c# service using fortran dll

I have a c# windows service that starts a couple of threads and then each thread executes the same fortran function from a static dll library compiled with intel fortran 9. When that happen, the ...
1
vote
1answer
388 views

string array C# Interoperability to C++ dll; string array from C# to C++ dll which sets the data and sends it back to c#

this is what i have so far... basically I use the c++ dll to populate the tree components set them and then return them to the managed csharp code. I am running into problems and have tried the ...
1
vote
4answers
430 views

C# dll which is inter-operable with php and java

I need to create a dll in C sharp which is interoperable with php and Tomcat/Java webservices. Will the normal C# class library help me for this? Thanks, John
1
vote
2answers
83 views

Automatic interaction with Perl code

I was wondering is there is any way to interact with Perl 5 code automatically, without creating explicit APIs and publishing it over some protocol. I don't want to limit this question to any specific ...
1
vote
1answer
318 views

Is it possible to call a C function from OCaml passing a huge array efficiently?

I'm considering the use of a combination between OCaml and C code in a new application. It seems that calling C code from Ocaml is simple: external name : type = C-function-name However, it ...
0
votes
3answers
279 views

Matlab Builder JA - Compile Matlab into a Java jar - Free Version?

Please keep in mind that I know nothing about Matlab. Matlab Builder JA lets developer build Matlab applications and export them into Java jars. That's great, I just have to produce a jar and I can ...
0
votes
1answer
58 views

Deploying .net DLLs for use by ColdFusion?

My company currently runs a .net/sharepoint intranet and a ColdFusion public website. There is a lot of duplicated functionality and clumsy web service layers used to support the two platforms. ...