Tagged Questions
0
votes
0answers
66 views
Problems with IDL spec
I'm trying to get some RPC calls to work, but unfortunately I'm kind of stuck with the IDL spec of the interface I try to use. I've set up a minimalistic test project to show the problem, but couldn' ...
1
vote
1answer
99 views
Generation of stubs in Microsoft IDL
Providing interface in Microsoft IDL
[
uuid(04802821-F237-486D-BC90-B6BB048DC8B2),
version(1.0)
]
interface RPC
{
void foo([in, string] char * string)
}
Generated stub and header files ...
6
votes
4answers
672 views
IDL for JSON REST/RPC interface
We are designing a fairly complex REST API, in which most of the I/O are JSON encoded objects with a specific structure. One challenge we have found is to document the API in such a way that makes it ...
4
votes
1answer
577 views
How can I pass a variable-length string from an RPC server to the client?
I am implementing a Windows system service, which acts as RPC server, and a corresponding client, both in C++. I am using plain Windows RPC functionality.
Passing strings from the RPC client to the ...
2
votes
1answer
209 views
Send wstring and ptime over MS RPC
Iam using Microsoft RPC and i need to transfer my custom structure that have fields of type std::wstring and boost::ptime. In idl there is no such data types. What is best solution to send that ...
0
votes
1answer
151 views
Sending UDT over RPC in Windows
I'm getting to grips with RPC in Windows and I've got a basic client/server model setup and working and I can pass a string over between the 2 OK but I now need to extend it to pass a binary structure ...
0
votes
2answers
184 views
CORBA sequences: can I define sequences of objects w/ methods?
I have an interface with a method that should return a list of items, and each item should have certain methods associated with it. For example, I want to define a method listAllItems() that returns ...
1
vote
1answer
302 views
Communicating with Windows Process via RPC from a Java application
I'm looking to communicate with a windows process via RPC. The application I want to communicate with is developed in C++ using Visual Studio 2008. The application provides its interface through an ...
2
votes
2answers
837 views
multiple Thrift services on one transport
Just seeking confirmation here : apache Thrift protocol does not seem to support running multiple services on one transport endpoint ? ( a socket, file, whatever )
I cant seem to figure out how to do ...