Javascript-Applet connection: Help!

Hi,
Below is a JSP page followed by the Applet that it loads. The applet displays an inputDialog in the init() method and another int he setNum(...) method. Init() displays the dialog correctly, but setNum hangs IE completely when it displays de dialog. Where did I go wrong?
Thanks for your help.
Miguel
PS Type a number in the text box and push the "Do" button.<HTML>
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
function send() {
alert("send");
var num = parseInt(document.forms[0].Num.value);
document.applets[0].SetNum(num);
alert("send: num..." + num);
</SCRIPT>
</HEAD>
<BODY>
<FORM>
<BR>Num: <INPUT TYPE=TEXT NAME=Num>
<BR><INPUT TYPE=BUTTON NAME="Do" VALUE="Do" onClick="send()">
</FORM>
<APPLET CODE="test.class" WIDTH = 500 HEIGHT = 250 MYSCRIPT>
</APPLET>
</BODY>
</HTML>
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
public class test extends JApplet {
public void init() {
String str = JOptionPane.showInputDialog("init....");
public void SetNum(int num) {
String str2 = JOptionPane.showInputDialog("SetNum: " + num);

zneroladivad,
Thanks for your reply. My Tomcat console window does not show any output other than the messages during startup. I searched all of my computer but I could not find a file called plugin.trace.
Just in case, the inputDialog actually shows the information I expected. The only trouble is that I can't dismiss it, I can't type data in it and, I can't select any IE options other than close the main window with the X at the top right corner.
I hope this helps,
Miguel

Similar Messages

  • Servlet applet connection [help desperately needed!]

    i'm sick of this now. every time i fix something, something else goes wrong. this time i can't figure out what's happening.
    the problem is that once the input to the servlet from tha applet has been submitted, the servlet throws an IOException:
    java.io.IOException: Server returned HTTP response code: 500 for URL: http://stuweb3.cmp.uea.ac.uk/y0241725/webapp/EgServlet
    all that should happen is that the following code should take the input and tokenize it to see if its either the email address and password being submitted or an sql string to execute.
    public void doPost(HttpServletRequest req, HttpServletResponse resp) throws IOException
            String email = "";
            String password = "";
            String name = "";
            String id = "";
            String SQL = "";
            String output = "";
            // Read in the message from the servlet
            StringBuffer msgBuf = new StringBuffer();
            BufferedReader fromApplet = req.getReader();
            String line;
            while ((line=fromApplet.readLine())!=null)
                if (msgBuf.length()>0) msgBuf.append('\n');
                msgBuf.append(line);
            fromApplet.close();
            String input = msgBuf.toString();
            StringTokenizer st = new StringTokenizer(input);
            if(st.hasMoreTokens())
                // email + password
                if(!st.nextToken().equals("UPDATE"))
                    connType = 1;
                    email = st.nextToken();
                    password = st.nextToken();
                    try
                        // DB connection to get name and id  
                        Class.forName("org.postgresql.Driver");
                        Connection Conn =
                            DriverManager.getConnection(strConnectURL,strUserPass,strUserPass);
                        Statement Stmt = Conn.createStatement();
                        SQL = "SELECT mem_id, name FROM member WHERE em_add ='"+email+"' AND password ='"+password+"';";
                        ResultSet RS = Stmt.executeQuery(SQL);
                        while(RS.next())
                           id = RS.getString(1);
                           name = RS.getString(2);
                        if(id.equals(null))
                            id = "0";
                        if(name.equals(null))
                            name = "not connected";
                        RS.close();
                        Stmt.close();
                        Conn.close();
                    catch(Exception e)
                // SQL update string
                else
                    connType = 2;
                    SQL = input;
                    try
                        // DB connection to update points
                        Class.forName("org.postgresql.Driver");
                        Connection Conn =
                        DriverManager.getConnection(strConnectURL,strUserPass,strUserPass);
                        Statement Stmt = Conn.createStatement();
                        Stmt.executeUpdate(SQL);
                        Stmt.close();
                        Conn.close();
                    catch(Exception e)
            if(connType == 1)
                // Send name and id back to the applet
                resp.setContentType("text/plain");
                PrintWriter toApplet = resp.getWriter();
                // OUTPUT ==============================================================
                toApplet.println("name: "+name+" id: "+id);
                // =====================================================================
                toApplet.close();
            if(connType == 2)
                // Send name and id back to the applet
                resp.setContentType("text/plain");
                PrintWriter toApplet = resp.getWriter();
                // OUTPUT ==============================================================
                toApplet.println(SQL);
                // =====================================================================
                toApplet.close();
    }the input for the servlet is either in the format: email password or is an sql update statement
    Any help is very much appriciated!!! Thank you in advance

    the problem is that once the input to the servlet from tha applet has been
    submitted, the servlet throws an IOException:
    java.io.IOException: Server returned HTTP response code: 500 for URL:
    http://stuweb3.cmp.uea.ac.uk/y0241725/webapp/EgServlet
    Which means the servlet failed, and somewhere on the server it showed the exception that it actually threw, and stack trace. You have to go find that information and diagnose it from there.

  • How would/should you invoke a javascriptable applet from WDA or WDJ?

    The background to this question is here:
    OK - finally a bioinformatic coding problem that may not be so easy ...
    The question is as follows.
    Suppose you have a javascriptable applet - that is, an applet whose behavior can be tailored by passing it certain parameters from javascript.
    What would the best way be to invoke the javascript from WDA or WDJ, assuming that you wanted to "pop" the applet in a separate HTML frame within tne WDA or WDJ application?

    Anton -
    Glad to see you contributing again!
    Well, your original comment about RasMol shamed me into doing some research into molecular viewers callable as applets.
    Here are the latest responses I've gotten from Angel Herraez at Jmol.  (You might find it fun to join the Jmol project at SourceForge and also subscribe to its jmol-users list-server.)
    I told Angel that here's what I want to do:
    > 1) we're in Frame1 of a portal that has two other frames in it: FrameA and
    > FrameB.
    >
    > 2) A query in Frame1 against a certain database brings back two sets of
    > specifications for Jmol, say:
    >
    > a 1hru, A, 123-145
    > b) 2eqa, A, 144-167
    >
    > 3) Via "client-side eventing" at the portal level , the portal passes the
    > parameters in (a) to JMol and Jmol runs in FrameA to display the "partial"
    > structure view requested (with rotate capability, same as in interactive
    > JMol;
    >
    > 4) At the same time , the portal passes the parameters in (b) to JMol and
    > Jmol runs in FrameB to display the "partial" structure view requested (with
    > rotate capability, same as in interactive JMol;
    >
    > Is this scenario currently possible as JMol is currently written?
    He then responded:
    As long as you have already set the means to communicate with the
    Jmol applets in your portal system, I think it is indeed.
    This is what I'd pass to Jmol in FrameA:
    load "1hru.pdb"; display *:A and 123-145;
    and this to jmol in FrameB:
    load "2eqa.pdb"; display *:A and 144-167;
    (you will have to adjust the loading of the pdb file depending on
    where it is located)
    "display" is a better choice than the alternative, "restrict", for
    reason I won't discuss now (but we can separately, if you need it)
    Depending on your ways of inserting Jmol into your frames, there may
    be some details to solve, but on the Jmol scripting side that's all
    needed.
    > Or would I have to settle for the portal simply invoking Jmol in FrameB
    > and again in FrameC and letting the user manipulate settings in the
    > console, as you suggest.
    No, I won't suggest so, you can indeed preprogram what you want.
    I also asked him about capturing the views after rotating in each frame to get the desired view of each structure, and here's his response to that:
    Yes, the views can be captured to the user's computer, in a web page
    (e.g. popup window) from where the user can copy or save them to
    disk, using the browser's capabilities.
    If you need to "capture" to the server, I cannot say *but see below.
    The discussion on how to make snapshots is quite long. There are
    several mesages in the list some time ago and there are several
    places that use this functionality; Bob has at least one, I dont0
    remember exactly where right now, and I have a testpage/tutorial at
    http://biomodel.uah.es/Jmol/export-image/index.htm
    See if you can make it from that, then ask if you need help.
    >From the screenshot, displayed inside the browser, you can save
    directly to your disk in some browsers, or else copy-paste into any
    image editing program (I would not recommend Powerpoint, as the
    quality of saved images is poor). You get a jpeg file directly.
    Now that I think of it, in fact all the trouble was getting the
    server-generated image into the client browser, so there should be a
    way to store the image in the server maybe.
    Anyway, will you be in LasVegas?
    If so, will you be at SDN Community Day?
    If neither, do you have MS shareview ????
    Anyway, I will be talking soon (this weekend) in the WIKI about "alignments" and how I have to use them to get the results at StrucClues (http://strucclue.ornl.gov).
    This is where the really interesting and heavy regex-ing and returned html parsing is going to come in, so I hope you will remain interested long enough to solve the new propblems I am going to pose.  They will be much more related to real scripting problems - I just wanted to get this "view/rotate" issue out of the way, so that I could do an honest job at my SDN Community Day Session.
    Very best regards
    djh

  • Javascript Oracle Connection

    How to make a fuzzy architecture: direct connection from the IE browser to an Oracle database ( needs Oracle net installed on the client )
    Maybe this is helpful for someone...
    Save this in a html page and "run" it in IE:
    <HTML>
    <HEAD>
    <TITLE>Javascript Oracle Connection</TITLE>
    <SCRIPT>
    function testoracle(){
    var conObj = new ActiveXObject('ADODB.Connection');
    var connectionString = "Driver={Microsoft ODBC for Oracle};CONNECTSTRING=ora10;uid=scott;pwd=tiger;"
    //here ora10 is your Oracle alias
    conObj.Open(connectionString);
    var rs = new ActiveXObject("ADODB.Recordset");
    rs.Open("SELECT * FROM dual", conObj);
    while(!rs.eof)
         {       document.write(rs(0));
         document.write('<br>');
              rs.movenext;
    rs.close;
    conObj.close;
    </SCRIPT>
    </HEAD>
    <BODY onload="testoracle();">
    </BODY>
    </HTML>

    Very helpful information. Just want to add the connection that worked for me:
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
    <html>
    <head>
    <title>Connecting to Oracle using JavaScript</title>
    </head>
    <body>
    <script language="JavaScript" type="text/javascript">
    <!--
    var conObj = new ActiveXObject('ADODB.Connection');
    var connectionString = "Provider=OraOLEDB.Oracle;Data Source=(DESCRIPTION=(CID=GTU_APP)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=TCP)(HOST=your_ip_address)(PORT=your_port)))(CONNECT_DATA=(SID=your_sid)(SERVER=DEDICATED)));User Id=your_uid;Password=your_pwd;"
    conObj.Open(connectionString);
    var rs = new ActiveXObject("ADODB.Recordset");
    sql = "SELECT SYSDATE FROM DUAL"
    rs.Open(sql, conObj);
    alert(rs(0));
    rs.close;
    conObj.close;
    //-->
    </script>
    </body>
    </html>
    Hope this helps.
    Jhon Castro

  • Applet connecting to MS SQL Database (Remote DataSourse)

    Hello,
    I started by building my interface to a Database within an Application. I am not to the point where I am ready to make it an applet but want to get some tips when the time comes very soon.
    First of all what security issues do I have to deal with to let the applet connect to the database?
    Second I currently created a local Datasource via ODBC call JavaDB and linked it to my MS SQL Database.
    QUESTION
    How do I link to the with a remote Datasource so that the local machine does not have to worry about the datasource.
    Lastly can I use the "sun.jdbc.odbc.JdbcOdbcDriver" in an applet. I sure hope so...
    Then the part of my code that connected to the database was this:
    private void initDB(){
    String url = "jdbc:ODBC:JavaDB";
    Connection con;
    String query = "select * from COFFEES";
    Statement stmt;
    try {
    //Class.forName("myDriver.ClassName");
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    } catch(java.lang.ClassNotFoundException e) {
    System.err.print("ClassNotFoundException: ");
    System.err.println(e.getMessage());
    try {
    con = DriverManager.getConnection(url, DBADM, DBPWD);
    stmt = con.createStatement();                                   
    ResultSet rs = stmt.executeQuery(query);
    ResultSetMetaData rsmd = rs.getMetaData();
    System.out.println("");
    int numberOfColumns = rsmd.getColumnCount();
    for (int i = 1; i <= numberOfColumns; i++) {
         if (i > 1) System.out.print(", ");
         String columnName = rsmd.getColumnName(i);
         System.out.print(columnName);
    System.out.println("");
    while (rs.next()) {
         for (int i = 1; i <= numberOfColumns; i++) {
         if (i > 1) System.out.print(", ");
         String columnValue = rs.getString(i);
         System.out.print(columnValue);
         System.out.println("");     
    stmt.close();
    con.close();
    } catch(SQLException ex) {
    System.err.print("SQLException: ");
    System.err.println(ex.getMessage());
    Thanks,
    Kenny

    Kenny,
    As no one has replied, I've managed to implement a database that uses applets.
    Firstly, one needs to obtain a JSP server (apache tomcat is free and can be configured into a IIS 4 server).
    Secondly, write all the DB connection stuff within a jsp page (ex.) "builders.jsp"
    <%@ page import="java.sql.*" %>
    <%!
    protected String driver="sun.jdbc.odbc.JdbcOdbcDriver";
    protected String url="jdbc:odbc:PhotoDBase";
    protected String userid=null;
    protected String passwd=null;
    %>
    <html><head><title>Builder Example</title></head><body>
    <%!
    public static String GET_BUILDER_QUERY =
    "SELECT * FROM BuilderInfo WHERE BuilderID =?";
    %>
    <%
    String bID = "24"; //normally this would use
    //request.Parameter("bID");
    //in order to pull up a specific
    //record. In this test case it is
    //hard coded to pull only builder #24
    %>
    <%
    Class.forName(driver);
    Connection conn = DriverManager.getConnection(url, userid, passwd);
    PreparedStatement stmt = conn.prepareStatement(GET_BUILDER_QUERY);
    stmt.setString(1, bID);
    ResultSet rs = stmt.executeQuery();
    rs.next();
         String buildID = rs.getString("BuilderID");
         String bName = rs.getString("BuilderName");
         String bAddress = rs.getString("Address");
         String bCity = rs.getString("City");
         String bState = rs.getString("State");
         String bZip = rs.getString("Zip");
         String bCName = rs.getString("ContactName");
         String bCLast = rs.getString("ContactLast");
         String bPhone = rs.getString("Phone");
         String bFax = rs.getString("Fax");
         String bMobile = rs.getString("Pager/Cell");
    rs.close();
    stmt.close();
    if (bName == null)
         bName = "No Builder";
    if (bAddress == null)
         bAddress = "N/A";
    if (bCity == null)
         bCity = "N/A";
    if (bState == null)
         bState = "N/A";
    if (bZip == null)
         bZip = "N/A";
    if (bCName == null)
    bCName = "N/A";
    if (bCLast == null)
         bCLast = "N/A";
    if (bPhone == null)
         bPhone = "N/A";
    if (bFax == null)
    bFax = "N/A";
    if (bMobile == null)
    bMobile = "N/A";
    %>
    <p>Builder: <%= bName%> BuilderID #: <%= buildID%>
    <br>Contact: <%= bCName%> <%= bCLast%>
    <br>Address: <%= bAddress%>
    <br><%= bCity%>, <%= bState%> <%= bZip%>
    <br>Phone: <%= bPhone%>
    <br>Fax: <%= bFax%>
    <br>Mobile: <%= bMobile%>
    <p><applet code="Build.class" width="600" height="300">
    <param name=buildID value=<%= buildID%>>
    <param name=bName value="<%= bName%>">
    <param name=bAddress value="<%= bAddress%>">
    <param name=bCity value="<%= bCity%>">
    <param name=bState value="<%= bState%>">
    <param name=bZip value="<%= bZip%>">
    <param name=bCName value="<%= bCName%>">
    <param name=bCLast value="<%= bCLast%>">
    <param name=bPhone value="<%= bPhone%>">
    <param name=bFax value="<%= bFax%>">
    <param name=bMobile value="<%= bMobile%>">
    </applet>
    </body>
    </html>
    The jsp gets the data from the DB based on the parameter bID which would be passed to it via a search or input page with various error checking included.
    The applet then recieves its data via parameters. (Build.class has been shortened here to show you the meat and potatoes of the whole deal)
    //<applet code="Build.class" width="600" height="300"></applet>
    import java.awt.*;
    import java.awt.Event;
    import java.applet.Applet;
    import java.io.*;
    public class Build extends java.applet.Applet {
    protected Panel search ;
    protected TextField Nametxt ;
    protected TextField Loctxt ;
    protected TextField Citytxt ;
    protected TextField Statetxt ;
    protected TextField Ziptxt ;
    protected TextField CNametxt ;
    protected TextField CLasttxt ;
    protected TextField Phonetxt ;
    protected TextField Faxtxt ;
    protected TextField Celltxt ;
    public Build(){
    super();
    search = new Panel();
    Nametxt = new TextField();
    Loctxt = new TextField();
    Citytxt = new TextField();
    Statetxt = new TextField();
    Ziptxt = new TextField();
    CNametxt = new TextField();
    CLasttxt = new TextField();
    Phonetxt = new TextField();
    Faxtxt = new TextField();
    Celltxt = new TextField();}
    public void init(){
         BorderLayout bl = new BorderLayout();
         setLayout(bl);
         add(search, "Center");
         setBackground(Color.white);
         String buildID = getParameter("buildID");
         String bName = getParameter("bName");
         String bAddress = getParameter("bAddress");
         String bCity = getParameter("bCity");
         String bState = getParameter("bState");
         String bZip = getParameter("bZip");
         String bCName = getParameter("bCName");
         String bCLast = getParameter("bCLast");
         String bPhone = getParameter("bPhone");
         String bFax = getParameter("bFax");
         String bMobile = getParameter("bMobile");
    Nametxt.setText(bName);
    Loctxt.setText(bAddress);
    Citytxt.setText(bCity);
    Statetxt.setText(bState);
    Ziptxt.setText(bZip);
    CNametxt.setText(bCName);
    CLasttxt.setText(bCLast);
    Phonetxt.setText(bPhone);
    Faxtxt.setText(bFax);
    Celltxt.setText(bMobile);
    Hope this will aid you in yours and anyone elses endevours.
    James <[email protected]>

  • Inputstream.java.io.IOException  ,  applet connection

    I'm working on a problem with the failure of a java
    applet connection to a java servlet.
    The connection is via the internet, and over port 80.
    the java console loggin reports the following
    There was an attempt to redirect a url request,
    but the attempt was not allowed by the client. IOException caught in run
    could some one let me know what the URL re-direction is here,
    much apreciated,
    slainte

    I have often found this problem with inexperts java programmers.
    I could tell you better luck next time, but today I feel generous, so I will answer.
    There is a redirect domain problem. When you try to connect the site you receive an ICMP error message, which is the responsable of the error message you can see. That occurs because the URL connects to another URL different (surely because its original URL has changed to another) and you only have to discover the new URL, and try to connect to it.

  • Hi, my iphone 4s is saying im not connected to the internet, my wifi is on and ive tried switching it off and on and nothing, still cant connect. help!

    hi, my iphone 4s is saying im not connected to the internet, my wifi is on and ive tried switching it off and on and nothing, still cant connect. help! it was working perfectly fine earlier today.

    Try a reset by pressing the home and sleep buttons until you see the Apple logo, ignoring the slider. Takes about 5-15 secs of button holding and you won't lose any data or settings.

  • HT5538 My facetime and imessage aint working now, when i try to turn it on, it says waiting for activation then when it finishes it says something to do with a network connection. help me!!!

    My facetime and imessage aint working now, when i try to turn it on, it says waiting for activation then when it finishes it says something to do with a network connection. help me!!!

    iOS: Troubleshooting FaceTime and iMessage activation

  • This morning I was able to access iTunes Store on my computer and iPod 5G - and now I cant access the store at all - something about my network connections - help? ive restarted rebooted

    This morning I was able to access iTunes Store on my computer and iPod 5G - and now I cant access the store at all - something about my network connections - help? ive restarted rebooted

    Thank you so much for replying. But resetting my apple I'd Password seems to have done the trick. I am able to download apps :). Got me worried I even uninstalled kaspersky 2012 :( got to reinstall back

  • All adobe products that I have will not connect help when I seek online help?

    all adobe products that I have will not connect help when I seek online help?

    Waht version of the software are you trying to use? And the error seems pretty self-explanatory...

  • Applet connected to oracle

    hi everybody,
    i've faced with a small problem while dealing with my homework.
    i have a simple applet connected to oracle. if i open it with applet viewer it works correctly but when i put the applet in a html file
    i'm getting following error:
    java.security.AccessControlException: access denied (java.util.PropertyPermission oracle.jserver.version read)
    at java.security.AccessControlContext.checkPermission(Unknown Source)
    at java.security.AccessController.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkPropertyAccess(Unknown Source)
    at java.lang.System.getProperty(Unknown Source)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(Oracle Driver.java)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at deneme.Connect(deneme.java:163)
    at deneme.<init>(deneme.java:41)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    java.security.AccessControlException: access denied (java.util.PropertyPermission oracle.jserver.version read)
    at java.security.AccessControlContext.checkPermission(Unknown Source)
    at java.security.AccessController.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkPermission(Unknown Source)
    at java.lang.SecurityManager.checkPropertyAccess(Unknown Source)
    at java.lang.System.getProperty(Unknown Source)
    at oracle.jdbc.driver.OracleDriver.getConnectionInstance(Oracle Driver.java)
    at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at java.sql.DriverManager.getConnection(Unknown Source)
    at deneme.Connect(deneme.java:163)
    at deneme.<init>(deneme.java:41)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Nativ e Method)
    at sun.reflect.NativeConstructorAccessorImpl.newInstance(Unknow n Source)
    at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(Un known Source)
    at java.lang.reflect.Constructor.newInstance(Unknown Source)
    at java.lang.Class.newInstance0(Unknown Source)
    at java.lang.Class.newInstance(Unknown Source)
    at sun.applet.AppletPanel.createApplet(Unknown Source)
    at sun.plugin.AppletViewer.createApplet(Unknown Source)
    at sun.applet.AppletPanel.runLoader(Unknown Source)
    at sun.applet.AppletPanel.run(Unknown Source)
    at java.lang.Thread.run(Unknown Source)
    what's the problem? thanks in advance

    The simple answer is the applet security sandbox enforced by the browser. You should look on the Sun Java website for details on how to work with applets security.
    http://java.sun.com/
    Search on keywords applet security
    In a nutshell an applet can't open a socket to a server from other than that which it was served. There are (many) other security restrictions that you probably want to read about.
    The applet viewer doesn't enforce the sandbox security which it why it works well for you there.

  • My ipad says it has an internet connection but when i try to access safari it says it is unable to as there is no internet connection, help!

    My ipad says it has an internet connection but when i try to access safari it says it is unable to as there is no internet connection, help!

    Tap Settings / General / Reset / Reset Network Settings.
    Restart your IPad. Press and hold the On/Off Sleep/Wake button until the red slider appears. Slide your finger across the slider to turn off iPhone. To turn iPhone back on, press and hold the On/Off Sleep/Wake button until the Apple logo appears.
    If that doesn't help, try here >   Apple - Support - iPad - Wi-Fi

  • Javascript[9970]: Connection rejected by server.

    Dec  7 07:20:38 networkvision Javascript[9970]: Connection rejected by server. Reason : [ Server.Reject ] : Virtual host my domain is not available.
    i cant logint to the admin console, 
    centos 6.4
    32 gb ram
    zpanel

    Darius, I think you'll get a better answer in the Flash Media Live Encoder forum:
    http://forums.adobe.com/community/flash/flash_media_live_encoder?view=discussions

  • Can a applet connect to another applet?

    can a applet connect to another applet by using socket only? i mean without using serlvet...
    what's that--> "exception: com.ms.security: SecurityExceptionEx" ??
    kill me please.. >_<

    i mean in different machine.. like i have an applet in machine A trying to get a connection with an applet in machine B...

  • My iphone is not syching at itunes. Everytime it says your iphone as been diconnected whenever I try to synch it, while logo on phone and itunes says it is still connected. help I have this problem with both my Iphone4 and Iphone5 with backup as well

    My iPhone is not synching at iTunes. Every time it says your iPhone as been disconnected whenever I try to synch it, while logo on phone and iTunes says it is still connected. help I have this problem with both my Iphone4 and Iphone5. This problem is with the back up as well.

    Hi singhgurwinder79,
    The article linked below provides details that can help troubleshoot this error and get your iPhone to sync correctly with iTunes.
    iTunes: Resolve USB-related alerts
    http://support.apple.com/en-us/HT203843
    Regards,
    Allen

Maybe you are looking for