Re. TV connection below.

Able to connect TV to my DV7 laptop running Vista with no problem!

Sorry but we cannot discuss on this way.
Without some basic information we cannot start some concrete discussion.
Which notebook model do you have exactly?
IS original Toshiba recovery image preinstalled on your notebook?
Which port and cable do you use to connect notebook to the TV?
Is right port enabled on TV?
Do you use FN+F5 key combination to switch between LCD and TV?
Please don't describe this problem with one single sentence.

Similar Messages

  • Connecting ethernet to token ring

    I'm having trouble trying to configure cisco 2612 router to connect SNA server to datacenter host. please refer to connectivity below.
    SNA server--eth----router--t/r--control unit--modem-SDLC---modem---FEP
    the controller unit has token ring card installed on it and it's connected to router's t/r port..i configured the router with SR/TLB but no success, what we did we temporarily removed the router and add token ring adapter on the same SNA server then connect direct to control unit and it's work but we need to implement the connectivity shown above..thanks

    Hi Matthias,
    working topology:SNA server with 2 NIC ethenet and T/R
    --eth-SNA-t/r---control unit-modem--sdlc--modem--FEP
    with router:not working
    SNA-eth-router-t/r-control unit-modem-sdlc-modem-FEP
    please checked the router config below, thanks
    Current configuration : 686 bytes
    version 12.1
    no service single-slot-reload-enable
    service timestamps debug uptime
    service timestamps log uptime
    no service password-encryption
    hostname Router
    enable secret 5
    ip subnet-zero
    no ip routing
    source-bridge ring-group 20
    source-bridge transparent 20 10 2 5
    interface Ethernet0/0
    ip address 10.10.50.2 255.255.255.0
    no ip route-cache
    bridge-group 2
    interface TokenRing0/0
    no ip address
    no ip route-cache
    ring-speed 16
    source-bridge 5 2 20
    ip default-gateway 10.10.50.1
    ip classless
    ip http server
    bridge 2 protocol ieee
    bridge 2 bitswap-layer3-addresses
    line con 0
    line aux 0
    line vty 0 4
    password
    login
    Ethernet0/0 is up, line protocol is up
    Hardware is AmdP2, address is 000e.3853.fae0 (bia 000e.3853.fae0)
    Internet address is 10.10.50.2/24
    MTU 1500 bytes, BW 10000 Kbit, DLY 1000 usec,
    reliability 255/255, txload 1/255, rxload 1/255
    Encapsulation ARPA, loopback not set
    Keepalive set (10 sec)
    ARP type: ARPA, ARP Timeout 04:00:00
    Last input 00:00:00, output 00:00:01, output hang never
    Last clearing of "show interface" counters never
    Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
    Queueing strategy: fifo
    Output queue :0/40 (size/max)
    5 minute input rate 1000 bits/sec, 2 packets/sec
    5 minute output rate 0 bits/sec, 0 packets/sec
    3789 packets input, 364786 bytes, 0 no buffer
    Received 2964 broadcasts, 0 runts, 0 giants, 0 throttles
    0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored
    0 input packets with dribble condition detected
    354 packets output, 39668 bytes, 0 underruns
    0 output errors, 0 collisions, 1 interface resets
    0 babbles, 0 late collision, 0 deferred
    0 lost carrier, 0 no carrier
    0 output buffer failures, 0 output buffers swapped out
    TokenRing0/0 is up, line protocol is up
    Hardware is HAWKEYE, address is 0070.1cca.5f87 (bia 0070.1cca.5f87)
    MTU 4464 bytes, BW 16000 Kbit, DLY 630 usec,
    reliability 255/255, txload 1/255, rxload 1/255
    Encapsulation SNAP, loopback not set
    Keepalive set (10 sec)
    ARP type: SNAP, ARP Timeout 04:00:00
    Ring speed: 16 Mbps
    Duplex: half
    Mode: Classic token ring station
    Full duplex capable
    Source bridging enabled, srn 5 bn 2 trn 20 (ring group)
    spanning explorer disabled
    Group Address: 0x00000000, Functional Address: 0x0800011A
    Ethernet Transit OUI: 0x000000
    Last Ring Status 00:05:14 (0x2000)
    Last input 00:00:00, output 00:00:03, output hang never
    Last clearing of "show interface" counters never
    Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
    Queueing strategy: fifo
    Output queue :0/40 (size/max)
    5 minute input rate 1000 bits/sec, 1 packets/sec
    5 minute output rate 0 bits/sec, 0 packets/sec
    2794 packets input, 449251 bytes, 0 no buffer
    Received 962 broadcasts, 0 runts, 0 giants, 0 throttles
    0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort
    390 packets output, 31117 bytes, 0 underruns
    0 output errors, 0 collisions, 8 interface resets
    0 output buffer failures, 0 output buffers swapped out
    0 transitions

  • ORA-30678: too many open connections

    Hi,
    I executed this procedure..
    CREATE OR REPLACE procedure
    TRY.e_mail_message
    from_name in varchar2,
    to_name in varchar2,
    subject in varchar2,
    message in varchar2
    is
    l_mailhost VARCHAR2(64);
    l_from VARCHAR2(64);
    l_to VARCHAR2(64);
    crlf VARCHAR2( 2 ):= CHR( 13 ) || CHR( 10 );
    l_mail_conn UTL_SMTP.connection;
    mesg VARCHAR2( 4000 );
    BEGIN
    select a.SERVER into l_mailhost from email_setting a where a.SERVER is not null;
    select a.USERNAME into l_from from email_setting a where a.SERVER is not null;
    l_from := from_name;
    --UTL_SMTP.open_data(l_mail_conn);
    dbms_output.put_line('email test ');
    mesg:= 'Date: ' || TO_CHAR( SYSDATE, 'dd Mon yy hh24:mi:ss' ) || crlf ||
    'From: <'||l_from||'>' || crlf ||
    'Subject: ' ||subject|| crlf ||
    'To: '||to_name || crlf || '' || crlf ;
    mesg:=mesg||message;
    dbms_output.put_line(mesg);
    l_mail_conn := UTL_SMTP.open_connection(l_mailhost, 25);
    UTL_SMTP.helo(l_mail_conn, l_mailhost);
    UTL_SMTP.mail(l_mail_conn, l_from);
    UTL_SMTP.rcpt(l_mail_conn, to_name);
    UTL_SMTP.data(l_mail_conn, mesg);
    UTL_SMTP.quit(l_mail_conn);
    exception
    when others then dbms_output.put_line(sqlerrm);
    END;
    However, email could not be sent to recipient. Below is the error message.
    Sending email to subject: Reminder to settle outstanding bil for Invoice No: CA/01062010/555
    call email_mssg cmd 3
    email test
    Date: 23 June 10 15:11:50
    From: <>
    Subject: Reminder to settle outstanding bil for Invoice No: CA/01062010/555
    To: [email protected]
    Please Settle Outstanding Bil for your Invoice No: CA/01062010/555. Thank you
    ORA-30678: too many open connections
    Below is the username I keyed in the email_setting table, with reference to the select username statement from the procedure as above.
    username in email_setting => [email protected]
    I also tried key in as '[email protected]' but still not working.
    Could someone suggest any solution? Thanks..

    Mr. Saubhik,
    Yes, no data passed for the From: as shown from the dbms output error message shown below:
    Sending email to subject: Reminder to settle outstanding bil for Invoice No: CA/01062010/555
    call email_mssg cmd 3
    email test
    Date: 23 June 10 16:15:04
    From:
    Subject: Reminder to settle outstanding bil for Invoice No: CA/01062010/555
    To: [email protected]
    Please Settle Outstanding Bil for your Invoice No: CA/01062010/555. Thank you
    ORA-29279: SMTP permanent error: 501 5.1.7 Invalid address
    I am clueless how to settle this. I don't want to hard code the sender's email address. Please help. Thank you.

  • How do you break connections?

    I have a crapton of clips that I have to sync with a voice over, which involves trimming both the audio and the video on all the clips. For some obscure reason however, Apple thinks that I'll always want my audio to connect to the clip that it's directly under, so whenever I make an edit on a video, the audio in front of it gets messed up and starts layering itself due to the stupid magnetic timeline. Is there any way to break those connections so that whatever I do to the audio will not affect the video and vice versa?
    Also, how do I make this program not suck?

    I do similar things with voice-overs.  Right Click (or Control CLICK) on the video clip you want to remove the audio from.  Select Detach Audio.  The audio, as you pointed out, will be connected below the video clip it came from with a little attaching line on the left side of the audio clip connecting it to the video clip.  Remember there is a main "story line" in FCP X.  Any video clip on that main "track" (primary storyline) will be treated as independent, or non-subordinate, to other clips.  Thus, you can now drag your detached audio clip away from the video clip it came from and onto another clip on the "primary storyline" track.  Or ... you can simply drag it to the end of the clips on the "primary storyline" and let it off there.  Now it will be treated as a clip that is not associated with other clips, and you can delete it if you wish ... just like any other clip.  It will not affect the video in the parent clip it came from when it resides on the main story line "track" .  Note that all this requires you to get familiar with and work with the "primary storyline" concept.  Other than that, the program isn't as bad as I thought it might be after seeing all the negative reviews.  It really is revolutionary ... it just works differently and requires us to learn some really new, "out-of-the-box" ways of doing things.
    stephen

  • Jco connection Test error

    Hi Exports,
      When I test the Jco connection below error message getting,
    com.sap.mw.jco.JCO$Exception: (102) RFC_ERROR_COMMUNICATION: Connect to message server host failed Connect_PM  TYPE=B MSHOST=csslecc GROUP=SPACE R3NAME=ECC MSSERV=sapmsECC PCS=1 ERROR       service 'sapmsECC' unknown TIME        Fri Aug 28 04:38:05 200 RELEASE     700 COMPONENT   NI (network interface) VERSION     38 RC          -3 MODULE      ninti.c LINE        530 DETAIL      NiPGetServByName2: service 'sapmsECC' not found SYSTEM CALL getservbyname_r COUNTER     1
    Kindly help me to solve this problem.
    Thanks
    Jibin.

    Hi Jibin
    This is mostly likely due to JCO or network setup rather than the ESS/MSS application
    Please see the following link
    http://help.sap.com/saphelp_nw2004s/helpdata/en/f6/daea401675752ae10000000a155106/frameset.htm
    In particular check network services as per note
    Note 52959 - sapms..., sapdp.., sapgw.. unknown (or not found)   
    Please check JCO connection settings as well  as per
    Note 723562 - SAP Java Connector: Configuration and Requirements 
    Please check availability of message server and that user terminal can ping Portal server
    and Portal server can ping ECC server
    Hope this helps
    Best wishes
    Stuart

  • Setting Minimum RSSI threshold for client connections

    Hi,
    We are deploying a new wireless network for guest users of private lounges at airports, using a 5508 WLC and 3501 AP’s. The SSID uses open L2 authentication with a web auth passthrough login splash page.
    We require preventing people outside these private areas to connect to the SSID, and we would like to do so by only allowing clients to connect if they exceeed the minimum RSSI guaranteed in the private areas (i.e. prevent connections below a certain level, such as -70dB). We tried to configure this by settings several parameters, for example the “Minimum RSSI” under “Client Roaming” without achieving the desired effect.
    Can a minimum RSSI be set up so clients would not connect unless they receive the minimum specified signal level? If so, can anyone please advise how to set this up?
    Many thanks in advance for your expert advise…
    Regards
    Luis A

    This one is an idea (but costly):  Faraday cage (aka Faraday mesh or Faraday shield)
    If installed correctly, your wireless signal will be inside the four walls (don't know if you have those glass doors but if you do ...).
    Out of curiousity, WHY did you purchase 3501 instead of 3502?
    I mean 3501 means it only has 802.11b radio.  And 802.11b is long range and high penetration rates compared to 802.11a radio.
    Lower the PHY rate ... 1 meg PHY rates travel VERY far. If you disable 1,2,5,11,-- all the way up to 24 or so .. you will need to be right on top of the AP. 20 feet or so..
    What about clients with old portable devices?  That's a risk.

  • Error Connecting to Oracle 9i Database

    Ok I have a semi large program and a part of it connects to an Oracle 9i databse. I am using Visual Age for Java IDE and I am getting an error of
    "java.sql.SQLException: [Microsoft][ODBC driver for Oracle][Oracle]ORA-00917: missing comma"
    Of course the prog compiles but something is wrong with the my connectivity/
    Below is my code listed below for jsut the Class that opens the Database Connection if you need further information please respond back
    Thanks
    p
    //Code Below//
    package musicmatch_library_test;
    import java.io.*;
    import java.util.*;
    import java.sql.*;
    public class SQLOutput
         private BufferedReader inFile;
         private PrintWriter sqlStream;
         private GUI g = Main.getGUIInstance();
         private FileChange fc = Main.getFileChangeInstance();
         private String url;
         protected ArrayList driveAL = new ArrayList();
         protected ArrayList folderAL = new ArrayList();
         protected ArrayList genreAL = new ArrayList();
         protected ArrayList artistAL = new ArrayList();
         protected ArrayList composerAL = new ArrayList();
         protected ArrayList albumTitleAL = new ArrayList();
         protected ArrayList trackNumAL = new ArrayList();
         protected ArrayList songTitleAL = new ArrayList();
    * SQLOutput constructor comment.
    public SQLOutput()
         super();
    * Insert the method's description here.
    * Creation date: (2/20/2003 8:28:50 PM)
    public void writeSQLFile()
         url = "jdbc:odbc:mainDb";
         String insert = "insert into LibraryInfo ";
         String begColNames = "(artistname, cdtitle, songtitle,track genre) values (";
         String endColNames = ");";
         try
              Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");          //load DB driver
              Connection con = DriverManager.getConnection(url,"fake", "fake"); //create DB connection
              Statement stmt = con.createStatement();                    //create instance of connection to run DB commands
                                                                               //instance of an active connection to create a Statement object
              sqlStream = new PrintWriter (new FileWriter(g.returnOpenOrSave().getParent().toString()+"/sqlWrite.txt"));
              //inFile = new BufferedReader(new FileReader(g.returnOpenOrSave()));
              //String line = inFile.readLine();
              int c =0;
              while(c!=songTitleAL.size())
                   sqlStream.println(insert + begColNames+artistAL.get(c) + ','+ albumTitleAL.get(c) + ',' + songTitleAL.get(c) +',' + trackNumAL.get(c) +',' + genreAL.get(c) + endColNames);
                   stmt.executeUpdate(insert + begColNames+artistAL.get(c) + ','+ albumTitleAL.get(c) + ',' + songTitleAL.get(c) +',' + trackNumAL.get(c) +',' + genreAL.get(c) + endColNames);
                   //line = inFile.readLine();
                   c++;
              }//end for
              //inFile.close();
              //g.returnSavedFileName().delete();          //delete saved file
              sqlStream.close();
              con.close();
              stmt.close();          
         catch(FileNotFoundException e)
              System.out.println("cant read input file");
         catch(IOException e)
              System.out.println("file error #2");
         catch(ClassNotFoundException e)
              System.out.println(e);
         catch(SQLException e)
              System.out.println(e);

    i don't think its your connection. You must be hitting the DB otherwise you would not be getting an ORA error returned wrapped in an SQLException. I think its your pseudo-SQL, it simply says that you are missing a comma in an update string. Realistically, it could be that it is being misled into looking for a comma, probably because you have put a ';' at the end of your update string...

  • Wanted to connect Voyager (BO XI R3 ) and sql 2000 (MSAS).

    We have never used Voyager before, wanted to connect Voyager (BO XI R3 ) and sql 2000 (MSAS).
    Details of my Voyager connection below:
    Name: test
    Provider: Microsoft OLE DB Provider for OLAP Services 8.0
    Server Information:
    Server Type: Server
    Server: <server ip address>
    Data Source:
    User: <domain>\<NT account>
    Password: <NT password>
    Error: "No cubes were found. Please check that you have permission to view cubes on the database server."
    I tried accessing the cubes using the same data connection via excel pivottable and was able to access the cubes successfully.
    Badly need help!

    Hi Everyone,
    As I have been working with MSAS 2000 and I reconmmend to install SP4 on the MSAS 2000 since BO XI R3 according to Support plataform it says that it is supported from SP4.
    As well verified that you have access using the security role using your Windows AD authentication since Microsoft Service Analysis does not have its own authentication mode to connect basicatly rely on Windows AD.
    If you want more information check this link.
    http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/anservog.mspx#EXFAE
    Also check the service account on the same link above.
    Receive Client Security Credentials Via Middle-Tier Application
    The MSSQLServerOLAPService service account is irrelevant in the typical client-server environment. In this environment, the user application connects directly to the Analysis Services computer to execute a query or create an object, and passes the user's credentials directly to Analysis Services for evaluation. Access is granted or denied by Analysis Services based on cell-level and dimension-level security.
    However, if the client application attempts to connect to Analysis Services through a middle-tier server, the authentication process is not quite so simple. Normally, security credentials cannot be passed over multiple computers. However, if the middle-tier application server and the Analysis Services computer support Kerberos authentication and delegation, the client's security credentials can be passed by the middle-tier application to Analysis Services.
    For Kerberos authentication, delegation, impersonation, and mutual authentication to work, the MSSQLServerOLAPService service must run under one of the following types of accounts:
    u2022 Local system account (which has no network access rights).
    u2022 Domain administrator account.
    u2022 Domain user without administrative privileges in the Microsoft Active Directory domain, provided that a domain administrator registers the Service Principal Name (SPN) for the account separately using the setspn utility in the Windows 2000 Resource Kit.
    Note   There are a number of steps you must follow to permit Kerberos authentication, delegation, impersonation, and mutual authentication to work. For information about these steps, see "Security Account Delegation" in SQL Server Books Online. Also go to Knowledge Base (support.microsoft.com) and see the article "Use Kerberos Authentication for Microsoft SQL Server 2000 Analysis Services."
    Miguel Jimenez

  • Io connections

    greetings,
    We have a licence for 100 I/O connections. Can I load Lookout on another PC if I keep my connections below total of 100? I believe I have a problem with PC and would like to prove theory by running the same SW on another box.
    I am doing an accelerated life test on 16 solenoids/switches through a modbus object. I miss about one count per 50,000 over the coarse of about two days(with no hypertrends). If I create multiple hypertrends the problem is magnified. When I dump serial modbus data to a file, the data indicated there are moments of time when the serial port didn't get serviced. Its as if the machine was off doing something it thought was much more important. The more hypertrends I add, the more counts I miss.
    thank you,
    JohnG 

    greetings,
    The counters are objects created in Lookout. I am sequentially driving 16 Actuator/Sensors on a ASi network through a Wiedemann modbus gateway to Dell PC( 1.8G P4, seagate 40G ATA, 654M Ram). My pollrate is 0.2 seconds. I drive the solenoids in open position for 1 second once every 20 seconds. Without any hypertrends the performance is very good(1 random err per approx. 50,000 cycles). Over the course of a week I may have 5 0r so errors on different sensors. Like I said previously, if I add hypertrends, the problem is magnified(10x). 
    Thank You for response,
    johng  

  • Got sync but refusal to connect, ongoing for sever...

    Hello!
    Nice great big wall of text for my first ever post
    I've been having issues with my broadband for several months now, I get the flashing amber (or solid red) broadband light of doom and the router although sync'd at a massively reduced speed of 2.9meg, simply refuses to connect. Something like "could not be established: connection reset by peer/user/idletimeout".
    This really all started around Christmas 2010, when my connection dropped for the first time years, no fault was ever found and the BB mysteriously started working again at around half it's orginal speed, then we got the 20meg upgrade at the exchange and my connection shot up to 14meg, 3 weeks later it died and i've had issues ever since.
    I call support and tell them what i've tried (everything on their help sheet), I then get told they're reporting it to engineers/techinical and that it will take 5 days or more (which is conveniently i beleive the time where they can declare it case closed), the fault then mysteriously disappears and i've got a 14meg sync and im connected, the case seems to be closed, then 2 weeks later (usually on a Sunday morning at around 7am) the fault comes back again. Rinse/repeat, over and over and over and over again.
    Yesterday I woke up to no connection, spent the best part of 3 hours repeatedly calling BT. I've got a phone fault logged and an engineer coming out on Tuesday.
    I've got a BB fault logged and am expecting a call this morning, but as I now have connection again, im betting they assume it's fixed and don't call.... In which case i'll be without internet again in 2 weeks time.
    I spoke to the Engineer that came out near Christmas (and I use that term loosely, because as a real engineer I find it's use offensive), who told me that with the new upgraded ADSL, the equipment at the exchange will refuse a connection below around 8meg (apparently it's causing massive problems), so what im assuming is that noise on my line is causing my BRAS to be reduced to the point where the exchange refuses my connection.
    It's infuriating that this fault is clearly just being "patched up" and the root cause is never beign tackled.
    In the quality engineering world, we call that "fire fighting" and in the defence sector quality engineering world, "fire fighting" gets people killed.
    The staff at the Indian call centre are more concerned with meeting daily targets than they are with fixing my fault (which I do sympathise with). When you set daily targets on staff, they don't want to spend hours helping one person and will take the first opportunity to fob you off.
    I'd also take a guess that they have to call back a certain number if times if the phone call is cut off? Because one guy I spoke to (once he realised I knew more than him) cut me off, called me back, cut me off, called me back and then cut me off again. Again just meeting his targets.
    It's annoying but I don't blame them at all, they've got jobs to keep and mouths to feed. But in my humble opinion their daily targets are THE reason my fault is (and I dare say many others) not being fixed!!

    Rgr that, will do. Assistance greatly appreciate
    Interesting development, I just lost the BB again and the router reset as usual to a 2.9 - 3meg sync.... I decided to do something i've been told never to do and I repeatedly connected/disconnected the phone line (maybe 50 times) in an attempt to force the exchange into registering a fault/disconnection. Now guess what? im back on now 14meg sync (8meg actual tested).
    Ohhhh this is exciting, I wonder if this was luck or not? I'd rather not risk testing it though!
    14:32pm, been up since some silly hour this morning waiting for the call I was promised (which I had doubts about anyway, with it being Sunday), no contact :/
    Mind if I drop in a few tags to help people searching the web for this problem?
    Homehub
    ATM could not send loopback cell
    Connection could not be established: Disconnected by peer
    Connection could not be established: Disconnected by user
    Connection could not be established: Disconnected because idle timeout reached

  • Citrix connection causes system crash when trying to open it in new safari browser 6.0

    I tried to connect to a citrix server via OS X mountain lion.
    on the previously OS X there was no problem connecting.
    I first connect the access gateway
    after that I connect with safari to the intranet site.
    The macbook crashed when trying to connect
    Below is a part of the Crash log generated by Apple. after reboot.
    Kernel Extensions in backtrace:
    com.deterministicnetworks.driver.dne(1.0.14)[DEB55C4A-5575-E78D-8B31- 75EA1CA81615]@0xffffff7f8e969000->0xffffff7f8e9a5fff
    dependency: com.deterministicnetworks.driver.dniregistry(1.0.4)[40D91812-180F-4AE9-10A9- CC1A0D7A9EDB]@0xffffff7f8e954000
    com.citrix.driver.net6im(1.1.6)[98ADEA9F-488C-9E71-B06D-794AB625EB64]@0xffffff7f 8e9a6000- >0xffffff7f8e9d1fff
    dependency: com.deterministicnetworks.driver.dne(1.0.14)[DEB55C4A-5575-E78D-8B31- 75EA1CA81615]@0xffffff7f8e969000
    BSD process name corresponding to current thread: Safari
    could anybody help me?

    I use Chrome and haven't had any issues, so I took a look over at the support forums at Citrix.com and see they released a new Citrix Receiver client yesterday which includes full Mountain Lion support.  You can download it here: http://www.citrix.com/English/ss/downloads/details.asp?downloadId=2327673&produc tId=1689163
    I learned about it here: http://forums.citrix.com/thread.jspa?threadID=310791&tstart=15
    Hope this helps.

  • IPad shows a red iTunes icon with picture of lightning connection on start up. Doesn't look authentic. Could it be a virus?

    i Started my iPad this afternoon and it shows a red iTunes icon in the centre of the screen with a picture of a lightning connection below it. It doesn't look authentic. I don't want to plug it into my Mac unless I know it's safe. Any suggestions?

    Something like my screenshot ? If so you're in Recovery mode and need to restore from your iTunes or iCloud backup.

  • Setting up Secure connection with DB2 database on IBM iSeries

    We have requirement to setup Secure connection with DB2 database on IBM iseries system. currently we are using ODBC type of connectivity which is not secure. Can anyone help how to set up Secure connectivity. below are the system details . . Application - IDQ - 9.6.0 Database - DB2 on IBM iSeries AS400

    We have requirement to setup Secure connection with DB2 database on IBM iseries system. currently we are using ODBC type of connectivity which is not secure. Can anyone help how to set up Secure connectivity. below are the system details . . Application - IDQ - 9.6.0 Database - DB2 on IBM iSeries AS400

  • Apache2 problems

    I recently attempted to enable cgi and php on my macbooks local webserver. In attempting to do this, my entire server stopped working. When I try to access the local site, I get the following error:
    Though the site seems valid, the browser was unable to establish a connection.
    below is my httpd.conf file, the only thing I modified (I stupidly did not create a backup), and thus what I am assuming is causing my problems. How do I fix my server?
    # This is the main Apache HTTP server configuration file. It contains the
    # configuration directives that give the server its instructions.
    # See <URL:<a class="jive-link-external-small" href="http://">http://httpd.apache.org/docs/2.2> for detailed information.
    # In particular, see
    # <URL:<a class="jive-link-external-small" href="http://">http://httpd.apache.org/docs/2.2/mod/directives.html>
    # for a discussion of each configuration directive.
    # Do NOT simply read the instructions in here without understanding
    # what they do. They're here only as hints or reminders. If you are unsure
    # consult the online docs. You have been warned.
    # Configuration and logfile names: If the filenames you specify for many
    # of the server's control files begin with "/" (or "drive:/" for Win32), the
    # server will use that explicit path. If the filenames do not begin
    # with "/", the value of ServerRoot is prepended -- so "/private/var/log/apache2/foo.log"
    # with ServerRoot set to "/usr" will be interpreted by the
    # server as "/usr//private/var/log/apache2/foo.log".
    # ServerRoot: The top of the directory tree under which the server's
    # configuration, error, and log files are kept.
    # Do not add a slash at the end of the directory path. If you point
    # ServerRoot at a non-local disk, be sure to point the LockFile directive
    # at a local disk. If you wish to share the same ServerRoot for multiple
    # httpd daemons, you will need to change at least LockFile and PidFile.
    ServerRoot "/usr"
    # Listen: Allows you to bind Apache to specific IP addresses and/or
    # ports, instead of the default. See also the <VirtualHost>
    # directive.
    # Change this to Listen on specific IP addresses as shown below to
    # prevent Apache from glomming onto all bound IP addresses.
    #Listen 12.34.56.78:80
    Listen 80
    # Dynamic Shared Object (DSO) Support
    # To be able to use the functionality of a module which was built as a DSO you
    # have to place corresponding `LoadModule' lines at this location so the
    # directives contained in it are actually available before they are used.
    # Statically compiled modules (those listed by `httpd -l') do not need
    # to be loaded here.
    # Example:
    # LoadModule foo_module modules/mod_foo.so
    LoadModule authnfilemodule libexec/apache2/modauthnfile.so
    LoadModule authndbmmodule libexec/apache2/modauthndbm.so
    LoadModule authnanonmodule libexec/apache2/modauthnanon.so
    LoadModule authndbdmodule libexec/apache2/modauthndbd.so
    LoadModule authndefaultmodule libexec/apache2/modauthndefault.so
    LoadModule authzhostmodule libexec/apache2/modauthzhost.so
    LoadModule authzgroupfilemodule libexec/apache2/modauthzgroupfile.so
    LoadModule authzusermodule libexec/apache2/modauthzuser.so
    LoadModule authzdbmmodule libexec/apache2/modauthzdbm.so
    LoadModule authzownermodule libexec/apache2/modauthzowner.so
    LoadModule authzdefaultmodule libexec/apache2/modauthzdefault.so
    LoadModule authbasicmodule libexec/apache2/modauthbasic.so
    LoadModule authdigestmodule libexec/apache2/modauthdigest.so
    LoadModule cache_module libexec/apache2/mod_cache.so
    LoadModule diskcachemodule libexec/apache2/moddiskcache.so
    LoadModule memcachemodule libexec/apache2/modmemcache.so
    LoadModule dbd_module libexec/apache2/mod_dbd.so
    LoadModule dumpio_module libexec/apache2/mod_dumpio.so
    LoadModule extfiltermodule libexec/apache2/modextfilter.so
    LoadModule include_module libexec/apache2/mod_include.so
    LoadModule filter_module libexec/apache2/mod_filter.so
    LoadModule deflate_module libexec/apache2/mod_deflate.so
    LoadModule logconfigmodule libexec/apache2/modlogconfig.so
    LoadModule logforensicmodule libexec/apache2/modlogforensic.so
    LoadModule logio_module libexec/apache2/mod_logio.so
    LoadModule env_module libexec/apache2/mod_env.so
    LoadModule mimemagicmodule libexec/apache2/modmimemagic.so
    LoadModule cernmetamodule libexec/apache2/modcernmeta.so
    LoadModule expires_module libexec/apache2/mod_expires.so
    LoadModule headers_module libexec/apache2/mod_headers.so
    LoadModule ident_module libexec/apache2/mod_ident.so
    LoadModule usertrack_module libexec/apache2/mod_usertrack.so
    #LoadModule uniqueidmodule libexec/apache2/moduniqueid.so
    LoadModule setenvif_module libexec/apache2/mod_setenvif.so
    LoadModule version_module libexec/apache2/mod_version.so
    LoadModule proxy_module libexec/apache2/mod_proxy.so
    LoadModule proxyconnectmodule libexec/apache2/modproxyconnect.so
    LoadModule proxyftpmodule libexec/apache2/modproxyftp.so
    LoadModule proxyhttpmodule libexec/apache2/modproxyhttp.so
    LoadModule proxyajpmodule libexec/apache2/modproxyajp.so
    LoadModule proxybalancermodule libexec/apache2/modproxybalancer.so
    LoadModule ssl_module libexec/apache2/mod_ssl.so
    LoadModule mime_module libexec/apache2/mod_mime.so
    LoadModule dav_module libexec/apache2/mod_dav.so
    LoadModule status_module libexec/apache2/mod_status.so
    LoadModule autoindex_module libexec/apache2/mod_autoindex.so
    LoadModule asis_module libexec/apache2/mod_asis.so
    LoadModule info_module libexec/apache2/mod_info.so
    LoadModule cgi_module libexec/apache2/mod_cgi.so
    LoadModule davfsmodule libexec/apache2/moddavfs.so
    LoadModule vhostaliasmodule libexec/apache2/modvhostalias.so
    LoadModule negotiation_module libexec/apache2/mod_negotiation.so
    LoadModule dir_module libexec/apache2/mod_dir.so
    LoadModule imagemap_module libexec/apache2/mod_imagemap.so
    LoadModule actions_module libexec/apache2/mod_actions.so
    LoadModule speling_module libexec/apache2/mod_speling.so
    LoadModule userdir_module libexec/apache2/mod_userdir.so
    LoadModule alias_module libexec/apache2/mod_alias.so
    LoadModule rewrite_module libexec/apache2/mod_rewrite.so
    LoadModule bonjour_module libexec/apache2/mod_bonjour.so
    LoadModule php5_module libexec/apache2/libphp5.so
    LoadModule fastcgi_module libexec/apache2/mod_fastcgi.so
    <IfModule !mpmnetwaremodule>
    # If you wish httpd to run as a different user or group, you must run
    # httpd as root initially and it will switch.
    # User/Group: The name (or #number) of the user/group to run httpd as.
    # It is usually good practice to create a dedicated user and group for
    # running httpd, as with most system services.
    User www
    Group www
    </IfModule>
    # 'Main' server configuration
    # The directives in this section set up the values used by the 'main'
    # server, which responds to any requests that aren't handled by a
    # <VirtualHost> definition. These values also provide defaults for
    # any <VirtualHost> containers you may define later in the file.
    # All of these directives may appear inside <VirtualHost> containers,
    # in which case these default settings will be overridden for the
    # virtual host being defined.
    # ServerAdmin: Your address, where problems with the server should be
    # e-mailed. This address appears on some server-generated pages, such
    # as error documents. e.g. [email protected]
    ServerAdmin [email protected]
    # ServerName gives the name and port that the server uses to identify itself.
    # This can often be determined automatically, but we recommend you specify
    # it explicitly to prevent problems during startup.
    # If your host doesn't have a registered DNS name, enter its IP address here.
    #ServerName www.example.com:80
    # DocumentRoot: The directory out of which you will serve your
    # documents. By default, all requests are taken from this directory, but
    # symbolic links and aliases may be used to point to other locations.
    DocumentRoot "/Library/WebServer/Documents"
    # Each directory to which Apache has access can be configured with respect
    # to which services and features are allowed and/or disabled in that
    # directory (and its subdirectories).
    # First, we configure the "default" to be a very restrictive set of
    # features.
    <Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
    </Directory>
    # Note that from this point forward you must specifically allow
    # particular features to be enabled - so if something's not working as
    # you might expect, make sure that you have specifically enabled it
    # below.
    # This should be changed to whatever you set DocumentRoot to.
    <Directory "/Library/WebServer/Documents">
    # Possible values for the Options directive are "None", "All",
    # or any combination of:
    # Indexes Includes FollowSymLinks SymLinksifOwnerMatch ExecCGI MultiViews
    # Note that "MultiViews" must be named explicitly --- "Options All"
    # doesn't give it to you.
    # The Options directive is both complicated and important. Please see
    # http://httpd.apache.org/docs/2.2/mod/core.html#options
    # for more information.
    Options Indexes FollowSymLinks MultiViews
    # AllowOverride controls what directives may be placed in .htaccess files.
    # It can be "All", "None", or any combination of the keywords:
    # Options FileInfo AuthConfig Limit
    AllowOverride None
    # Controls who can get stuff from this server.
    Order allow,deny
    Allow from all
    </Directory>
    # DirectoryIndex: sets the file that Apache will serve if a directory
    # is requested.
    <IfModule dir_module>
    DirectoryIndex index.html index.htm index.php index.pl index.cgi
    </IfModule>
    # The following lines prevent .htaccess and .htpasswd files from being
    # viewed by Web clients.
    <FilesMatch "^\.([Hh][Tt]|[Dd][Ss]_[Ss])">
    Order allow,deny
    Deny from all
    Satisfy All
    </FilesMatch>
    # Apple specific filesystem protection.
    <Files "rsrc">
    Order allow,deny
    Deny from all
    Satisfy All
    </Files>
    <DirectoryMatch ".*\.\.namedfork">
    Order allow,deny
    Deny from all
    Satisfy All
    </DirectoryMatch>
    # ErrorLog: The location of the error log file.
    # If you do not specify an ErrorLog directive within a <VirtualHost>
    # container, error messages relating to that virtual host will be
    # logged here. If you do define an error logfile for a <VirtualHost>
    # container, that host's errors will be logged there and not here.
    ErrorLog /private/var/log/apache2/error_log
    # LogLevel: Control the number of messages logged to the error_log.
    # Possible values include: debug, info, notice, warn, error, crit,
    # alert, emerg.
    LogLevel warn
    <IfModule logconfigmodule>
    # The following directives define some format nicknames for use with
    # a CustomLog directive (see below).
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
    LogFormat "%h %l %u %t \"%r\" %>s %b" common
    <IfModule logio_module>
    # You need to enable mod_logio.c to use %I and %O
    LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\" %I %O" combinedio
    </IfModule>
    # The location and format of the access logfile (Common Logfile Format).
    # If you do not define any access logfiles within a <VirtualHost>
    # container, they will be logged here. Contrariwise, if you do
    # define per-<VirtualHost> access logfiles, transactions will be
    # logged therein and not in this file.
    CustomLog /private/var/log/apache2/access_log common
    # If you prefer a logfile with access, agent, and referer information
    # (Combined Logfile Format) you can use the following directive.
    #CustomLog /private/var/log/apache2/access_log combined
    </IfModule>
    <IfModule alias_module>
    # Redirect: Allows you to tell clients about documents that used to
    # exist in your server's namespace, but do not anymore. The client
    # will make a new request for the document at its new location.
    # Example:
    # Redirect permanent /foo http://www.example.com/bar
    # Alias: Maps web paths into filesystem paths and is used to
    # access content that does not live under the DocumentRoot.
    # Example:
    # Alias /webpath /full/filesystem/path
    # If you include a trailing / on /webpath then the server will
    # require it to be present in the URL. You will also likely
    # need to provide a <Directory> section to allow access to
    # the filesystem path.
    # ScriptAlias: This controls which directories contain server scripts.
    # ScriptAliases are essentially the same as Aliases, except that
    # documents in the target directory are treated as applications and
    # run by the server when requested rather than as documents sent to the
    # client. The same rules about trailing "/" apply to ScriptAlias
    # directives as to Alias.
    ScriptAliasMatch ^/cgi-bin/((?!(?i:webobjects)).*$) "/Library/WebServer/CGI-Executables/$1"
    </IfModule>
    <IfModule cgid_module>
    # ScriptSock: On threaded servers, designate the path to the UNIX
    # socket used to communicate with the CGI daemon of mod_cgid.
    #Scriptsock /private/var/run/cgisock
    </IfModule>
    # "/Library/WebServer/CGI-Executables" should be changed to whatever your ScriptAliased
    # CGI directory exists, if you have that configured.
    <Directory "/Library/WebServer/CGI-Executables">
    AllowOverride None
    Options None
    Order allow,deny
    Allow from all
    </Directory>
    # DefaultType: the default MIME type the server will use for a document
    # if it cannot otherwise determine one, such as from filename extensions.
    # If your server contains mostly text or HTML documents, "text/plain" is
    # a good value. If most of your content is binary, such as applications
    # or images, you may want to use "application/octet-stream" instead to
    # keep browsers from trying to display binary files as though they are
    # text.
    DefaultType text/plain
    <IfModule mime_module>
    # TypesConfig points to the file containing the list of mappings from
    # filename extension to MIME-type.
    TypesConfig /private/etc/apache2/mime.types
    # AddType allows you to add to or override the MIME configuration
    # file specified in TypesConfig for specific file types.
    #AddType application/x-gzip .tgz
    # AddEncoding allows you to have certain browsers uncompress
    # information on the fly. Note: Not all browsers support this.
    #AddEncoding x-compress .Z
    #AddEncoding x-gzip .gz .tgz
    # If the AddEncoding directives above are commented-out, then you
    # probably should define those extensions to indicate media types:
    AddType application/x-compress .Z
    AddType application/x-gzip .gz .tgz
    # AddHandler allows you to map certain file extensions to "handlers":
    # actions unrelated to filetype. These can be either built into the server
    # or added with the Action directive (see below)
    # To use CGI scripts outside of ScriptAliased directories:
    # (You will also need to add "ExecCGI" to the "Options" directive.)
    AddHandler cgi-script .cgi .pl
    Options ExecCGI
    # For type maps (negotiated resources):
    #AddHandler type-map var
    # Filters allow you to process content before it is sent to the client.
    # To parse .shtml files for server-side includes (SSI):
    # (You will also need to add "Includes" to the "Options" directive.)
    AddType text/html .shtml
    AddOutputFilter INCLUDES .shtml
    </IfModule>
    # The modmimemagic module allows the server to use various hints from the
    # contents of the file itself to determine its type. The MIMEMagicFile
    # directive tells the module where the hint definitions are located.
    #MIMEMagicFile /private/etc/apache2/magic
    # Customizable error responses come in three flavors:
    # 1) plain text 2) local redirects 3) external redirects
    # Some examples:
    #ErrorDocument 500 "The server made a boo boo."
    #ErrorDocument 404 /missing.html
    #ErrorDocument 404 "/cgi-bin/missing_handler.pl"
    #ErrorDocument 402 http://www.example.com/subscription_info.html
    # EnableMMAP and EnableSendfile: On systems that support it,
    # memory-mapping or the sendfile syscall is used to deliver
    # files. This usually improves server performance, but must
    # be turned off when serving from networked-mounted
    # filesystems or if support for these functions is otherwise
    # broken on your system.
    #EnableMMAP off
    #EnableSendfile off
    # Supplemental configuration
    # The configuration files in the /private/etc/apache2/extra/ directory can be
    # included to add extra features or to modify the default configuration of
    # the server, or you may simply copy their contents here and change as
    # necessary.
    # Server-pool management (MPM specific)
    Include /private/etc/apache2/extra/httpd-mpm.conf
    # Multi-language error messages
    #Include /private/etc/apache2/extra/httpd-multilang-errordoc.conf
    # Fancy directory listings
    Include /private/etc/apache2/extra/httpd-autoindex.conf
    # Language settings
    Include /private/etc/apache2/extra/httpd-languages.conf
    # User home directories
    Include /private/etc/apache2/extra/httpd-userdir.conf
    # Real-time info on requests and configuration
    #Include /private/etc/apache2/extra/httpd-info.conf
    # Virtual hosts
    Include /private/etc/apache2/extra/httpd-vhosts.conf
    # Local access to the Apache HTTP Server Manual
    Include /private/etc/apache2/extra/httpd-manual.conf
    # Distributed authoring and versioning (WebDAV)
    #Include /private/etc/apache2/extra/httpd-dav.conf
    # Various default settings
    #Include /private/etc/apache2/extra/httpd-default.conf
    # Secure (SSL/TLS) connections
    Include /private/etc/apache2/extra/httpd-ssl.conf
    # Note: The following must must be present to support
    # starting without SSL on platforms with no /dev/random equivalent
    # but a statically compiled-in mod_ssl.
    <IfModule ssl_module>
    SSLRandomSeed startup builtin
    SSLRandomSeed connect builtin
    </IfModule>
    Include /private/etc/apache2/other/*.conf

    Given your inexperience with apache, I think you would be better off restoring your apache configuration and then asking questions about how to set up php. You don't need to set up cgi, really, but that's a conversation I can't have right now.
    The first thing I want to make sure is that you are using a text editor like the free and very useful TextWrangler to edit your config files. If that's the case, you can download a copy of the original httpd.conf file from my server and replace your broken one.
    Click Here to Begin Download:
    http://secure.dreamyskies.net/shimmering/httpd.orig.conf.zip
    good luck.
    <Edited by Moderator>

  • Apex Listener config recommendations

    Our DBA is installing Apex Listener 1.1.2.131.15.23 for the first time, and had a question regarding some setup. Right now it's just a stand alone copy. In the JDBC Settings, what are your recommendations for the following settings?
    Initial Pool Size: 3
    Maximum Statements: 10
    Minimum Connections: 1
    Inactivity Timeout: 1800 seconds
    Maximum Connections: 10
    Abandoned Connection Timeout: 900 seconds
    If there is some recommended reading on how to determine the best way to set this up, that would be great.

    Hello Rick,
    it's hard to give you actual values. These settings concern, more or less, your load expectations. The numbers you need are
    - average number of concurrent sessions (work load)
    - maximum number of concurrent sessions (peek load)
    Some settings might as well depend on your applications.
    Recommended reading would be the Table A-1 of the Installation and Developers Guide, where the parameters you picked are described among other configuration parameters.
    Just some thoughts on connection handling:
    The APEX Listener uses a pool of connections to the database that is shared among all users. Usually it would be a waste of resources to have a dedicated connection for each application session, as there are usually times when there's no user activity, e.g. when a user is reading a report. So you want to make the pool size as small as possible without negative impact on your user experience. To achieve this, you may initialize your pool to be able to serve your average work load and allow it to grow to the expected peek. You may want to set the minimum number of connections below that value, so resource consumption is reduced in times of low charge.
    The timeouts concern the reduction of the pool size due to reduced load (inactivity timeout - a connection isn't needed any more) or failures or unexpected long database reaction times (abandoned connection).
    Statements caching can reduce database load and response times, but increases resource consumption of the Listener and may result in inacurate results if cached values are outdated.
    If you have more practical questions on that topic, don't hesitate to ask.
    -Udo

Maybe you are looking for

  • Office 2013 Professional Plus - error 1653

    Hi I tried to install Office 2013 Professional Plus 64 bit on my Windows 8.1 Update 1 pro 64 bit Lenovo Thinkpad E530. The MSI crashes after I deselected Lync and OneDrive for Business and selected Organigram for Powerpoint with the error code 1653 s

  • ITunes keeps asking to accept EULA and then does not launch

    I'm running Win7 and iTunes 10.5.  After the latest upgrade, iTunes will not launch.  Everytime I attempt to launch iTunes, it asks to accept the user license agreement, I accept, and then iTunes does nothing. 

  • MacBook Appraisal Advice.  Tests to See What it's Worth.

    A fellow student is selling his black MacBook and I'd like to buy it. I've taken a few courses and I'm pretty handy with Macs, plus I own the newer version of the same computer, but I wonder if anyone has advice on tests they would do if buying a use

  • How Can I Disable Autocorrect When I Type

    There has to be an easy way to do this. Some sort of setting I'm just overlooking. Any suggestions? This feature is crazy annoying especially for sending messages in languages other than English! Thanks!

  • [SOLVED] Glitch using anti-aliased font in Terminator ...

    Hi ( sorry for my poor english ) I've just installed Archlinux and it works well but I've a font problem using any terminal ( as far as I can test, I've installed Terminator, urxvt, xfce4-term ... ) When I use an "aliased font" I've got glitchs as sh