How to set classloader SearchPolicy to "Local-First"

Hi, I am wondering how to set the classloading search policy of OC4J to "Local-First", so not only for web apps. Basically what I'm trying to achieve is to incorporate both toplink and commons-logging/log4j libraries in my .EAR without having to worry about those libraries being loaded by another (parent) classloader.
Help appreciated.

Oc4j does not support local class first policy at the level of ear. Oc4j support local class first policy at the level of we apps only because it is recommended in the j2ee spec.
Users of this local class first policy is either delighted by its wonderful work or, more often than not in a large project, bitten by its various bad implications, especially when commons-logging is involved. So I would not recommend to use this policy unless other directions have been tried.

Similar Messages

  • How to set the focus to a first element in oracle apex 3.2.1  and 3.1.2.00

    Hello ,
    I am using oracle apex 3.2.1 in development env. How to set the focus to a first element of a page.
    thanks/mahesh

    Hi,
    This might help
    http://download.oracle.com/docs/cd/E14373_01/appdev.32/e11838/bldr_pgs.htm#CJGJDHCI
    Find "Cursor Focus" from page Display Attributes
    Br,Jari

  • How to set up a JSP local host server?

    I am trying to set up a local host JSP server, do you know any good youtube or tutorials in general that would help me set up a local host JSP server? Or could you post the steps here and your source (if any).
    I am looking for something similar to XAMPP as in this youtube tutorial: http://ca.youtube.com/watch?v=KWRB-maTVyM&feature=rec-fresh However, any help would be greatly appreciated.
    By the way, I am very new to JSP and was wondering, XAMPP includes Apache, is Apache a JSP server?
    -Direction needed.
    Edited by: watwatacrazy on Aug 31, 2008 6:51 AM

    You need a Java web container to run JSP/Servlets. A commonly used one is Apache Tomcat. It is not the same as Apache HTTP Server which can only serve static files.
    You can find Tomcat here: [http://tomcat.apache.org].
    How to install/use it, just check the User Guide: [http://tomcat.apache.org/tomcat-6.0-doc/index.html].

  • How to SET Informix (ifxjdbcx.jar) LOCALES in Pool Properties - by G Moykin

    Hi everybody,
    Some users complain about setting the DB and Client Locales in Connection Pool Properties, when IBM Informix JDBC Driver (Type 4 XA) <b>ifxjdbcx.jar</b> is used. The usual way to set them is:<br>
    <i>DB_LOCALE= …<br>
    CLIENT_LOCALE= …</i><br>
    But regardless of what is written, the Locales are NOT set. Does the Connection Pool transmit these properties correctly? Does the Driver set them? Both are true but with a very important specification: the right way to set them in the Connection Pool Properties field is:<br>
    <b>IfxDB_LOCALE= …<br>
    IfxCLIENT_LOCALE= …</b><br>
    The appearance of prefix ‘<b>Ifx</b>’ is the clue.
    Most of <b>set</b><i>PropertyName</i> Driver methods are standard such as:
    <i>user</i> -> <b>setUser</b>; <i>password</i> -> <b>setPassword</b>; <i>serverName</i> -> <b>setServerName</b>
    but in particular, IBM decided to give a name to set Locales Methods (w/o notify BEA) as:<br>
    <i> public void setIfxDB_LOCALE(String string) {<br>
         Properties.setProperty("DB_LOCALE", string);<br>
    }<br>
    public void setIfxCLIENT_LOCALE(String string) {<br>
         Properties.setProperty("CLIENT_LOCALE", string);<br>
    }</i><br>
    Methods reside in (<b>ifxjdbcx.jar</b>) class <b>com.informix.jdbcx.IfxCoreDataSource</b>,
    and the Driver class <i>com.informix.jdbcx.IfxXADataSource extends IfxCoreDataSource</i>.
    According to a standard properties SET (such as user, password, databaseName, serverName etc.), BEA developers have written a brilliant class (in <b>weblogic.jar</b>) which retrieves the properties from the Connection Pool and invokes the corresponding Driver SET Methods:
    <b>weblogic.management.console.utils.JDBC.testConnection</b> method determines whether the JDBC driver class is instance of <i>javax.sql.XADataSource</i>, and if it is, the method passes
    the driver instance:
    <i>XADataSource xadatasource =(XADataSource)Class.forName(yourDriverClass).newInstance();</i>
    And the Connection Pool properties obtained from
    <i>weblogic.management.configuration.JDBCConnectionPoolMBean_Stub.getProperties</i>
    to the method
    <b>weblogic.jdbc.common.internal.DataSourceUtil.initProps(null, xadatasource, properties);</b>
    which via <b>weblogic.jdbc.common.internal.DataSourceUtil.initProp</b> method invokes the SETs methods of the driver.
    <b>DataSourceUtil.initProp</b> method reads the corresponding ‘set property name’ and search through a Driver method <b>set</b><i>Propertyname</i>.
    Do you get me?! If you have written: DB_LOCALE= … , the <i>initProp</i> method search for a Driver method called <b>setDB_LOCALE</b>.
    Since IBM gave a name to set Locales Methods <b>setIfxDB_LOCALE</b>, you must set them in the Connection Pool Properties field as:<br>
    <b>IfxDB_LOCALE= …<br>
    IfxCLIENT_LOCALE= …</b><br>
    Best Regards: George Moykin, Sofia, Bulgaria
    e-mail: [email protected]<br>
    Some of my decisions and fixes:
    - Eliminate the problem ‘CHAR to Boolean’ automatic generation of Entity EJB Field in BEA Workshop EJB Project, when ‘new Entity bean from database table’ option is used.
    - Eliminate the problem ‘Scan of table tablename failed: java.lang.NullPointerException’, when the user tries to create an Entity EJB from a DBMS table (‘new Entity bean from database table’) using BEA Informix JDBC Driver (Type 4) wlinformix.jar.
    - Eliminate the problem ‘JDBC Pool Connection Leak/JTAConnection leak’.

    Hi everybody,
    Some users complain about setting the DB and Client Locales in Connection Pool Properties, when IBM Informix JDBC Driver (Type 4 XA) <b>ifxjdbcx.jar</b> is used. The usual way to set them is:<br>
    <i>DB_LOCALE= …<br>
    CLIENT_LOCALE= …</i><br>
    But regardless of what is written, the Locales are NOT set. Does the Connection Pool transmit these properties correctly? Does the Driver set them? Both are true but with a very important specification: the right way to set them in the Connection Pool Properties field is:<br>
    <b>IfxDB_LOCALE= …<br>
    IfxCLIENT_LOCALE= …</b><br>
    The appearance of prefix ‘<b>Ifx</b>’ is the clue.
    Most of <b>set</b><i>PropertyName</i> Driver methods are standard such as:
    <i>user</i> -> <b>setUser</b>; <i>password</i> -> <b>setPassword</b>; <i>serverName</i> -> <b>setServerName</b>
    but in particular, IBM decided to give a name to set Locales Methods (w/o notify BEA) as:<br>
    <i> public void setIfxDB_LOCALE(String string) {<br>
         Properties.setProperty("DB_LOCALE", string);<br>
    }<br>
    public void setIfxCLIENT_LOCALE(String string) {<br>
         Properties.setProperty("CLIENT_LOCALE", string);<br>
    }</i><br>
    Methods reside in (<b>ifxjdbcx.jar</b>) class <b>com.informix.jdbcx.IfxCoreDataSource</b>,
    and the Driver class <i>com.informix.jdbcx.IfxXADataSource extends IfxCoreDataSource</i>.
    According to a standard properties SET (such as user, password, databaseName, serverName etc.), BEA developers have written a brilliant class (in <b>weblogic.jar</b>) which retrieves the properties from the Connection Pool and invokes the corresponding Driver SET Methods:
    <b>weblogic.management.console.utils.JDBC.testConnection</b> method determines whether the JDBC driver class is instance of <i>javax.sql.XADataSource</i>, and if it is, the method passes
    the driver instance:
    <i>XADataSource xadatasource =(XADataSource)Class.forName(yourDriverClass).newInstance();</i>
    And the Connection Pool properties obtained from
    <i>weblogic.management.configuration.JDBCConnectionPoolMBean_Stub.getProperties</i>
    to the method
    <b>weblogic.jdbc.common.internal.DataSourceUtil.initProps(null, xadatasource, properties);</b>
    which via <b>weblogic.jdbc.common.internal.DataSourceUtil.initProp</b> method invokes the SETs methods of the driver.
    <b>DataSourceUtil.initProp</b> method reads the corresponding ‘set property name’ and search through a Driver method <b>set</b><i>Propertyname</i>.
    Do you get me?! If you have written: DB_LOCALE= … , the <i>initProp</i> method search for a Driver method called <b>setDB_LOCALE</b>.
    Since IBM gave a name to set Locales Methods <b>setIfxDB_LOCALE</b>, you must set them in the Connection Pool Properties field as:<br>
    <b>IfxDB_LOCALE= …<br>
    IfxCLIENT_LOCALE= …</b><br>
    Best Regards: George Moykin, Sofia, Bulgaria
    e-mail: [email protected]<br>
    Some of my decisions and fixes:
    - Eliminate the problem ‘CHAR to Boolean’ automatic generation of Entity EJB Field in BEA Workshop EJB Project, when ‘new Entity bean from database table’ option is used.
    - Eliminate the problem ‘Scan of table tablename failed: java.lang.NullPointerException’, when the user tries to create an Entity EJB from a DBMS table (‘new Entity bean from database table’) using BEA Informix JDBC Driver (Type 4) wlinformix.jar.
    - Eliminate the problem ‘JDBC Pool Connection Leak/JTAConnection leak’.

  • How to set contents begin at the first line?

    I created a JPanel setting CENTER, then use GridBagLayout and want contents begin at the top, not in the center. I try using anchor, but it doesn't work. Please help me sort it out. Thanks.
    Here my code:
    import javax.swing.*;
    import java.awt.event.*;
    import java.awt.*;
    public class gridBagLayoutTest extends JFrame{
        public gridBagLayoutTest() {
          super("test");
          Container con = this.getContentPane();
          JPanel jp=new JPanel();
          GridBagLayout gb=new GridBagLayout();
          GridBagConstraints c=new GridBagConstraints();
          c.fill=GridBagConstraints.BOTH;
          jp.setLayout(gb);
          c.gridx=0;
          c.gridy=0;
          JButton jb=new JButton("Button1");
          gb.setConstraints(jb,c);
          jp.add(jb);
          con.add(jp, BorderLayout.CENTER);
          setSize(250,250);
          setVisible(true);
          addWindowListener(
               new WindowAdapter(){
                   public void windowClosing(WindowEvent e){
                      System.exit(0);
    public static void main(String[] args){
          new gridBagLayoutTest();

    Hi,
    well your question seems not clear, but anyway..i would suggest u make use of the NORTHWEST, NORTH, NORTHEAST, EAST constraints of the GridBagLayout..its the most tedious and difficult layout manager in java
    i.e
    GridBagLayout gl;
    GridBagConstraints gbc;
    gl = new GridBagLayout();
    gbc = new GridBagConstraints();
    yourpanel.setLayout (gl);
    gbc.anchor=GridBagConstraints.NORTHWES;
    gbc.gridx=1;     //an example of where u want to position the component at northwest.
    gbc.gridy = 4;
    gl.setConstraints (yourcomponent,gbc);
    yourpanel.add (yourcomponent);But note that by default in java..no matter the type of layout manager used...adding of components to containers starts at at the middle..and get pushed up...depending of the number of components u add up.
    Another option for u is to set layout = NULL...then u will have to work with Dimesion..to position your components.
    i.e
    Jlabel label1 = new JLabel("ddd");
    panel.setLayout (null);
    jLabel.setBounds(new Rectangle(9, 207, 120, 26));
    panel.add(jlabel1);I hope this helps.
    Regards.
    Olumide

  • How do I set Pages to capitalise the first word of a new paragraph

    Does anyone know how I set Pages to capitalise the first word of a new paragraph.

    Hi Peter
    That worked, thank you
    However, what I was wanting was to set Pages to start every new paragraph with a capital letter
    Any ideas?
    Thanks

  • How to set the classloader mode in Netweaver 04s

    Hi All,
    Can anybody tell me how to set classloader mode in Netweaver 04S?
    In websphere , there is direct option you when you select the project through admin console. But I am able to find the place in the netweaver where I can set such mode.
    classloader mode such as parentfirst, parent last etc
    I want to set the mode parent last.
    This is very urgent requirenment.So please let me know if anybody is having any input on this.
    Thanks,
    Chandan

    Hi Siddhesh,
    Thanks for replying.
    Actually,NW has its own version of jaxrpc related jar files (in  <drive>:\usr\sap\J2E\JC02\j2ee\cluster\server0\bin\ext\webservices_lib folder) which are of a older version and are being picked up instead of the jars that are present in my application package. As a result, there are exceptions like:
    #1.5#0018FE710E98005B000000000000182800044D0B9F1ED11B#1210612216444#System.err#tdemand.com/TrueDemandWeb#System.err#Guest#0#####Thread[Thread-271,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###java.lang.NoSuchMethodError: javax.xml.namespace.QName.getPrefix()Ljava/lang/String;#
    #1.5#0018FE710E98005B000000010000182800044D0B9F1ED31A#1210612216444#System.err#tdemand.com/TrueDemandWeb#System.err#Guest#0#####Thread[Thread-271,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###       at org.apache.axis.wsdl.symbolTable.BackslashUtil.getQNameWithDifferentLocal(BackslashUtil.java:62)#
    #1.5#0018FE710E98005B000000020000182800044D0B9F1ED379#1210612216444#System.err#tdemand.com/TrueDemandWeb#System.err#Guest#0#####Thread[Thread-271,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###       at org.apache.axis.wsdl.symbolTable.BackslashUtil.getQNameWithBackslashlessLocal(BackslashUtil.java:39)#
    #1.5#0018FE710E98005B000000030000182800044D0B9F1ED3D3#1210612216444#System.err#tdemand.com/TrueDemandWeb#System.err#Guest#0#####Thread[Thread-271,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###       at org.apache.axis.wsdl.symbolTable.SymbolTable.populateServices(SymbolTable.java:3078)#
    #1.5#0018FE710E98005B000000040000182800044D0B9F1ED42B#1210612216444#System.err#tdemand.com/TrueDemandWeb#System.err#Guest#0#####Thread[Thread-271,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###       at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:745)#
    #1.5#0018FE710E98005B000000050000182800044D0B9F1ED481#1210612216444#System.err#tdemand.com/TrueDemandWeb#System.err#Guest#0#####Thread[Thread-271,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###       at org.apache.axis.wsdl.symbolTable.SymbolTable.add(SymbolTable.java:543)#
    #1.5#0018FE710E98005B000000060000182800044D0B9F1ED4D8#1210612216444#System.err#tdemand.com/TrueDemandWeb#System.err#Guest#0#####Thread[Thread-271,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###       at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:518)#
    #1.5#0018FE710E98005B000000070000182800044D0B9F1ED52F#1210612216444#System.err#tdemand.com/TrueDemandWeb#System.err#Guest#0#####Thread[Thread-271,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###       at org.apache.axis.wsdl.symbolTable.SymbolTable.populate(SymbolTable.java:495)#
    #1.5#0018FE710E98005B000000080000182800044D0B9F1ED585#1210612216444#System.err#tdemand.com/TrueDemandWeb#System.err#Guest#0#####Thread[Thread-271,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###       at org.apache.axis.wsdl.gen.Parser$WSDLRunnable.run(Parser.java:361)#
    #1.5#0018FE710E98005B000000090000182800044D0B9F1ED5E1#1210612216444#System.err#tdemand.com/TrueDemandWeb#System.err#Guest#0#####Thread[Thread-271,5,SAPEngine_Application_Thread[impl:3]_Group]##0#0#Error##Plain###       at java.lang.Thread.run(Thread.java:534)#
    #1.5#0018FE710E98004F00001A610000182800044D0B9F1F2B60#1210612216475#System.out#tdemand.com/TrueDemandWeb#System.out#Guest#0#####SAPEngine_Application_Thread[impl:3]_9##0#0#Info##Plain###2008-05-12 10:10:16,459 ERROR [com.tdemand.common.service.client.ServiceProxyUtil] - <Error processing WSDL document: 
    javax.xml.rpc.ServiceException: Error processing WSDL document: 
    javax.xml.rpc.ServiceException: Cannot find service:  BootstrapService>
    javax.xml.rpc.ServiceException: Error processing WSDL document: 
    javax.xml.rpc.ServiceException: Error processing WSDL document: 
    javax.xml.rpc.ServiceException: Cannot find service:  BootstrapService
                at org.apache.axis.client.Service.initService(Service.java:250)
                at org.apache.axis.client.Service.<init>(Service.java:165)
                at org.apache.axis.client.ServiceFactory.createService(ServiceFactory.java:198)
                at org.springframework.remoting.jaxrpc.LocalJaxRpcServiceFactory.createJaxRpcService(LocalJaxRpcServiceFactory.java:182)
    This problem is solved in websphere as probably because we have classloader configuration set through Admin console.
    But just wanted to know does we have such option in NetWeaver? If yes, how to set the classloader mode to parent last.
    Or if you know some other solution then let me know.
    Thanks,
    Chandan

  • How do I set up voicemail for the first time?

    I feel like i am losing my mind.  I CANNOT find simple instructions (even in the manual) on how to set up my husband's voicemail on the BB 8800.  There are all kinds of questions and answers about voicemail, but I just need to know how to set it up for the first time.  The message you get when you call the phone is "This user has not yet set up voicemail" (or something to that effect).
    PLEASE HELP!
    Solved!
    Go to Solution.

    This is simple in deed! Go to Call Log -> click Menu and  select Options -> Voice Mail. Now in the Access Number put your carriers Voice Mail Box number. Some carrier requires access password which you can also put in the.
    Let know if this helps.
    tanzim                                                                                  
    If your query is resolved then please click on “Accept as Solution”
    Click on the LIKE on the bottom right if the post deserves credit

  • How to set local currency in AR/Invoice through DI API SAP B1?

    Dear Expert,
    I am using DI API to add AR/Invoice document, but I can't find how to set local currency for BP with foreign currency.
    This my code snip :
            oSO = oCompany.GetBusinessObject(BoObjectTypes.oInvoices)
            oSO.DocDate = dtpPostDate.Value
            oSO.DocDueDate = dtpDueDate.Value
            oSO.TaxDate = dtpDocDate.Value
            oSO.Series = cSeries
            oSO.DocNum = txtNumber.Text
            oSO.DocCurrency = doccur
            oSO.CardCode = txtBP.Text
            oSO.CardName = txtName.Text
            oSO.ContactPersonCode = cntctCode
            oSO.JournalMemo = txtRemarks.Text
            For i = 0 To dgv.RowCount - 2
                oSO.Lines.SetCurrentLine(i)
                oSO.Lines.ItemCode = dgv.Item(0, i).Value
                oSO.Lines.ItemDescription = dgv.Item(2, i).Value
                oSO.Lines.Quantity = dgv.Item(4, i).Value
                oSO.Lines.Price = dgv.Item(5, i).Value
                oSO.Lines.DiscountPercent = dgv.Item(6, i).Value
                oSO.Lines.TaxCode = dgv.Item(7, i).Value
                oSO.Lines.LineTotal = dgv.Item(9, i).Value
                oSO.Lines.Currency = doccur
                oSO.Lines.Add()
            Next
            lRetCode = oSO.Add()
            If lRetCode <> 0 Then
                oCompany.GetLastError(lErrCode, sErrMsg)
                MsgBox(sErrMsg, 16, "Attention")
            Else
                MsgBox("Operation completed successfully.", 64, "Information")
             End If
    When trying to Add, system show error message " Enter valid currency code [OINV.DocCur][Line:1], '$' "
    I am not lucky after trying for a day , wish enlightenment from the experts here, Thank you.
    My machine : SAP B1 9 PL 4
    Best Regards,
    Muh.Ulfah

    Hi
    In the other thread I suggested that you can add document using interface first because there is a possibility that B1 doesn't accept this currency code not because you set it improperly in your code but because of some other reason, for example this currency is not valid for this particular business partner. Despite the fact that this way you can eliminate other possible problems you can also use DI to save an existing document as XML and check what is the actual currency code that B1 itself placed in the document lines object.
    Afterwards you can again try to add document using DI.
    btw
    check this thread:
    How to set local currency in sales order for BP with foreign currency through DI?
    Kind regards,
    Radek

  • How to set up Airport Extreme with Charter ARRIS Modem TM902A for the first time for WIRELESS.

    How to set up Airport Extreme with Charter ARRIS Modem TM902A for the first time for WIRELESS.
    When Charter Tech goes to your site, have them connect the modem up, but do not connect the modem to your iMAC or MacBook Pro.  What you want to do is connect the Airport Extreme to the iMac or MacBook Pro first with the Ethernet Cable. You have to do this to configure via Airport Utility to set up the Base Station Name & Base Station Password.
    You will then create/configure a Wireless Network, create your Wireless Password that will be entered on each of your Devices, example, Apple Tv, your iPhone, etc., you want to allow access to your Wireless Network you are creating.
    Wireless Security will be -> WPA/WPA2 personal or just WPA2
    Enter the Wireless Password you want
    Verify the Wireless Password (enter it again)
    After it is created you will see it on the Airport Utility window with the name you created for it and to the left, will be a Dot (circle that will be yellow).
    Next you then want to unplug the power to the Airport Extreme, and then take the end of the Ethernet cable you unplugged from the iMac or Lap top MacBook Pro and connect it to the back of the Modem.
    Next unplug the power cord from the modem and wait about 5 minutes, then plug the power back into the Arris Modem and wait until all lights come back on the modem wait
    about 5 minutes, then plug the power cord back to the Airport Extreme and you will see it the light blinking yellow.  Wait about 5 to 10 minutes, during this time Restart you IMAC or MacBook Pro, and once it is back up click on the Airport Utility and you should see on the Airport Utility screen.
    For INTERNET to the left the light should be green and you should see the Airport Extreme also appear and the light to the left on the screen should also be green.  If they are, you then should be able to click on the Wireless Symbol on top of bar of the screen and click to select the Wireless Network Name you created.
    If you Do Not See the light (Icon) next to INTERNET turn Green, or if you see the Internet Light Green, but the Light (Icon) next to the Airport Extreme is yellow, unplug the power again to the modem and unplug the power again to the Airport extreme and wait about 15 minutes or up to 30 minutes. Then plug the power cord back to the modem wait till all the lights light up then, plug the power cord back into the Airport Extreme and Restart your iMAC or MacBook Pro.
    The Airport Extreme light should change from yellow to green. Open up the Airport Utility to see what the indicators are showing they should both be green.  Again select Wireless network you created under the Wireless Icon on the top right of the screen. Open Safari and see if you are able to Route to a web page or the apple site should appear.
    WHAT TO DO IF YOUR AIRPORT EXTREME WAS PREVIOUSLY SET UP FOR USE WITH ANOTHER CARRIERS ROUTER OR MODEM.
    NOTE:  If you already had your Airport Extreme connected for example, I previously had ATT Uverse and the Airport Extreme was connected to the Wireless Router Model 3801HGV, I disabled the Uverse Wireless and used the Airport Extreme for the Wireless signal in bridge mode, as the Airport extreme Signal is much stronger than the Uverse router, and I was able to obtain a Wireless signal with the Airport Extreme way much better with no signal loss which was very very frustrating with the Uverse router.
    Anyhow if you had it hooked up like this, now that you will be using it with the Charter ARRIS Modem TM902A, you will need to reset the Airport Extreme to clear out the old data it has in memory, with the previous set up otherwise it will not work. Trust me I spent 6 hours trying to make it work reading all Apple Support Community questions and answers relating to this type issue/problem others have been having trying to get their set up working. I tried all the tips, and I finally decided just to see if by chance I would be able to connect with someone with Charter Tech support who might be familiar with Apple to be able to assist me and by luck I did.  He told me why it was not working and was all due the previous configuration with the ATT Uverse router was still in memory with the Airport Extreme. Finally it was 10:30 PM when I decided to call Charter Tech Support and I had been working on this since 3:00 pm pacific. I did not call them earlier as all the post I read said they never received any good help from Charter. After calling them I finished up by 11:00 PM and was able to finally connect Apple Tv, iMac, iPhones and Macbook Pro. We love our Apple Product and Happy all is connected with the new
    Internet Provider Charter. I must say the speed is way way much better than it ever was with AT&T Uverse. 
    THIS IS WHAT YOU WILL NEED TO DO:
    First you will need to unplug the Airport Extreme, then by taking the tip of a pen or paper clip end you need to push the reset button on the back of the Airport Extreme and hold it
    down and at the same time plug the power cord back into the Airport Extreme count to 5 or 10 then release the reset button. Then once he light in front of the Airport Extreme stops blinking you need to plug the Ethernet cable from the Airport Extreme to your iMAC or Macbook Pro, and restart which ever one you have, then open the Airport Utility once it is back up.  If you see airport extreme pop up with the old network name or it shows and yellow triangle click on the Airport Extreme ICON it will not let you configure it but will ask if you want to get rid of it or remove and just do it.  Then Again restart your iMAC or MacBook Pro, open up Airport Utility again, and on the top left you should see under “Other Airport Base Stations” the MAC ID for the Airport Extreme.
    You will then create/configure a Wireless Network, create your Wireless Password that will be entered on each of your Devices, example, Apple TV, your iPhone, etc., you want to allow access to your Wireless Network you are creating.
    Wireless Security will be -> WPA/WPA2 personal or just WPA2
    Enter the Wireless Password you want
    Verify the Wireless Password (enter it again)
    After it is created you will see it on the Airport Utility window with the name you created for it and to the left, will be a Dot (circle that will be yellow).
    Next you then want to unplug the power to the Airport Extreme, and then take the end of the Ethernet cable you unplugged from the iMac or Lap top MacBook Pro and connect it to the back of the Modem.
    Next unplug the power cord from the modem and wait about 5 minutes, then plug the power back into the Arris Modem and wait until all lights come back on the modem wait
    about 5 minutes, then plug the power cord back to the Airport Extreme and you will see it the light blinking yellow.  Wait about 5 to 10 minutes, during this time Restart you IMAC or MacBook Pro, and once it is back up click on the Airport Utility and you should see on the Airport Utility screen.
    For INTERNET to the left the light should be green and you should see the Airport Extreme also appear and the light to the left on the screen should also be green.  If they are, you then should be able to click on the Wireless Symbol on top of bar of the screen and click to select the Wireless Network Name you created.
    If you Do Not See the light (Icon) next to INTERNET turn Green, or if you see the Internet Light Green, but the Light (Icon) next to the Airport Extreme is yellow, unplug the power again to the modem and unplug the power again to the Airport extreme and wait about 15 minutes or up to 30 minutes. Then plug the power cord back to the modem wait till all the lights light up then, plug the power cord back into the Airport Extreme and Restart your iMAC or MacBook Pro.
    The Airport Extreme light should change from yellow to green. Open up the Airport Utility to see what the indicators are showing they should both be green.  Again select Wireless network you created under the Wireless Icon on the top right of the screen. Open Safari and see if you are able to Route to a web page or the apple site should appear.

    I just got a Charter Modem. Model TM822. While I was moving, my Airport Extreme was still at my old place.
    I have a Linksys WRT320N I used for the initial Charter setup.
    I can get my Airport to work here, but the Internet light on the Modem flashes Yellow.
    Hasn't caused any issues so far but one thing I did notice.
    On the Linksys there were 3 DNS servers listed.
    The Airport Extreme only lists 2 and i don't see where I could add another, only change whats already there.
    I tried everything above, but light on modem still flashes yellow.
    I have the technicians cell phone. Told me "that shouldn't be" and gave the same advice listed above.
    I'll break down and call Charter one day, see if it's on their end. NSA tracking may need a reset LMAO.

  • HT1695 Hi. I just bought new Ipad Mini. I don't have network to connect to. Its my first owning one i don't know how to set it up. Help...

    Hi. I just bought new Ipad Mini. I don't have network to connect to. Its my first owning one i don't know how to set it up. Help...

    FYI
    Complete guide to using iOS 6
    http://howto.cnet.com/ios-6-complete-guide/
    Guide to Built-In Apps on iOS
    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/guide-to- built-in-apps-ios
    You can download a complete iOS 5 iPad User Guide and iOS 6 iPad User Guide here: http://support.apple.com/manuals/ipad/
    Also, Good Instructions http://www.tcgeeks.com/how-to-use-ipad-2/
    Apple - iPad - Guided Tours
    http://www.apple.com/ipad/videos/
    Apple iPad Guided Tours - Watch the videos see all the amazing iPad apps in action. Learn how to use FaceTime, Mail, Safari, Videos, Maps, iBooks, App Store, and more.
    http://www.youtube.com/watch?v=YT2bD0-OqBM
    http://www.youtube.com/watch?v=ROY4tLyNlsg&feature=relmfu
    http://www.youtube.com/watch?v=QSPXXhmwYf4&feature=relmfu
    How to - Articles & User Guides & Tutorials
    http://www.iphone-mac.com/index.php/Index/howto/id/4/type/select
    iPad How-Tos  http://ipod.about.com/lr/ipad_how-tos/903396/1/
    You can download this guide to your iPad.
    iPad User Guide for iOS 5
    http://itunes.apple.com/us/book/ipad-user-guide-for-ios-5/id470308101?mt=11
     Cheers, Tom

  • How to set password for Local are connection?

    How to set password for Local are connection?

    do you mean the 802.1x authentication?
    check out links below:
    http://www.cisco.com/c/en/us/td/docs/switches/lan/catalyst2950/software/release/12-1_9_ea1/configuration/guide/scg/Sw8021x.html
    http://technet.microsoft.com/en-us/network/bb545365.aspx
    Every second counts..make use of it. Disclaimer: This posting is provided AS IS with no warranties or guarantees and confers no rights.
    IT Stuff Quick Bytes

  • When I set up email for the first time, I had to enter a 4 digit pin. Since then, every time I switch my phone on, I have to enter this pin.   How do I remove or bypass the pin so that I can switch on the Iphone without having to first enter a pin?

    When I set up email for the first time, I had to enter a 4 digit pin. Since then, every time I switch my phone on, I have to enter this pin.   How do I remove or bypass the pin so that I can switch on the Iphone without having to first enter a pin?

    Go to Settings>General>Passcode Lock>tap Turn Passcode Lock Off, enter your "pin".
    Edit:  Are you saying you are getting a prompt for your email pin, or are you talking about the passcode lock that appears when you turn the phone on?

  • How to set default locale in JDK1.3.0 to US?

    Hi, everyone!
    I found the default locale in JDK 1.3.0 is not set to US when I converted our JDK from 1.2 to 1.3.0. So I have to change code by passing Locale.US.
    The output from below test code is:
    default=��100.00
    US=$100.00
    import java.util.Locale;
    import java.text.*;
    public class TestCurrency
    public static void main(String[] args)
    int amount = 100;
    //default
    NumberFormat moneyWriter = NumberFormat.getCurrencyInstance();
    System.out.println ("default=" + moneyWriter.format(amount) );
    //US
    moneyWriter = NumberFormat.getCurrencyInstance(Locale.US);
    System.out.println ("US=" + moneyWriter.format(amount) );
    Can anyone tell me how to set default locale in JDK 1.3.0 to US?
    Thanks!

    You have to set something on your computer (outside Java) to tell it that you are in the US. You didn't say, but I'm going to guess that you are using Windows; if that's so, then try Regional Options in Control Panel.

  • Epson Artisan 810 in duplex printing, reverses the second page, so that it is upside down in relation to the first page. Does anyone know how to set the second page i.e the reverse side of the page, in the correct direction?in the

    Epson Artisan 810 in duplex printing, reverses the second page, so that it is upside down in relation to the first page. Does anyone know how to set the second page.... i.e the reverse side of the page.....in the correct direction?
    It worked perfectly last week, now there are problems.
    Thanks for any advice.

    Epson Artisan 810 in duplex printing, reverses the second page, so that it is upside down in relation to the first page. Does anyone know how to set the second page.... i.e the reverse side of the page.....in the correct direction?
    It worked perfectly last week, now there are problems.
    Thanks for any advice.

Maybe you are looking for

  • Is there any api to modify the form field in PDF?

    Hi, Our client need we provide the editable PDF, i.e. some form fields in the PDF report can be edit. Now we created the PDF template and merged it with the XML data definition in Jdeveloper, but when we get the final PDF report, we found that the PD

  • Got Questions? We've Got Experts! HP Expert Day: May 14-15, 2014

    Thank you for coming to Expert Day – the event has now concluded. **To find out about future HP Expert Day events, check out this page** On behalf of the Experts, I would like to thank you for coming to the Forum to connect with us.  We hope you will

  • How do I deactivate and reactivate software to the same computer

    I upgraded my computer's operating system before deactivating software. How can I reactivate software to the same computer?

  • Duplicate Mac Mail notes

    Whenever I sync my BB with my notes in Mail.app on my Mac, I end up with multiple copies of notes on the Blackberry. There's only one copy of each note in mail.app, but even if I reset iSync history, reboot the Mac, wipe all the notes from the Blackb

  • Iphoto doesn't recognize jpg's and won't import pictures

    Recently updated from iPhoto 09 to 11 and iPhoto won't import pictures from Kodak camera. Says it doesn't recognize file type "jpg". Imported pic last week from same camera just fine. Also upgraded to OSX 10.6.8– this is when the problem started. I d