Questions tagged [interoperability]
The interoperability tag has no summary.
22 questions
-4votes
1answer
72views
How to develop portable HTTP clients across js/ts web frameworks? [closed]
Related: Best practice for interoperable TypeScript→JavaScript? - Frameworks, browser extensions Angular, React, Vue, Svelte &etc. exist and are popular. Some use rxjs to flow from HTTP response, ...
6votes
2answers
285views
Why GUID Partition Table data lack the sector size?
The GPT (GUID Partition Table) is the most accepted modern standard for partitioning of a data storage device. Its unit for the offset and size of a partition is so-called sector*. Is it a well-...
2votes
2answers
151views
How to develop a desktop software with components based on several different technologies
If I give a real example, I want to create a desktop software that includes: electron js app that communicates with react js using IPC channels. I need to communicate with software that only has a ...
1vote
1answer
85views
Is there a way to introduce some basic type safety around IntPtrs returned from PInvoke'd methods?
I have a C-Style API with methods that return pointers to native objects, e.g. EXPORT hs::Pose3d* getJointEndPose(dh::Joint* joint); And in C#, [DllImport("Solver.dll")] public static ...
0votes
2answers
631views
Is there a language agnostic interface for programming language interop?
There are many packages for creating bindings of a library that's written in one language to be called from another language. Some programming languages also include such interop in the standard ...
3votes
2answers
2kviews
Sharing an enum between a C++ and C# solution
We have 2 applications that are part of our product, one is written in native C++ and lives in its own solution, and the other is a C# application in its own solution. Both solutions are in the same ...
1vote
3answers
262views
Programming Language Interoperation for Website
Say I have one website created with the LAMP stack and another with the MEAN stack. I want to create a program which estimates the entropy of a password so that I can add a password strength meter to ...
5votes
2answers
340views
Maintaining evolving versions of interop structures and classes
A C# .NET application talks to an external component by calling a known API and marshalling interop structures from the component's response. This is already implemented and working well. However, ...
1vote
1answer
127views
Is there a better way of communicating between systems?
I work for a software company that makes business information systems for a large enterprise. We do systems for invoicing, payment, planning, etc. The enterprise uses SAP for their core system, and ...
2votes
2answers
877views
interoperability between two independent platforms via HL7 FHIR
Mobile app: (Patient) I've developed an android mobile application which you can register, login, enter your personal information, enter your blood pressure factors, heart rate, and blood sugar. In ...
2votes
3answers
873views
Can programs of different languages communicate information without file io? [duplicate]
Is it possible to write a C++ program that, say, passes an int array to a java program without writing it to a file? Motivation for question: I was wondering what matlab is and how it came to be an ...
9votes
3answers
2kviews
Better to write your .NET library with COM limitations in mind, or separate your .NET library from Interop?
I came across this interesting article: How I Came to Love COM Interoperability on CodeProject, which got me thinking... The author argues that they do not want any COM-ities in their .NET library ...
4votes
3answers
3kviews
Why the practice of writing unit tests in a different language isn't that popular?
When Microsoft released Visual Studio 2008, there was a thing they were talking a lot about at the conferences and in their online tutorials: the idea of writing the actual code in one language, and ...
5votes
1answer
1kviews
Best way to handle language interoperability
Background In a language like F#, direct interoperability with most other .NET languages is possible. For example, it is possible to use classes written in C# directly in F#, and it is possible to ...
3votes
2answers
2kviews
How would I allow a PHP front end to communicate with a back end written in Go (or any other combination of languages)?
I like PHP. It's not overly complex to achieve what you want, you can write straight up HTML inside it, and I suppose I'm just used to it. I also like Go, having just discovered it while looking for ...