0

I have written a net.tcp based service in Biztalk 2006 R2 and it listens at a location,

http://localhost:5060/WCFTcpService

I need to call this service by using Raw TCP request. i.e.
I don't want to create a proxy class and consume it in a .NET client application. How can I be able to do this?
The real scenario is that an Oracle Stored procedure will be used to communicate with this service and the only way I am allowed to call this service is to send a TCP request to the Biztalk server that is hosting the service. Any help or tips would be really appreciated. Thanks.
Burhan
  • 687
  • 2
  • 8
  • 13
  • I have re-phrased the question. See the URL: http://stackoverflow.com/questions/546004/how-to-use-socket-based-client-with-wcf-net-tcp-service – Burhan Feb 13 '09 at 13:54

1 Answers1

0

I think you may need to call an external program from Oracle, if I understand what you're asking about. Not sure of your Oracle version, but mostly the later versions tighten security, but the functionality is there.

Look at this site for a basic primer. More info is here. Oracle docs are sometimes useful, too. All this and more can be found using a google search on oracle external procedure.

DCookie
  • 42,630
  • 11
  • 83
  • 92