Solution: View distorted logon page from remote unix server.

This problem is a bloody f*cking headache which I spent days searching this and other forums for a solution trying this and that ... f*cktype problem. I just thought writing this so that somebody out there having same problem can benefit from this.
This is the solution if you have problem trying to use another unix ws or server to do startconsole but you get distorted image at the logon page or you cannot type any entry in the fields to logon to server.
The symptoms are: at the ias console located in the datacenter I can logon, but remotely on my ultra1 I cannot even when all the access permissions and IP addresses for remote administration have been specified.
For my setup I have a couple of ias server at remote which I tried to manage using a small ultra1 ws which I only installed the "base" admin tool namely startconsole.
Initially I tried doing "xhost +" on the ultra1 then telnet to the ias server at remote and 'export DISPLAY' that didn't work as somehow the java didn't display up properly. So thats why in the end I installed the tool for startconsole.
Firstly when trying to logon to remote server ensure the correct administration url of the remote ldap, this can be found under < */iplanet/ias6/admin-serv/config/adm.conf >
check for the "ldaphost : "
Then ensure that this entry is stored in your dns or remote server /etc/host file.
Solution:
The reason why I saw distorted image logon during "startconsole" was because of some missing files on my ultra1 under <*/iplanet/ias6/java/jars/ias60*> somehow during installation on the ultra1 those files were missing as part of the installation. I copied those files from remote ias servers and put them in the ultra1 and everything came up properly.
==================================
some troubleshooting steps which I used.
==================================
startconsole -D # debug mode
truss startconsole # more debug
startconsole -x nologo # starts console with the iplanet logo.
startconsole -x nologo -u "cn=Directory Manager" -w <password>
testing logon password at remote ias server using ldapsearch(can help narrow down if passwords are having problems or not)
============================================
ldapseatch -D "cn=Directory Manager" -w <password> -b o=netscaperoot cn=admin-serv-<host>

This problem is a bloody f*cking headache which I spent days searching this and other forums for a solution trying this and that ... f*cktype problem. I just thought writing this so that somebody out there having same problem can benefit from this.
This is the solution if you have problem trying to use another unix ws or server to do startconsole but you get distorted image at the logon page or you cannot type any entry in the fields to logon to server.
The symptoms are: at the ias console located in the datacenter I can logon, but remotely on my ultra1 I cannot even when all the access permissions and IP addresses for remote administration have been specified.
For my setup I have a couple of ias server at remote which I tried to manage using a small ultra1 ws which I only installed the "base" admin tool namely startconsole.
Initially I tried doing "xhost +" on the ultra1 then telnet to the ias server at remote and 'export DISPLAY' that didn't work as somehow the java didn't display up properly. So thats why in the end I installed the tool for startconsole.
Firstly when trying to logon to remote server ensure the correct administration url of the remote ldap, this can be found under < */iplanet/ias6/admin-serv/config/adm.conf >
check for the "ldaphost : "
Then ensure that this entry is stored in your dns or remote server /etc/host file.
Solution:
The reason why I saw distorted image logon during "startconsole" was because of some missing files on my ultra1 under <*/iplanet/ias6/java/jars/ias60*> somehow during installation on the ultra1 those files were missing as part of the installation. I copied those files from remote ias servers and put them in the ultra1 and everything came up properly.
==================================
some troubleshooting steps which I used.
==================================
startconsole -D # debug mode
truss startconsole # more debug
startconsole -x nologo # starts console with the iplanet logo.
startconsole -x nologo -u "cn=Directory Manager" -w <password>
testing logon password at remote ias server using ldapsearch(can help narrow down if passwords are having problems or not)
============================================
ldapseatch -D "cn=Directory Manager" -w <password> -b o=netscaperoot cn=admin-serv-<host>

Similar Messages

  • Need to access/connect Remote Unix server from Java

    Please any one give me a direct solution for connecting a remote Unix server through telnet connection from java application. Thanks in advance..

    If I run the below program codes, in the console it is asking to enter username and password in manual but I need to give it automatically.
    The highlighted "root" is entered by the user manually using keyboard.
    Expected:
    I mean the username, password and some action is set to be automatic, so that it should not ask the user to enter the input from keyboard.
    import java.awt.Robot;
    import java.awt.event.KeyEvent;
    import java.io.InputStream;
    import java.io.OutputStream;
    import java.io.FileOutputStream;
    import java.io.IOException;
    import org.apache.commons.net.telnet.TelnetClient;
    import org.apache.commons.net.telnet.TelnetNotificationHandler;
    import org.apache.commons.net.telnet.SimpleOptionHandler;
    import org.apache.commons.net.telnet.EchoOptionHandler;
    import org.apache.commons.net.telnet.TerminalTypeOptionHandler;
    import org.apache.commons.net.telnet.SuppressGAOptionHandler;
    import org.apache.commons.net.telnet.InvalidTelnetOptionException;
    import java.util.StringTokenizer;
    * This is a simple example of use of TelnetClient.
    * An external option handler (SimpleTelnetOptionHandler) is used.
    * Initial configuration requested by TelnetClient will be:
    * WILL ECHO, WILL SUPPR
    * ESS-GA, DO SUPPRESS-GA.
    * VT100 terminal type will be subnegotiated.
    * <p>
    * Also, use of the sendAYT(), getLocalOptionState(), getRemoteOptionState()
    * is demonstrated.
    * When connected, type AYT to send an AYT command to the server and see
    * the result.
    * Type OPT to see a report of the state of the first 25 options.
    * <p>
    * @author Bruno D'Avanzo
    public class UnixConnect implements Runnable, TelnetNotificationHandler
        static TelnetClient tc = null;
         * Main for the TelnetClientExample.
        public static void main(String[] args) throws IOException
            FileOutputStream fout = null;
            /*if(args.length < 1)
                System.err.println("Usage: TelnetClientExample1 <remote-ip> [<remote-port>]");
                System.exit(1);
            String remoteip = "192.168.20.11";
            int remoteport;
            if (args.length > 1)
                remoteport = (new Integer(args[1])).intValue();
            else
                remoteport = 23;
            try
                fout = new FileOutputStream ("spy.log", true);
            catch (Exception e)
                System.err.println(
                    "Exception while opening the spy file: "
                    + e.getMessage());
            tc = new TelnetClient();
            TerminalTypeOptionHandler ttopt = new TerminalTypeOptionHandler("VT200", false, false, true, false);
            EchoOptionHandler echoopt = new EchoOptionHandler(true, false, true, false);
            SuppressGAOptionHandler gaopt = new SuppressGAOptionHandler(true, true, true, true);
            try
                tc.addOptionHandler(ttopt);
                tc.addOptionHandler(echoopt);
                tc.addOptionHandler(gaopt);
            catch (InvalidTelnetOptionException e)
                System.err.println("Error registering option handlers: " + e.getMessage());
            while (true)
                boolean end_loop = false;
                try
                    tc.connect(remoteip, remoteport);
                    Thread reader = new Thread (new UnixConnect());
                    tc.registerNotifHandler(new UnixConnect());
                    reader.start();
                    OutputStream outstr = tc.getOutputStream();
                    byte[] buff = new byte[1024];
                    int ret_read = 0;
                    do
                        try
                            ret_read = System.in.read(buff);
                            if(ret_read > 0)
                            outstr.write(buff, 0 , ret_read);
                            outstr.flush();
                        catch (Exception e)
                            System.err.println("Exception while reading keyboard:" + e.getMessage());
                            end_loop = true;
                    while((ret_read > 0) && (end_loop == false));
                    try
                        tc.disconnect();
                    catch (Exception e)
                              System.err.println("Exception while connecting:" + e.getMessage());
                catch (Exception e)
                        System.err.println("Exception while connecting:" + e.getMessage());
                        System.exit(1);
         * Callback method called when TelnetClient receives an option
         * negotiation command.
         * <p>
         * @param negotiation_code - type of negotiation command received
         * (RECEIVED_DO, RECEIVED_DONT, RECEIVED_WILL, RECEIVED_WONT)
         * <p>
         * @param option_code - code of the option negotiated
         * <p>
        public void receivedNegotiation(int negotiation_code, int option_code)
            String command = null;
            if(negotiation_code == TelnetNotificationHandler.RECEIVED_DO)
                command = "DO";
            else if(negotiation_code == TelnetNotificationHandler.RECEIVED_DONT)
                command = "DONT";
            else if(negotiation_code == TelnetNotificationHandler.RECEIVED_WILL)
                command = "WILL";
            else if(negotiation_code == TelnetNotificationHandler.RECEIVED_WONT)
                command = "WONT";
            System.out.println("Received " + command + " for option code " + option_code);
         * Reader thread.
         * Reads lines from the TelnetClient and echoes them
         * on the screen.
        public void run()
            InputStream instr = tc.getInputStream();
            try
                byte[] buff = new byte[1024];
                int ret_read = 0;
                do
                    ret_read = instr.read(buff);
                    if(ret_read > 0)
                       System.out.print(new String(buff, 0, ret_read));
                while (ret_read >= 0);
            catch (Exception e)
                System.err.println("Exception while reading socket:" + e.getMessage());
            try
                tc.disconnect();
            catch (Exception e)
                System.err.println("Exception while closing telnet:" + e.getMessage());

  • From Sap to Remote Unix Server

    Hi,
    I have to send a file from an internal table to a remote unix server. i have tried a lot appling FTP with a put command but its still not getting transported.
    please help me out.and also tell me wheather i can use some other way to do this.
    also tell me wheather there are some issues of authorisation in this....
    please help me as early as possible.. i am in a real need.. i promise to revert back with points...

    I HAVE TO SEND A FILE FROM OUR SAP TO REMOTE UNIX SERVER.
    FOR THIS PURPOSE I AM USING FTP, BUT STILL I AM NOT ABLE TO DO THAT..
    PLEASE HELP ME OUT ON THIS..
    BELOW I AM GIVING MY CODE PLEASE HAVE A LOOK AT IT AND TELL ME WHATS WRONG.
    REPORT ZIZSFPB001 .
    TABLES : ZISFP03.
    CONSTANTS: C_DELIMETER(1)  TYPE C
                              VALUE '#'.
    TYPES: BEGIN OF TY_FREIGHT,
                    VENDOR      TYPE ZISFP03-VENDOR,
                    LR_NO       TYPE ZISFP03-LR_NO,
                    EBELN       TYPE ZISFP03-EBELN,
                    LR_DATE     TYPE ZISFP03-LR_DATE,
                    PO_DATE     TYPE ZISFP03-PO_DATE,
                    PO_BRANCH   TYPE ZISFP03-PO_BRANCH,
                    TRK_NO      TYPE ZISFP03-TRK_NO,
                    DISP_TIME   TYPE ZISFP03-DISP_TIME,
                    SCAN_NO     TYPE ZISFP03-SCAN_NO,
                    ACTU_QTY    TYPE ZISFP04-ACTU_QTY,
                    MATERIAL    TYPE ZISFP04-MATERIAL,
                    GR_BRANCH   TYPE ZISFP04-GR_BRANCH,
                    STDTIME     TYPE ZISFP14-STDTIME,
                    EST_ARRV_DT TYPE ZISFP04-ARRV_DT,
           END   OF TY_FREIGHT.
    TYPES: BEGIN OF TY_FTP,
                    FIELD(90) TYPE C,
           END   OF TY_FTP.
    DATA: IT_FREIGHT TYPE STANDARD TABLE OF TY_FREIGHT,
          IT_OUTPUT  TYPE STANDARD TABLE OF TY_FREIGHT,
          IT_FTP     TYPE STANDARD TABLE OF TY_FTP.
    DATA : BEGIN OF TABL OCCURS 0,
           LINE(560),
           END OF TABL.
    DATA: WA_FREIGHT TYPE TY_FREIGHT,
          WA_OUTPUT  TYPE TY_FREIGHT,
          WA_FTP     TYPE TY_FTP.
    DATA: W_DSN             TYPE SXPGCOLIST-PARAMETERS,
          W_FTP_DSN         TYPE SXPGCOLIST-PARAMETERS,
          W_PARCOM_LOC(150) TYPE C,
          W_FNAME(16)       TYPE C,
          W_ERROR_FLAG(1)   TYPE C.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001.
    SELECT-OPTIONS : S_LR_DT FOR ZISFP03-LR_DATE.
    SELECTION-SCREEN END OF BLOCK B1.
    START-OF-SELECTION.
      PERFORM GET_DATA.
      PERFORM TRANSFER_DATA_TO_FILE.
      PERFORM FTP_TRANSFER.
    *&      Form  GET_DATA
          text
    FORM GET_DATA.
      SELECT A~VENDOR
             A~LR_NO
             A~EBELN
             A~LR_DATE
             A~PO_DATE
             A~PO_BRANCH
             A~TRK_NO
             A~DISP_TIME
             A~SCAN_NO
             B~ACTU_QTY
             B~MATERIAL
             B~GR_BRANCH
             C~STDTIME
        INTO TABLE IT_FREIGHT
        FROM ( ( ZISFP03 AS A
       INNER JOIN ZISFP04 AS B
          ON AVENDOR = BVENDOR
         AND ALR_NO = BLR_NO
         AND AEBELN = BEBELN )
       INNER JOIN ZISFP14 AS C
          ON AVENDOR = CVENDOR
         AND APO_BRANCH = CFROM_LOC
         AND BGR_BRANCH = CTO_LOC
         AND AZMODE = CEXPRES_TY )
       WHERE A~LR_DATE IN S_LR_DT.
      IF SY-SUBRC EQ 0.
        SORT IT_FREIGHT BY VENDOR LR_NO EBELN.
        DELETE ADJACENT DUPLICATES FROM IT_FREIGHT.
      ENDIF.
    IT_OUTPUT[] = IT_FREIGHT[].
    ENDFORM.                    " GET_DATA
    *&      Form  TRANSFER_DATA_TO_FILE
          text
    FORM TRANSFER_DATA_TO_FILE.
      MOVE 'createnew.txt' TO W_FNAME.
      CONCATENATE '/usr/sap/trans/mmpp/' W_FNAME INTO W_DSN.
      OPEN DATASET W_DSN FOR OUTPUT IN TEXT MODE.
      IF SY-SUBRC NE 0.
        WRITE : 'File open error occured.'.
        STOP.
      ENDIF.
      LOOP AT IT_OUTPUT INTO WA_OUTPUT.
        TRANSFER WA_OUTPUT TO W_DSN.
        CLEAR WA_OUTPUT.
      ENDLOOP.
      IF SY-SUBRC NE 0.
        WRITE : 'File write error occured.'.
        EXIT.
      ENDIF.
      CLOSE DATASET W_DSN.
    ENDFORM.                    " TRANSFER_DATA_TO_FILE
    *&      Form  FTP_TRANSFER
          text
    FORM FTP_TRANSFER.
      PERFORM BUILD_FTP_FILE.
      PERFORM TRANSFER_FTP_FILE.
    ENDFORM.                    " FTP_TRANSFER
    *&      Form  BUILD_FTP_FILE
          text
    FORM BUILD_FTP_FILE.
      W_FTP_DSN  =  '/usr/sap/trans/mmpp/createcheck.txt'.
      CONCATENATE 'open'
                  'www.info.com'
             INTO WA_FTP-FIELD
        SEPARATED BY SPACE.
      APPEND WA_FTP TO IT_FTP.
      CLEAR WA_FTP.
      CONCATENATE 'user'
                  'myusername'
                  'mypassword'
             INTO WA_FTP-FIELD
        SEPARATED BY SPACE.
      APPEND WA_FTP TO IT_FTP.
      CLEAR WA_FTP.
      CONCATENATE 'cd'
    '/oracle01/oracle/product/iSuites/Apache/Apache/htdocs/etrans/user/upload/'
    INTO WA_FTP-FIELD separated by space.
      APPEND WA_FTP TO IT_FTP.
      CLEAR WA_FTP.
    MOVE 'put /usr/sap/trans/mmpp/createnew.txt' TO WA_FTP-FIELD.
      APPEND WA_FTP TO IT_FTP.
      CLEAR WA_FTP.
      MOVE 'close' TO WA_FTP-FIELD.
      APPEND WA_FTP TO IT_FTP.
      CLEAR WA_FTP.
      MOVE 'bye' TO WA_FTP-FIELD.
      APPEND WA_FTP TO IT_FTP.
      CLEAR WA_FTP.
      OPEN DATASET W_FTP_DSN FOR OUTPUT IN TEXT MODE.
      LOOP AT IT_FTP INTO WA_FTP.
        TRANSFER WA_FTP-FIELD TO W_FTP_DSN.
        CLEAR WA_FTP.
      ENDLOOP.
      CLOSE DATASET W_FTP_DSN.
    ENDFORM.                    " BUILD_FTP_FILE
    *&      Form  TRANSFER_FTP_FILE
          text
    FORM TRANSFER_FTP_FILE.
      FREE TABL.
      CONCATENATE 'ftp -v -n < 'W_FTP_DSN INTO W_PARCOM_LOC.
      CALL 'SYSTEM' ID 'COMMAND' FIELD W_PARCOM_LOC
                    ID 'TAB'     FIELD TABL-SYS.
      IF  W_ERROR_FLAG = '*'.
        MESSAGE I036(ZIMM).
      ELSEIF  W_ERROR_FLAG =  'F' .
        MESSAGE I139(ZIMM) WITH W_FNAME.
      ELSE.
        MESSAGE I038(ZIMM) WITH W_FNAME.
      ENDIF.
    ENDFORM.                    " TRANSFER_FTP_FILE
    **THE ABOVE GIVEN IS THE CODE I AM WRITING FOR THE FTP TO TRANSFER DATA FROM OUR APLICATION SERVER TO
    THE REMOTE UNIX SERVER.
    BUT WHEN I DO THE
      CALL 'SYSTEM' ID 'COMMAND' FIELD W_PARCOM_LOC
                    ID 'TAB'     FIELD TABL-SYS.
    MY SYSTEM GOT HANGED AND GVES NO RESPONSE...
    PLEASE HELP ME OUT AS EARLY AS POSSIBLE...
    I WILL SURE U THAT U WULL REVERT BACK WITH POINTS...
    PLEASE HELP...
    ARE THERE ANY AUTHORISATIONS ISSUES..OR I AM DOING SOMETHING WRONG...

  • Oracle directory at remote unix server

    Hi,
    We have created a oracle directory which is pointing to the remote unix server. The unix admin the path is mounted ( i donot understand much about mounting).
    The problem is the directory is visible in the all_directory view but it says when “the directory is not valid” when we try to write to this directory.
    Nordick

    >
    We have created a oracle directory which is pointing to the remote unix server. The unix admin the path is mounted ( i donot understand much about mounting).
    The problem is the directory is visible in the all_directory view but it says when “the directory is not valid” when we try to write to this directory.
    >
    When you create a directory object oracle doesn't do any validation until the point you try to access that directory object. So please try checking from the $ prompt whether you are able to access that directory. If so then verify the owner of the listener process has access to the directory.
    Regards
    Raj

  • SMTP error from remote mail server 522 IP REPUTATI...

    I have a hosting business, and one of my clients on BTinternet, using BT Mail is now having mail bounce back to sender when forwarded from her domain mailbox.
    Here is an example of the bounced errors -
    A message that you sent could not be delivered to one or more of its
    recipients. This is a permanent error. The following address(es) failed:
    [email protected]
    (ultimately generated from [email protected])
    host mx.bt.lon5.cpcloud.co.uk [65.20.0.49]
    SMTP error from remote mail server after MAIL FROM:<[email protected]> SIZE=3749:
    522 IP REPUTATION BAD (please check for IP address listing on reputation services)
     I've changed the actual addresses above. The server the mail is being forwarded from has an IP address 138.128.161.22
    It seems that BT believes that the  server the mail is forwarded from is blacklisted. However, I am unable to discover any blacklist issue for this server. As you can see from the MXToolbox enquiry, there are no blacklists reported -
    http://mxtoolbox.com/SuperTool.aspx?action=blacklist%3a138.128.161.22&run=toolpage
    Can anybody from BT tell me who I need to contact to find out why they are not accepting mail from my server? I'm not having a problem with mail forwarded to any other ISP, and it seems to be just BT that is rejecting the mail.
    I hope someone can advise.
    Myles

    Hi @magicalwonders
    Have a look at http://bt.custhelp.com/app/answers/detail/a_id/47055/kw/postmaster/c/346,6592/session/L3RpbWUvMTQyOD...
    Also have a look at this post: https://community.bt.com/t5/Email/BT-Email-bounce-backs/m-p/1477146/highlight/true#M34004
    Openwave messaging (was Critical Path) is the company who designed and implemented the BT consumer email system and platform may require you to correctly set up a SPF record.
    Also have a look at:
    https://community.bt.com/t5/Email/BTinternet-rejecting-all-our-emails/m-p/1480775/highlight/true#M34...
    jac_95 | BT.com Help Site | BT Service Status
    Someone Solved Your Question?
    Please let other members know by clicking on ’Mark as Accepted Solution’
    Try a Search
    See if someone in the community had the same problem and how they got it resolved.

  • To read flat file from a unix server

    We need to read a flat file from a Unix server, where our Database is located.
    The location gets created correctly.
    But while we are trying to import files from the location in Design Center , we get an error that "directory does not exists", although the directory has all the permissions.
    Can someone please suggest how should we create the location so as it can read the files.
    Please Reply ASAP......

    We have started Design Center on a local machine(Windows Machine) with uaer as repository owner of the server,
    In the design center we can not sample the file till we import it,
    can you please tell how to sampe the file without importing it.
    Also a location pointing to server location gets easily created on the design center and the file module points to that location only, but when we try to import the file through that location, it says directory does not exists, although oracle user has all the read write permissions on the directory......
    Please help!

  • SMTP error from remote mail server after initial connection:

    Hello folks. I having some serious issues sending email to clients with .mac accounts. I keep on getting the following error. Can someone help? I have replaced email address names with "Blank@...) for obvious reasons.
    This message was created automatically by mail delivery software.
    A message that you sent could not be delivered to one or more of its
    recipients. This is a permanent error. The following address(es) failed:
    [email protected]
    SMTP error from remote mail server after initial connection:
    host smtp-mx1.mac.com [17.148.20.64]: 452 try later:
    retry timeout exceeded
    ------ This is a copy of the message, including all the headers. ------
    Return-path: <[email protected]>
    Received: from ip72-207-229-240.br.br.cox.net ([72.207.229.240] helo=[192.168.0.102])
    by srv3.purenrg.com with esmtp (Exim 4.68)
    (envelope-from <[email protected]>)
    id 1JFeOb-0001FZ-5F
    for [email protected]; Thu, 17 Jan 2008 18:43:41 -0500
    Message-Id: <[email protected]>
    From: "[email protected]" <[email protected]>
    To: Cindy Barnes <[email protected]>
    Content-Type: multipart/alternative; boundary=Apple-Mail-3--1032078955
    Mime-Version: 1.0 (Apple Message framework v915)
    Subject: invoice 520 is overdue
    Date: Thu, 17 Jan 2008 17:43:40 -0600
    X-Mailer: Apple Mail (2.915)
    X-PopBeforeSMTPSenders: [email protected]{
    --Apple-Mail-3--1032078955
    Content-Type: text/plain;
    charset=US-ASCII;
    format=flowed
    Content-Transfer-Encoding: 7bit

    I'm sure someone will give more detail, but it looks like the server blocked your address because it thinks it's a spam source.  If you're not spamming, then it might be someone on the same network spamming, or malware on your computer doing it.  Or it could just be a mistake.  try calling whoever runs your mail server and see if they can give you more information.

  • Solution for scanning multiple pages from inside the form6i/10g

    Hi All,
    I need to scan multiple pages from Oracle forms (6i/10g) using a scanner which is scanning multiple pages per minute. Can any one post a solution for me.
    Hafeez

    here are the two ways I use to scan images.
    1) if the image is a single TIF image then d2kwutil can upload the image into a BLOB field on the database (but it is limited to only SINGLE-page TIFs).
    2) if the image is a single or multi-page PDF, then your forms client must copy the image to a filesystem location known by the database (where the filesystem location is a directory on the database), and then the database can import the image into a BLOB field within the database.
    either solutions work pretty fast for me (<10 seconds per image)
    Chris

  • Add page on logon page from third party system and from KM

    Hi All,
    I have one requirement where i need to embade other html file in logon page of Portal.
    Where the pages will come from othere server as well as from KM.
    VS

    Hi ,
    Hey "It seems it solved my problem"  ?????
    still having any problem ... do let me know....
    well i don't remember that i replied to your question .....
    Any way  say thanks to SDN Support Team who work hard to give us such a nice platform to share our issues.
    Cheers SDN Support Team.
    As you wrote that you have tested on local system .. now try on portal and let me know that its working or not.
    Suppose if rendering of  page taking time then try to use ajax or some java script function to embed the page
    which leads to quick load.
    Regards,
    Piyush

  • Can print test pages from embedded web server., put not from windows

    Hello,
    I have a P1102w that worked perfectly through the last 5 month.
    Two days ago it stopped printing anything for some reason. What happen is, when I print something, it spools, but then I get Error-Printing under the status when I double click the printer icon in the "devices and printers" manager of windows 7.
    Right now I can see the printer in Ad Hoc. I can load the embedded web server,. And I can print test pages from the embedded web server.
    However, if I tried to print test pages using the printer icon in "devices and printers" manager".. it doesnt print!
    If I go to Devices and Printers -> Properties -> Advanced -> "Print directly to printer" -> Apply
    I got an error box: "Printer settings could not be saved. Operation could not be completed (error 0x0000070c)."
     The printer works fine when connected to other laptops (with exactly the same driver/setting)..
    This problem is driving me crazy !
    Thank you in advance for your help

    Hi m-rasheed, 
    An ad-hoc connections is much more unstable than an infrustructure network using a router. At this point i would suggest getting a wireless router, and then connect the printer to your network through the router. 
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=c02847467&tmp_task=useCategory&cc=us&dlc=en&lang...
    Routers:
    http://www.shopping.hp.com/webapp/shopping/can.do?storeName=accessories&landing=computer&category=ca...
    I am an HP employee.
    Say Thanks by clicking the Kudos Star in the post that helped you.
    Please mark the post that solves your problem as "Accepted Solution"

  • File Adapter to read from remote file server query

    Hi all,
    I want a SOA 11g application to read files on remote server using File Adapter. Is it possible to configure the File Adapter to read from remote location instead of locally. Is it possible. Is yes where can I find the associated remote file configuration documentation.
    Thanks
    Edited by: user5108636 on 19/09/2010 19:49

    I also changed one more properties the FTP connection factory called serverType=win. I get bits and pieces in each document. Is there any working example to connect to an FTP server running on Windows using Ftp Adapter. Still not working.
    These are the error logs related to it. Please suggest
    ####<Oct 12, 2010 1:17:22 PM EST> <Info> <Common> <server_name> <WLS_SOA> <[ACTIVE] ExecuteThread: '7' for queue: 'weblogic.kernel.Default (self-tuning)'> <<WLS Kernel>> <> <46e7c258a0e5cad6:-145e5cdb:12b99475c2b:-7ffd-0000000000046afa> <1286849842995> <BEA-000628> <Created "1" resources for pool "eis/Ftp/FtpAdapter", out of which "0" are available and "1" are unavailable.>\
    [2010-10-12T12:56:07.142+11:00] [WLS_SOA] [NOTIFICATION] [] [oracle.soa.adapter] [tid: weblogic.work.j2ee.J2EEWorkManager$WorkWithListener@170e13a9] [userId: weblogic] [ecid: 0000IiTsVSi9xWD_n91FiZ1CfLfc00006s,1:24709] [APP: soa-infra] [dcid: 46e7c258a0e5cad6:f9faea1:12b852b7f0f:-8000-00000000000005ed] FTP Adapter FetchAvlFiles Recovery still not possible after 1500 attempts due to javax.resource.spi.IllegalStateException: [Connector:199176]Unable to execute allocateConnection(...) on ConnectionManager. A stale Connection Factory or Connection Handle may be used. The connection pool associated with it has already been destroyed. Try to re-lookup Connection Factory eis/Ftp/FtpAdapter from JNDI and get a new Connection Handle.
    Thanks
    Edited by: user5108636 on 11/10/2010 19:05
    Edited by: user5108636 on 11/10/2010 19:22

  • How to send e-mail with an attachment from remote database server.???

    Hi All,
    I have tried the simple mail sending and with the attachment using UTL_SMTP. But the problem is , it is sending the mail with attachment of the file name i give, it takes and creates that file and sends as attachment not from the actual file location. I am trying to attach the file which i stored in remote database server.
    The following code I tried. But not worked for attachment
    DECLARE
       v_From       VARCHAR2(80) := '[email protected]';
       v_Recipient  VARCHAR2(80) := '[email protected]';
       v_Subject    VARCHAR2(80) := 'test subject';
       v_Mail_Host  VARCHAR2(30) := 'pop3.somedomain.com';
       v_Mail_Conn  utl_smtp.Connection;
       crlf         VARCHAR2(2)  := chr(13)||chr(10);
    BEGIN
      v_Mail_Conn := utl_smtp.Open_Connection(v_Mail_Host, 25);
      utl_smtp.Helo(v_Mail_Conn, v_Mail_Host);
      utl_smtp.Mail(v_Mail_Conn, v_From);
      utl_smtp.Rcpt(v_Mail_Conn, v_Recipient);
      utl_smtp.Data(v_Mail_Conn,
        'Date: '   || to_char(sysdate, 'Dy, DD Mon YYYY hh24:mi:ss') || crlf ||
        'From: '   || v_From || crlf ||
        'Subject: '|| v_Subject || crlf ||
        'To: '     || v_Recipient || crlf ||
        'MIME-Version: 1.0'|| crlf ||     -- Use MIME mail standard
        'Content-Type: multipart/mixed;'|| crlf ||
        ' boundary="-----SECBOUND"'|| crlf ||
        crlf ||
        '-------SECBOUND'|| crlf ||
        'Content-Type: text/html;'|| crlf ||
        'Content-Transfer_Encoding: 7bit'|| crlf ||
        crlf ||
        'some message text'|| crlf ||     -- Message body
        'more message text'|| crlf ||
        crlf ||
        '-------SECBOUND'|| crlf ||
        'Content-Type: text/html;'|| crlf ||
        ' name="Fund Authorization report"'|| crlf ||
        'Content-Transfer_Encoding: 8bit'|| crlf ||
        'Content-Disposition: attachment;'|| crlf ||
        ' filename="/usr/tmp/Test.html"'|| crlf ||
        crlf ||
        'HTML Attachment'|| crlf ||     -- Content of attachment
        crlf ||
        '-------SECBOUND--'               -- End MIME mail
      utl_smtp.Quit(v_mail_conn);
    EXCEPTION
      WHEN utl_smtp.Transient_Error OR utl_smtp.Permanent_Error then
        raise_application_error(-20000, 'Unable to send mail: '||sqlerrm);
    END;How can I attach a file which is stored in database server and send it in a mail.
    Please someone help me in this.
    Thanks,
    Alaka.

    Try this code
    Regards Salim.
    CREATE OR REPLACE TRIGGER EmailOnServerErr AFTER SERVERERROR ON DATABASE
    DECLARE
       mail_conn       UTL_SMTP.connection;
       crlf            VARCHAR2(2) := chr(13)||chr(10);
       msg             VARCHAR2(32760);
       sid_name        VARCHAR2(16);
       bdump_dest      VARCHAR2(128);
       smtp_relay      VARCHAR2(32) := 'MyMailRelay';
       recipient_address  VARCHAR2(64) := '[email protected]';
       sender_address     VARCHAR2(64) := '[email protected]';
       mail_port       NUMBER := 25;
       log_file_handle UTL_FILE.FILE_TYPE;
       log_file_dir    VARCHAR2(256) := 'ERR_LOG_DIR';
       log_file_name   VARCHAR2(256) := 'OracleErrors.log';
       maxlinesize     NUMBER := 32767;
       session_rec     sys.v_$session%ROWTYPE;
       audit_rec       sys.dba_audit_trail%ROWTYPE;
       auditing        BOOLEAN;
       LinesOfSQL      BINARY_INTEGER;
       offending_sql   DBMS_STANDARD.ora_name_list_t;
       CURSOR bdump_cur IS
          SELECT TRIM(value)
          FROM v$parameter
          WHERE name = 'background_dump_dest'
       CURSOR sid_cur IS
          SELECT TRIM(instance_name)
          FROM v$instance
       CURSOR session_cur IS
          SELECT s.*
          FROM v$session s
          WHERE s.sid = dbms_support.mysid
       CURSOR audit_trail_cur(AUDSID IN NUMBER) IS
          SELECT *
          FROM dba_audit_trail
          WHERE sessionid = AUDSID
    BEGIN
       IF (USER = 'SYSTEM' OR USER = 'SYS') THEN
          -- Ignore this error
          NULL;
       ELSIF IS_SERVERERROR (1034) THEN
          -- Ignore this error
          NULL;
       ELSE
          -- get the sid
          OPEN sid_cur;
          FETCH sid_cur INTO sid_name;
          CLOSE sid_cur;
          -- get the location of the alert log
          OPEN bdump_cur;
          FETCH bdump_cur INTO bdump_dest;
          CLOSE bdump_cur;
          -- get the session information
          OPEN session_cur;
          FETCH session_cur INTO session_rec;
          CLOSE session_cur;
          -- get the audit_trail information if it exists
          OPEN audit_trail_cur(session_rec.audsid);
          FETCH audit_trail_cur INTO audit_rec;
          auditing := audit_trail_cur%FOUND;
          CLOSE audit_trail_cur;
          IF session_rec.program = 'MyProgram.exe' THEN
             NULL;  -- ignore actions from MyProgram - that's where I do maintenance
          ELSE
             -- compose the message
             msg := 'Subject: Oracle error '||' on '||sid_name||crlf;
             msg := msg||'To: '||recipient_address||crlf;
             msg := msg||'For more information see the alert log file located at:'||crlf;
             msg := msg||bdump_dest||'/alert_'||sid_name||'.log'||crlf;
             msg := msg||'or the error log file: $'||log_file_dir||'/'||log_file_name||crlf;
             msg := msg||'Error Time='||TO_CHAR(SYSDATE,'DD-Mon-YYYY HH24:MI:SS')||crlf;
             msg := msg||DBMS_UTILITY.FORMAT_CALL_STACK||crlf;
             LinesOfSQL := sql_txt(offending_sql);
             msg := msg||'Offending SQL is:'||crlf;
             FOR loop_counter IN offending_sql.FIRST..offending_sql.LAST
             LOOP
                msg := msg||offending_sql(loop_counter);
             END LOOP;
             msg := msg||crlf||'----- PL/SQL Error Stack -----'||crlf;
             msg := msg||DBMS_UTILITY.FORMAT_ERROR_STACK||crlf;
             msg := msg||'V$SESSION.SADDR='   ||session_rec.saddr   ||crlf;
             msg := msg||'V$SESSION.SID='     ||session_rec.sid     ||crlf;
             msg := msg||'V$SESSION.SERIAL#=' ||session_rec.serial# ||crlf;
             msg := msg||'V$SESSION.AUDSID='  ||session_rec.audsid  ||crlf;
             msg := msg||'V$SESSION.PADDR='   ||session_rec.paddr   ||crlf;
             msg := msg||'V$SESSION.USER#='   ||session_rec.user#   ||crlf;
             msg := msg||'V$SESSION.USERNAME='||session_rec.username||crlf;
             msg := msg||'V$SESSION.COMMAND=' ||session_rec.command ||crlf;
             msg := msg||'V$SESSION.OWNERID=' ||session_rec.ownerid ||crlf;
             msg := msg||'V$SESSION.TADDR='   ||NVL(session_rec.taddr   ,'Null')||crlf;
             msg := msg||'V$SESSION.LOCKWAIT='||NVL(session_rec.lockwait,'Null')||crlf;
             msg := msg||'V$SESSION.STATUS='  ||NVL(session_rec.status  ,'Null')||crlf;
             msg := msg||'V$SESSION.SERVER='  ||NVL(session_rec.server  ,'Null')||crlf;
             msg := msg||'V$SESSION.SCHEMA#=' ||session_rec.schema#||crlf;
             msg := msg||'V$SESSION.SCHEMANAME=' ||NVL(session_rec.schemaname,'Null')||crlf;
             msg := msg||'V$SESSION.OSUSER='     ||NVL(session_rec.osuser    ,'Null')||crlf;
             msg := msg||'V$SESSION.PROCESS='    ||NVL(session_rec.process   ,'Null')||crlf;
             msg := msg||'V$SESSION.MACHINE='    ||NVL(session_rec.machine   ,'Null')||crlf;
             msg := msg||'V$SESSION.TERMINAL='   ||NVL(session_rec.terminal  ,'Null')||crlf;
             msg := msg||'V$SESSION.PROGRAM='    ||NVL(session_rec.program   ,'Null')||crlf;
             msg := msg||'V$SESSION.TYPE='       ||NVL(session_rec.type      ,'Null')||crlf;
             msg := msg||'V$SESSION.SQL_ADDRESS='    ||session_rec.sql_address  ||crlf;
             msg := msg||'V$SESSION.SQL_HASH_VALUE=' ||NVL(TO_CHAR(session_rec.sql_hash_value) ,'Null')||crlf;
             msg := msg||'V$SESSION.PREV_SQL_ADDR='  ||session_rec.prev_sql_addr||crlf;
             msg := msg||'V$SESSION.PREV_HASH_VALUE='||NVL(TO_CHAR(session_rec.prev_hash_value),'Null')||crlf;
             msg := msg||'V$SESSION.MODULE='     ||NVL(session_rec.module              ,'Null')||crlf;
             msg := msg||'V$SESSION.MODULE_HASH='||NVL(TO_CHAR(session_rec.module_hash),'Null')||crlf;
             msg := msg||'V$SESSION.ACTION='     ||NVL(session_rec.action              ,'Null')||crlf;
             msg := msg||'V$SESSION.ACTION_HASH='||NVL(TO_CHAR(session_rec.action_hash),'Null')||crlf;
             msg := msg||'V$SESSION.CLIENT_INFO='||NVL(session_rec.client_info         ,'Null')||crlf;
             msg := msg||'V$SESSION.FIXED_TABLE_SEQUENCE='||NVL(TO_CHAR(session_rec.fixed_table_sequence),'Null')||crlf;
             msg := msg||'V$SESSION.ROW_WAIT_OBJ#='  ||NVL(TO_CHAR(session_rec.row_wait_obj#)  ,'Null')||crlf;
             msg := msg||'V$SESSION.ROW_WAIT_FILE#=' ||NVL(TO_CHAR(session_rec.row_wait_file#) ,'Null')||crlf;
             msg := msg||'V$SESSION.ROW_WAIT_BLOCK#='||NVL(TO_CHAR(session_rec.row_wait_block#),'Null')||crlf;
             msg := msg||'V$SESSION.ROW_WAIT_ROW#='  ||NVL(TO_CHAR(session_rec.row_wait_row#)  ,'Null')||crlf;
             msg := msg||'V$SESSION.LOGON_TIME='     ||NVL(TO_CHAR(session_rec.logon_time,'DD-Mon-YYYY HH24:MI:SS'),'Null')||crlf;
             msg := msg||'V$SESSION.LAST_CALL_ET='   ||NVL(TO_CHAR(session_rec.last_call_et)   ,'Null')||crlf;
             msg := msg||'V$SESSION.PDML_ENABLED='   ||NVL(session_rec.pdml_enabled   ,'Null')||crlf;
             msg := msg||'V$SESSION.FAILOVER_TYPE='  ||NVL(session_rec.failover_type  ,'Null')||crlf;
             msg := msg||'V$SESSION.FAILOVER_METHOD='||NVL(session_rec.failover_method,'Null')||crlf;
             msg := msg||'V$SESSION.FAILED_OVER='    ||NVL(session_rec.failed_over    ,'Null')||crlf;
             msg := msg||'V$SESSION.RESOURCE_CONSUMER_GROUP='||NVL(session_rec.resource_consumer_group,'Null')||crlf;
             msg := msg||'V$SESSION.PDML_STATUS='    ||NVL(session_rec.pdml_status    ,'Null')||crlf;
             msg := msg||'V$SESSION.PDDL_STATUS='    ||NVL(session_rec.pddl_status    ,'Null')||crlf;
             msg := msg||'V$SESSION.PQ_STATUS='      ||NVL(session_rec.pq_status      ,'Null')||crlf;
             IF auditing THEN
                msg := msg||'DBA_AUDIT_TRAIL.OS_USERNAME='  ||NVL(audit_rec.os_username,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.USERNAME='     ||NVL(audit_rec.username   ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.USERHOST='     ||NVL(audit_rec.userhost   ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.TERMINAL='     ||NVL(audit_rec.terminal   ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.TIMESTAMP='    ||TO_CHAR(audit_rec.timestamp,'DD-Mon-YYYY HH24:MI:SS')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.OWNER='        ||NVL(audit_rec.owner      ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.OBJ_NAME='     ||NVL(audit_rec.obj_name   ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.ACTION='       ||audit_rec.action   ||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.ACTION_NAME='  ||NVL(audit_rec.action_name   ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.NEW_OWNER='    ||NVL(audit_rec.new_owner     ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.NEW_NAME='     ||NVL(audit_rec.new_name      ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.OBJ_PRIVILEGE='||NVL(audit_rec.obj_privilege ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.SYS_PRIVILEGE='||NVL(audit_rec.sys_privilege ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.ADMIN_OPTION=' ||NVL(audit_rec.admin_option  ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.GRANTEE='      ||NVL(audit_rec.grantee       ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.AUDIT_OPTION=' ||NVL(audit_rec.audit_option  ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.SES_ACTIONS='  ||NVL(audit_rec.ses_actions   ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.LOGOFF_TIME='  ||NVL(TO_CHAR(audit_rec.logoff_time)  ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.LOGOFF_LREAD=' ||NVL(TO_CHAR(audit_rec.logoff_lread) ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.LOGOFF_PREAD=' ||NVL(TO_CHAR(audit_rec.logoff_pread) ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.LOGOFF_LWRITE='||NVL(TO_CHAR(audit_rec.logoff_lwrite),'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.LOGOFF_DLOCK=' ||NVL(audit_rec.logoff_dlock  ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.COMMENT_TEXT=' ||NVL(audit_rec.comment_text  ,'Null')||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.SESSIONID='    ||audit_rec.sessionid   ||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.ENTRYID='      ||audit_rec.entryid     ||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.STATEMENTID='  ||audit_rec.statementid ||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.RETURNCODE='   ||audit_rec.returncode  ||crlf;
                msg := msg||'DBA_AUDIT_TRAIL.PRIV_USED='    ||NVL(audit_rec.priv_used,'Null')||crlf;
             END IF;
             msg := msg||'-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-'||crlf||crlf;
             -- write the message to the error log file
             log_file_handle := UTL_FILE.FOPEN (log_file_dir, log_file_name, 'A',maxlinesize);
             UTL_FILE.PUT_LINE(log_file_handle,msg);
             UTL_FILE.FCLOSE(log_file_handle);
             -- send the message by Email
             mail_conn := UTL_SMTP.open_connection(smtp_relay, mail_port);
             UTL_SMTP.HELO(mail_conn, smtp_relay);
             UTL_SMTP.MAIL(mail_conn, sender_address);
             UTL_SMTP.RCPT(mail_conn, recipient_address);
             UTL_SMTP.DATA(mail_conn, msg);
             UTL_SMTP.QUIT(mail_conn);
          END IF; -- client_program = MyProgram.exe
       END IF;
    END;
    /

  • How to execute a system command on a remote UNIX server?

    I would like to execute a system command (for example "df") on a remote UNIX machine.
    A simple example would be welcome...
    Thanks

    I would like to execute a system command (for example
    "df") on a remote UNIX machine.
    A simple example would be welcome...None will be forthcoming.
    Executing a process is relatively simple. However doing this on a remot system is another matter.
    See http://sourceforge.net/projects/sshtools/
    and/or http://javassh.org/space/start
    Other resources to be found with Google.

  • Viewing web pages from remote panel error

    I used an activex container and put the web browser object into it.  Next thing I knew, everytime I would open that vi's remote panel via the web server, iexplorer crashes.  What gives?
    Grub
    Hell, there are no rules here...we're trying to accomplish something!!! - Thomas Edison

    Grub,
    How is Internet Explorer crashing?  Does it stop responding, or
    give an error?  Does the LabVIEW program have any errors on the
    host computer?  I did find a KB that talks about the limitations
    of remote front panels, and it mentions that ActiveX will not work, but
    does not say anything about crashing Internet Explorer.
    Check out the KB
    Repost with any additional information.
    Andy F.
    National Instruments

  • I would like know how to view a SharePoint Page from mobile browser or app.

    I work for a company that sell products and then offers aftermarket support.  On our external SharePoint site, I created a page to link to Wiki pages that contain knowledge sharing entries.  The goal is when a member of the company learns something
    that they feel would be good to share, the can take a video, post it to Vimeo, and then embed the video with applicable text to the SharePoint site.  The SharePoint posts can also contain PDFs, other document links, and embedded pictures.  
    I have the page essentially finished, I am ready for some more contributors at the company to start adding content.
    One of the goals of the site is to be viewable via a mobile application.  I have tried apps such as SPConnect, and SharePlus from Infragistics.  Their mobile apps view SharePoint as a list, and do not view any of the embedded pictures or Vimeo
    videos.  
    My questions are:  
    Will SharePoint 2010 support mobile web browsing with the same functionality as the standard web browser?
    If 2010 will not, will SharePoint 2013 offer the support?
    If it is possible, what features do I need from a server and what settings do I need to enable to make it happen?  Currently on our site, it is not viewable.  I use "Forms Authentication" to log into the site.
    If it is possible, do you suggest finding an app?  Is there an app that will do it, or can I just log in and view from the mobile web browser the same way I do from a standard web browser?
    Overall, I need to know what I need to do to get this to work.
    Thank you for reading.  I look forward to your responses.

    Hi,
     Its possible to achieve the functionality which you are looking here. To enable mobile support please follow the below link which will guide you,
    http://www.aiim.org/community/blogs/expert/sharepoint-2010-mobility-browser-compatibility-compliance-and-its-continued-dominance-in-the-marketplace
    http://blogs.technet.com/b/office2010/archive/2010/03/09/configure-sharepoint-server-2010-for-mobile-device-access.aspx
    if its not helping you please let us know.
    Sekar - Our life is short, so help others to grow
    Whenever you see a reply and if you think is helpful, click "Vote As Helpful"! And whenever
    you see a reply being an answer to the question of the thread, click "Mark As Answer

Maybe you are looking for

  • I got butter in my iphone 5 top speaker near the from camera

    do you think I should get it checked out by apple to make sure nothing is wrong and see if they can clean it! I was testing it and it sounded quiet and then I cleaned it and now it sounds normal but I am not sure.

  • How to detect caller of a function module

    Hello, how is it possible to detect who is calling a function module? Thanks a lot, Tanguy Mezzano

  • How to cleaning old files hidding?

    My files not need and hidding on my OS Mac 10.6.7 . My friend told me about Mackeeper. I say no way. I just want to learn about utilities for cleaning old files on my programs that I not need. Does Macbook Air have automatic unused files and ask me t

  • $include std_meta_field_display$ upgrade 7.5. to 10gR3 buttons migration

    I am in the process of migrating 7.5.1 to 10gR3. In 7.5.1 Check-in form have some custom fields and a select button that when clicked pops-up an applet where a user can Select some groups that gets populated on the form when applet is closed. When mi

  • Super white - proc amp - clipping - YUV to RGB

    I have been investigating the issue of clipping with YUV to RGB conversions (from DV) and found that as Stu Maschwitz pointed out in DV Rebel, there are a couple of ways to save the higher dynamic range of YUV video without clipping when converting i