Sponsored Content
Top Forums Programming How to make communication with Oracle dbms_pipe with .net client? Post 302419431 by jim mcnamara on Friday 7th of May 2010 06:49:19 AM
Old 05-07-2010
In unix, pipes are files. So, unless your .net app actually creates a resident UNIX process it cannot even see the pipe (file) Oracle created. .net does not run on AIX natively.

You have to use tcp SOCK_STREAM sockets. Look into the UTL_TCP Oracle package.
 

8 More Discussions You Might Find Interesting

1. AIX

From ASP.NET to Oracle on unix

Dear all , I have a serious question and i need an answer before i go throught a new project. I have an oracle DB is on remote UNIX box.How can I connect through ASP.net on a windows server machine to the oracle db and do all the jobs i need (insert ,update delete) ? is their is a way ?? please... (2 Replies)
Discussion started by: hoshakhs
2 Replies

2. Programming

How can i make two client to chat with each other?

How can i make two client to chat with each other.. without any work of server, i mean peer to peer i am making chat messenger on which all host will connect to/via server and if any host want private chat then thay work independently... this is code(attached) which i have made for server... (1 Reply)
Discussion started by: bt87
1 Replies

3. Programming

Client server communication using FIFO.

Hiii..... I need a client server communication using a FIFO. Sever is contacted by multiple clients.Each client writes its request to a FIFO.The server replies back to the client through a client specific FIFO. give any link to sample FIFO programs.......... Thanking you KRISH:cool: (1 Reply)
Discussion started by: krishnampkkm
1 Replies

4. Infrastructure Monitoring

Error make net-Snmp 5.5

Configuration of net-Snmp 5.5 :) --------------------------------------------------------- Net-SNMP configuration summary: --------------------------------------------------------- SNMP Versions Supported: 1 2c 3 Building for: solaris2 ... (1 Reply)
Discussion started by: samirsidi
1 Replies

5. Programming

please help a problem in client-server ipc message 2 pipes communication simple example

I want to have a message send & receive through 2 half-duplex pipes Flow of data top half pipe stdin--->parent(client) fd1--->pipe1-->child(server) fd1 bottom half pipe child(server) fd2---->pipe2--->parent(client) fd2--->stdout I need to have boundary structed message... (1 Reply)
Discussion started by: ouou
1 Replies

6. AIX

Upgrade to TL8 failed: bos.net.NFS.client 6.1.8.1 (usr: COMMITTED, root:

dears i am trying to upgrade the TL from TL7 to TL8 and i facing this issue AIX6.1 << End of Success Section >> +-----------------------------------------------------------------------------+ BUILDDATE Verification ...... (2 Replies)
Discussion started by: thecobra151
2 Replies

7. Homework & Coursework Questions

Using dbms_pipe with C++ to perform daabase operation

I am getting two result: string and int in c++ code. That I want to store into database. The request which generates result is very frequent. So each time performing db operation to store the result is costly for me. So how this can be achived using dbms_sql? I dont have any experience and how... (1 Reply)
Discussion started by: karimkhan
1 Replies

8. AIX

Problem in communication nim client with nim master

Hello, I have an AIX6.1 machine which is a nim client to my nim master which is also AIX6.1 machine. I had some problem to perform an installation on my client using smit nim . i removed /etc/niminfo file in order to do the initialization again but when i run the command niminit -a name=client... (0 Replies)
Discussion started by: omonoiatis9
0 Replies
multiplexer(n)					      One-to-many communication with sockets.					    multiplexer(n)

__________________________________________________________________________________________________________________________________________________

NAME
multiplexer - One-to-many communication with sockets. SYNOPSIS
package require Tcl 8.2 package require logger package require multiplexer ?0.2? ::multiplexer::create ${multiplexer_instance}::Init port ${multiplexer_instance}::Config key value ${multiplexer_instance}::AddFilter cmdprefix cmdprefix data chan clientaddress clientport ${multiplexer_instance}::AddAccessFilter cmdprefix cmdprefix chan clientaddress clientport ${multiplexer_instance}::AddExitFilter cmdprefix cmdprefix chan clientaddress clientport _________________________________________________________________ DESCRIPTION
The multiplexer package provides a generic system for one-to-many communication utilizing sockets. For example, think of a chat system where one user sends a message which is then broadcast to all the other connected users. It is possible to have different multiplexers running concurrently. ::multiplexer::create The create command creates a new multiplexer 'instance'. For example: set mp [::multiplexer::create] This instance can then be manipulated like so: ${mp}::Init 35100 ${multiplexer_instance}::Init port This starts the multiplexer listening on the specified port. ${multiplexer_instance}::Config key value Use Config to configure the multiplexer instance. Configuration options currently include: sendtoorigin A boolean flag. If true, the sender will receive a copy of the sent message. Defaults to false. debuglevel Sets the debug level to use for the multiplexer instance, according to those specified by the logger package (debug, info, notice, warn, error, critical). ${multiplexer_instance}::AddFilter cmdprefix Command to add a filter for data that passes through the multiplexer instance. The registered cmdprefix is called when data arrives at a multiplexer instance. If there is more than one filter command registered at the instance they will be called in the order of registristation, and each filter will get the result of the preceding filter as its argument. The first filter gets the incoming data as its argument. The result returned by the last filter is the data which will be broadcast to all clients of the multiplexer instance. The command prefix is called as cmdprefix data chan clientaddress clientport Takes the incoming data, modifies it, and returns that as its result. The last three arguments contain information about the client which sent the data to filter: The channel connecting us to the client, its ip-address, and its ip-port. ${multiplexer_instance}::AddAccessFilter cmdprefix Command to add an access filter. The registered cmdprefix is called when a new client socket tries to connect to the multixer instance. If there is more than one access filter command registered at the instance they will be called in the order of registris- tation. If any of the called commands returns -1 the access to the multiplexer instance is denied and the client channel is closed immediately. Any other result grants the client access to the multiplexer instance. The command prefix is called as cmdprefix chan clientaddress clientport The arguments contain information about the client which tries to connected to the instance: The channel connecting us to the client, its ip-address, and its ip-port. ${multiplexer_instance}::AddExitFilter cmdprefix Adds filter to be run when client socket generates an EOF condition. The registered cmdprefix is called when a client socket of the multixer signals EOF. If there is more than one exit filter command registered at the instance they will be called in the order of registristation. Errors thrown by an exit filter are ignored, but logged. Any result returned by an exit filter is ignored. The command prefix is called as cmdprefix chan clientaddress clientport The arguments contain information about the client which signaled the EOF: The channel connecting us to the client, its ip- address, and its ip-port. BUGS, IDEAS, FEEDBACK This document, and the package it describes, will undoubtedly contain bugs and other problems. Please report such in the category multi- plexer of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have for either package and/or documentation. KEYWORDS
chat, multiplexer CATEGORY
Programming tools multiplexer 0.2 multiplexer(n)
All times are GMT -4. The time now is 09:50 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy