To manage Hotspot Connections on the BB 9900

I want to know what's the difference between allow or disallow connected devices to exchange data with each other over the network? Thanks!

"By default, devices that are connected to your Mobile Hotspot can send data to each other. For example, if you and a friend have your laptops connected to your Mobile Hotspot, you could play a game together. If your BlackBerry smartphone uses a BlackBerry Enterprise Server, depending on the options your administrator sets, you might not be able to exchange data with connected devices." --- Stop connected devices from exchanging data
For more information about the Mobile Hotspot Feature in BlackBerry OS 7.1 go to Mobile Hotspot Security Features
Cheers !
Click if you want to Thank someone. If Problem is resolved, so that others can make use of it.

Similar Messages

  • "Configuration Manager cannot connect to the site" after site update from SP1 to R2

    Our dev SCCM environment only has a single primary site with a remote SQL database.  Initially, the dev primary site had SP1 Beta (5.00.7782.1000) installed but as everyone is aware there is no upgrade path available to SP1 or R2 from Beta; so, we uninstalled
    the site and removed the database, re-installed SP1 non-Beta (5.00.7804.1000), then proceeded to update all devices with the latest client agent.  Afterwards, we attempted to upgrade the site from SP1 non-Beta (5.00.7804.1000) to R2 (5.00.7958.1000).
     All seemed well until we attempt to open the Configuration Manager console and we get the following error message:
    Configuration Manager cannot connect to the site (Site Name)
    The Configuration Manager Administrator console could not connect to the Configuration Manager site database. Verify the version of the console is compatible with the version of the site server you are connecting to and then try to connect again.
    So we tried reinstalling the console directly from here...
    "C:\Program Files\Microsoft Configuration Manager\tools\ConsoleSetup\AdminConsole.msi"
    still the same error message persisted, so we tried installing it from here...
    "C:\Program Files\Microsoft Configuration Manager\tools\ConsoleSetup\ConsoleSetup.exe"
    still the same error message persisted, so then we tried installing it directly from the R2 (5.00.7958.1000) installation media, and afterwards the same error message persisted....
    All along, we were checking the AdminConsole log from here:
    "C:\Program Files (x86)\Microsoft Configuration Manager\AdminConsole\AdminUILog\SmsAdminUI.log"
    Here are the contents:
    [4, PID:4836][04/22/2014 15:21:10] :Property: 'Features'\r\nSystem.Management.ManagementException\r\nNot found \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
       at System.Management.PropertyData.RefreshPropertyInfo()
       at System.Management.PropertyDataCollection.get_Item(String propertyName)
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlResultObjectBase.get_Item(String name)\r\nManagementException details:
    [4, PID:4836][04/22/2014 15:21:10] :ReadExtraProperties: Failed to initialize extra properties
    [4, PID:4836][04/22/2014 15:21:11] :Transport error; failed to connect, message: 'The Configuration Manager Administrator console could not connect to the Configuration Manager site database. Verify the version of the console is compatible with the version
    of the site server you are connecting to and then try to connect again.'\r\nMicrosoft.ConfigurationManagement.ManagementProvider.SmsConnectionWithDetailException\r\nThe Configuration Manager Administrator console could not connect to the Configuration Manager
    site database. Verify the version of the console is compatible with the version of the site server you are connecting to and then try to connect again.\r\n   at Microsoft.ConfigurationManagement.AdminConsole.SmsSiteConnectionNode.ValidateConnectionParameters(ConnectionManagerBase
    connection)
       at Microsoft.ConfigurationManagement.AdminConsole.SmsSiteConnectionNode.GetConnectionManagerInstance(String connectionManagerInstance)\r\nNo details are available for this error.\r\n
    Once again, we validated we could connect to the SQL database from this box, and that the console was at the same version as the site.  Any help or guidance with getting our access to the console restored after the SP1 to R2 upgrade would be greatly
    appreciated. 

    From the Primary Site Server, I tried uninstalling the Admin Console and re-installing using:
    consolesetup.exe /q TargetDir="%ProgramFiles%\Microsoft Configuration Manager" EnableSQM=0 DefaultSiteServerName=<SiteServerName>
    Of course replacing <SiteServerName> with the FQDN of my Primary Site Server.  Console installed successfully however the same error message persists.
    Also tried installing the console on a clean Windows Server 2008 R2 installation.  I tried it from the R2 (5.00.7958.1000) installation media, from the "C:\Program Files\Microsoft Configuration Manager\tools\ConsoleSetup\" both without any luck, the
    same error message persists.  I verified I could ping the FQDN of the site server also, and that the firewall between the two permits communication over the ports listed here: http://technet.microsoft.com/en-us/library/hh427328.aspx
    Any help would be greatly appreciated.

  • A Thread manages a connection from the outside--help me to finish it

    **RUN THIS CODE AND HELP ME--- THANKS A LOT**
    EchoClient is thread which manage a connection from the outside.
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    import java.util.Random;
    public class EchoClient extends Thread {
         private ServerSocket listenSocket = null;
         private Socket manageSocket = null;
         private int[] port = new int[9999];
         private BufferedReader in;
         private PrintWriter out;
         private int line;
         private int count;
         // No needed to mention
                //private ClientNode[] clientArray = new ClientNode[9999];
         private ManageClient[] manageClient;
         private final int CONNECTED = 1;
         private final int CONNECTING = 11;
         private final int DISCONECTED = 2;
         public void run() {
              try {
                   manageClient = new ManageClient[9999];
                   listenSocket = new ServerSocket(903);
                   manageSocket = listenSocket.accept();
                   while (true) {
                        in = new BufferedReader(new InputStreamReader(manageSocket
                                  .getInputStream()));
                        out = new PrintWriter(manageSocket.getOutputStream());
                        line = in.read();
         // if Client send a variable(CONNECTING)
                // Server will send to Client a variable(CONNECTED) and port
                //to open a ChatFrame with that port
                        if (line == CONNECTING) {
                             System.out.print("have recieved");
              out.print(CONNECTED);
                         //randomize a port to send to client
              port[count] = (int) Math.ceil(Math.random() * 9999)
                        //creat a manageClient(Thread) to manage a seperate
                       // connection with a seperate Client
                             manageClient[count] = new ManageClient(port[count]);
                             manageClient[count].start();
                             out.print(port[count]);
                             count++;
              } catch (Exception e) {
                   e.printStackTrace();
         public static void main(String[] args) {
              EchoClient e = new EchoClient();
              e.start();
    }And a Login Frame which will send to server a varialble (CONNECTING) which requires to connect and keep waiting for a variable to Open a ChatFrame with a new port
    import java.awt.FlowLayout;
    import java.awt.event.ActionEvent;
    import java.awt.event.ActionListener;
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.Socket;
    import javax.swing.JButton;
    import javax.swing.JFrame;
    import javax.swing.JPanel;
    import javax.swing.JTextArea;
    public class Login extends JFrame {
         public ChatFrame chatFrame;
         private final int CONNECTED = 1;
         private final int CONNECTING = 11;
          * @param args
         public Login() {
              // TODO Auto-generated method stub
              setSize(50, 150);
              JButton loginButton = new JButton("Login");
              JPanel p = new JPanel();
              p.setLayout(new FlowLayout());
              p.add(loginButton);
              add(p);
              loginButton.addActionListener(new ActionListener() {
                   @Override
                   public void actionPerformed(ActionEvent e) {
                        loginServer();
         public void loginServer() {
              try {
                   Socket connectSocket = new Socket("127.0.0.1", 903);
                   while (true) {
                        BufferedReader in = new BufferedReader(new InputStreamReader(
                                  connectSocket.getInputStream()));
                        PrintWriter out = new PrintWriter(connectSocket
                                  .getOutputStream());
                        out.print(CONNECTING);
                        System.out.println("At here");
    //(***position***)
                        int line = in.read();
                        System.out.println("At here1");
                        if (line == CONNECTED) {
                             int port = in.read();
                             chatFrame = new ChatFrame(port);
                             chatFrame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
                             chatFrame.show();
                             connectSocket.close();
              } catch (Exception exp) {
                   exp.printStackTrace();
         public static void main(String[] args) {
              Login login = new Login();
              login.show();
              login.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
    }and this is ManageClient Thread...
    import java.io.BufferedReader;
    import java.io.InputStreamReader;
    import java.io.PrintWriter;
    import java.net.ServerSocket;
    import java.net.Socket;
    public class ManageClient extends Thread {
         private ServerSocket ssClient;
         private Socket sClient;
         private int port;
         public ManageClient(int port) {
              this.port = port;
         public int getPort() {
              return port;
         public void run() {
              try {
                   ssClient = new ServerSocket(getPort());
                   sClient = ssClient.accept();
                   while (true) {
                        BufferedReader in = new BufferedReader(new InputStreamReader(
                                  sClient.getInputStream()));
                        PrintWriter out = new PrintWriter(sClient.getOutputStream());
                        String s = in.readLine();
                        if (s != null)
                             out.print("have recieved");
              } catch (Exception e) {
                   e.printStackTrace();
    }my problem...
    At firts EchoClient will run.. and then Login but when I click to the Login button it has just only did before int line = in.readLine();(*** postion ***)
    I don't know why it doesn't continue. It stops here and the login button is still visible(cause code has not finish)..
    That's my problem...
    Somebody help me
    Edited by: rockfanskid on Oct 17, 2007 4:25 AM

    Somebody helps me to finish this project...
    thanks for racing this thread

  • Configuration Manager Cannot Connect to the Site After SP1 Install

    I've been working on this all morning and can't seem to get anywhere on it. I've updated SCCM 2012 to SCCM 2012 SP1 and SQL Server 2008 to SQL Server 2008 SP3 CU4 and I can no longer connect to the site database. I've checked though the SQL settings as well
    as SPN settings and everything checks out. I've looked at the SMSAdminUI log and to me it looks like SCCM can't even see the site database.
    [4, PID:4948][01/28/2013 09:49:03] :System.Management.ManagementException\r\nProvider load failure \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
       at System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext()
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryResultsObject.<GetEnumerator>d__0.MoveNext()\r\nManagementException details:
    instance of __ExtendedStatus
    Operation = "ExecQuery";
    ParameterInfo = "SELECT * FROM SMS_Site WHERE SiteCode = 'ISD'";
    ProviderName = "WinMgmt";
    \r\n
    [4, PID:4948][01/28/2013 09:49:03] :Transport error; failed to connect, message: 'The SMS Provider reported an error.'\r\nMicrosoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryException\r\nThe SMS Provider reported an error.\r\n  
    at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryResultsObject.<GetEnumerator>d__0.MoveNext()
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.Connect(String configMgrServerPath)
       at Microsoft.ConfigurationManagement.AdminConsole.SmsSiteConnectionNode.GetConnectionManagerInstance(String connectionManagerInstance)\r\nConfigMgr Error Object:
    instance of __ExtendedStatus
    Operation = "ExecQuery";
    ParameterInfo = "SELECT * FROM SMS_Site WHERE SiteCode = 'ISD'";
    ProviderName = "WinMgmt";
    Error Code:
    ProviderLoadFailure
    \r\nSystem.Management.ManagementException\r\nProvider load failure \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
       at System.Management.ManagementObjectCollection.ManagementObjectEnumerator.MoveNext()
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlQueryResultsObject.<GetEnumerator>d__0.MoveNext()\r\nManagementException details:
    instance of __ExtendedStatus
    Operation = "ExecQuery";
    ParameterInfo = "SELECT * FROM SMS_Site WHERE SiteCode = 'ISD'";
    ProviderName = "WinMgmt";
    \r\n
    [4, PID:4948][01/28/2013 09:49:03] :System.Management.ManagementException\r\nNot found \r\n   at System.Management.ManagementException.ThrowWithExtendedInfo(ManagementStatus errorCode)
       at System.Management.ManagementObject.InvokeMethod(String methodName, ManagementBaseObject inParameters, InvokeMethodOptions options)
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.ExecuteMethod(String methodClass, String methodName, Dictionary`2 methodParameters, Boolean traceParameters)\r\nManagementException details:
    instance of __ExtendedStatus
    Operation = "ExecMethod";
    ParameterInfo = "SMS_ObjectLock";
    ProviderName = "WinMgmt";
    \r\n
    I tried to re-compile smsprov.mof  and I get the following error (Yes, I was logged on as Admin with elevated rights):
    Microsoft (R) MOF Compiler Version 6.2.9200.16398
    Copyright (c) Microsoft Corp. 1997-2006. All rights reserved.
    Parsing MOF file: E:\SCCM\bin\X64\smsprov.mof
    MOF file has been successfully parsed
    Storing data in the repository...
    An error occurred while processing item 3 defined on lines 29 - 37 in file E:\SC
    CM\bin\X64\smsprov.mof:
    Error Number: 0x80041026, Facility: WMI
    Description: Class has instances
    Compiler returned error 0x80041026
    Is it possible there is something wrong with my WMI? I'm not really sure where to go from here and I'm dead in the water. Any help would be greatly appreciated!

    Since no one has answer this post, I recommend opening  a support case with CSS as they can work with you to solve this problem.
    Garth Jones | My blogs: Enhansoft and
    Old Blog site | Twitter:
    @GarthMJ

  • Configuration manager cannot connect to the site

    [5, PID:4144][02/19/2014 09:29:40] :Transport error; failed to connect, message: 'The RPC server is unavailable. (Exception from HRESULT: 0x800706BA)'\r\nMicrosoft.ConfigurationManagement.ManagementProvider.SmsConnectionException\r\nThe RPC server is unavailable.
    (Exception from HRESULT: 0x800706BA)\r\n   at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.Connect(String configMgrServerPath)
       at Microsoft.ConfigurationManagement.AdminConsole.SmsSiteConnectionNode.GetConnectionManagerInstance(String connectionManagerInstance)\r\nThe RPC server is unavailable. (Exception from HRESULT: 0x800706BA)
    \r\nSystem.Runtime.InteropServices.COMException\r\nThe RPC server is unavailable. (Exception from HRESULT: 0x800706BA)\r\n   at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
       at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32 errorCode)
       at System.Management.ManagementScope.InitializeGuts(Object o)
       at System.Management.ManagementScope.Initialize()
       at System.Management.ManagementObjectSearcher.Initialize()
       at System.Management.ManagementObjectSearcher.Get()
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.Connect(String configMgrServerPath)\r\n
    [5, PID:4144][02/19/2014 09:29:45] :System.Runtime.InteropServices.COMException\r\nThe RPC server is unavailable. (Exception from HRESULT: 0x800706BA)\r\n   at System.Runtime.InteropServices.Marshal.ThrowExceptionForHRInternal(Int32 errorCode, IntPtr errorInfo)
       at System.Runtime.InteropServices.Marshal.ThrowExceptionForHR(Int32 errorCode)
       at System.Management.ManagementScope.InitializeGuts(Object o)
       at System.Management.ManagementScope.Initialize()
       at System.Management.ManagementObject.Initialize(Boolean getObject)
       at System.Management.ManagementObject.InvokeMethod(String methodName, ManagementBaseObject inParameters, InvokeMethodOptions options)
       at Microsoft.ConfigurationManagement.ManagementProvider.WqlQueryEngine.WqlConnectionManager.ExecuteMethod(String methodClass, String methodName, Dictionary`2 methodParameters, Boolean traceParameters)\r\n
    this is the log i have found.. can any one idea to resolve this issue.

    Ensure that the account you are using has access to view and open SCCM console
    I think you need to give access to user in Administration >> Security
    Thanks, Prabha G

  • Weblogic managed servers connecting to the servers in different cluster

              Hi All,
              We have a weired problem going on for a while. We have a cluster configuration
              with an admin server and two managed servers. We have the similar configuration
              in DEV, TEST and PROD. The problem is that the managed server members in DEV cluster
              are making connections to managed servers which are member of PROD cluster for
              session replication. The same way TEST servers are trying to connect to PROD and
              DEV.
              Has anyone seen this kind of problem before. BEA seems to be cluless so far.
              Thanks in adavnce for your input.
              Udit
              

              Venkat,
              Thats a good suggestion but these things are too obvious to ignore. We have different
              multicast address in DEV and PROD and also hosts are on different sub net. I do
              not know if cluster name will make any differene though.
              Thanks for your input anyway,
              Udit
              "venkat" <[email protected]> wrote:
              >
              >Udit,
              > You can check the sub net, multicast address and the cluster name.
              >If the dev
              >and prod servers are in the same sub net with same multicast address,
              >then change
              >the multicast and try.
              >
              >Venkat
              >"venkat" <[email protected]> wrote:
              >>
              >>Udit,
              >>
              >>
              >>"Udit Singh" <[email protected]> wrote:
              >>>
              >>>Kumar,
              >>>Thanks for the reply.
              >>>The situation is that managed server in DEV try to replicate the session
              >>>to a
              >>>managed server in PROD and TEST and vice versa.
              >>>Let us say our dev managed servers are running on abc01 and abc02 and
              >>>prod managed
              >>>servers are running on xyz01 and xyz02. All the managed servers are
              >>running
              >>>on
              >>>port 7005.
              >>>If I do the netstat on abc01 or abc02 I could the see established connections
              >>>between abc01/02 and xyz01/02.
              >>>Why is that happening? We are running 6.1SP2.
              >>>
              >>>Udit
              >>>
              >>>Kumar Allamraju <[email protected]> wrote:
              >>>>We do not restrict intercluster communication as of 61 SP3.
              >>>>Once we get the IP from the cookie, we can safely make a
              >>>>connection to the other clustered node. We were not checking
              >>>>if the server is part of the same cluster or not. This is
              >>>>already fixed in 7.x and 61 SP4(not yet released) If you are
              >>>>on 61 Sp2 or SP3 then you should contact support and
              >>>>reference CR # CR089798 to get a one off patch.
              >>>>
              >>>>Regardless, are you traversing from DEV to PROD cluster and
              >>>>vice-versa. If not then this problem shouldn't happen unless
              >>>>plugin is routing the request to wrong cluster.
              >>>>
              >>>>--
              >>>>Kumar
              >>>>
              >>>>Udit Singh wrote:
              >>>>> Hi All,
              >>>>> We have a weired problem going on for a while. We have a cluster
              >>configuration
              >>>>> with an admin server and two managed servers. We have the similar
              >>>configuration
              >>>>> in DEV, TEST and PROD. The problem is that the managed server members
              >>>>in DEV cluster
              >>>>> are making connections to managed servers which are member of PROD
              >>>>cluster for
              >>>>> session replication. The same way TEST servers are trying to connect
              >>>>to PROD and
              >>>>> DEV.
              >>>>> Has anyone seen this kind of problem before. BEA seems to be cluless
              >>>>so far.
              >>>>>
              >>>>> Thanks in adavnce for your input.
              >>>>> Udit
              >>>>
              >>>
              >>
              >
              

  • HT204023 I have recently plugged my iphone 5 into a laptop which had an iphone 4s registered with Itunes. and I was looking to simply sync the music files to my iphone. However i have lost all my files and can not retrieve my Hotspot connection on the wif

    I have plugged my new Iphone 5 into a computer with itunes that had an iphone 4s registered with it. So when I plugged in my Iphone to the laptop I may have clicked something because I was looking to just add the music from the Itunes to my phone. I am a new iphone user and dont really know what I did and am seeking assitance because I have also now lost all my contacts (which have been synced entired to the laptop I lost all my original files and was synced the files from the other iphone4s users profile.) I have also lost the link to locate my personal hotspot when i entir the settings home page. I am wondering I have downgraded my phone or something. What can I do to get my personal hotspot back?

    Restore it from the last backup you made on YOUR computer or iCloud.

  • Error Trying to get a managed server connected to the admin server

    I am getting the following error when I try starting up a managed server. I
    put -Dweblogic.management.server=http://host:port
    The managed server starts with out setting the management.server setting.
    It gives the error below when I put the management server setting in
    <Error deploying application DefaultWebApp_online: error retrieving
    component [Caching Stub]Proxy for
    rnd2Domain:Name=DefaultWebApp_online,Location=online,Type=WebAppComponentCon
    fig,ApplicationConfig=DefaultWebApp_online>
    Thanks,
    Scott Jones
    [email protected]

    Can you post the error message from both admin as well as managed servers?
    Viresh Garg
    Principal Developer Relations Engineer
    BEA Systems
    Scott Jones wrote:
    I am getting the following error when I try starting up a managed server. I
    put -Dweblogic.management.server=http://host:port
    The managed server starts with out setting the management.server setting.
    It gives the error below when I put the management server setting in
    <Error deploying application DefaultWebApp_online: error retrieving
    component [Caching Stub]Proxy for
    rnd2Domain:Name=DefaultWebApp_online,Location=online,Type=WebAppComponentCon
    fig,ApplicationConfig=DefaultWebApp_online>
    Thanks,
    Scott Jones
    [email protected]
    [att1.html]

  • Desktop manager not connecting with the 9700 bold

    hi,
    I am using a 9700 bold, i updated to the latest desktop manager and since then when ever i open the destop manager an error message comes in ( RIM handheld communications manager has stopped working)  Can any one one tell me what that is, i have tried uninstalling and going back to a older version but nothing seems to work, please help me, thought the phones charges and it back ups in the older version of desktop manager but the mass storage device option osent show up??
    Rregards,
    mubashir

    hi,
    I am using a 9700 bold, i updated to the latest desktop manager and since then when ever i open the destop manager an error message comes in ( RIM handheld communications manager has stopped working)  Can any one one tell me what that is, i have tried uninstalling and going back to a older version but nothing seems to work, please help me, thought the phones charges and it back ups in the older version of desktop manager but the mass storage device option osent show up??
    Rregards,
    mubashir

  • Finally I managed to connect to the Internet and up came the error message on the itunes and appstore: cannot allocate memory

    What can I do?
             +
    My apps won't work. They seem to open and directally after that close.
    What can I do?
    sobbz

    SO we rule out Winsock provider issue.
    Can you try these entries in command prompt (Run as Administrator for Win7/Vista) one at a time?
    ipconfig /release
    then
    ipconfig /renew
    restart computer
    ipconfig /flushdns
    totally shut down computer then restart.
    netsh winsock reset all
    restart computer
    Now test your iTunes again. If that does not work, uninstall your Antivirus program and test again.

  • Unable to connect to the database instance using Enterprise Manager.

    I just install Oracle 10gr2 in my computer and after successful installation created a database instance which also install successfully. I then configure the listener using Net Manager and then start the database instance, the listener and dbconsole, everything seems to work fine and checking the status of this services from the command prompt indicates everything started successfully. But when I try to use Enterprise Manager I was directed to the Database Down Page with a message unable to connect to database instance. I try to use startup and perform recovery but every time I log-in to the database an error message comes out:
    SQLEXCEPTION
    ORA-00604: error occurred at recursive SQL level 1
    ORA-12705: Cannot access NLS data files or invalid environment specified.
    It seems for Enterprise Manager to connect to the database it needs to access this NLS(National Language Support) data files or specify an environment variable to point to this data files. I am just new to Oracle and I am having difficulty solving this particular problem. Where is this data files located and how do I configure Enterprise Manager to access this NLS data Files?
    Any help however small will be highly appreciated.

    Are you able to connect to the database via SQLPlus?
    What Operating System are you using?
    Assuming Windows, can you RUN regedit to open Windows Registry and check the value or NLS_LANG when you select
    HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\KEY_<your_oracle_home>
    Examples of vaules you may find:
    1. ENGLISH_UNITED KINGDOM.WE8MSWIN1252
    2. AMERICAN_AMERICA.US7ASCII
    3. AMERICAN_AMERICA.WE8MSWIN1252
    4. FRENCH_FRANCE.WE8MSWIN1252
    5. GERMAN_GERMANY.WE8MSWIN1252
    If you are not able to connect to SQLPlus, from the command prompt try setting one of the above:
    e.g.
    D:\>set NLS_LANG=AMERICAN_AMERICA.WE8MSWIN1252
    D:\>sqlplus /nolog
    SQL>connect sysman/password

  • Connection Failed: The server "name" may not exist or it is unavailable...

    So I think I know what caused this problem, but I can't figure out how to make it stop...
    When I go to print, if I try to click on the pop-up to change the default printer setting, there's a LONG delay, then I get a dialog that says:
    Connection Failed
    The server "name" may not exist or it is unavailable at this time. Check the server name or IP address, check your network connection, then try again.
    Then there's another delay and I get the message a second time. I can then select any of my printer settings and print fine, it's just an annoying delay if I click on that pop-up accidentally or need to change it.
    I have a new iMac and I migrated from my old G5. The "name" of the server it is seeking is my old G5, so that must be in the settings somewhere, but I can't find it. I tried going into the Print & Fax settings in System Preferences, deleting the printer there, and then re-adding, but that didn't clear it up.
    Thanks for any insight you can provide!
    --John

    Hmm, well, this stopped working again for me. I tried swapping ethernet and re-installing the Airport client update - to no avail. I could always see my Mac shares from PCs though. However, I have (for now) managed to connect to the PC using ip address rather than name even though finder quite clearly sees the name. Does your printer connection work by ip rather than name ? I'm going to play name lookup detective for a bit now - it's some kind of Netbios name lookup issue I guess as I've no local DNS service. resolv.conf is apparently not used so a bit of learning to do! ...
    ... nmblookup seems to work but nslookup doesn't. Looks like SL connect via Finder isn't using nmblookup properly and I can't see how to make that work. When this gets reported enough it should get a publicised work-round or a fix. If only I can get dig/nslookup to slave out to nmblookup ...must be something I can configure for that ??

  • My iPad will connect to the Internet but my iMac keeps dropping the connection or connects very slow.

    My iPad is working fine and connecting to the internet no problem. My iMac computer, when I check the system preferences and I go into network it says my network is working fine and I appear to be connected to the Internet, yet when I going try to go on safari it won't let me connect to the Internet or if it does the connection is slow. When I do manage to connect to the internet, the connection drops quickly. What do I do?

    Please answer as many of the following questions as you can.
    Are all network applications slow, or only some? If only some, which ones?
    Is networking always slow, or only sometimes?
    Disconnect all other devices from the network. Any change?
    If you can connect to more than one network, are they all slow?
    If possible, connect to your router with an Ethernet cable and turn off Wi-Fi. Any difference?
    Boot in safe mode and test. Any difference?

  • Always running class that manages DB connections

    Hi! I made a class that its purpose it's to manage db connections. The idea is very simple, just open ten new connections and store them in a Vector, this must be done only once when the class is started, this class must be running always. So I now have my ten opened connections, then, when a class (can be Servlets, JSPs or other classes) request a connection using the static method getConnection, one of the available connections is asigned to a connection object, then removed from the vector (so the vector must reduce its size, and this connection will not be used until it is freed) and finally returned.
    The problem that I have is, that every time that I request the getConnection method, a new Vector object is created or something like that. Because when I call that method the Vector is always of zero size, so every request in different classes cause this, and it's not what I want, I want that this thing works like I was explaining in the previous paragraph.
    I provide you with the code that I have until now, please provide me all the help that you can. PLEEEAAAASEEE!
    import java.sql.*;
    import java.util.Vector;
    public class manejaConexiones{
         public static Vector conexiones = new Vector(10);
         private static void llenaVector() throws SQLException {          
              for(int i=0;i<10;i++){
                   conexiones.addElement(hazConexion());
         public static void free(Connection connection) throws SQLException{
              conexiones.addElement(connection);
         public static String datos(){
              return("Number of free connections="+conexiones.size());
         public static Connection getConnection() throws SQLException{
                 if(conexiones.size()==0)
                   llenaVector();
              Connection connection  = (Connection)conexiones.elementAt(conexiones.size()-1);
              if(connection!=null){
                   conexiones.removeElementAt(conexiones.size()-1);
                   return(connection);
              else{
                   connection = hazConexion();
                   conexiones.removeElementAt(conexiones.size()-1);
                   conexiones.addElement(connection);
                   return(connection);
         private static Connection hazConexion() throws SQLException{
              try{
                   Class.forName("com.inet.tds.TdsDriver");
              }catch(ClassNotFoundException e){
                   throw new SQLException("Error: " + e);
              return(DriverManager.getConnection("jdbc:inetdae7:localhost:1433?database=DB","user","pass"));   
    }

    You would want to make your manejaConexiones class a singleton.public class manejaConexiones{
        private static manejaConexiones _instance = null;
        public static Vector conexiones = new Vector(10);
        private manejaConexiones() throws Exception
            Class.forName("com.inet.tds.TdsDriver");
            for (int i = 0; i < 10; i++)
                conexiones.add(DriverManager.getConnection("jdbc:inetdae7:localhost:1433?database=DB","user","pass"));
        public static Connection getConnection() throws SQLException
            if (_instance == null)
                synchronized(manejaConexiones .class)
                { // Multiple threads might be here
                    if (_instance == null) //Must check again as one of the blocked threads can still enter
                        _instance = new manejaConexiones ();
            // Return a Connection of your choice from conexiones
        // Others
    HTH                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Does anyone know how to manage the hotspot connections?

    Does anyone know how to manage the hotspot connections? Is there a way to see who is connected, disconnect a particular user, etc.? All I can see is the blue bar announcing the number of of connections.

    I should have phrased that better. I have multiple devices connected at the same time, sometimes I want to disconnect one only 1 of them. To do this I need to go to the device and disconnect or turn off the device. Is there a way I can disconnect selected devices on the phone? Not so much a matter of knowing who/what is connected, rather having control of these individual connections from the phone. Is this possible?

Maybe you are looking for

  • Changing the internal domain to a subdomain -- Help!

    Hello, so I have a huge project coming up and i was wondering if someone had some experience on this that could give me some advice. So,  started working on this company that has an internal domain called.. lets say abc.com  and external alphabetagha

  • MDP - HDMI Questions and Answers

    I recently purchased a 13" Macbook Pro. Love the computer but obviously with a 13" screen I wanted something bigger at home. I had a 32" TV that I wanted to use as a monitor so I purchased the MDP-HDMI adapter. The adapter worked fine but there a cou

  • Usage of @NEXTSIBLING in FIX statement for a parameter of Range

    Hi I am trying to use @NEXTSIBLING. I could find in the document that it could be passed as a parameter to a RANGE function. I am trying to use it inside a FIX ( @XRANGE(@NEXTSIBLING(&1year),&lastyear,"Jan":"Dec") But this is not getting validated. A

  • How do you call a java class from the main method in another class?

    Hi all, How do you call a java class from the main() method in another class? Assuming the two class are in the same package. Thanks SI Edited by: okun on May 16, 2010 8:40 PM Edited by: okun on May 16, 2010 8:41 PM Edited by: okun on May 16, 2010 8:

  • Camera Kit will no longer work in reading an SD card

    I have used the Camera Connection Kit to transfer photos to my iPad via an SD card without any problems until I upgraded to iOS 2.4.1. Now it will not read a card at all. I have tried re-formatting the card, using other cards, and re-booting the iPad