LabVIEW visa getting slow when connected to arduino

Visa in labview when connected to the arduino prog becomes slow

I checked it passes the codde required, but the action is slow

and the most important every time to get the o/p I must stop the prog, then start again.

I tried to do a new prog with visa in singlw loop it was due to long progs and constant, as a single string, but always thinking of things don't work the way I would like to know fast n without stopping the prog. I have attached my n of the required part of the diag block image files

I used a string of length 10 char n I have my program and a single visa write.


Tags: NI Software

Similar Questions

  • Microsoft Office 2007 (Word, Excel, Outlook) slow when connected to the network, but fast when not. with windwos vista

    Microsoft Office (Word, Excel, Outlook) and printer slow when connected to the network, but quickly when not. with windwos vista, I have reintall the operating system, but still the same. Environment Network (Win server)

    Hello

    Your question of Windows Vista is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please post your question in Windows Vista IT Pro Technet Forums network.

    http://social.technet.Microsoft.com/forums/en-us/category/windowsvistaitpro/

    I hope this helps.

  • computer is slow when connecting to internet

    computer is slow when connecting to internet

    Hi Jerome,

    Until we provide troubleshooting steps, we would like to know as a result of information from you.

    (1) do you use Internet Explorer to access the Internet?

    (2) what Internet connection type you have? Is it wireless or wired?

    (3) don't you make changes to the Internet connection settings prior to this problem?

    Follow the steps in the link given below to solve the problem.

    Optimize Windows performance

    http://Windows.Microsoft.com/en-us/Windows/optimize-Windows-better-performance#optimize-Windows-better-performance=Windows-7

    Important: the data files that are infected must be cleaned only by removing the file completely, which means there is a risk of data loss.

    Write to us at the State of the question. We will help you to come.

  • vCAC 6.0 error: user get banned when connecting error

    Hello

    one of the user of the VCAC becomes an error when connecting to vCAC 6.0 "prohibited." Please close the browser window and connecting a new window", when I have the tail of Catalina.out to error on the SSO server located under the log entry

    04/07/22 11:02:21, 282 Builder DEBUG [DefaultIdmAccessorFactory] DefaultIdmAccessorFactory

    2014-07-22 11:02:21, 282 DEBUG [DefaultIdmAccessorFactory] DefaultIdmAccessorFactory getIdmAccessor

    2014-07-22 11:02:21, 282 DEBUG [CasIdmAccessor] CasIdmAccessor constructor called

    2014-07-22 11:02:21, DEBUG state [AuthnRequestState] 282 specified relay has been https://VCAC-UI.abc.local/shell-ui-app/#csp.places.iaas.Default

    2014-07-22 11:02:21, 282 DEBUG [AuthnRequestState] parseRequestForTenant, vsphere.local tenant

    2014-07-22 11:02:21, 283 attack by reconstitution DEBUG [AuthnRequestState] detected - request authentication who REFUSES

    2014-07-22 11:02:21, 283 DEBUG [BaseSsoController] caught exception java.lang.IllegalStateException analysis: forbidden

    2014-07-22 11:02:21, 283 DEBUG [AuthnRequestState] addResponseHeaders, org.apache.catalina.connector.ResponseFacade@144d6c10 response

    2014-07-22 11:02:21, 283 DEBUG [AuthnRequestState] generateResponseForTenant, vsphere.local tenant

    2014-07-22 11:02:21, 283 INFO [BaseSsoController] responded with ERROR 403 Forbidden message! Please close the browser window and connecting a new window

    So when I tried to check for the administrative user account > VCAC users, I have a step able to list out sound it is actually member of ad groups. It's strange because, in reality user groups listed in the Active Directory log.

    Please help me get this problem

    Thanks in advance

    BR,

    MG

    Steve anywhere today...

    2014-07-22 11:02:21, 283 attack by reconstitution DEBUG [AuthnRequestState] detected - request authentication who REFUSES


    This line indicates that someone is trying to reuse an expired session token. Ensure that people use not SSO, or a bookmark of a page being cached for SSO.


    Grant

  • Redirect 302 get only when connected via BES loop

    Hello

    I have a problem when I am connected via BES, I get a server redirection loop (it returns a 302 with the originial URL response in the "location" header field). When it is connected via the BIS-B, WiFi or carrier, the server returns redirects as expected and the app works. However I require a BES connection and him give a priority when they are available.

    Note that I checked the connection returned by Networking.java string is correct (we add ";) (deviceside = false' when BES is to be using).

    Here's the network code I use:

    package [redacted]
    
    /*
     * Networking.java
     *
     * This code is based on the connection code developed by Mike Nelson of AccelGolf.
     * http://blog.accelgolf.com/2009/05/22/blackberry-cross-carrier-and-cross-network-http-connection
     *
     */
    
    import net.rim.device.api.system.CoverageInfo;
    import net.rim.device.api.system.DeviceInfo;
    import net.rim.device.api.system.WLANInfo;
    
    public class Networking
    {
        Networking()
        {
        }
    
    // Whether or not to the simulator should use MDS to connect.
    // By default this should be false, however if you are testing
    // in an environment where MDS will be the expected connection method,
    // set this to true to have the simulator attempt to use MDS.  This variable
    // has no effect on what happens on a real device.
        private static final boolean isMDS = false;
    
        // the timeout
        public static final int TIMEOUT = 30000;
    
        /**
         * Determines what connection type to use and returns the necessary string
         * to use it.
         *
         * @return A string with the connection info
         */
        public static String getConnectionString()
        {
    
            String connectionString = null;
    
            // Simulator behavior is controlled by the USE_MDS_IN_SIMULATOR variable.
            if (DeviceInfo.isSimulator())
            {
                if (isMDS)
                {
                    connectionString = ";ConnectionTimeout=" + TIMEOUT + ";deviceside=false";
                }
                else
                {
                    connectionString = ";ConnectionTimeout=" + TIMEOUT + ";deviceside=true";
                }
            }
    
            // Check for an MDS connection instead (BlackBerry Enterprise Server)
            else if ((CoverageInfo.getCoverageStatus() & CoverageInfo.COVERAGE_MDS) == CoverageInfo.COVERAGE_MDS)
            {
                System.out.println("MDS coverage found");
                connectionString = ";ConnectionTimeout=" + TIMEOUT + ";deviceside=false";
            }
    
            else if ((CoverageInfo.getCoverageStatus() & CoverageInfo.COVERAGE_BIS_B) == CoverageInfo.COVERAGE_BIS_B)
            {
                // otherwise, use the Uid to construct a valid carrier BIS-B request
                System.out.println("Using BIS");
                connectionString = ";ConnectionTimeout=" + TIMEOUT + ";deviceside=false;ConnectionType=[redacted]";
            }
    
            // Wifi is the preferred transmission method
            else if (WLANInfo.getWLANState() == WLANInfo.WLAN_STATE_CONNECTED)
            {
                System.out.println("Using WIFI");
                connectionString = ";interface=wifi";
            }
    
            // Is the carrier network the only way to connect?
            else if ((CoverageInfo.getCoverageStatus() & CoverageInfo.COVERAGE_DIRECT) == CoverageInfo.COVERAGE_DIRECT)
            {
    
                // Has carrier coverage, but not BIBS.  So use the carrier's TCP network
                System.out.println("Device is connected Direct");
                connectionString = ";ConnectionTimeout=" + TIMEOUT + ";deviceside=true";
    
            }
    
            // If there is no connection available abort to avoid bugging the user unnecssarily.
            else if (CoverageInfo.getCoverageStatus() == CoverageInfo.COVERAGE_NONE)
            {
                System.out.println("There is no available connection.");
            }
    
            // In theory, all bases are covered so this shouldn't be reachable.
            else
            {
                System.out.println("no other options found, assuming device.");
                connectionString = ";ConnectionTimeout=" + TIMEOUT + ";deviceside=true";
            }
    
            return connectionString;
        }
    }
    

    Here is sendRequest managed the connection method and the redirection:

    public HttpResponse sendRequest(HttpRequest request)
        {
            String url = request.getUrl();
            if (url == null)
            {
                HttpResponse result = new HttpResponse();
                result.responseCode = 404;
                result.responseMessage = "Not Found";
                return result;
            }
    
            ConnectionWrapper cw = connectionWrapperForRequest(request);
            if (cw == null)
            {
                return null;
            }
    
            boolean compressionEnabled = !request.disableCompression() && COMPRESSION_ENABLED;
    
            HttpResponse result = new HttpResponse();
            try
            {
                String finalURL = url.trim() + Networking.getConnectionString();
                cw.connection = (HttpConnection) Connector.open(finalURL, Connector.READ_WRITE, false);
                System.out.println("Connection string: " + Networking.getConnectionString());
                System.out.println("Full connec.  URL: " + finalURL);
    
                if (cw.connection == null)
                {
                    result.errorMessage = "Could not open a network connection.";
                    result.completedWithError = true;
                    return result;
                }
    
                cw.connection.setRequestMethod(request.getHttpMethod());
    
                if (compressionEnabled)
                {
                    cw.connection.setRequestProperty("Accept-Encoding", "gzip");
                }
    
                cw.connection.setRequestProperty("User-Agent",
                        "" + DeviceInfo.getManufacturerName() + "/" + DeviceInfo.getDeviceName() + "/" + Config.getVersionNumber());
                if (request.username() != null)
                {
                    cw.connection.setRequestProperty("Authorization", "Basic " + Utils.base64Encode(request.username() + ":" + request.password()));
                }
    
                // set this header so BES servers will not change the content of the headers
                cw.connection.setRequestProperty("x-rim-transcode-content", "none");
    
                //add cookies
                if (HttpCookieJar.getInstance().cookieCount() > 0)
                {
                    cw.connection.setRequestProperty("Cookie", HttpCookieJar.getInstance().getCookiesAsString());
                }
    
                //pull request headers from HttpRequest
    
                Hashtable headers = request.getHeaders();
                for (Enumeration e = headers.keys(); e.hasMoreElements();)
                {
                    String key = (String) e.nextElement();
                    cw.connection.setRequestProperty(key, (String) headers.get(key));
                }
    
                byte[] upstreamBytes = request.requestBytes();
                if (upstreamBytes != null && upstreamBytes.length > 0)
                {
                    Logger.getLogger().log(new String(upstreamBytes));
                    cw.connection.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_TYPE,
                            HttpProtocolConstants.CONTENT_TYPE_APPLICATION_X_WWW_FORM_URLENCODED);
                    cw.connection.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_LENGTH, String.valueOf(upstreamBytes.length));
                    cw.outputStream = cw.connection.openOutputStream();
                    cw.outputStream.write(upstreamBytes);
                }
    
                Logger.getLogger().log("Get response");
    
                result.responseCode = cw.connection.getResponseCode();
                result.responseMessage = cw.connection.getResponseMessage();
    
                Logger.getLogger().log("Status Code: " + result.responseCode);
                Logger.getLogger().log("Status Message: " + result.responseMessage);
    
                //suck out the cookies here
                int fieldNo = 0;
                String headerField;
                while ((headerField = cw.connection.getHeaderField(fieldNo)) != null)
                {
                    if (cw.connection.getHeaderFieldKey(fieldNo).equals("Set-Cookie"))
                    {
                        HttpCookieJar.getInstance().setCookie(headerField);
                    }
                    fieldNo++;
                }
    
                System.out.println("get redirect");
    
                //get redirect location
                String location;
                if ((location = cw.connection.getHeaderField("Location")) != null)
                {
                    if (location == url.trim())
                    {
                        Logger.getLogger().log("Redirect loop");
                    }
                    Logger.getLogger().log("Redirect: " + location);
                    result.redirectLocation = location.trim();
                }
                else
                    result.redirectLocation = null;
    
                byte[] buffer = new byte[HTTP_BUFFER_SIZE];
                int count;
    
                System.out.println("compression");
    
                cw.inputStream = cw.connection.openInputStream();
                if (compressionEnabled)
                {
                    String encoding = cw.connection.getEncoding();
                    if ("gzip".equalsIgnoreCase(encoding))
                    {
                        cw.inputStream = new GZIPInputStream(cw.inputStream);
                    }
                }
    
                cw.inputStream = new DataInputStream(cw.inputStream);
    
                System.out.println("output stream");
    
                ByteArrayOutputStream out = new ByteArrayOutputStream();
                try
                {
                    while ((count = cw.inputStream.read(buffer)) >= 0)
                    {
                        out.write(buffer, 0, count);
                    }
                    result.bytes = out.toByteArray();
                }
                finally
                {
                    out.close();
                }
                cw.close();
                Logger.getLogger().log("Response complete");
            }
            catch (IOException e)
            {
                result.errorMessage = e.getMessage();
                result.completedWithError = true;
                Logger.getLogger().log("ERROR!:" + e.getMessage());
            }
            finally
            {
                removeConnectionWrapper(cw);
            }
            return result;
        }
    

    Here's the whole HttpService.java for the context of the SendRequest method above:

    //#preprocess
    
    //package
    //imports
    
    public class HttpService
    {
        private static HttpService _instance;
    
        private static final boolean COMPRESSION_ENABLED = false;
        private static final int HTTP_BUFFER_SIZE = 1024;
    
        public static synchronized HttpService instance()
        {
            if (_instance == null)
            {
                _instance = new HttpService();
            }
            return _instance;
        }
    
        private WorkQueue _requestQueue = new WorkQueue(1024, 4);
        private Hashtable _connections = new Hashtable(10);
    
        private HttpService()
        {
            // singleton
        }
    
        private ConnectionWrapper connectionWrapperForRequest(HttpRequest request)
        {
            ConnectionWrapper cw = null;
            synchronized (request)
            {
                if (!request.cancelled())
                {
                    cw = new ConnectionWrapper(request);
                    synchronized (_connections)
                    {
                        _connections.put(request, cw);
                    }
                }
            }
            return cw;
        }
    
        private void removeConnectionWrapper(ConnectionWrapper cw)
        {
            synchronized (_connections)
            {
                _connections.remove(cw.request);
            }
            cw.close();
        }
    
        public void cancelRequest(HttpRequest request)
        {
            ConnectionWrapper cw = null;
            synchronized (request)
            {
                synchronized (_connections)
                {
                    cw = (ConnectionWrapper) _connections.remove(request);
                }
                request.setCancelled();
            }
            if (cw != null)
            {
                cw.close();
            }
        }
    
        public void executeRequest(final HttpRequest request)
        {
            _requestQueue.addWorkItem(new Runnable()
            {
                public void run()
                {
                    HttpResponse response = sendRequest(request);
                    if (!request.cancelled() && response != null)
                    {
                        request.completeRequest(response);
                    }
                };
            });
        }
    
        public HttpResponse sendRequest(HttpRequest request)
        {
            String url = request.getUrl();
            if (url == null)
            {
                HttpResponse result = new HttpResponse();
                result.responseCode = 404;
                result.responseMessage = "Not Found";
                return result;
            }
    
            ConnectionWrapper cw = connectionWrapperForRequest(request);
            if (cw == null)
            {
                return null;
            }
    
            boolean compressionEnabled = !request.disableCompression() && COMPRESSION_ENABLED;
    
            HttpResponse result = new HttpResponse();
            try
            {
                String finalURL = url.trim() + Networking.getConnectionString();
                cw.connection = (HttpConnection) Connector.open(finalURL, Connector.READ_WRITE, false);
                System.out.println("Connection string: " + Networking.getConnectionString());
                System.out.println("Full connec.  URL: " + finalURL);
    
                if (cw.connection == null)
                {
                    result.errorMessage = "Could not open a network connection.";
                    result.completedWithError = true;
                    return result;
                }
    
                cw.connection.setRequestMethod(request.getHttpMethod());
    
                if (compressionEnabled)
                {
                    cw.connection.setRequestProperty("Accept-Encoding", "gzip");
                }
    
                cw.connection.setRequestProperty("User-Agent",
                        "" + DeviceInfo.getManufacturerName() + "/" + DeviceInfo.getDeviceName() + "/" + Config.getVersionNumber());
                if (request.username() != null)
                {
                    cw.connection.setRequestProperty("Authorization", "Basic " + Utils.base64Encode(request.username() + ":" + request.password()));
                }
    
                // set this header so BES servers will not change the content of the headers
                cw.connection.setRequestProperty("x-rim-transcode-content", "none");
    
                //add cookies
                if (HttpCookieJar.getInstance().cookieCount() > 0)
                {
                    cw.connection.setRequestProperty("Cookie", HttpCookieJar.getInstance().getCookiesAsString());
                }
    
                //pull request headers from HttpRequest
    
                Hashtable headers = request.getHeaders();
                for (Enumeration e = headers.keys(); e.hasMoreElements();)
                {
                    String key = (String) e.nextElement();
                    cw.connection.setRequestProperty(key, (String) headers.get(key));
                }
    
                byte[] upstreamBytes = request.requestBytes();
                if (upstreamBytes != null && upstreamBytes.length > 0)
                {
                    Logger.getLogger().log(new String(upstreamBytes));
                    cw.connection.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_TYPE,
                            HttpProtocolConstants.CONTENT_TYPE_APPLICATION_X_WWW_FORM_URLENCODED);
                    cw.connection.setRequestProperty(HttpProtocolConstants.HEADER_CONTENT_LENGTH, String.valueOf(upstreamBytes.length));
                    cw.outputStream = cw.connection.openOutputStream();
                    cw.outputStream.write(upstreamBytes);
                }
    
                Logger.getLogger().log("Get response");
    
                result.responseCode = cw.connection.getResponseCode();
                result.responseMessage = cw.connection.getResponseMessage();
    
                Logger.getLogger().log("Status Code: " + result.responseCode);
                Logger.getLogger().log("Status Message: " + result.responseMessage);
    
                //suck out the cookies here
                int fieldNo = 0;
                String headerField;
                while ((headerField = cw.connection.getHeaderField(fieldNo)) != null)
                {
                    if (cw.connection.getHeaderFieldKey(fieldNo).equals("Set-Cookie"))
                    {
                        HttpCookieJar.getInstance().setCookie(headerField);
                    }
                    fieldNo++;
                }
    
                System.out.println("get redirect");
    
                //get redirect location
                String location;
                if ((location = cw.connection.getHeaderField("Location")) != null)
                {
                    if (location == url.trim())
                    {
                        Logger.getLogger().log("Redirect loop");
                    }
                    Logger.getLogger().log("Redirect: " + location);
                    result.redirectLocation = location.trim();
                }
    
                byte[] buffer = new byte[HTTP_BUFFER_SIZE];
                int count;
    
                System.out.println("compression");
    
                cw.inputStream = cw.connection.openInputStream();
                if (compressionEnabled)
                {
                    String encoding = cw.connection.getEncoding();
                    if ("gzip".equalsIgnoreCase(encoding))
                    {
                        cw.inputStream = new GZIPInputStream(cw.inputStream);
                    }
                }
    
                cw.inputStream = new DataInputStream(cw.inputStream);
    
                System.out.println("output stream");
    
                ByteArrayOutputStream out = new ByteArrayOutputStream();
                try
                {
                    while ((count = cw.inputStream.read(buffer)) >= 0)
                    {
                        out.write(buffer, 0, count);
                    }
                    result.bytes = out.toByteArray();
                }
                finally
                {
                    out.close();
                }
                cw.close();
                Logger.getLogger().log("Response complete");
            }
            catch (IOException e)
            {
                result.errorMessage = e.getMessage();
                result.completedWithError = true;
                Logger.getLogger().log("ERROR!:" + e.getMessage());
            }
            finally
            {
                removeConnectionWrapper(cw);
            }
            return result;
        }
    
        private static class ConnectionWrapper
        {
            final HttpRequest request;
            InputStream inputStream = null;
            OutputStream outputStream = null;
            HttpConnection connection = null;
    
            public ConnectionWrapper(HttpRequest request)
            {
                this.request = request;
            }
    
            public void close()
            {
                try
                {
                    if (outputStream != null)
                        outputStream.close();
                }
                catch (Exception e)
                {
                }
                try
                {
                    if (inputStream != null)
                        inputStream.close();
                }
                catch (Exception e)
                {
                }
                try
                {
                    if (connection != null)
                        connection.close();
                }
                catch (Exception e)
                {
                }
            }
        }
    }
    

    Sorry for the amount of code.

    I had our BES admin visit problematic page via a browser on the Server BES itself.

    Running, the Web server was an update of AJAX-style page that informs the user that they had no access to that particular content. Programmatically, see us all is "the page has been moved here" - but in a browser, it's a different story.

    Thanks again Peter for your insight!

  • Startup slow when connected to the internet

    Hello.

    My desktop pc (2.4 GHz / Vista SP2 - 32-bit operating system / 500 GB HD / 3 GB RAM) normally takes 4-5 minutes to start with an internet connection.  In the last few days, but it took 25 to 30 min to start when it is connected to the internet, but still only 4-5 minutes if not connected to the internet. I know that the obvious answer is not to connect to the internet until the pc is completely started, but would be interested to hear all of the solutions that anyone might like this only happened in the last days. The red light on the front of the pc normally blinks quickly at the start but now is slow and intermittent. Once fully booted the pc runs at normal speed. Don't know if it's relevant, but MS Security Essentials takes a long time to appear in the system tray and only turns green after about 25 minutes. I've done a full scan in MS Security Essentials but found nothing.

    Any help would be much appreciated.

    Thank you.

    Hello Scott,

    I suggest you do divide and conquer method to identify the program that is causing the problem.

    Put the computer in a clean boot state and then select the startup program one by one and then check which program is causing the problem.

  • Super slow when connecting

    I have windows 7 and my connection is super slow. All is well until what once I typed my password. It takes well over an hour for my icons on the desktop to appear, and I couldn't wait long enough to open the start menu.

    I'm sure that that my a problem related to Windows Explorer as all of a sudden, this problem started when Windows Explorer crashed and I had to reboot. Safe mode works quite well.

    Edit: the startup list with msconfig.exe in safemode made my working computer in normal mode.

    Hello!

    You can check the programs that start with Windows and turn off those unnecessary.

    1. start the Task Manager (press CTRL + SHIFT + ESC), go to the Startup tab, click right in the name column and in the menu shown tick 'Command line '. In the list, right-click on the programs you want to run at startup, and then click on disable.

    2. start msconfig.exe, Startup tab and disable unwanted programs.

    3. you can also look into the registry and delete the entries for the programs:

    Start-> regedit.exe

    Look under hkey_current_user\\software\\microsoft\\windows\\currentversion\\run

    and

    under

    HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\Run

    and delete the entries you want.

    4. After doing the steps above & reboot, start the Task Manager and look in the performance tab how high the CPU activity remains in standby mode; If the CPU activity is high, you can look in the processes tab to find the process that is using the most CPU.

    5 make an antivirus scan.

  • I don't get sound when connecting my LED TV to my laptop under windows 8

    Hello

    I have a laptop HP with windows 8. When I try to connect it to my LED tv using a HDMI cable I get the picture but the sound comes from the laptop only, not LED TV. I don't know the reasons. If anyone can help get the sound on my LED TV.

    Thank you

    Hi Ram,

    I understand that when you connect to LED TV to your Windows 8 HP laptop using an HDMI cable, you get the picture on the LED screen but sound comes only from the laptop. There is no sound in LED.

    This problem can be caused if the digital audio HDMI is disabled. Please follow the provided steps and check to see if that solves the problem:

    Method 1: Activate digital audio HDMI:

    Follow these steps to enable digital audio HDMI:

    (a) the speaker icon on the right side of the taskbar on the right click desktop background.

    (b) click on playback devices

    (c) right click Digital HDMI audio and then click Activate.

    (d) put a check mark: Show disconnected devices and see the disabled devices.

    (e) check if you get audio on the led connected to the laptop via a HDMI cable.

    Method 2: Check if the cables are connected properly:

    See the section under step 2 HDMI cables in the following link:

    No sound in Windows:

    http://Windows.Microsoft.com/en-in/Windows/no-sound-help#no-sound=Windows-8&V1H=win8tab2&V2H=win7tab1&V3H=winvistatab1&v4h=winxptab1

    Hope, it helps to solve the problem, if you have any other questions relating to Windows 8, do not hesitate to post.

    Kind regards

  • Resolved - getting error when connecting to the remote database to the host

    Hello

    I try to connect to the remote form of database host and get error. Can someone please help.

    I've seen a few threads about similar issues, but I am not able to solve this problem.

    I use Oracle Apps 12.2.0, Linux 5.1, Oracle Database 11 g Enterprise Edition Release 11.2.0.3.0 - 64 bit, using SQL Developer to connect.

    I am able to connect using SQL Developer in distance and using the same credentials in SQL Developer host, but in error

    Status: Failure-Test failed: IO Error: Connection reset

    The host

    I am able to ping remote, but cannot tnsping

    The tnsping error-

    Use settings files:

    C:\app\oracle\product\12.1.0\dbhome_2\NETWORK\ADMIN\sqlnet.ora

    EZCONNECT adapter used to resolve the alias

    Try to contact (DESCRIPTION = (CONNECT_DATA = (SERVICE_NAME =)) (ADDRESS = (PROTO

    (COL = TCP)(HOST=192.168.1.102) (PORT = 1521)))

    AMT-12547: TNS: lost contact

    Here are more details

    I have added the following in the TNSNAMES file. ORA file

    SCREW =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.1.102)(Port= 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = SCREW)

    )

    )

    I have added the following in the listener

    LISTENER =

    (DESCRIPTION_LIST =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = CIP)(KEY = EXTPROC1521))

    (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.1.102)(PORT = 1521))

    )

    )

    Finally - the firewall is disabled in Linux Machine

    Can you ping the server IP (or nomhote.nomdomaine) address of the client machine?

    What is the error you get when you issue "tnsping SCREWS" of the client machine?

    You have added the following entry to your client's tnsnames.ora file?

    +++++++++++++++++++++

    SCREW =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP) (HOST = 192.168.1.102)(Port= 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = SCREW)

    )

    )

    +++++++++++++++++++++

    Can you reproduce the problem with sqlplus? If so, please see (11.5.10 news: run SQL * Net access for guests (Doc ID 291897.1)).

    If the problem with SQL Developer only, please see (SQLDeveloper receives ' java.sql.SQLRecoverableException: IO Error: Connection reset "and ORA - 609 database alert (Doc ID 1483287.1)).

    Thank you

    Hussein

  • Satellite M70: pauses and is slow when connecting power and sleep mode

    My M70 with win xp is often slow logon, logoff, switch to sleep mode and stop donw. It seems to be a 'pause' for 20 sec or so doing nothing and then suddenly in advance.

    I noticed the same thing on my M70, but there is nothing unusual. By record/stop several processes must be started or stopped, and it takes time. By Eve that last used applications and content of the last transactions must be recorded in the memory live and by flipping down several ongoing process must be stopped. In my opinion in this 20 seconds OS trying to stop running of processes and services.

    As much I know it can't happen in a second or two and it takes a little time. Last week I preinstalled Vista. It runs a little faster but I have no pre-installed apps.

  • get nothing when connect my HP slate to my TV, what am I am I doing wrong? pls help

    I tried to connect my slate hp7 to my TV to watch Netflix from my tablet, but nothing happens. I'm not good with gadgets, I do something wrong? pls help

    steepeljack42 wrote:

    Hi, it's the 7 slate, nothing says also else.it 4601.there the model is 4601 on the species of the brand back.thanks

    Great!

    Now, we know that you have the first iteration of the series 7 of the slate, and as you mentioned that you have the 16 GB model.

    My previous statement remains true - it has no video capabilities.

    WyreNut

  • can not get sound when connected to the tv viahdmi

    I'm trying to find the audio and graphic drivers for my compaq 8510p.

    I tried all of the recommended things

    Hi nrob7208,

    Welcome to the Forums of HP Support!

    I understand that you do not get sound from your HP Compaq 8510p Notebook PC, and you want the graphics and audio drivers. He is a professional computer, and you will get the best results for your question, here, to the HP Enterprise Business Community.

    I hope this helps.

    Thank you and have a great day!

  • Internet connection is too slow when downloading store

    Original title: stor errory that the internet connection is too slow

    I get an error message indicating that the inernet connection is too slow when I try to buy anything at the store. everything works when I'm connected. the store is the only app that gives me this message

    Hi Reg,

    Thanks for choosing Microsoft Community Forums.

    You are facing problems of downloading in Windows store as the process is very slow. I will definitely help you.

    I suggest you follow the instructions in the methods below to fix Apps.

    Method 1: Follow the steps to clear the cache to store:

    1. Press Win + R keyboard
    2. Type of WSRESET. EXE and press ok
    3. Restart the computer

    Method 2: Run the troubleshooter Windows 8 App.

    This utility automatically solves some issues that may prevent your running applications, including the suboptimal screen resolution and security or incorrect account settings:

    http://download.Microsoft.com/download/F/2/4/F24D0C03-4181-4E5B-A23B-5C3A6B5974E3/apps.diagcab

    Method 3:

    What to do if you have problems with a soft

    http://Windows.Microsoft.com/en-GB/Windows-8/what-troubleshoot-problems-app

    Let us know if you have other questions about Windows in the future. We will be happy to help you. We at Microsoft, strive for excellence and provide our customers with the best support

  • I keep getting the "this connection is not approved" in all the sites when I use Firefox on windows laptop 36.0.1 8. How can I overcome this.

    I keep getting the "this connection is not approved" in all the sites when I use Firefox on windows laptop 36.0.1 8. How can I overcome this.

    Hi vijaysampath, please make sure first that the date, time, and time zone are set correctly on your system. If this does not solve the problem (or it is already set correctly), a possible solution depends on different factors:

    • What is the error code indicated under Technical Details on the error page?

    in case the error code is equal to sec_error_unknown_issuer, please try to add an exception on the bottom of the error page to verify the certificate, as shown on the attached screenshot:

    • What information about the issuer of the certificate contain?

    Please take these two pieces of information. Thank you!

  • I get a notification to update when you sign in to firefox. When you try to update you get the message "connection to Server", which can go about 4 hours and never update

    I get a notification to update when you connect to firefox on my mac. When you try to update, I get a message "connect to Server" which can go over 4 hours and never update. It is most annoying. How can I remove that annoying popup which does not in any case all in ensuring that I have updated to the latest version?

    Some Firefox problems can be solved by performing a clean reinstall. This means that you remove Firefox program files, and then reinstall Firefox. Please follow these steps:

    Note: You can print these steps or consult them in another browser.

    1. Download the latest version of Firefox from http://www.mozilla.org office and save the installer to your computer.
    2. Once the download is complete, close all Firefox Windows (click on quit in the file menu or Firefox).
    3. Remove the Firefox installation folder, which is located in one of these locations, by default:
      • Windows:

        • C:\Program Files\Mozilla Firefox
        • C:\Program Files (x 86) \Mozilla Firefox
      • Mac: Delete Firefox in the Applications folder.
      • Linux: If you have installed Firefox with the distribution-based package manager, you must use the same way to uninstall: see Install Firefox on Linux. If you have downloaded and installed the binary package from the Firefox download page, simply remove the folder firefox in your home directory.
    4. Now, go ahead and reinstall Firefox:
      1. Double-click on the downloaded Setup file and go through the steps in the installation wizard.
      2. Once the wizard is completed, click to open Firefox directly after clicking the Finish button.

    Please report back to see if this helped you!

    Thank you.

Maybe you are looking for