views:

256

answers:

1

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.

A: 

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