How to pass client IP address via CSS with SSL offload?

Hello,
We use Cisco CSS 11501S to do the SSL offload of web servers in one-armed mode. So we have to SNAT client IP in order to guaranty correct return path via the CSS. In this case web server can see only the IP address of the VIP used for SNAT. If there is a way to pass customer?s IP to the web server - i.e insert customized HTTP HEADER something like HTTP_REMOTEADDRESS:<IP address of the client> - similar to what is possible with BIG IP device for instance?
Second question if there is a way to get from the CSS access log data similar to what we have in Apache access.log file to be used by Webalizer or similar application to analyze web traffic.

Scott,
if you're not doing src nat, the css will spoof the client ip and therefore, there is no need to save the client ip in the http header.
Gilles.

Similar Messages

  • How to get Client IP address in oracle apps. Are there any API's.

    hi,
    I have one query
    ->How to get Client IP address in oracle apps. Are there any API's.
    regards,
    krishna

    Hi,
    this is very usefull
    however are this data stored on the db or is only a temporary view?
    I would like to have to keep track of all client connected.
    Thanx a lot

  • Http client------ XI  (via HTTP with SSL),

    hi forum,
    we have a http client that sends a http erquest to XI, by using sap/xi/adapter_plain
    service,  i mean plain http adapter
    but for scurity reasons i need HTTPS communication,
    can u tell me how to enable HTTPS (HTTP with SSL) communiaction in the same scenario,
    http client------>XI  (via HTTP with SSL)

    hi sudeep,
    u need to create a comm ch of adapter type http n set the security level there.
    refer this for help:
    http://help.sap.com/saphelp_nw04/helpdata/en/14/80243b4a66ae0ce10000000a11402f/frameset.htm
    [reward if helpful]
    regards,
    latika.

  • How to create an Equipment Address via BAPI or FM?

    Hi all,
    I have to create/update Equipments via RFC including Address data. For the Equipment master data, I use BAPI_EQUI_CREATE, but it has no address data as import parameter.
    To add the address data, I don't seem to find a suitable BAPI/FM:
    BAPI_ADDRESSORG_SAVEREPLICA doesn't do the job because there is no entry for equipments in table TSADOBJ. I could customize this, but then there is table TSADRV: there is an entry for Equi's
    EQUI     EQUNR     EQUI     ILOA     ADRNR     PM01     0     0
    but no FM associated to retrieve the address key.
    FM ADDR_INSERT didn't do the job either for some unknown reason ...
    Who can help me?
    Thanks a lot in advance & cheers
    Jörg

    Hi Rob,
    thanks for your answer.
    But when I create an equipment, the address number doesn't exist beforehand.
    And how do I pass on the address data (street, city, etc.)?
    I will have a look at the note you mention.
    Cheers
    Jörg

  • How to pass and receive byte[] via socket

    Hi All,
    How can I pass a byte[] from client socket to the server socket.
    Also how to receive that bye[] at the server socket.
    Thanks and best Regards,
    - Lasith.

    Hi All,
    Thanks for replying my topic, but still I need some help regarding this.
    My requirement is to have client and server socket programs with following functions (this is bit related to cryptography as well :)).
    First I generate public and private keys for server and in the client side generating a random number and encrypt it with servers public key and sends to server.
    Please refer following code segment.
    SecureRandom random = new SecureRandom();
              long challange = random.nextLong();     
              Cipher cipher = Cipher.getInstance("RSA");
              cipher.init(Cipher.ENCRYPT_MODE, key, new SecureRandom());
                 byte[] cipherText = cipher.doFinal(new Long(challange).toString().getBytes());
                 String cipherTextToServer = cipherText.toString();Then I am passing this string to server socket as follows,
    if(cipherTextToServer !=null)
                   out.println(cipherTextToServer );The server should take this text and decrypt it as follows.
         PrintWriter out = new PrintWriter(client.getOutputStream(),true);
              BufferedReader in = new BufferedReader(new InputStreamReader(client.getInputStream()));
    while((fromClinet  = in.readLine()) != null){
                   System.out.println("Server -> "+fromClinet);
                   System.out.println("Server -> "+*getDecriptedMassage*(fromClinet,prvKey));
                            out.println(Utility.getDecriptedMassage(massage,prvKey));
         public String getDecriptedMassage(String massage,Key key) throws Exception{
              Cipher cipher = Cipher.getInstance("RSA");
            cipher.init(Cipher.DECRYPT_MODE, key);
            byte[] plainText = cipher.doFinal(massage.getBytes());
            System.out.println("plain : " +new String(plainText));
             return plainText.toString();
         }When running the program I am getting following error.
    Exception in thread "main" java.net.SocketException: Connection reset
         at java.net.SocketInputStream.read(Unknown Source)
         at sun.nio.cs.StreamDecoder.readBytes(Unknown Source)
         at sun.nio.cs.StreamDecoder.implRead(Unknown Source)
         at sun.nio.cs.StreamDecoder.read(Unknown Source)
         at java.io.InputStreamReader.read(Unknown Source)
         at java.io.BufferedReader.fill(Unknown Source)
         at java.io.BufferedReader.readLine(Unknown Source)
         at java.io.BufferedReader.readLine(Unknown Source)
         at Client.main(Client.java:46)
    As my investigation if I can remove following code segments then program is working fine.
    System.out.println("Server -> "+*getDecriptedMassage*(fromClinet,prvKey));
    out.println(Utility.getDecriptedMassage(massage,prvKey));So this should be a error when decrypting message. If I am further explaining this the sending encrypted message with client is not same as getting decrypted message on server. Because of this program is giving the error.

  • How to pass KDC server address and REALM in Krb5LoginModule ??

    Hi All,
    I want to pass KDC server address and REALM in Krb5LoginModule() with using configuration file or command line options.
    I tried with initialize method of Krb5LoginModule() with passing KDC configuration parameters in sharedState.
    Map state = new HashMap();
    state.put("javax.security.auth.login.name", "user");
    state.put("javax.security.auth.login.password", "pass");
    state.put("java.security.krb5.realm", "TEST.COM");
    state.put("java.security.krb5.kdc", "kdc.test.com");
    Map options = new HashMap();
    options.put("debug", "true");
    options.put("tryFirstPass", "true");
    options.put("useTicketCache", "true");
    options.put("doNotPrompt", "true");
    options.put("storePass", "false");
    options.put("forwardable", "true");
    Krb5LoginModule login = null;
    try {
    login = new Krb5LoginModule();
    login.initialize(new Subject(), new TextCallbackHandler(), state, options);
    if(login.login()){
    login.commit();
    But i getting this exception:
    [root@localhost TEST]# java JaasAcn1
    Debug is true storeKey false useTicketCache true useKeyTab false doNotPrompt true ticketCache is null isInitiator true KeyTab is null refreshKrb5Config is false principal is null tryFirstPass is true useFirstPass is false storePass is false clearPass is false
    Acquire TGT from Cache
    Principal is null
    null credentials from Ticket Cache
    username from shared state is user
    username from shared state is user
    Exception in thread "main" java.lang.ClassCastException: java.lang.String
    at com.sun.security.auth.module.Krb5LoginModule.promptForPass(Krb5LoginModule.java:773)
    at com.sun.security.auth.module.Krb5LoginModule.attemptAuthentication(Krb5LoginModule.java:654)
    at com.sun.security.auth.module.Krb5LoginModule.login(Krb5LoginModule.java:503)
    at JaasAcn1.main(JaasAcn1.java:31)
    Please give some pointers to solve the problem.
    Thanks in advance.
    Regards,
    raj singh

    The exception
    Exception in thread "main" java.lang.ClassCastException: java.lang.String
    at com.sun.security.auth.module.Krb5LoginModule.promptForPass(Krb5LoginModule.java:773)
    at com.sun.security.auth.module.Krb5LoginModule.attemptAuthentication(Krb5LoginModule.java:654)
    at com.sun.security.auth.module.Krb5LoginModule.login(Krb5LoginModule.java:503)
    at JaasAcn1.main(JaasAcn1.java:31)clearly shows that your format for password is wrong in the shared state. String is evil, use char[] instead. Here it should be "pass".toCharArray().

  • Obtain remote client IP address from webservice with WL 7.0.7

    Hi,
    Please Help!!
    I need to get the remote client IP address from inside a webservice but with WLS 7.0.7. I know it is possible with WL 8:
    WebServiceContext wsContext = WebServiceContext.currentContext();
    WebServiceHttpSessionImpl vHttp = (WebServiceHttpSessionImpl)wsContext.getSession();
    vHttp.request.getRemoteAddr();
    But WL 7 has not available WebServiceContext.currentContext() method.
    Thank you very much

    This was logged as an enhancement which I believe was hoping to make it into one of the later 6i releases of forms. Ref:<Bug:856958> if you can access via metalink or Support.
    Grant Ronald.

  • Getting client IP Address via reverse proxy

    We're using APEX 4.2.1. I've configured APEX to recognise the X-Forwarded-For header so I can use owa_util.get_cgi_env ('X-Forwarded-For') when available to get the IP address of the client. Does APEX provide a safer way to access this header?
    In the APEX Instance Security configuration settings you can specify a comma separated list of proxy servers. This works fine for internal APEX logs, but how do I tap into this in my apps?
    What I'm looking for is a function that returns the X-Forwarded-For header when the client IP is in the proxy list or otherwise it returns the REMOTE_ADDR header, without having to maintain a list of trusted proxy IP's elsewhere. I don't want the two sources to inadvertently get out of sync.

    Also it may not be any use, e.g. if it is a 192.*.*.* or 10.*.*.* address allocated via NAT. For example it may not be unique among all poossible clients. If you need a client identity it is best to generate it yourself.

  • How to get client Ip address from web service

    Hello folks,
    I am quite new to web service and developing a web service using netbeans6.0 IDE, where i have to know which client called/used the service, After googling i got code snippet like below
    inject a WebServiceContext instance into your WebService class, and use it in each WebMethod to get the current request's MessageContext Map. Get the SERVLET_REQUEST item from that, cast as an HttpServletRequest. From that HttpServletRequest, you can invoke getRemoteAddr() to get the client's IP.
    @WebService
    public class MyService{
    @Resource
    WebServiceContext wsCtxt;
    @WebMethod
    public void myWebMethod(){
    MessageContext msgCtxt = wsCtxt.getMessageContext();
    HttpServletRequest req = (HttpServletRequest)msgCtxt.get(MessageContext.SERVLET_REQUEST);
    String clientIP = req.getRemoteAddr();
    }But it throws error in my PC like
    Service invocation threw an exception with message : null; Refer to the server log for more details
    Exceptions details : java.lang.reflect.InvocationTargetExceptionIs there any way that says client pc ip address using netbeans6.0 Or what went wrong in my code?
    Largely Thanks in advance.
    SRI.

    I am afraid,
    javax.servlet.ServletException: java.lang.reflect.InvocationTargetException
    at com.sun.enterprise.webservice.monitoring.WebServiceTesterServlet.doPost(WebServiceTesterServlet.java:340)
    at com.sun.enterprise.webservice.monitoring.WebServiceTesterServlet.invoke(WebServiceTesterServlet.java:121)
    at com.sun.enterprise.webservice.JAXWSServlet.doPost(JAXWSServlet.java:148)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:738)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:831)
    at org.apache.catalina.core.ApplicationFilterChain.servletService(ApplicationFilterChain.java:411)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:317)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
    at org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:390)
    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:230)
    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:198)
    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:288)
    at org.apache.catalina.core.StandardContextValve.invokeInternal(StandardContextValve.java:271)
    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:202)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at com.sun.enterprise.web.WebPipeline.invoke(WebPipeline.java:94)
    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:206)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:150)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:632)
    at org.apache.catalina.core.StandardPipeline.doInvoke(StandardPipeline.java:577)
    at org.apache.catalina.core.StandardPipeline.invoke(StandardPipeline.java:571)
    at org.apache.catalina.core.ContainerBase.invoke(ContainerBase.java:1080)
    at org.apache.coyote.tomcat5.CoyoteAdapter.service(CoyoteAdapter.java:270)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.invokeAdapter(DefaultProcessorTask.java:637)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.doProcess(DefaultProcessorTask.java:568)
    at com.sun.enterprise.web.connector.grizzly.DefaultProcessorTask.process(DefaultProcessorTask.java:813)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.executeProcessorTask(DefaultReadTask.java:339)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:261)
    at com.sun.enterprise.web.connector.grizzly.DefaultReadTask.doTask(DefaultReadTask.java:212)
    at com.sun.enterprise.web.connector.grizzly.TaskBase.run(TaskBase.java:265)
    at com.sun.enterprise.web.connector.grizzly.ssl.SSLWorkerThread.run(SSLWorkerThread.java:106)
    Caused by: java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at com.sun.enterprise.webservice.monitoring.WebServiceTesterServlet.doPost(WebServiceTesterServlet.java:311) ... 35 more Caused by: javax.xml.ws.soap.SOAPFaultException: java.lang.NullPointerException at com.sun.xml.ws.fault.SOAP11Fault.getProtocolException(SOAP11Fault.java:187) at com.sun.xml.ws.client.sei.SEIStub.invoke(SEIStub.java:117) at $Proxy102.processMessage999(Unknown Source) ... 40 more Caused by: java.lang.NullPointerException at org.shar.Handle.processMessage999(Handle.java:120) at com.sun.enterprise.web.portunif.PortUnificationPipeline$PUTask.doTask(PortUnificationPipeline.java:361) ... 2 more

  • CSS with SSL module - how many certs do we need

    Hello,
    currently moving from server-based certs to CSS/SSL based.
    We have two sites, two CSS/SSL on each in ASR mode.
    There are two real servers behind each SSL rule for load balancing.
    The question becomes how many certificates do we need
    for such design ?
    For sure we need one per site, then on each site we have Active/Standby CSS's.
    Do we need separate certificate for each CSS?
    I dont think so, cause only one is active at the time.
    I tested it with same certificate on both CSS's on one site, no problem.
    The question is will it be ok for production ?
    So total number would be 2 cert for such design (one per VIP) if we have one SSL rule per site, and 4 if we have 2 SSL rule per site - is it ok ?
    Thank you,
    Alex

    the certificate is linked to a host name ie: www.mycompany.com.
    So, if you have 4 css, all handling traffic for www.mycompany.com, then they can all share the same certificate.
    Even if you have the 4 CSS split over 2 sites, using different vip, as long as they handle the same hostname, then they can share the certificate.
    Actually, the CSS itself does not care about hostname/certificate mapping.
    The CSS will use whatever certificate you configure it to use.
    However, browsers make a check url <-> certificate and if there is a mismatch, they pop up an error message.
    Regards,
    Gilles.

  • How to set default email address for contact with multiple addresses.

    Apologies if this has been asked before, it seems a very basic question but I'm unable to find an answer.
    Can a default address be set in Address Book for a contact with multiple addresses? Or if not, which address does it send to "automatically" when this condition exists? I know you can manually select the address you want to use, but what if the contact is added to a group?
    Thanks
    Denis

    Thanks for the reply, buy I have no idea what this means.
    I have the same question. I have a contact that has five email addresses. When I add the person to a group, Mail automatically selects one of the addresses, but not the one I want. I need to go back and manually select the correct address. Can't I select one of these addresses as the default to be used all the time?
    Apologies for not quite understanding the first reply.

  • How to i get client IP address of a system on Oracle E-biz

    We are trying to extend our audit to getting the client IP address of a system on Oracle E-biz. This is to track down some users trying to perform a fraudulent act. Anybody has an idea. Maybe there are some scripts i need to run.

    Hi user;
    Please check:
    How to get Client IP address in oracle apps. Are there any API's.
    Re: How to get Client IP address in oracle apps. Are there any API's.
    Hope it helps
    Regard
    Helios

  • How to pass attendees email info in hotmail calendar add event url

    Hello,
    Could anybody here please help me, how to pass attendees email address information in add event calendar url.
    I Know how to create web calendar event with start date , end date, location and description information by using url like this -
    https://bay03.calendar.live.com/calendar/calendar.aspx?rru=addevent&dtstart=20140510T093846Z&dtend=20140511T093846Z&summary=Summary%20of%20the%20event&location=Location%20of%20the%20event&description=Description%20of%20the%20event&uid=
    but I want to know how to add attendees email address to the above url, what is the query string param?
    Any help is greatly appreciated
    Thanks & Regards,
    Narayana Karthik

    Hi Dave,
    I had already posted there, they only asked me to post it here to get answer.
    Please check it - 
    http://answers.microsoft.com/en-us/outlook_com/forum/ocalendar-oaddevent/how-to-pass-attendees-email-info-in-hotmail/f9ceaa8e-8d45-4985-9524-c7625c03e2c9?tm=1414837768577
    Any help is greatly appreciated.
    Thanks & Regards,
    Narayana Karthik

  • Resolving client IP-address or machine name

    In Tree Tier Configuration, how to resolve client IP address or machine name.
    Database and App server are on same unix box, but clients are Windows PC's.
    Configuration:
         Oracle RDBMS 8.1.7.3 on HP-UX 11.11
         Oracle Application Server Rel.1 (1.0.2.2.2) on HP-UX 11.11 (same as above)
         Oracle Application R11i

    I don't have general answer, but I create small perl script for reading Forms server log file.
    ===========START readfrmlog.pl=========================
    #!/usr/contrib/bin/perl
    # Read FORMS6i Server logfile
    # Autor: Mastakov Konstantin
    if ((@ARGV!=2) || (($ARGV[0] ne '-d')&&($ARGV[0] ne '-a')&&($ARGV[0] ne '-x'))) {
    &usage;
    exit;
    if ($ARGV[1] eq 'TEST') {
    $logfile='/oracle/test/testora/8.0.6/forms60/log/TEST/frmlsnr.log';
    $ORACLE_HOME='/oracle/test/testdb/8.1.7';
    else {
    $logfile='/oracle/prod1/prodora/8.0.6/forms60/log/PROD/frmlsnr.log';
    $ORACLE_HOME='/oracle/prod1/proddb/8.1.7';
    $ORACLE_SID=$ARGV[1];
    $startread=false;
    $vrati=-1;
    if (open(FRMLOG,$logfile)) {
    $poz=tell(FRMLOG);
    while ($linija=<FRMLOG>) {
    if (substr($linija,0,1) eq '[') {
    $startread=$linija=~/::Server Start-up Data:/;
    if ($startread) {
    $serverData=&userDT(substr($linija,1,28));
    $vrati=$poz;
    $poz=tell(FRMLOG);
    if ($poz>=0) {
    seek(FRMLOG,$vrati,0);
    while ($linija=<FRMLOG>) {
    if (substr($linija,0,1) eq '[') {
    $data=&userDT(substr($linija,1,28));
    if ($linija=~/::LISTN: Connection Request/) {
    $vtordel=$';
    $vtordel=~/ConnId=/;
    $tretdel=$';
    $tretdel=~/,/;
    $connId=$`;
    $cetdel=$';
    $cetdel=~/Addr=/;
    $petdel=$';
    $petdel=~/]/;
    $ipAddr=$`;
    $lsnr{$connId}->[0]=$data;
    $lsnr{$connId}->[1]=$ipAddr;
    if ($linija=~/::RUNFORM Client Connected/) {
    $vtordel=$';
    $vtordel=~/ConnId=/;
    $tretdel=$';
    $tretdel=~/,/;
    $connId=$`;
    $cetdel=$';
    $cetdel=~/PID=/;
    $petdel=$';
    $petdel=~/]/;
    $procId=$`;
    $lsnr{$connId}->[2]=$procId;
    if ($linija=~/::Client Status/) {
    $vtordel=$';
    $vtordel=~/ConnId=/;
    $tretdel=$';
    $tretdel=~/,/;
    $connId=$`;
    $cetdel=$';
    $cetdel=~/PID=/;
    $petdel=$';
    $petdel=~/]/;
    $procId=$`;
    $lsnr{$connId}->[3]=$data;
    if ($linija=~/::RUNFORM Client Disconnected/) {
    $vtordel=$';
    $vtordel=~/ConnId=/;
    $tretdel=$';
    $tretdel=~/,/;
    $connId=$`;
    $cetdel=$';
    $cetdel=~/PID=/;
    $petdel=$';
    $petdel=~/]/;
    $procId=$`;
    $lsnr{$connId}->[3]=$data;
    close FRMLOG;
    if ($ARGV[0] eq '-a') {
    @progList = ("ORACLE_HOME=$ORACLE_HOME; export ORACLE_HOME;".
    "ORACLE_SID=$ORACLE_SID; export ORACLE_SID;".
    "TNS_ADMIN=/oracle/etc/network; export TNS_ADMIN;".
    "$ORACLE_HOME/bin/sqlplus ".'-s apps/apps@$ORACLE_SID @spid_to_forms2.sql >frmlog.lst');
    system(@progList);
    if (open(SQLLOG,'frmlog.lst')) {
    while ($linija=<SQLLOG>) {
    chop($linija);
    @cpole=split(/\s+/,$linija);
    $userList{$cpole[1]}=$cpole[0];
    close SQLLOG;
    unlink('frmlog.lst');
    foreach $kluc (keys(%lsnr)) {
    $lsnr{$kluc}->[4]=$userList{$lsnr{$kluc}->[2]};
    $what="All" if ($ARGV[0] eq '-x');
    $what="Disconnected" if ($ARGV[0] eq '-d');
    $what="Active" if ($ARGV[0] eq '-a');
    print("Print $what Connections\n");
    print("Forms Server Up from: $serverData\n\n");
    print("Connection Start Who ProcID Connection Ended User\n");
    print("------------------- --------------------- ------- ------------------- ----------\n");
    foreach $kluc (sort {$lsnr{$a}->[0] cmp $lsnr{$b}->[0]} keys(%lsnr)) {
    $iP=substr($lsnr{$kluc}->[1]." ",0,21);
    $pRoc=substr($lsnr{$kluc}->[2]." ",0,7);
    $endTime=substr($lsnr{$kluc}->[3]." ",0,19);
    if (($ARGV[0] eq '-x') || (($ARGV[0] eq '-a') && (length($lsnr{$kluc}->[3])<5)) ||
    (($ARGV[0] eq '-d') && (length($lsnr{$kluc}->[3])>5))) {
    print($lsnr{$kluc}->[0].' '.$iP.' '.$pRoc.' '.$endTime.' '.$lsnr{$kluc}->[4]."\n");
    else {
    print("Error reading Forms-log file: $logfile\n");
    sub userDT {
    my ($sto) = @_;
    $mesec{'Jan'}='01';
    $mesec{'Feb'}='02';
    $mesec{'Mar'}='03';
    $mesec{'Apr'}='04';
    $mesec{'May'}='05';
    $mesec{'Jun'}='06';
    $mesec{'Jul'}='07';
    $mesec{'Aug'}='08';
    $mesec{'Sep'}='09';
    $mesec{'Oct'}='10';
    $mesec{'Nov'}='11';
    $mesec{'Dec'}='12';
    return substr($sto,20,4).".".$mesec{substr($sto,4,3)}.".".substr($sto,8,2)." ".substr($sto,11,8);
    sub usage {
    print("Usage: readfrmlog -x|-a|-d ORACLE_SID\n");
    print(" -x all (Active and Disconnected) connection\n");
    print(" -a only Active connection\n");
    print(" -d only Disconnected connection\n");
    ===========END readfrmlog.pl=========================
    ===========START spid_to_forms2.sql==================
    set lines 120
    column user_name format a20
    column user_form_name format a25
    column time format a8
    column pid format 99999
    column spid format 99999
    set pages 0
    set feedb off
    select distinct user_name,process
    from fnd_signon_audit_view, v$process, v$session
    where fnd_signon_audit_view.pid = v$process.pid and
    v$session.paddr = v$process.addr
    and user_form_name is not null
    exit;
    ===========END spid_to_forms2.sql==================
    Modify all hardcoded variables: ORACLE_SID, ORACLE_HOME, TNS_ADMIN, logfile, password of App R11, location of perl exe, ...
    Regards,

  • How to connect via bluetooth with wireless printer

    how to connect my macbook pro via bluetooth with epson all in one wireless TX600FW

    Bluetooth between iOS devices and computers is only for Internet tethering, nothing else.
    See: http://support.apple.com/kb/ht3647

Maybe you are looking for

  • Forecast Consumption

    Hi, we are running ASCP on 11.5.10 and use a forecast from ODP loaded into the ASCP plan. In the plan options we have set "Schedule By" to "Schedule Ship Date" because we want that everything is planned for the Schedule Ship Date from the Sales Order

  • DMS server sizing calculation

    HI Gurus, My client has given that Finance department is generating documents around 20 GB  per month (includes all types of format) now i have to create the Server sizing for this 20 GB kindly help on how to proceed. Is there is any standard calcula

  • Chnage pointers for a report

    Hi, I have a requirement where in I have to  modify all the  articles (MARC-MATNR)  which are specified in the selection screen of a report. This report would be running in back ground for every one hour. user would not be entering input in the selec

  • Need help: playing songs in order, strangewindow message, upgrading I-Tunes

    I have 2 situations I hope someone can help me with: 1: PLAYING SONGS IN ORDER; WINDOW MESSAGE I have CDs of music that when I load them onto my pc laptop the song names don't come up-each song lists as "track 01" "track 02" etc. When I try to play t

  • Migration From Developer 2.1 to Forms 6i/9i

    Hello, My client wants to migrate from Developer 2.1 to Forms 6i or to Forms 9i with C/S architecture (Sun Solaris 2.6). They are told (from Oracle Support) that they need to add a patch set before migrating. Has anybody migrated in this environment