Can I use Delphi 2007 to communicate with a WCF service using the netnamedpipebinding ?

If so, then how?

link|improve this question
2  
Please let us know if you get this to actually work. I'll be surprised and impressed. It'd be lovely if you could write up a tutorial for the benefit of the delphi/.net community. – Terry Donaghe May 1 '09 at 14:53
feedback

2 Answers

up vote 0 down vote accepted

I suggest that you create a COM-visible proxy for your service using .NET (and WCF!), then consume it from Delphi as you would any COM object.

There are several reasons why implementing a native client for a WCF service listening on a NetNamedPipesBinding endpoint is extremely complex. See http://blogs.charteris.com/blogs/chrisdi for more details.

link|improve this answer
This would have been a good solution. We decided to not communicate this way though. – M Akin May 11 '11 at 22:18
feedback

Yes, you should be able to do this, as long as you can get Delphi 2007 to communicate with the Windows named pipes.

Here's an atricle at Delphi 3000 about how to use Delphi to communicate with named pipes, including some code samples.

Since named pipes are a basic core feature of Windows NT/XP/Vista, Delphi should be able to communicate with those no problem (reading + writing).

Does that help at all? Marc

link|improve this answer
I tried this and received the error "Pipe did not respond" I have also tried the pipes library from error and I have also tried the more extensive pipes code from stackoverflow.com/questions/512366/… . In that one, I received a windows error 109. – M Akin May 5 '09 at 21:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.