J9 wlan connection handling - help needed

I wrote an application which is running on phone and communicates with a server. I can open sockets, and communicate with the server (read/write data on chanel), but after ferw minutes/hours(depend on trafic) the wlan connection between the client and server breakes. The problem is, that after an exception is thrown, I close th connection and try to open a new connection, but can't. It seems, that somewhere in the phone's operatin system the connection is not closed.
My question is , that is there anybody who meet this problem? The second question is that kind of workaround can be used to reconnect to the server?

hi,
have you found a solution? I have nearly the same problem now...
My application runs on windows mobile 6.1 with IBM j9. Connecting to the WLAN inclusive VPN works well on the device, browsing with internet explorer is no problem and if necessary the WLAN and VPN connections are established automatically if needed.
But when I try to invoke a webservice-request from within my java-application the connection isn't established. (Doing the webservice-request while a there is an existing connection everything works fine, e.g. when starting the application right after browsing in internet explorer).
Probably I have to tell the connection manager on wm6 to connect - but how do I implement that?
For .Net I found the following:
- http://msdn.microsoft.com/en-us/library/bb840031.aspx
- http://msdn.microsoft.com/en-us/library/ms849587.aspx
Can anybody give me a hint, please?
regards, blackfox86

Similar Messages

  • Computer restarts when ipod is connected urgent help needed

    alright this is weird, I've had my ipod for ages and suddenly I go to plug it in and the computer slows down really really really slow and eventually just turns it self off, restarts and then sits in a black screen. if I leave the ipod plugged into the computer and restart it again it just goes straight back to the black screen, but both my ipod and computer work fine when there not connected. i have the latest version of itunes which seemed to help the first time i tried it actually started to update the ipod but then guess what the computer has another heart attack. urgent help needed please!!!

    if I leave the ipod plugged into the computer and restart it again it just goes straight back to the black screen
    Given this, I'd put it down to a flaky power supply in the computer. Might want to try using another computer or replacing the PSU.

  • WLAN Controller configuration help needed

    Hi,
    I need to configure AP with WLAN controller for guest access. we have 2 vlans. vlan 1 - guess vlan (internet only access) and vlan 2 - all access.
    while configuring wlan controller. which vlan should i configure as native vlan? I have radius server which would check health of the user and would direct wlan controller to put in user in vlan 1 or 2 depending on its credentials.
    please advise how to implement it. what would be initial steps.

    Hi,
    I have couple of doubts before going further for solution to implement ?
    What model of wlan controller & AP , you are using ?
    to configure the Controller , initially you need to configure the interface ( which are virtual ) .
    You need to connect controller to your existing LAN set-up may be one of the port of your core switch ............
    below are the interface which you need to configure in controller .......
    1) Management interface with IP ( which will be used to access your controller from lan ... ) this is ip should be able to ping from the network.
    2) AP manager IP ( this is again depend on model ) if it is 5500 , this is not required ..
    3) Virtual IP : this is should the IP address which is not at all there in your lan eq.1.1.1.1
    4) dynamic interface with IP : this is the interface which will map your vlan to WLAN
    once you create the mentioned interfaces , you need to create the wlan and map the above dynamic interface with respective wlan.if required you can configure the DHCP pool as well in controller for Wlan.
    let me know , whether this information helped  you ........................

  • Dreamweaver Connections Folder Help Needed

    I am working on Mac OS 10.4, Dreamweaver 8, PHP 4.1+ and
    MySQL. I can get my database connection to work if I have it
    directly in the PHP code but if I try to do it using the
    Dreamweaver interface - the connection doesn't work. My testing
    server and remote server all test ok on the connections. I believe
    the problem is where the Connections folder is located but it
    appears Dreamweaver only accepts it at the top level and the way my
    hosting company configures their domains, it doesn't see the
    connections folder and it doesn't work. I need to get it to work as
    I want to use the Dreamweaver interface. I've searched every help
    forum and tried many suggestions with no luck - anybody run into
    the same problem?
    Thanks!
    Jammin' Julie

    Thank you for writing. I do need your help, and here's the
    scenario. I work for a company that deals with business credit. In
    the previous post at
    http://www.businesscreditbuilder.com
    there is a login. Once logged in, there is a home page for the
    members. That first page I need to change as soon as possible for
    over 40,000 members. All the members will see the same home page
    inside the members area. You're welcome to login as "makaiman",
    password is "1143mak" to see the first page that comes inside the
    members area I need to change just a little. PHP is installed on a
    remote server running on Windows. I need help or guidance on this
    immediately but I have to sleep right now as it is 1130pm pacific
    and need to have this done by sometime tomorrow morning. I
    appreciate all of your help so very much... any advice would be so
    much appreciated...
    m

  • Connection Pooling Help Needed

    Greetings.
    I am trying to get a database connection in Websphere 5.0 (running on Redhat Adv. Server) and my connection times are very, very slow. Below is the code to get the connection:
    Properties parms = new Properties();
    parms.setProperty(Context.INITIAL_CONTEXT_FACTORY,
    "com.ibm.websphere.naming.WsnInitialContextFactory");
    // Create the Initial Naming Context
    Context ctx = new InitialContext(parms);
    DataSource ds = (DataSource) ctx.lookup("jdbc/customer");
    Connection con = ds.getConnection();
    Here is the setup for the database connection within the Websphere Admin Console to an Oracle 8i database:
    Implementation: oracle.jdbc.pool.ConnectionPoolDataSource
    JNDI Name: jdbc/customer
    Statement Cache Size: 10
    Data source helper class name: com.ibm.websphere.rsadapter.OracleDataStoreHelper
    Connection Timeout: 1800
    Maximum Connections: 30
    Minimum Connections: 10
    Reap Time: 180
    Unused Timeout: 1800
    Aged Timeout: 0
    Purge Policy: Entire Pool
    We CAN connect to the database. We CAN run SQL statements and stored procedures just fine. Everything with the database is working correctly. ok, so here is the problem... The statement: Connection con = ds.getConnection(); Takes a long time. 3+ seconds. Every time. No Matter what the load is. We need to get this time down significantly. It's killing our web services.
    Using JMeter, We have tested it using a single thread and up to 50 concurrent threads and it all runs the same. 3+ seconds. We actually changed the code to create a database connection just using JDBC with no JNDI lookup and it runs at the same speed. It is almost as if the connection pool is not working correctly.
    So then we looked to see if we were ever getting the same connection twice, but when we printed out the object references, it looks like the connection is a brand new connection EVERY time because the object references are different. Please see the partial log file I have included below.
    Right now, our theory is that the connection pool is just getting us a new connection every time without reusing existing connections. We have played with all the settings on minimum connections, maximum connections, and everything else and nothing seems to help.
    Thank you to anyone that might be able to help us.
    Stephen
    Log File:
    ----- getDatabaseConnection() ------
    ERROR - 1 - Connection is com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@7aac74cd
    ERROR -
    ----- getDatabaseConnection() ------
    1066140699427Using existing ds
    getting datasource took 0 milliseconds to complete.
    getting connection took 3733 milliseconds to complete.
    getDatabaseConnection took 3733 milliseconds to complete.
    ----- getDatabaseConnection() ------
    ERROR - 1 - Connection is com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@7580f4cd
    ERROR -
    ----- getDatabaseConnection() ------
    1066140699707Using existing ds
    getting datasource took 0 milliseconds to complete.
    getting connection took 3454 milliseconds to complete.
    getDatabaseConnection took 3454 milliseconds to complete.
    ----- getDatabaseConnection() ------
    ERROR - 1 - Connection is com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@5b2b4cd
    ERROR -
    ----- getDatabaseConnection() ------
    1066140700199Using existing ds
    getting datasource took 0 milliseconds to complete.
    getting connection took 2965 milliseconds to complete.
    getDatabaseConnection took 2965 milliseconds to complete.
    ----- getDatabaseConnection() ------
    ERROR - 1 - Connection is com.ibm.ws.rsadapter.jdbc.WSJdbcConnection@2301b4ce
    ERROR -
    ----- getDatabaseConnection() ------
    1066140699752Using existing ds
    getting datasource took 0 milliseconds to complete.
    getting connection took 3417 milliseconds to complete.
    getDatabaseConnection took 3417 milliseconds to complete.

    The problem might be the version of Driver Class you use... If you use Oracle 9x, u need to have new version of classes12.jar/zip. Do check it out.

  • Event Handling Help needed please.

    Hi,
    I am writing a program to simulate a supermarket checkout. I have done the GUI and now i am trying to do the event handling. I have come up against a problem.
    I have a JCombobox called prodList and i have added an string array to it called prods . I have also created 2 more arrays with numbers in them.
    I want to write the code for if an item is selected from the combo box that the name from the array is shown in a textfield tf1, and also the price and stock no which correspond to the seclected item (both initialised in the other arrays) are also added to the textfield tf1.
    I have started writng the code but i am really stuck. Could someone please help me with this please. The code i have done so far is as follows(just the event handling code shown)
              public void ItemStateChange(ItemEvent ie){
              if(ie.getItemSelected()== prodList)
                   changeOutput();
              public void changeOutput()
                   if(ItemSelected ==0)
                        tf1.setText("You have selected" +a +b +c);
         }

    Do you say this because i missed the d of ItemStateChanged ?
    I have amended that but still i am getting the same errors class or enum expected. 4 of them relating to the itemStateChanged method.
    i will post my whole code if it helps
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.util.Observer;  //new
    import java.util.Observable;//new
    import javax.swing.BorderFactory;
    import javax.swing.border.Border;
    import javax.swing.border.TitledBorder;
    public class MySuperMktPro
         public MySuperMktPro()
              CheckoutView Check1 = new CheckoutView(1,0,0);
              CheckoutView Check2 = new CheckoutView(2,300,0);
              CheckoutView Check3 = new CheckoutView(3,600,0);
              CheckoutView Check4 = new CheckoutView(4,0,350);
              CheckoutView Check5 = new CheckoutView(5,600,350);
              OfficeView off111 = new OfficeView();
        public static void main(String[] args) {
             // TODO, add your application code
             System.out.println("Starting My Supermarket Project...");
             MySuperMktPro startup = new MySuperMktPro();
        class CheckoutView implements ItemListener , ActionListener
        private OfficeView off1;
         private JFrame chk1;
         private Container cont1;
         private Dimension screensize,tempDim;
         private JPanel pan1,pan2,pan3,pan4,pan5;
         private JButton buyBut,prodCode;
         private JButton purchase,cashBack,manual,remove,disCo;
         private JButton but1,but2,finaLi1,but4,but5,but6;
         private JTextArea tArea1,tArea2;
         private JTextField tf1,tf2,tf3,list2;
         private JComboBox prodList;
         private JLabel lab1,lab2,lab3,lab4,lab5,lab6,lab7;
         private int checkoutID; //New private int for all methods of this class
         private int passedX,passedY;
         private String prods[];
         private JButton rb1,rb2,rb3,rb4;
         private double price[];
         private int code[];
         public CheckoutView(int passedInteger,int passedX,int passedY)
              checkoutID = passedInteger; //Store the int passed into the method
            this.passedX = passedX;
            this.passedY = passedY;
              drawCheckoutGui();
         public void drawCheckoutGui()
              prods= new String[20];
              prods[0] = "Beans";
              prods[1] = "Eggs";
              prods[2] = "bread";
              prods[3] = "Jam";
              prods[4] = "Butter";
              prods[5] = "Cream";
              prods[6] = "Sugar";
              prods[7] = "Peas";
              prods[8] = "Milk";
              prods[9] = "Bacon";
              prods[10] = "Spaghetti";
              prods[11] = "Corn Flakes";
              prods[12] = "Carrots";
              prods[13] = "Oranges";
              prods[14] = "Bananas";
              prods[15] = "Snickers";
              prods[16] = "Wine";
              prods[17] = "Beer";
              prods[18] = "Lager";
              prods[19] = "Cheese";
              for(i=0; i<prods.length;i++);
              code = new int [20];
              code[0] = 1;
              code[1] = 2;
              code[2] = 3;
              code[3] = 4;
              code[4] = 5;
              code[5] = 6;
              code[6] = 7;
              code[7] = 8;
              code[8] = 9;
              code[9] = 10;
              code[10] = 11;
              code[11] = 12;
              code[12] = 13;
              code[13] = 14;
              code[14] = 15;
              code[15] = 16;
              code[16] = 17;
              code[17] = 18;
              code[18] = 19;
              code[19] = 20;
              for(b=0; b<code.length; b++);
              price = new double [20];
              price[0] = 0.65;
              price[1] = 0.84;
              price[2] = 0.98;
              price[3] = 0.75;
              price[4] = 0.45;
              price[5] = 0.65;
              price[6] = 1.78;
              price[7] = 1.14;
              price[8] = 0.98;
              price[9] = 0.99;
              price[10] = 0.98;
              price[11] = 0.65;
              price[12] = 1.69;
              price[13] = 2.99;
              price[14] = 0.99;
              price[15] = 2.68;
              price[16] = 0.89;
              price[17] = 5.99;
              price[18] = 1.54;
              price[19] = 2.99;
              for(c=0; c<code.length; c++);
              screensize = Toolkit.getDefaultToolkit().getScreenSize();
              chk1 = new JFrame();
              chk1.setTitle("Checkout #" + checkoutID); //Use the new stored int
              chk1.setSize(300,350);
              chk1.setLocation(passedX,passedY);
              chk1.setLayout(new GridLayout(5,1));
              //chk1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              cont1 = chk1.getContentPane();
              //chk1.setLayout(new BorderLayout());
                 pan1 = new JPanel();
                 pan2 = new JPanel();
              pan3 = new JPanel();
              pan4 = new JPanel();
              pan5 = new JPanel();
              //panel 1
              pan1.setLayout(new FlowLayout());
              pan1.setBackground(Color.black);          
              prodList = new JComboBox(prods);
              prodList.setMaximumRowCount(2);
              prodList.addItemListener(this);
              but1 = new JButton("Buy");
              but1.addActionListener(this);
              lab1 = new JLabel("Products");
              lab1.setForeground(Color.white);
              lab1.setBorder(BorderFactory.createLineBorder(Color.white));
              pan1.add(lab1);
              pan1.add(prodList);          
              pan1.add(but1);
              //panel 2
              pan2 = new JPanel();
              pan2.setLayout(new BorderLayout());
              pan2.setBackground(Color.black);
              lab3 = new JLabel("                                Enter Product Code");
              lab3.setForeground(Color.white);
              tArea2 = new JTextArea(8,10);
              tArea2.setBorder(BorderFactory.createLineBorder(Color.white));
              lab5 = new JLabel("  Tesco's   ");
              lab5.setForeground(Color.white);
              lab5.setBorder(BorderFactory.createLineBorder(Color.white));
              lab6 = new JLabel("Checkout");
              lab6.setForeground(Color.white);
              lab6.setBorder(BorderFactory.createLineBorder(Color.white));
              lab7 = new JLabel("You  selected                      ");
              lab7.setForeground(Color.cyan);
              //lab7.setBorder(BorderFactory.createLineBorder(Color.white));
              pan2.add(lab7,"North");
              pan2.add(lab6,"East");
              pan2.add(tArea2,"Center");
              pan2.add(lab5,"West");
              pan2.add(lab3,"South");
              //panel 3
              pan3 = new JPanel();
              pan3.setLayout(new FlowLayout());
              pan3.setBackground(Color.black);
              manual = new JButton("Manual");
              manual.addActionListener(this);
              manual.setBorder(BorderFactory.createLineBorder(Color.white));
              remove = new JButton("Remove");
              remove.addActionListener(this);
              remove.setBorder(BorderFactory.createLineBorder(Color.white));
              tf1 = new JTextField(5);
              pan3.add(manual);
              pan3.add(tf1);
              pan3.add(remove);
              //panel 4
              pan4 = new JPanel();
              pan4.setLayout(new FlowLayout());
              pan4.setBackground(Color.black);
              finaLi1 = new JButton("Finalise");
         //     finaLi1.addActionListener(this);
              cashBack = new JButton("Cashback");
              JTextField list2 = new JTextField(5);
              but4 = new JButton(" Sum Total");
              but4.addActionListener(this);
              but4.setBorder(BorderFactory.createLineBorder(Color.white));
              cashBack.setBorder(BorderFactory.createLineBorder(Color.white));
              pan4.add(cashBack);
              pan4.add(list2);
              pan4.add(but4);
              //panel 5
              pan5 = new JPanel();
              pan5.setLayout(new GridLayout(2,3));
              pan5.setBackground(Color.black);
              disCo = new JButton("Discount");
              disCo.addActionListener(this);
              disCo.setBorder(BorderFactory.createLineBorder(Color.black));
              but6 = new JButton("Finalise");
              but6.addActionListener(this);
              but6.setBorder(BorderFactory.createLineBorder(Color.black));
              rb1 = new JButton("Cash");
              rb1.addActionListener(this);
              rb1.setBorder(BorderFactory.createLineBorder(Color.black));
              rb2 = new JButton("Card");
              rb2.addActionListener(this);
              rb2.setBorder(BorderFactory.createLineBorder(Color.black));
              rb3 = new JButton("Cheque");
              rb3.addActionListener(this);
              rb3.setBorder(BorderFactory.createLineBorder(Color.black));
              rb4 = new JButton("Voucher");
              rb4.addActionListener(this);
              rb4.setBorder(BorderFactory.createLineBorder(Color.black));
              pan5.add(disCo);
              pan5.add(but6);
              pan5.add(rb1);
              pan5.add(rb2);
              pan5.add(rb3);
              pan5.add(rb4);
              //add the panels to the container        
              cont1.add(pan1);
              cont1.add(pan4);     
              cont1.add(pan2);
              cont1.add(pan3);          
              cont1.add(pan5);          
              chk1.setContentPane(cont1);
              chk1.setVisible(true);     
    class OfficeView
         private OfficeView off111;
         private JFrame offMod1;
         private JPanel pane1;
         private JButton refill;
         private Container cont11;
         private Dimension screensize;
         private JTextField tf11,tf12;
         public OfficeView()
              drawOfficeGUI();
         public void drawOfficeGUI()
              screensize = Toolkit.getDefaultToolkit().getScreenSize();
              offMod1 = new JFrame("Office Control");
              int frameWidth = 300;
              int frameHeight = 250;
              offMod1.setSize(frameWidth,frameHeight);
              offMod1.setLocation(300,350);
              offMod1.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
              cont11 = offMod1.getContentPane();
              pane1 = new JPanel();
              pane1.setBackground(Color.cyan);
              refill = new JButton("Refill");
              tf11 = new JTextField(25);
              tf12 = new JTextField(25);
              pane1.add(tf11);
              pane1.add(refill);
              pane1.add(tf12);
              cont11.add(pane1);
              offMod1.setContentPane(cont11);
              offMod1.setVisible(true);
              public void ItemStateChanged(ItemEvent ie)
                        if(ie.getItemSelected()== prodList)
                                  changeOutput();
              public void changeOutput()
                        if(ItemSelected ==0)
                                  tf1.setText("You have selected", +a +b +c);
                   }Message was edited by:
    fowlergod09

  • Wi-Fi Connections issues: HELP NEEDED!

    I've been running my iPhone mostly on the EDGE network the past few weeks. Some hair might have gone grey while I was waiting for it to laod, but it loaded after sometime.
    Anyways, I have a linksys wireless router and everytime I try and use my Wi-Fi with the iPhone it says "Safari can't open the page because it could not connect to the server."
    Does anyone have a solution for me to change settings through network settings, or anything eles that might be quick and easy?

    Here is a quick check list you can take a look at and try. As well as a couple questions. It sounds like possible interference of some kind.
    1. Has Firmware on the router been updated?
    2. Have you updated iPhone Software to 1.0.1?
    3. Have you done a restore on the iPhone and tested the network again?
    4. You may wish to inquire to your router provider about changing the channel on your router, To see if it is stopping the iPhone from grabbing a stable connection.
    Test your iPhone on another Wireless Network, If other Wireless Networks work, Then it could just be a compatibility issue with your router, But please inquire to your Router Provider about how your wireless device will not hold the information of the Router IP and other information, They may be able to change a setting in the router to help stabilize the connection.
    Apple has also released a new router, The Airport Extreme 802.11n
    http://store.apple.com/1-800-MY-APPLE/WebObjects/AppleStore.woa/wa/RSLID?mco=E84 08794&nplm=MB053LL/A

  • Connect by help needed

    Hello
    I am using an hierarchy query using a "connect by prior" and it working great.
    According to the start with it give me the list of "trees" I need.
    Can I add a where statement that check if the type_id of one of the elements in the tree is equal to 1 and if so return that tree with all of it's elements?
    Thank you

    That's different level.
    And I use that function for keeping sinligs sort.
    select deptno,ename,comm
          ,sys_connect_by_path(ename,'/') value4sort
    from scott.emp
    connect by prior empno = mgr
    start with ename in ('JONES','BLAKE','CLARK')
    order siblings by ename
        DEPTNO ENAME            COMM VALUE4SORT
            30 BLAKE                 /BLAKE
            30 ALLEN             300 /BLAKE/ALLEN
            30 JAMES                 /BLAKE/JAMES
            30 MARTIN           1400 /BLAKE/MARTIN
            30 TURNER              0 /BLAKE/TURNER
            30 WARD              500 /BLAKE/WARD
            10 CLARK                 /CLARK
            10 MILLER                /CLARK/MILLER
            20 JONES                 /JONES
            20 FORD                  /JONES/FORD
            20 SMITH                 /JONES/FORD/SMITH
    select deptno,ename,comm from
      (select deptno,ename,comm
            ,count(comm) over (partition by root_value) flag
            ,value4sort
      from (
        select deptno,ename,comm
              ,connect_by_root(empno) root_value
              ,sys_connect_by_path(ename,'/') value4sort
        from scott.emp
        start with ename in ('JONES','BLAKE','CLARK')
        connect by prior empno = mgr
    where flag >= 1
    order by value4sort
        DEPTNO ENAME            COMM
            30 BLAKE
            30 ALLEN             300
            30 JAMES
            30 MARTIN           1400
            30 TURNER              0
            30 WARD              500
    select deptno,ename,comm
          ,sys_connect_by_path(ename,'/') value4sort
    from scott.emp
    connect by prior empno = mgr
    start with ename in ('KING')
    order siblings by ename
        DEPTNO ENAME            COMM VALUE4SORT
            10 KING                  /KING
            30 BLAKE                 /KING/BLAKE
            30 ALLEN             300 /KING/BLAKE/ALLEN
            30 JAMES                 /KING/BLAKE/JAMES
            30 MARTIN           1400 /KING/BLAKE/MARTIN
            30 TURNER              0 /KING/BLAKE/TURNER
            30 WARD              500 /KING/BLAKE/WARD
            10 CLARK                 /KING/CLARK
            10 MILLER                /KING/CLARK/MILLER
            20 JONES                 /KING/JONES
            20 FORD                  /KING/JONES/FORD
            20 SMITH                 /KING/JONES/FORD/SMITH
    select deptno,ename,comm from
      (select deptno,ename,comm
            ,count(comm) over (partition by root_value) flag
            ,value4sort
      from (
        select deptno,ename,comm
              ,connect_by_root(empno) root_value
              ,sys_connect_by_path(ename,'/') value4sort
        from scott.emp
        start with ename in ('KING')
        connect by prior empno = mgr
    where flag >= 1
    order by value4sort
        DEPTNO ENAME            COMM
            10 KING
            30 BLAKE
            30 ALLEN             300
            30 JAMES
            30 MARTIN           1400
            30 TURNER              0
            30 WARD              500
            10 CLARK
            10 MILLER
            20 JONES
            20 FORD
            20 SMITH

  • Problem with my Zen touch USB connection. Help need

    Hey, I have a problem, my usb connection is damaged so I can't send songs to my ZEN TOUCH anymore...can I do something with it's? /warranty are not working/Message Edited by Jason-CL on 06-09-2006 0:4 AM

    Gvido_,
    Have you try using another USB cable to test just in case it's not a problem with the USB connector.
    Jason

  • IPod not connecting! HELP NEEDED BADLY!

    I have 2G iPod nano and I also have the newest iTunes downloaded (7.0.2). However, iTunes cannot find the iPod, or the iPod is not showing up in iTunes where it should (under the device section).
    A message does come up, it is this:
    An iPod has been detected, but the iPod software is not installed. Please install the iPod software from the CD that came with your iPod or download the iPod software updater from www.apple.com/ipod/download
    I have done this and all it does is bring me to a place where I can download iTunes, which I already have.

    Also, I do not have a CD.

  • SQL Server Database Connectivity with Visual Studio 2012 - Help Needed

    Hello,
    I am having Visual Studio 2012 and SQL Developer 4.0 installed on my system with Windows 8 - 64bit
    I want to shift a VS project with an SQL database connectivity to another new Laptop (above mentioned) ...
    I have the project opened in VS without bieng connected to the database.. 
    I have a backup file of the database (which needs to be restored to a new created database on SQL Developer) 
    The problem:
    I am unable to create a server connection in SQL Developer which will allow me to create a new database followed by the recovery from backup file.
    I am getting the following error message when I try to create a connection:
    Status: Faliure - IO error: The network adapter could not establish a connection
    Please help me in setting up a server connection and adding a new sql database

    The error message seemed unfamiliar to me and since I had never heard of SQL Developer before, I went to Google. Google might be pulling my legs, but it appears that SQL Developer is related to Oracle. This forum is devoted to SQL Server, so you are in the
    wrong place.
    Try finding a forum for SQL Developer.
    Erland Sommarskog, SQL Server MVP, [email protected]

  • Firefox with wlan connect on laptop gives no connect what I need to maake wlan connect, network is ok

    have a bought a hp pavilion g series. had trouble with installation and updates. now problem that firefox with wlan has no connection. suse linux 12.1, wireless lan 802.11, FRITZ!Box Fon WLAN 7270, find no setup for wlaan in firefox that over the laptop wlan connection will work

    In Firefox 3.6.4 and later the default connection settings have been changed to "Use the system proxy settings".
    See "Firefox connection settings" in [[Server not found]]
    You can find the connection setting here: Tools > Options > Advanced : Network : Connection
    If you do not need to use a proxy to connect to internet then select ''No Proxy''

  • Creative Cloud Connection Help Needs Mac Support

    I'm very happy to see that the Creative Cloud Connection preview is now available.
    I was VERY disappointed to see that the Help file only covers Windows computers. Please update it to support Macintoshes as well!

    The "Creative Cloud Help / Getting started with the Creative Cloud Connection" page does have a section on MacOS: http://helpx.adobe.com/creative-cloud/kb/desktop-sync-getting-started.html
    Is there a specific problem you're having with Creative Cloud Connection that you need help with?

  • Help needed in Connecting to SAP From Eclipse

    Hi All,
    Currently, we have a requirement where we need to retrieve data from SAP System and need to upload the same in a Third Party Application (Java based system).
    We are able to create an account in Java Application using Eclipse IDE by hard coding the Account details. We are stuck up in establishing the SAP connection and retrieving the details and then creating the extracted account details in Java application from Eclipse.
    Any pointers on this will be of great help.
    Regards,
    Eureka

    Hi Eureka,
    Please refrain from creating cross-posts in parallel forums, moreover this question is JCo-related and is not directly connected with Java EE 5. The Help needed in Connecting to SAP From Eclipse in the Java Programming forum would be enough. Please continue the discussion there.
    Regards,
    Vladimir

  • Help needed to connect dual monitors.

    Hi everyone. Here's my problem, I bought two Samsung SyncMaster 913v LCD TFT Displays.
    Both of these displays (since they aren't the digital LCD) connect the same way my old Sony Trinitron MultiscanG400 display connected, which I believe is the VGA connection or SVGA or whatever... I'm not smart enough to look into the difference.
    Anyway, I have the right Graphics/Video card to run dual monitors. I'm using the GeForce 2 TwinView and it has the required 64mb VRam.
    My problem is that there is only one port on the back for monitors. I believe the connection type next to it is an old pre-usb printer/scanner type of connector, LPT1 or whatever those are called.
    So do I need an adapter/connector to hook up both of my monitors to use it as a dual display? If not, what do I need to do?
    Thanks.

    Hi,
    To clarify the last post by PB PM. Your present card meets those requirements.
    The GF2 Twinview card is sufficient. It has two outlets, one is VGA the other is ADC (Apple Display Connector). You will need a ADC to VGA Adapter, they cost @ $25-30. Hook one monitor to the existing VGA outlet, the other to the adapter on the ADC outlet.
    One example is here: http://eshop.macsales.com/item/AddLogix/MCAADCVGA/
    You can google for other prices.
    After the monitors are connected you may need to go to Displays Pref's and set it for dual monitors in Mirror or Span modes.
    Regards,
    Dave

Maybe you are looking for

  • Report output via E-mail

    Hi all, i have a written a report where i need to send the report output to somebody via E-mail.i am sending this report output via E-mail successfully.The receiver receives, my output in excel format.but this excel is not <b>pivoted</b>. i want , th

  • How to split table in the report so it shows on the next page?

    Hi, How to split table in the report so it shows on the next page? Im trying to fit long (many columns) table into my report page. It is too long however. I want it to wrap and show the rest on the next page. What I get now is table cut at the page e

  • Late Macbook Pro 13 with Asus PB287Q (4K Monitor)

    Hi, I just bought the 4K Asus Monitor PB287Q and I can't get it to work via Display-Port at all!!! Is there anything I'm missing? I've bought a cheap mini-DisplayPort to Display Port cable and hook that up to the Thunderbolt ports (I've already tried

  • So tired of iTunes & Podcasts, recommendations?

    latest iTunes, OSX & IOS.  iTunes corrupted a week ago...again.  I completely rebuilt it on another, less used HD.  It's corrupted again now.  Freezes when I try to download podcast updates, claims 100% of my CPU, and runs the fan on high.  No other

  • Query about perishable item and serial number entry in RMS

    hi , can some one help me to explore the below mentioned option RMS 1. how can we mark an item as an perishable item in rms 2. where to enter the serial number for an item in RMS. regards, deepak