Tagged Questions
The cross-language tag has no wiki summary.
19
votes
3answers
3k views
Instantiating a python class in C#
I've written a class in python that I want to wrap into a .net assembly via IronPython and instantiate in a C# application. I've migrated the class to IronPython, created a library assembly and ...
6
votes
1answer
101 views
How to pass a list of objects from C++ to C#?
My first question here :)
I am working with an application written in C++ (a map editor for a game) that has the front end UI written in C#. Since i'm new to C# i'm trying to do as much as possible ...
5
votes
3answers
317 views
Invoking C++ code from Java (GCJ)
I'm trying to invoke C++ from Java using GCJ using the CNI, so far I'm able to invoke Java code from C++. How can I invoke C++ from Java using the CNI?
4
votes
1answer
52 views
How to call a Java programme from .Net?
I have a little java programme, that responsible for sending message via mobile phone, and which is a native programme on the PC. But we won't convert it to .net, but it can be execute via dos cmd ...
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
3answers
321 views
Interacting with java code from C#
We've written a Java program which we are looking to use and interact with from C#. What are our options? Optimally it would be possible to compile the Java application as a library (.DLL) that we ...
4
votes
3answers
2k views
How to unserialize PHP Serialized array/variable/class and return suitable object in C#
The goal is to unserialize a PHP serialized string and get sutable object in C#
Is there any way to make this possible in C#(.Net)?
To be more specific:
We need to make an application which ...
3
votes
0answers
176 views
Haskell executable linking with static library written in C++ got `undefined reference`
I've create a static library:
// foo.h
extern "C" {
int foo (const char* arg0, int arg1);
}
// foo.cpp
#include "foo.h"
// implementation of foo
This block of code was compiled to foo.o and ...
2
votes
1answer
128 views
How to convert unserialize php object in .NET C#
I recently got a project which require communication between php and .Net websites.
The developer form php didnt provide much doc about their code, only a client site library and a small piece of ...
2
votes
1answer
100 views
Cannot use java value as parameter to java annotation on scala function
I have 3 java files: HW.java, myAnn.java, and Constants.java in package myApp.
Constants.java:
public final class Constants {
public static final String WORLD ="World";
}
myAnn.java:
public ...
2
votes
6answers
475 views
installing fonts in client machine
I'm building a website(PHP) with chinese fonts. The problem is most browsers doesn't have chinese fonts installed by default. I want the client machine to have this font installed to view the webpage.
...
2
votes
4answers
588 views
Allowing a method to lock its parent Object in Java
Is there a way in Java to get a method to lock (mutex) the object which it is in?
I know this sounds confusing but basically I wan't an equivelent to this snippet of C# but in Java.
lock(this)
{
...
2
votes
4answers
224 views
Is there a cross-language TDD solution?
I want to write a simple colour management framework in C#, Java and AS3. I only want to write the unit tests once though, rather than recreating the unit tests in JUnit, FlexUnit and say NUnit.
I ...
1
vote
1answer
48 views
protobuf-net or protocol buffer services from c# to python and other lang
I have been looking at protobuf-net recently and protocol buffers and so far it seems quite impressive. What i am wondering about is the service side of things. If i have understood the google ...
1
vote
1answer
89 views
Is this possible for C to execute a piece of js code?
For example, I have a js code, and I while like to write a simple console program that read this code, execute it, and print back the result. Is this possible to do so? If yes, how can I start doing ...
1
vote
1answer
63 views
Manging project agnostic code libraries without creating dependencies
I'm curious to know how fellow developers manage project agnostic code/libraries?
For example, given these two functions:
function array_exclude_keys(Array $array, Array $keys){
foreach($keys as ...
1
vote
6answers
314 views
How to compare different language String values in JAVA?
In my web application I am using two different Languages namely English and Arabic.
I have a search box in my web application in which if we search by name or part of the name then it will retrieve ...
1
vote
1answer
76 views
Interacting with C# applications via PHP
Recently I have been thinking combining C# applications with a website, so that we can run multiple threads in C# and complete more tasks in the time it would take PHP would to do 1.
Most of us know ...
1
vote
2answers
291 views
C#, C++ project mix: Could not load file or assembly
I have Visual Studio 2010 solution of 2 projects: c# and c++
c++ project using .net framework libraries and exposes class that is referenced from c# project.
Everything compiles fine and c# project ...
1
vote
3answers
345 views
Flex — C++ connection?
How do I connect a Flex Application( Internet Site ) and C++ togehter ?
a minimalistic example from what i mean (User Story):
Frank goes to www.myflexsite.de there are 2 textboxes and 1 Button( Label ...
1
vote
3answers
413 views
XML Based Validation Frameworks Cross Language
I'm about to embark on a new project within which we require the ability to re-use validations based on (preferably XML) on both the client and server.
We would setup a service to provide the XML ...
1
vote
5answers
8k views
How to deal with forward declaration / #import in Cocoa Touch (Objective-C cross C++) correctly?
I am trying to write this header file:
//@class AQPlayer;
//#import "AQPlayer.h"
@interface AQ_PWN_iPhoneViewController : UIViewController {
AQPlayer* player;
}
@end
AQPlayer is a .mm file ...
1
vote
1answer
177 views
Strategies for sharing common business logic across different programming languages
Having a monolithic business application with complex business logic implemented in Visual Dataflex, we are facing the challenge of maintaining our business logic across programming languages as ...
1
vote
3answers
210 views
Importing C methods/classes into a C# project
I have some c headers, and a c lib that I'd like to import and use in a c# project. How can I do this?
1
vote
4answers
688 views
Can you call Ada functions from C++?
I'm a complete Ada newbie, though I've used Pascal for 2-3 years during HS.
IIRC, it is possible to call Pascal compiled functions from C/C++. Is it possible to call procedures & functions ...
0
votes
2answers
56 views
How can I call a python instance using php?
I have a PHP program, and a Python program. You can think that the Python program is like a robot or machine. Typically, it will use a database, do some analysis and return result for you. It is a ...
0
votes
0answers
23 views
Cross platform, cross language development in MVC, Is this possible to do so?
Here is the problem, I got a programme have a well structured in Java. The Model, View and Controller is both using Java. But we find that the Java View is extremely ugly, and can't get benefit of the ...
0
votes
1answer
75 views
Python Java Cross communication Servers
+-------------------+ +-------------------+
| Wowza | | Django |
|-------------------| |-------------------| ...
0
votes
1answer
84 views
ASP/Javascript - Send ASP value to Javascript Function
Is it possible to call a JS function, with a value from an ASP script?
I thought it was possible, so I tried the following method but I can't seem to get it to run. As you can see, I have an ASP ...
0
votes
1answer
47 views
Echo local ASP.NET url FROM PHP
I have a php wordpress site that's running on IIS. I need to include, as part of that file, the response from a local ASP.NET page. PHP is reallly not my strongest language though.
The code I have ...
0
votes
3answers
482 views
Why does the Python/C API crash on PyRun_SimpleFile?
I've been experimenting with embedding different scripting languages in a C++ application, currently I'm trying Stackless Python 3.1. I've tried several tutorials and examples, what few I can find, to ...
0
votes
2answers
104 views
How to conduct performance tests on libraries written in different programming languages?
The problem is: Given a number of programming libraries with similar or equal scope (e.g. XML parser, regex, markup, ...); are there tools, with which one can run performance tests on these libraries ...