On Dec 10, 11:22 am, christ...@gmail.com wrote:
> The producer/consumer is an SOA implemented project as a pilot, with
> corba for transferring data (VMS->WIN and WIN->WIN), no webservice as
> far as I can see (but havent worked with that so, what do I know),
> this is built on OpenSis and works great, but i need to get the data
> over to our normal .net environment - or get all others to go java...
If it's all SOA, then you just need to make sure that whatever service
is exposing the data does so in an architecturally neutral manner,
e.g. over a SOAP web service. You shouldn't need anything like JNI.
> about the in process, we got one of the srevices to implement event
> handlig, the other just work with asking for data, so both sync/async.
>
> for the one handelning events its importent to get events, not polling
> - its a mesage broker and should not add to the latency of transfer.
I'm not really sure I understand this part - if it's genuinely service-
oriented, you shouldn't need to hook into another process, you should
just be able to send messages to it.
Jon
christery@gmail.com - 10 Dec 2007 13:24 GMT
> I'm not really sure I understand this part - if it's genuinely service-
> oriented, you shouldn't need to hook into another process, you should
> just be able to send messages to it.
>
> Jon
Uhmm, what I got is a working fine but in java, service oriented
arcitechture dosent imply web service, neither corba, or anything
else... and yes I am trying to use this without or without seeing java/
corba (loose cupling) but HOW? Still have to reuse the idl/sdl
generated interfaces produces the header file and implement the in c
and the make the .net code from there .... well if no one knows...
ill go that way... work work work...
//CY
Jon Skeet [C# MVP] - 10 Dec 2007 13:48 GMT
On Dec 10, 1:24 pm, christ...@gmail.com wrote:
> > I'm not really sure I understand this part - if it's genuinely service-
> > oriented, you shouldn't need to hook into another process, you should
[quoted text clipped - 3 lines]
> arcitechture dosent imply web service, neither corba, or anything
> else...
It usually implies an language neutral service, however - certainly
not something where you need to hook into the same process. While it
doesn't *have* to be language neutral, that's often one of the points
of making it SOA to start with - allowing for many different kinds of
clients.
> and yes I am trying to use this without or without seeing java/
> corba (loose cupling) but HOW? Still have to reuse the idl/sdl
> generated interfaces produces the header file and implement the in c
> and the make the .net code from there .... well if no one knows...
I would see if there are any CORBA service consumers for .NET - I
wouldn't start going to C interop unless you have to.
Jon
Jon Skeet [C# MVP] - 10 Dec 2007 14:06 GMT
> I would see if there are any CORBA service consumers for .NET - I
> wouldn't start going to C interop unless you have to.
Have a look at http://remoting-corba.sourceforge.net/
Jon