views:

674

answers:

1

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

If so, then how?

A: 

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

marc_s
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 http://stackoverflow.com/questions/512366/how-do-i-send-a-string-from-one-instance-of-my-delphi-program-to-another . In that one, I received a windows error 109.
M Akin