Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

ns_setconnlocationproc(3aolserv) [debian man page]

Ns_Location(3aolserver) 				   AOLserver Library Procedures 				   Ns_Location(3aolserver)

__________________________________________________________________________________________________________________________________________________

NAME
Ns_SetConnLocationProc, Ns_SetLocationProc - Set the location procedure to use SYNOPSIS
#include "ns.h" void Ns_SetConnLocationProc(Ns_LocationProc *procPtr) void Ns_SetLocationProc(char *ignored, Ns_LocationProc *procPtr) _________________________________________________________________ DESCRIPTION
These functions set the procedure to run when a call to Ns_ConnLocation is made. The location is defined in the form METHOD://HOST- NAME:PORT, e.g. http://myhost.com:8443. Setting the location procedure with these functions will cause all calls to Ns_ConnLocation to use the location procedure you define instead of using the location procedure callback in the communication module for the connection. There may be cases where you want to do this. For example, you could create a location procedure that reports on the values returned by communication module location procedure callbacks. At the end of that procedure, you could then return that value after logging the infor- mation making your location procedure is effectively transparent to the server and other modules. Ns_SetConnLocationProc(procPtr) Set the function to use when Ns_ConnLocation is called. This function is deprecated. Use Ns_SetLocationProc instead. Ns_SetLocationProc(ignored, procPtr) Set the function to use when Ns_ConnLocation is called. The ignored argument is reserved for future use. SEE ALSO
nsd(1), info(n), Ns_ConnLocation(3) KEYWORDS
AOLserver 4.0 Ns_Location(3aolserver)

Check Out this Related Man Page

Ns_Location(3aolserver) 				   AOLserver Library Procedures 				   Ns_Location(3aolserver)

__________________________________________________________________________________________________________________________________________________

NAME
Ns_SetConnLocationProc, Ns_SetLocationProc - Set the location procedure to use SYNOPSIS
#include "ns.h" void Ns_SetConnLocationProc(Ns_LocationProc *procPtr) void Ns_SetLocationProc(char *ignored, Ns_LocationProc *procPtr) _________________________________________________________________ DESCRIPTION
These functions set the procedure to run when a call to Ns_ConnLocation is made. The location is defined in the form METHOD://HOST- NAME:PORT, e.g. http://myhost.com:8443. Setting the location procedure with these functions will cause all calls to Ns_ConnLocation to use the location procedure you define instead of using the location procedure callback in the communication module for the connection. There may be cases where you want to do this. For example, you could create a location procedure that reports on the values returned by communication module location procedure callbacks. At the end of that procedure, you could then return that value after logging the infor- mation making your location procedure is effectively transparent to the server and other modules. Ns_SetConnLocationProc(procPtr) Set the function to use when Ns_ConnLocation is called. This function is deprecated. Use Ns_SetLocationProc instead. Ns_SetLocationProc(ignored, procPtr) Set the function to use when Ns_ConnLocation is called. The ignored argument is reserved for future use. SEE ALSO
nsd(1), info(n), Ns_ConnLocation(3) KEYWORDS
AOLserver 4.0 Ns_Location(3aolserver)
Man Page

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

calling a PL/SQL stored procedure from KSH

Hi I have a stored procedure which should be called from KSH. Could ayone please help me with this. Thanks (1 Reply)
Discussion started by: BlAhEr
1 Replies

2. Programming

How to call sqlloader from stored procedure!!! Advise

Hi , I have a dellimited .dat file and a sqlloader. I want to call the sqlloader from a oracle stored procedure. The procedure should return the result of sqlloader's execution. (3 Replies)
Discussion started by: Haque123
3 Replies

3. Shell Programming and Scripting

environment checkout procedure

Hi, Can anybody explain what is env checkout procedure and how to write a procedure for that? Thanks and Regards Venkat (0 Replies)
Discussion started by: pvenkat14
0 Replies

4. Shell Programming and Scripting

tnsname.ora file - location

Hi, Could you please tell me at which location is the file located on unix server Thanks. (3 Replies)
Discussion started by: ajincoep
3 Replies

5. Programming

Help with pl/sql stored procedure

Hi, Can anyone please let me know where to check if a particular stored procedure exists. If the procedure exists I want to display some message and if the procedure does not exists i want to exit with error message. checking from dba_objects doesnt help. suprisingly the procedure i... (3 Replies)
Discussion started by: justchill
3 Replies

6. Shell Programming and Scripting

how to call oracle stored procedure from unix shell

Hi i want to call a oracle stored procedure from unix (using bash shell). consider this is my oracle stored procedure with parameter create procedure testproc(name IN varchar, age IN Number, id OUT Number ) AS begin id=1; dbms_output.put.line('successfull validation') end;... (6 Replies)
Discussion started by: barani75
6 Replies

7. Shell Programming and Scripting

How to create and call mysql stored procedure in perl?

Hi, I want to create MySQL stored procedure and call the stored procedure using perl. I tried like this: use DBI; my $dbh = DBI->connect ("DBI:mysql:test", "root", "ibab", { RaiseError => 1, PrintError => 0}); $create_procedure =... (5 Replies)
Discussion started by: vanitham
5 Replies

8. Shell Programming and Scripting

Linux process exit

friends when I call to a procedure where DBMS_OUTPUT.PUT_LINE bd are having the procedure? (4 Replies)
Discussion started by: tricampeon81
4 Replies

9. UNIX for Beginners Questions & Answers

Parallel execution of Oracle procedure in UNIX

i have say x number of procedure to run, ie i have one procedure which accepts variable and i need that to run in parallel and capture the error code if in case if it fails through the unix. sqlplus <EOF> exec test_t (abc,124); </EOF> sqlplus <EOF> exec test_t (abc,125); </EOF> sqlplus <EOF>... (2 Replies)
Discussion started by: ATWC
2 Replies