Urgent question: AP Express and ISDN

I really need to settle this doubt, as I am going to do an academic internship in Geneva and will live in a shared apartment where, seemingly, there are only ISDN connections (please correct me if I am wrong, since it uses a sort of "split plug" for the telephone line and the ethernet-like cable).
My problem is: the room where I will be living does NOT have a connection plug, so I am thinking about buying an Airport Express to use wireless on both my iMac G5 and my iBook G3...is it possible? If not, is there any workaround?
Thanks in advance for your help!
Ric

If you just have an ISDN connection that is intended to be connected to a computer via a device called an "ISDN terminal adapter" then you won't be able to use this connection directly with an Airport Express. You will first need to buy what is called an ISDN router - a device the ISDN connection can be cabled to, which in turn will share the connection with one or more networked devices using ethernet - like the Airport Express. ISDN routers are not items you just pick up in any computer shop - they tend to be fairly expensive and sold by dealers specializing in equipment for business networks. Some respondents to these discussion forums have had luck buying an ISDN router fairly inexpensively on EBay.

Similar Messages

  • Urgent: Question about Censoring and replacing

    Hello, guys.
    This is my very first time writting a java program. Please tell me what I have done wrong as this is my first time?
    My question is to write a program that asks the user for a word to replace in some text, and the word to replace it with. The program then reads a line of text from the user and echoes the line back to screen replacing all occurrences of the first word with the second word. It only replaces the word being censored when it occurs independently in a line (i.e. not as a part of another word).
    Like:
    Enter word to censor: dumb
    Enter word to replace it: xxxxx
    Enter line of text to censor:
    The guy is dumb but his friend is even dumber.
    The guys is xxxxx but his friend is even dumber.
    Please look at my code now and tell me what is wrong?
    public class censor
       public static void main(String args[])
           String sentence = "Please type a word which you like to censor"
           String ac =  string sentence;
           String[] temp = null;
           temp = sentence.split(" ");
           for (int j = 0; j < temp.length; j++ )
               if (temp[j].equals("bridge"))
                   string sentence = "Censored";
               System.out.println(sentence + " " + string sentence);
    } Edited by: G on Apr 13, 2008 4:04 AM
    Edited by: KevinGupta on Apr 13, 2008 4:05 AM

    Hey guys,
    I'm getting an error where I have added the "ERROR LINE" next to the line where im getting an error..
    What I'm trying to do ?: I'm trying to make it like
    Enter word to censor: dumb
    Enter word to replace it: xxxxx
    Enter line of text to censor: The guy is dumb dumb dumb dumb and his friend is dumber.
    So, this code should replace ALL "dumb" with xxxxx NOT the dumber. But when I try to run this code only one dumb changes to xxxx not all ? So, please help on that. Also, this code doesnt work when I try to write " LIke ThaT " It gives me an exception error ?
    {color:#ff0000}Look at the error below (underneath the code){color}
    import java.util.*;
    public class LineCensor
    public static void main(String [] args)
    System.out.print("Enter a word to censor: ");
    Scanner keyboard = new Scanner(System.in);
    String word = keyboard.nextLine();
    System.out.print("Enter a word to replace it: ");
    String wordC = keyboard.nextLine();
    System.out.println("Enter line of text to censor: ");
    String phrase = keyboard.nextLine();
    String wordLowered = word.toLowerCase();
    String phraseLowered = phrase.toLowerCase();
    int location = phrase.indexOf(word);
    String string1 = phraseLowered.substring(location,(location +
    wordLowered.length()));
    String string2 = phraseLowered.substring(0, location);
    String string3 = phraseLowered.substring(location+word.length());
    System.out.println(string2+wordC+string3);
    string2 = string2.toLowerCase();
    for (int i=0; i < phrase.length; i++)
    (phrase.equals());                        <-------- ERROR LINE.
    phrase = wordC;
    System.out.println(+i);
    }ERROR:
    The error is:
    LineCensor.java:28: not a statement
    (phrase.equals());
    ^
    1 error ANOTher ErroR
    Enter a word to censor: CaT
    Enter a word to replace it: xxxx
    Enter line of text to censor:
    The cAT wAs CuRioUs abOuT otHER CAT's strings
    Exception in thread "main" java.lang.StringIndexOutOfBoundsException: String index out of range: -1
    at java.lang.String.substring(String.java:1932)
    at LineCensor.main(LineCensor.java:17) This error is coming up because of lower and high caps typing. This shouldnt be happening no matter how I type the sentence/word.
    Please help ?
    Edited by: kabootar on Apr 16, 2008 3:20 AM
    Edited by: kabootar on Apr 16, 2008 3:21 AM

  • Urgent - Question about logging and debugging.

    Hi,
    I have a question about the logging and debugging supported by
    Weblogic 6.0. From what I understood by reading the documentation
    it has classes e.g. NotCatalogLogger class for logging the information.
    The class has one method callded
    debug() for writing the debugging information. I want to log the
    debug messages only in some situation. Can I control this using
    some property? Because the documentation says that the debug information
    is logged only if application is running in debug mode. Now how
    do I change the mode of an application??
    Thanks and Reagrds,
    Manoj

    Hi,
    I have a question about the logging and debugging supported by
    Weblogic 6.0. From what I understood by reading the documentation
    it has classes e.g. NotCatalogLogger class for logging the information.
    The class has one method callded
    debug() for writing the debugging information. I want to log the
    debug messages only in some situation. Can I control this using
    some property? Because the documentation says that the debug information
    is logged only if application is running in debug mode. Now how
    do I change the mode of an application??
    Thanks and Reagrds,
    Manoj

  • Urgent Question regd 'RowsetIterateTag' and 'next()'

    Please dont get offended as this is a duplicate posting
    as the matter is URGENT.
    I have a RowsetIterateTag and I want to go ahead
    to the next record and compare the value of
    certain column values with the current record.
    How do I use the variable 'rs' which is protected
    and can be used to access the next record?
    HELP is really appreciated as this is in PRODUCTION
    My code is :
    public class CheckDetailRowsIterate extends TagSupport
         public int doStartTag() throws JspException
           Row currentRow = null;
           Row nextRow = null;
           RowSet rowSet = null;
           String m_CmpyCode;
           // Find the current row and get Data out of it.
           RowsetIterateTag detailIterator = (RowsetIterateTag)TagSupport.findAncestorWithClass(this, RowsetIterateTag.class);
           if (detailIterator != null)
              currentRow = detailIterator.getRow();
           if(currentRow != null)
             String[] attrNames = currentRow.getAttributeNames();
             Object[] obj = currentRow.getAttributeValues();
             m_CmpyCode = obj[currentRow.getAttributeIndexOf("CmpyCode")].toString();
            // Now,move to the next Row.THIS IS PROBLEMATIC
            //rowSet = new IT().getRowSet();
            //nextRow = rowSet.next();
            return Tag.SKIP_BODY;
         public class IT extends RowsetIterateTag
                RowSet getRowSet()
                      return rs;
         } // END Inner Class.
    }  // End class.

    Please dont get offended as this is a duplicate posting
    as the matter is URGENT.
    I have a RowsetIterateTag and I want to go ahead
    to the next record and compare the value of
    certain column values with the current record.
    How do I use the variable 'rs' which is protected
    and can be used to access the next record?
    HELP is really appreciated as this is in PRODUCTION
    My code is :
    public class CheckDetailRowsIterate extends TagSupport
         public int doStartTag() throws JspException
           Row currentRow = null;
           Row nextRow = null;
           RowSet rowSet = null;
           String m_CmpyCode;
           // Find the current row and get Data out of it.
           RowsetIterateTag detailIterator = (RowsetIterateTag)TagSupport.findAncestorWithClass(this, RowsetIterateTag.class);
           if (detailIterator != null)
              currentRow = detailIterator.getRow();
           if(currentRow != null)
             String[] attrNames = currentRow.getAttributeNames();
             Object[] obj = currentRow.getAttributeValues();
             m_CmpyCode = obj[currentRow.getAttributeIndexOf("CmpyCode")].toString();
            // Now,move to the next Row.THIS IS PROBLEMATIC
            //rowSet = new IT().getRowSet();
            //nextRow = rowSet.next();
            return Tag.SKIP_BODY;
         public class IT extends RowsetIterateTag
                RowSet getRowSet()
                      return rs;
         } // END Inner Class.
    }  // End class.

  • Urgent question:can you replace source video and automatically have AE swap clips in timeline?

    Hi there
    Have an urgent question. I have finished editing a project that has been edited from pre-exported videos, but the problem is that i have been notified last minute if it is possible to change parts of it!
    Is is possible to change and re-render the pre-exported clips at same length that are affected and then replace the 'source footage' in after effects to have it automatically swap the clips that I've edited and cut up already? As it would take a very messy and extremely long time to manually change all the trimmed parts!
    It is only a small section of the source clip I need to change, but the overall composition edits are fine so I don't really need to touch that, it's just really to replace the footage but have everything to stay the exact same.
    Please advise!
    Appreciate this if anyone can! fairly urgent
    Thanks

    Yes, just right-click on a source in the Project bin and choose Replace Footage.

  • Urgent Question about System Center Server Names and Dashes

    Hey guys I have a quick Urgent question that would be awesome if it happens to get answered quickly :). 
    So in the past we had problems with different server names in components of System Center when setting up different servers.... I never myself saw the errors or what it did, but an absentee colleague did. For example is anything wrong with a name setup like
    xx-scom-01 / xx-scom-02  as compared to the standard scom01 scom02? We have a certain naming convention we are moving to and I wanted to see if this was fixed. I wanted to say it had something to do with the hyphens... anyways any foresight anyone can
    provide would be awesome. Thanks!

    Dashes in the name will work fine.
    Jonathan Almquist | SCOMskills, LLC (http://scomskills.com)

  • Can anyone give me Interview question on forms6i and reports 6i(its urgent)

    plz give me Interview question on forms6i and reports 6i its urgent .plz mail it to me on paritosh [email protected]

    Check this link
    http://www.geekinterview.com/Interview-Questions
    You will find many information regarding interview questions of oracle related domains.

  • I have an urgent question about my indesign. I had problems with the creative cloude app and then uninstalled it and then installed it again. Now it is not opening and I cannot download it again either. Pls give me help and advice if there is anything I c

    I have an urgent question about my indesign. I had problems with the creative cloude app and then uninstalled it and then installed it again. Now it is not opening and I cannot download it again either. Pls give me help and advice if there is anything I can do to repair it

    Please authorize ADE 3 with same credentials that you used with older version of ADE

  • Questions about AirPort Express and Extreme!

    I have BT Infinty and the hub is situated in the living room. What I want to do is extend the wi fi to my room which is around 10 metres away.
    Are you able to connect the AirPort Express to the network and then create a network for the AirPort Express for my MacBook Pro to connect to?
    I have two options and questions
    1. Buy a AirPort Extreme and replace my BT hub with that. Then use an AirPort Express to extend the wi fi. But when you extend the wi fi does it mean that when I search for a wireless hotspot from my Mac I connect the the AirPort Express? Or is there a way of making the AirPort express to have a different name?
    2. Use my Bt hub and buy a AirPort Express and connect it to my Infinty Connection. BUT is there a way of making a hotspot for the AirPort Express for example
    my Infinity connection is named Bt-Infinty2356
    I use the AirPort express to connect it and extend the wifi
    THEN is it possible to make a hotspot named "AirPort-Express-Muppet" for me to connect from my Mac?
    Thanks

    I have no experience with the "BT Infinity Modem" and "BT HomeHub", but I assume that they are two separate units?
    If yes: connect the modem direct to the Extreme by ethernet cable.
    If it is a "combined" unit: connect the Extreme by ethernet cable to one of the ethernet slots on the hub.
    In both cases set the Extreme to "Create a wireless network".
    Use a Airport Express to "extend a Wireless Network", and extend the Extreme.
    Do not expect the Airport Express to extend the BT hub wireless network, because it will not work.
    In both cases you have two wireless networks: one from the Hub and one from the Extreme.
    Off the record: I have the same situation in France with the "Livebox" (Orange) that is connected to a Netgear WiFi router: two network: the Livebox is just that, the Netgear is "relayed" through Netgear Routers (Switches) to five areas in the "house". The same in Switzerland, but there I used Extreme and Express units instead of the netgear units.
    The Hiome Hub should work fine connected to the modem by cable, and the other network also by connected to the cable. Do not mix the different brands: trouble.

  • I just have questions about the AirPort Express and how it works.

    My household Wi-Fi is not the strongest in  my room and I found out about the AirPort Express and I read the overvie, but I still have some questions on how it works, how its setup and other questions as well.

    The AirPort Express will not wirelessly extend the signal from another router unless that router is also an Apple product.
    Not sure what other questions you might have, but we'll try to answer if you want to ask.

  • Need help with Airport Express and so on.

    Ok so my main problem before getting into what I need help with here is that our MacBooks and now my iPhone 6 plus isn't staying online. Keep getting booted off and then I either have to select the network again or it will eventually go back on. If anyone has a solution or so please feel free to answer that as well. I'm running on Roadrunner with a Netgear 600 wireless router and a motorola modem. Both of which I'll leave the link to below for a better look.
    My Main Question: So I'm looking at a new wireless router mainly and possibly a new modem. I know Apple products are trustworthy but how good is the Airport Express and other Airport products. Also what is the Maximum speed and Maximum data speed for the cheapest express station and if anyone knows the speeds of the other devices it would be greatly appreciated.

    DSL Router to Netgear 5-port Switch and I used the switch to connect to Airport Extreme, TV, Blue-Ray DVD player and DirecTV Receiver.
    The AirPort Extreme base station (AEBS) is a router so it will do what you need.
    You need to reconfigure your setup. Connect the WAN port of the AEBS to the DSL router. Then connect the Netgear switch to one of the LAN ports on the AEBS. The AEBS will properly share the connection.

  • A Time Capsule, Airport Express and AT&T 2Wire walk into a bar...

    Alas, I'm sure this question has been asked before, but my reserach keeps turning up separate answers.  So I thought I'd turn to this forum for some advice.  Ultimately I'm seeks suggestions on various ways to configure my network to allow easy backups, connection two rooms, and wirelessly print from anywhere.
    I have a: 
    Time Capsule (dual band) - used for Time Machine backups
    Airport Express (older)
    and new 2Wire 3800HGV-B wireless modem/router from AT&T (for U-verse internet/TV)
    My room configuration is:
    Living room with TV, internet connected DVD player, and new AT&T 2Wire Wireless U-verse modem
    Home office with 2 desktop comptuers (no wireless cards) and a USB printer. 
    Two roaming laptops which move around the rest of the house
    The livingroom and the office can't be connected with a physical wire. 
    What I was hoping to do was setup my office with the Time Capsule in the office as a wired hub, and then use it as a wirelessly bridge to the 2Wire network.  But as I understand it, a Time Capsule can't be used as a bridge to a non-Apple product.  Please correct me if I'm wrong. 
    Alternately I could always get wireless cards for the desktop computers, but this leaves the printer.
    I've read suggesitons of people who have used their TC as the primary router, disabling wireless on their AT&T 2Wire, and hooking the two together with ethernet.  Others who just join the TC to the 2Wireness network.  But really what I'm seeking is a way to join the two rooms. 
    Any thoughts?  Am I asking the right questions or providing the right information?
    Much thanks,
    dana.

    So I figured I'd go with an initial suggestion and attached my TC via ethernet to the 2Wire modem/router in my living room, and make the TC my primary wireless router.
    Good plan
    since both will be in the same room, I assume I need to disable wireless on the 2Wire
    Correct
    What kind of configuration do I need to do on the TC, or do I just following the wizard and select 'Extend existing network'?
    You can follow the guided setup or I can give you a step by step manual setup. In either case, you will configure the TC to "Create a wireless network". 
    ("Extend" is only used if the TC connects using wireless only....you will be using Ethernet from one of the LAN <-> ports on the 2-Wire to the WAN port (world icon) on the TC.
    The guided setup will normally sense that the TC is connected to another router and suggest that the TC be configured in Bridge Mode, which is the correct setting. Otherwise, select the Bridge Mode option when it is presented.
    Note....If you have a newer dual band TC, the Guest Network option cannot be enabled when the TC is configured in Bridge Mode. So, if you want a "Guest" network, maybe the 2-Wire could provide that service.
    Should I attach this (via ethernet) to the TC or the 2Wire?
    Pick a LAN <-> port on either one, your choice, whichever is easier
    What should the AT&T DVR be connected to?
    I'm not familiar with an AT&T DVR, but if it connects via Ethernet, you can connect to a LAN <-> port on either the 2-Wire or the TC
    For printing, my plan is to attach the printer through USB to the Airport Express and then connect that wirelessly to the TC network (though my first attempt at this failed to connect).
    Suggest that you get the TC up and working smoothly. Then tackle the Express.

  • SQL Server Express and Visual Studio 2013

    In February I installed Visual Studio 2013 Professional. Looking in the Control Panel at all my installed programs, I see that I have a bunch of SQL server-related programs loaded, from the 2013 install and also from installs of previous Visual Studio versions.
    I've never done a thing with SQL server express, and am completely clueless about using it. I've already wanted to take a crack at it but it always seemed too daunting, so I backed off. It seems, however, that over the years the integration of SQL Server Express
    with Visual Studio is getting more and more seamless. Here is a list of all the SQL Server-related programs on my computer, with the ones installed automatically from the Visual Studio 2013 install bolded so they'll stand out. What I'm wondering is if I have
    everything I need to use SQL Server Express with Visual Studio 2013:
    Microsoft SQL Server 2005                                                  
    Microsoft Corporation   11/4/2013
    Microsoft SQL Server 2005 Mobile [ENU] De...                     
    Microsoft Corporation   4/29/2007
    Microsoft SQL Server 2008 R2 Data-Tier App...                    
    Microsoft Corporation   1217/2011
    Microsoft SQL Server 2008 R2 Data-Tier App...                    
    Microsoft Corporation   1217/2011
    Microsoft SQL Se1Ver 2008 R2 Management ...                   
    Microsoft Corporation   1217/2011
    Microsoft SQL Server 2008 R2 Transact-SQL ...                    
    Microsoft Corporation   12/7/2011
    Microsoft SQL Server 2012 Command Line ...                 
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Data-Tier App Fr...              
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Express LocalDB                 
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Management Ob...               
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Native Client                        
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server 2012 Transact-SQL Co...                    
    Microsoft Corporation   9/21/2012
    Microsoft SQL Server 2012 Transact-SQL Ser...            
    Microsoft  Corporation 2/10/2014
    Microsoft SQL Server 2012 T-SQL Language ...             
    Microsoft Corporation  2/10/2014
    Microsoft SQL Server Compact 3.5 Design T...                     
    Microsoft Corporation   2/14/2008
    Microsoft SQL Server Compact 3.5 SP2 ENU                       
    Microsoft Corporation   5/25/2010
    Microsoft SQL Server Compact 4.0SP1 ENU                        
    Microsoft Corporation   9/21/2012
     Microsoft SQL Se1Ver Data Tools - enu (11.1....                 
    Microsoft Corporation   5/19/2013
     Microsoft SQL Server Data Tools - enu (12.0....            
    Microsoft Corporation  2/10/2014
     Microsoft 
    SQL Server Data  Tools Build   Utiliti ...              
    Microsoft Corporation   5/19/2013
     Microsoft 
    SQL Server Data  Tools Build   Utiliti ...         
    Microsoft  Corporation 2/10/2014
     Microsoft SQL Server Database Publishing ...                     
    Microsoft Corporation   2/14/2008
    Microsoft SQL Server Database Publishing ...                      
    Microsoft Corporation   5/25/2010
    Microsoft SQL Server Native Client                                      
    Microsoft Corporation   4/1/2011
    Microsoft SQL Server Setup Support Files (E...                    
    Microsoft Corporation   4/1/2011
    Microsoft SQL Se1Ver System CLR Types                             
    Microsoft Corporation   1217/2011
    Microsoft SQL Server VSS Writer                                         
    Microsoft Corporation   4/1/2011

    Hello,
    Please read the following resources:
    http://msdn.microsoft.com/en-us/library/ms233763.aspx
    http://stackoverflow.com/questions/20333518/how-to-create-a-database-in-ms-visual-studio-2013
    http://msdn.microsoft.com/en-us/vstudio/bb643825.aspx
    Hope this helps.
    Regards,
    Alberto Morillo
    SQLCoffee.com

  • How do I install a new airport express and link a second airport express to extend the network of the first airport express?

    I currently have a linksys wireless router attached to the Internet.  I have an A1264 Airport Express connected by Ethernet to the linksys router.  I have two network names, one for each wireless network.
    I purchased a new A1392 Airport Express to replace the linksys router and join to the A1264 Airport Express, and I want to have one network name as a result.
    How do I do this?  I realize that I have to reconfigure the A1264 device so that it is an extension of the A1392 device.

    You have a fairly complicated set up, so I suggest that it would make sense to tackle things in stages, testing each stage as  you go, before proceding to the next stage.
    Stage 1 would be setting up the A1392 first to the cable modem, and then making sure that everything is working correctly on the A1392 Express
    Stage 2 would be adding the Netgear switch and testing each port with a laptop connected via Ethernet to make sure that everything is operational on the switch
    Stage 3 would be connecting the A1264 Express and testing to make sure that it is extending the network correctly
    Stage 4 would be adding other Ethernet devices to the Netgear switch and testing each one at a time before adding the next device. There is some question about whether an iOS device can print to an Ethernet connected printer....even if the printer is AirPrint compatible. You may need to connect the HP using wireless...not Ethernet....to gain full AirPrint functionality, or use another application that will allow printing like Printopia or Print Central using the Ethernet connection on the HP.
    Stage 5 would be adding the printer to the A1264 AirPort Express.
    You do not mention how the printer will connect to the A1264 Express, but I assume that it will be USB from your description.  Most printers will work, but you really will not know if your printer will work until you try.
    Remember that only printing will be supported at the USB port of the Express. If you have an all-in-one type device, scan, maintenance, and other advanced features will not be operational whent the device is connected to the AirPort Express.
    If you want to print from an iOS device like an iPad or iPhone, plan to add additonal software like Printopia or Print Central to possibly allow this function. There are no guarantees here as far as the iOS devices.

  • Airport express and apple tv, airport express and apple tv

    Hi
        Just wandering if this is possible.
    I was wandering if I could set up a wireless network with an airport express and then connect the apple tv to it so I could show movies etc via my MAC while travelling.
    Note there would be no internet connection involved.
    I believe you can set up the 'no internet' wirelss net work with the AE, just not sure you could connect the the Apple TV to it.
    May be a question for different forum, sorry if it is,
    Thanks in advance,
    Rich

    I can play videos from the Apple Videos app and the from Photos app with the video going to the monitor and the audio through the speakers attached to the Airport Express.
    but as soon as I try to do it with Keynote, no luck. I have to play videos in Keynote without sound.
    what can I do to fix that?

Maybe you are looking for

  • Project Status Report in MS Power Point

    Hi Experts! I am very new to Project Systems. Our requirement is to create a Project Status Report. This report should be generated in MS Power Point which should be editable. Do we have any standard reports or test reports for the same? Can someone

  • Data target error when opening InfoPackage (not loadable)

    Hi, I have transported my objects from the development environment to QA environment, but now when I try to open one specific InfoPackage (in QA) to schedule a data load to an DSO, I receive the following error: Data target 'P_USUARIO ' removed from

  • Making airport default interface while having ethernet plugged in

    Hello, I want to have my internet activity going through airport while using Wirewhark to sniff my ethernet interface. Is it possible? Everytime I plug the ethernet cable in, my default network interface becomes the ethernet adapter, and there is no

  • DIFF. BETWEEN USER EXIT & SCREEN  EXIT .

    Dear All ,                        Kindly help me to clear the diff between user exit & screen exit , where user exit is required & where screen exit is required . Do there is a need of Abaper in both the cases ? Regards, SAP11

  • 11g forms builder is not able to initiate the Internet explorer

    Hi, my problem is that my forms builder is not able to open the form in IE during compilation if Internet explorer is not already running but it is able to open the form in a new tab if Internet explorer is already running. My system's specifications