Applet fails to call Javascript methods

I'm trying to implement round-trip javascript to Java to Javascript using LiveConnect, and having a lot of trouble in Firefox. It works perfectly in IE 6. In Firefox, I can successfully call a method of an applet, and get a return value. I have not been able to get the applet to call a Javascript method. I have tried using both the call and eval methods of the JSObject with no luck. Below is my code. Any suggestions would be appreciated.
Thanks.
import java.applet.Applet;
import java.awt.*;
import netscape.javascript.*;
public class test extends Applet {
     String message="Hello Universe!";
     JSObject proxy;
     public void paint(Graphics g) {
          g.drawString(message, 20, 20);
     // pass in ref to JS object on which to call method
     public Boolean handshake(JSObject jso) {
          proxy = jso;
          // try just calling straight eval
          proxy.eval("alert('eval')");
          // set up args object to pass to js method
          Object[] args = new Object[1];
          args[0] = "handshake";
          // call method of js object 2 different ways
          proxy.call("callback", args);
          proxy.eval("o.callback('eval')");
          return true;
     // update java display to show JS to J communication
     public void setMessage(String message) {
          this.message = message;
          repaint();
<html>
<head>
     <script>
          // js object to receive calls from applet
          function obj() {};
          obj.prototype = new Object();
          obj.prototype.callback = function(arg) {
               alert("callback: " + arg);
          function doit() {
               var a = gebi("myApplet");
               a.setMessage("Goodbye World!");
               o = new obj();
               // test that js method works (it does)
               o.callback("local");
               // call applet method which should call back to js method
               var there = a.handshake(o);
               // show return value from applet method call
               alert("there: " + there);
          window.onload = doit;
     </script>
</head>
<body>
     <applet
          id="myApplet"
          code="test"
          width="400"
          height="50"
          mayscript="mayscript">
     </applet>
</body>
</html>Results:
In both IE and Firefox, the string shown by the applet switches to "goodbye world", the local call to the callback function works, and the call to handshake returns true.
That's all that works in Firefox.
In IE, the various calls to the callback method, and to the alert method of the Javascript all work.
The results are the same whether I run the HTML page as a local file, or through IIS.
I have also noticed that Firefox seems to hang up, crash, and just have a lot of problems dealing with this code.
Finally, I am running all of this on XP professional SP1 with J2SE 1.5.0_04-b05 and Firefox 1.07

Hi,
Thanks for all your replies. Does this work on Java 5 too? Could you please share the complete code snippet which makes it work? I tried working on yours but no success.
Regards,
Alok

Similar Messages

  • Can a applet to invoke a JavaScript method?

    I have a javascript method like:
    <script language="JavaScript">
    function openURL(strUrl) {
    window.open(strUrl, "statusbar=no, scrollbar=no");
    </script>
    Can a applet to invoke the JavaScript method above sending "strUrl" parameter?

    Yes.
    http://java.sun.com/j2se/1.4.1/docs/guide/plugin/developer_guide/java_js.html

  • Calling javascript method from java

    Hi this is sri,
    I have one doubt on Java Applets "how to call the javascript method from java Applet".Can u give me the complete sample code for one program(both java applet file and html file also)because i can easily understand the programming flow.
    Thanks ,
    Srilekha.

    It's an extremely important skill to learn how to search the web. Not only will it increase your research and development talents, it will also save you from asking questions that have already been answered numerous times before. By doing a little research before you ask a question, you'll show that you're willing to work and learn without needing to have your hand held the entire time; a quality that is seemingly rare but much appreciated by the volunteers who are willing to help you.
    If you've done the research, found nothing useful, and decide to post your question, it's a great idea to tell us that you've already searched (and what methodologies you used to do your research). That way, we don't refer you back to something you've already seen.
    To get you started, here's a link...
    http://www.google.com/search?q=call+java+from+javascript

  • How call javascript method from parent window to iframe

    hi....
    i need to call javascript a method which located in iframe..
    in my java script file i used like this.
    window.frames[0].getHtml();
    it will working in IE but mozilla is not supporting
    pls help me..
    thanks
    Edited by: fsfsfsdfs on Nov 7, 2008 1:02 AM

    Sorry, Javascript is not Java and for sure not JSF.
    Repost the question at a forum devoted to Javascript.
    There are ones at [webdeveloper.com|http://www.webdeveloper.com] and [dynamicdrive.com|http://www.dynamicdrive.com].
    I can give you at most one hint: [DOM reference|https://developer.mozilla.org/en/DOM].
    Good luck.

  • Call JavaScript method

    Is it somehow possible to call a JavaScript method on a page that I have recorded? I've been looking through the VBA objects but can't see anything appropriate.
    Anyone get any ideas?
    Thanks,
    Phil

    Here is an example, let me know if it needs explanation.
    Private Sub RSWVBAPage_afterPlay()
    Dim doc As HTMLDocument
    Set doc = RSWApp.om.GetTopDocument
    doc.parentWindow.execScript "MyJavascriptFunction();", "javascript"
    Set doc = Nothing
    End Sub

  • Double Page Load on call javascript method

    I have implemented a tree component(which I have the folders). When I clic on the tree I have to expand or close it, so I have implemented a javascript method on clic:
    <af:tree value="#{bindings.OpcionesPadreView1.treeModel}" var="node"
    rowSelection="single" id="t1"
    partialTriggers=":::cbNuevCpta :::dlCfr"
    selectionListener="#{pageFlowScope.GestionDocumentos.buscarDocumentos_SelectionListener}">
    <af:clientListener method="expandTree" type="click"/>
    <f:facet name="nodeStamp">
    <af:outputText value="#{node.Gesdopcach}" id="otOpc"/>
    </f:facet>
    </af:tree>
    <af:table value="#{bindings.ArchivosView.collectionModel}" var="row"
    rows="#{bindings.ArchivosView.rangeSize}"
    rowBandingInterval="0" id="tArch" shortDesc="Documentos"
    partialTriggers=":::dlCfr :::cbOk ::t1"
    disableColumnReordering="true"
    binding="#{pageFlowScope.GestionDocumentos.tarch}">
    </af:table
    I also need a selectionListener on Java, because When I clic on the tree( that are folders), I have to bring the documents according to the folder selected into the table, so I have implemented this:
    public void buscarDocumentos_SelectionListener(SelectionEvent selectionEvent) {
    String codigoOpcion = null;
    RichTree tree = (RichTree)selectionEvent.getSource();
    RowKeySet rowKeySet = selectionEvent.getAddedSet();
    Iterator rksIterator = rowKeySet.iterator();
    while (rksIterator.hasNext()) {
    List key = (List)rksIterator.next();
    CollectionModel collectionModel = (CollectionModel)tree.getValue();
    JUCtrlHierBinding treeBinding = (JUCtrlHierBinding)collectionModel.getWrappedData();
    JUCtrlHierNodeBinding nodeBinding = treeBinding.findNodeByKeyPath(key);
    Object[] atributeValues = nodeBinding.getRow().getAttributeValues();
    codigoOpcion = (String)atributeValues[0];
    Map params = new HashMap();
    params.put("PV_CODREF",codigoOpcion);
    params.put("PV_CODROL", LoginBean.getUser().getRolActual());
    Map permisos = new HashMap();
    permisos.put("PV_CODOPC",codigoOpcion);
    permisos.put("PV_CODROL",LoginBean.getUser().getRolActual());
    executeOperationBinding(EXECUTE_FILES, params);
    executeOperationBinding(EXECUTE_PERMISOS, permisos);
    The problem I have is that when I clic on the folder in the tree, the table is fetching the documents twice(like a doble page load). This doesn't happen when my clientListener is of type "selection", but with "selection" I have problems to close the tree.

    Here is an example, let me know if it needs explanation.
    Private Sub RSWVBAPage_afterPlay()
    Dim doc As HTMLDocument
    Set doc = RSWApp.om.GetTopDocument
    doc.parentWindow.execScript "MyJavascriptFunction();", "javascript"
    Set doc = Nothing
    End Sub

  • Call Javascript methods from Java methods

    Dear All,
    I have a requirement where I need to invoke Javascript methods from a Java file located in the same machine. Are there any possible solutions for this?
    Regards,
    Alok

    Hi,
    Thanks for all your replies. Does this work on Java 5 too? Could you please share the complete code snippet which makes it work? I tried working on yours but no success.
    Regards,
    Alok

  • Call JavaScript-Method from Command in NW04s WebApplication

    Hi,
    I would like to use a command to call a JavaScipt-method. Is that possible?
    I want to use a JavaScript generated from the following command as an ACTION_BEFORE_RENDERING-event.
    <bi:TEMPLATE_PARAMETERS name="TEMPLATE_PARAMETERS" >
      <bi:WEB_TEMPLATE_ACTIONS type="COMPOSITE" >
        <bi:ACTION_BEFORE_RENDERING type="COMPOSITE" >
          <bi:INSTRUCTION >
            <bi:SET_ITEM_PARAMETERS >
              <bi:cmd_item_parameters type="TEMPLATE_INCLUDE_ITEM" >
                <bi:TEMPLATE value="AIS_ANZEIGE_BETRIEB_NW_04" text="Stammdatenanzeige für Betrieb NW 04" />
              </bi:cmd_item_parameters>
              <bi:TARGET_ITEM_REF value="TEMPLATE_INCLUDE_ITEM_2" />
            </bi:SET_ITEM_PARAMETERS>
            <bi:SET_SELECTION_STATE_SIMPLE >
              <bi:TARGET_DATA_PROVIDER_REF_LIST type="ORDEREDLIST" >
                <bi:TARGET_DATA_PROVIDER_REF index="1" value="DP_2" />
              </bi:TARGET_DATA_PROVIDER_REF_LIST>
              <bi:CHARACTERISTIC value="AISIS003___F00069" text="" />
              <bi:RANGE_SELECTION_OPERATOR type="CHOICE" value="EQUAL_SELECTION" >
                <bi:EQUAL_SELECTION type="CHOICE" value="MEMBER_NAME" >
                  <bi:MEMBER_NAME value="17630775" />
                </bi:EQUAL_SELECTION>
              </bi:RANGE_SELECTION_OPERATOR>
            </bi:SET_SELECTION_STATE_SIMPLE>
          </bi:INSTRUCTION>
        </bi:ACTION_BEFORE_RENDERING>
      </bi:WEB_TEMPLATE_ACTIONS>
    </bi:TEMPLATE_PARAMETERS>
    I want to assign a new WebTemplate to an included WebTemplate and also assign a filter value to the new loaded DataProvider.
    It works as a command, but I only want the new WebTemplate to be loaded, if the corresponding filter is set. Otherwise I want to load a different WebTemplate. I think I have to use JavaScript here, but I don't know how to link that to the ACTION_BEFORE_RENDERING-event.
    Any ideas?
    Thanks in advance.
    Denis

    Sorry, Javascript is not Java and for sure not JSF.
    Repost the question at a forum devoted to Javascript.
    There are ones at [webdeveloper.com|http://www.webdeveloper.com] and [dynamicdrive.com|http://www.dynamicdrive.com].
    I can give you at most one hint: [DOM reference|https://developer.mozilla.org/en/DOM].
    Good luck.

  • Call JavaScript method in FXML from java controller

    I have fxml like
       <fx:root type="javafx.scene.Group" xmlns:fx="http://javafx.com/fxml">
        <fx:script>
            function applyState(oldState, newState)
        </fx:script>   
        ....and controller to it.
    The idea is to move some view logic to fxml file.
    So, when I need to change some view state, I want to call applyState from java code.
    The question is how to do it.
    What I have found:
    We can get
    fxmlLoader.getNamespace().get("applyState")and receive sun.org.mozilla.javascript.internal.InterpretedFunction.
    NetBeans see this class. But while building the project i have an error
    error: package sun.org.mozilla.javascript.internal does not exist
    But this class really exists in rt.jar in JRE.
    After that I have stopped digging into this.
    I suspect that using internal API is not a good idea to call this InterpretedFunction.
    Can somebody suggest how can I make such an invocation?
    Edited by: 940811 on Nov 19, 2012 11:21 PM

    Until JavaFX doesn't expose the ScriptEngine instance of FXMLLoader, there's no way to communicate (Java <-> Javascript) with the <fx:script>.
    But, if you want to rely on a hack, you can do this:
        private ScriptEngine extractScriptEngine(FXMLLoader loader) {
            try {
                Field fse = loader.getClass().getDeclaredField("scriptEngine");
                fse.setAccessible(true);
                return (ScriptEngine) fse.get(loader);
            } catch (IllegalAccessException | NoSuchFieldException | SecurityException ex) {
                Logger.getLogger(BrowserFXController.class.getName()).log(Level.SEVERE, null, ex);
            return null;
        }

  • Install applet failed when calling (RSAPrivateCrtKey)KeyBuilder.buildKey()

    Hi readers,
    I am newbie to Java card applet development. I have written a applet to calculate RSA signature with the fixed RSA CRT components and data sent by CAD.
    When I run the applet using Emulator, I get 0x64 44:
    CLA: 00, INS: a4, P1: 04, P2: 00, Lc: 09, a0, 00, 00, 00, 62, 03, 01, 08, 01, Le: 00, SW1: 90, SW2: 00
    CLA: 80, INS: b8, P1: 00, P2: 00, Lc: 0b, 09, a0, 00, 00, 04, e0, 00, 01, 00, 01, 00, Le: 00, SW1: 64, SW2: 44
    I debugged applet code and I see that below line is the issue.
    privateCrtKey = (RSAPrivateCrtKey)KeyBuilder.buildKey(KeyBuilder.TYPE_RSA_CRT_PRIVATE, KeyBuilder.LENGTH_RSA_2048, false);
    asymSignature = Signature.getInstance(Signature.ALG_RSA_SHA_PKCS1, false);
    please help me to sort out this issue. thanks.

    From ISO 7816-4, 8.6.1
    SW1-SW2 set to '64XX' with the value of 'XX' from '02' to '80' means that the card aborted the command; a possible completion of the command is conditioned by the recovery of a query of 'XX' bytes, for which the card possibly expects a response. (..)In other words, with SW=0x6444, and assuming the standard conventions are used, the card is probably telling that it wants 0x44 bytes in addition of (or is it rather than) the 0x0B it got, in some variant of the original or some additional command.
    Without the source of the applet, or even knowledge of if it is installed or selected, we can't tell much more, except that there is no discernible relation with the lines of source quoted.
    It could also help to know how the idea of sending the C-APDU 80b800000b 09a0000004e00001000100 00 came in the first place.

  • Problem in Signed Applet while communicating with Javascript

    Hi,
    I’m facing a problem with applet. Applet calls JavaScript methods and vice versa. Applet works fine with JRE 5 to JRE 6 up to build no 1.6.0._7 but it fails with build no 1.6.0_10.
    The problem description is given below:
    After embedding applet in my HTML page using <OBJECT> tag, I’ve to check either any problem during applet’s execution, I want to get the error reason by calling my defined method getErrorReason() in applet that returns the error reason, I call the getErrorReason() against the applet’s object in JavaScript immediately after embed applet code in my HTML page, a JavaScript errors occurs and my applet fails to perform its execution.
    JavaScript error: Object does not support this property.
    The error points to the HTML page area where I’m calling getErrorReason() against applet object.
    The above JavaScript error occurs after the successful completion of Applet’s init(). I’m facing this problem only in JRE 6 build 1.6.0_10-b33.
    Please suggest me any solution.
    Thanks in advance.
    Regards,
    Israr Ahmed

    We are using the HttpURLConnection. If I have to go down the stack to the Socket object, well I guess I have to re event the wheel so to speak.
    I have tried both Connection: close and Connection: Keep-Alive. Not at the same time :) but in different intrim releases of test applet.
    // Here is the current incarnation of how I am trying to connect.
    URL url = new URL(sURL);
    trace("attempting to connect to URL: " + sURL, DEBUG);
    connection = (HttpURLConnection)url.openConnection();
    connection.setDoOutput(true);
    connection.setDoInput( true );
    connection.setRequestMethod("POST");
    connection.setUseCaches( false );
    connection.setInstanceFollowRedirects( true );
    connection.setAllowUserInteraction( false );
    connection.setRequestProperty("Pragma", "no-cache");
    connection.setRequestProperty("Expires", "-1");
    connection.setRequestProperty("Connection", "Keep-Alive");
    connection.connect();
    // Now I write our form POST data and flush and close the output stream.
    BufferedOutputStream bos = new BufferedOutputStream(connection.getOutputStream());
    bos.write(sForm.getBytes());
              bos.flush();
    bos.close();
    // Get the input and read
    bis = new BufferedInputStream(connection.getInputStream());
    trace( "reading input stream for action: " + sAction );
    byte[] responseBuffer = new byte[4096];
    int bytesRead = 0;
    while( (bytesRead = bis.read( responseBuffer, 0, responseBuffer.length )) != -1 )
    sbResponse.append( new String( responseBuffer, 0, bytesRead ));
    totalBytesRead += bytesRead;
    catch (Throwable e)
    e.printStackTrace();
    try
    m_connections.remove( sAction );
    connection.disconnect();
    catch ( Throwable t ) {}
    finally
    if ( bis != null )
    try
    bis.close();
    catch( Throwable t ) {}
    With the above code in place what I am now seeing, as opposed to a premature EOF exception, is blocking behavior on the read.

  • Problem in Applet while communicating with Javascript

    Hi,
    I’m facing a problem with applet. Applet calls JavaScript methods and vice versa. Applet works fine with JRE 5 to JRE 6 up to build no 1.6.0._7 but it fails with build no 1.6.0_10.
    The problem description is given below:
    After embedding applet in my HTML page using <OBJECT> tag, I’ve to check either any problem during applet’s execution, I want to get the error reason by calling my defined method getErrorReason() in applet that returns the error reason, I call the getErrorReason() against the applet’s object in JavaScript immediately after embed applet code in my HTML page, a JavaScript errors occurs and my applet fails to perform its execution.
    JavaScript error: Object does not support this property.
    The error points to the HTML page area where I’m calling getErrorReason() against applet object.
    The above JavaScript error occurs after the successful completion of Applet’s init(). I’m facing this problem only in JRE 6 build 1.6.0_10-b33.
    Please suggest me any solution.
    Thanks in advance.
    Regards,
    Israr Ahmed

    Hi Bharath,
    Even i got similar error and i tried deleting the below(Attaching the stack trace is always better way.)
    1) delete the folder ‘workspace’ or rename(including all files and subfolders) in the path D:\Documents and Settings\lzcr8r\Documents\SAP\workspace
    2) delete all .dtr/.dtc/.metadata directories in your personal folder (e.g. C:\Documents and Settings\lzcr8r).
    Restart the IDE once you are done with the above steps.
    Second part to increase the virtual mem
    1) RtClick on the Shortcut of NWDS -->Properties and in the Target put the below
    "C:\Program Files\SAP\IDE\IDE70\eclipse\SapIde.exe" -vmargs -Xms512m -Xmx1536m  "C:\j2sdk1.4.2_08\bin\javaw.exe"
    2) You can also try  Creating a bat file with the complete path of your IDE and start your ide from the bat
       content in the bat eg: "C:\Program Files\netbeans-4.1\bin\netbeans.exe" -vmargs -Xms512m -Xmx1536m
    Here -Xms512m is the min JVM size and -Xmx1024m is the max JVM size.
    You can place this batch file anywhere and double click the batch file.
    It will automatically start your IDE
    3) if you are using Tomcat you can try creating an env variable and assign Value
    Variable Name:  CATALINA_OPTS
    Variable Value:  -server -Xmx800m
    please award points if usefull.
    Regards
    Souza
    Edited by: Souza Aluri on Apr 9, 2008 9:46 AM

  • Embedded .swf's calling javascript from air container

    1) I have an html/ajax air app version 1.5.1
    2) This air app embeds .swf files from an external source / web server & plays the embdded .swf inside air.
    3) The embedded .swf file has a button with an onClick event
    function onClick(event:MouseEvent):void {
    ExternalInterface.call("someJavascriptMethod()" );
    4) The javascript method to be called is already parsed inside the containing Air app and is waiting to be triggered.
    5) When the onClick is triggered, the following error is thrown.
    Error: Error #2067: The ExternalInterface is not available in this container. ExternalInterface requires Internet Explorer ActiveX,
    Firefox, Mozilla 1.7.5 and greater, or other browsers that support NPRuntime.
    at Error$/throwError()
    at flash.external::ExternalInterface$/call()
    at stress_fla::MainTimeline/onClick()
    6) On investigation I found on your livedoc's website that Air does not support the ExternalInterface.call method.
    http://livedocs.adobe.com/labs/air/1/aslr/flash/external/ExternalInterface.html
    Look for Note: Adobe AIR currently does not support the ExternalInterface class.
    7) Does anyone here know how I can get an embbeded .swf file to call javascript methods in the containing air application? I have had a look at the getUrl method but this is now longer supported & even the FS command but still to no avail. I may have a work around by inserting a DOM element over the top of the embedded .swf but this is not an elegant solution & want the .swf to talk directly to the air app container.
    All help & comments welcome
    Thanks
    Kyle
    Additionally I have found
    http://help.adobe.com/en_US/AIR/1.5/devappsflash/WS5b3ccc516d4fbf351e63e3d118666ade46-7ed4 .html
    Using the Html Loader so that Actionscript can call/manipulate the dom objects. At first I was whopee but then I tried the examples listed in the help. The HTMLLoader class is only available in Air. When trying to use import flash.html.HTMLLoader; Flash C4 complains that the Definition cannot be found on compile time & therefore does not export my movie correctly. Has anyone else had this problem or have a solution??
    More additions:
    The reason the htmlLoader class was not compiling was due to the source action script provided being ActionScript 2.0 - the htmlLoader class is a 3.0 library.
    However, after more investigation I have found the current structure.
    The air app has an html base/root doc. On periodic javascript events - .swf files are downloaded via
    videos = new air.Loader();
    netStream     = new air.URLRequest(path + file);
    videos.load(netStream);
    So now I have a html container in my air app that creates a new air.Loader which downloads the external .swf file in which I want an onClick event in the action Script of the downloaded .swf file to call a Javascript method of the parent air container. Simple yea?
    Or am I making life to hard for myself? Have been looking at the security snadboxes but I don't see how I can get the .swf file to talk nicely with the outer air container. Please help if able.
    Thanks
    Kyle

    Hi Kenneth,
    Your explanation makes sense.
    I have a big JavaScript file full of special mathematical functions written by a mathematician who only knows how to program in Javascript.
    I need to call the Javascript functions from within an ActionScript library, which obviously has no UI, and thus HTML and/or HTMLLoader are not an option.
    Any ideas?
    TIA,
    mlavie

  • Calling a method in a signed applet from JavaScript does not do anything. Same functionality works in IE, Safari and Chrome. Is this a limitation of the JavaScript implementation?

    It does not seem that the JavaScript engine in FF 4 is allowing me to call inside a signed Java applet. When calling the script the browser does not do anything. The same functionality works in IE, Safari, Chrome.

    It does not seem that the JavaScript engine in FF 4 is allowing me to call inside a signed Java applet. When calling the script the browser does not do anything. The same functionality works in IE, Safari, Chrome.

  • Java Applet call javascript problem

    Hi I have a web page as follow and embedded a applet. The applet call the java script, and instead of showing an alarm, the browser show the javascript code. Is that strange ? Any suggestion for this problem.
    HTML:
    ================================================================
    <HTML>
         <HEAD>
         function ShowEmbd()
              alert("Test Applet call Javascript");
         </SCRIPT>
         </HEAD>
         <BODY>
         <FORM NAME="AppletEmbdStart">
              <OBJECT classid="clsid:48B2DD7B-6B52-4DB0-97C9-ECB940113B47" id="CIVON_DEmbdObj" width="0" height="0"></OBJECT>
              <APPLET code="MyApplet.class" width="0" height="0"></APPLET>
         </FORM>
         </BODY>
    </HTML>MyApplet.java
    =========================================================================
    import netscape.javascript.*;
    public class MyApplet extends javax.swing.JApplet
         private JSObject m_win = null;
         private JSObject m_doc = null;
         public void init()
              getJSWin().call("ShowEmbd", null);
         private getJSDoc()
              if(m_doc == bull)
                   m_doc = (JSObject) getJSWin().getMember("document");
              return m_doc;
         private JSObject getJSWin()
              if (m_win == null)
                   m_win = netscape.javascript.JSObject.getWindow(this);
              return m_win;
    }The page was load and it should call the applet MyApplet. The MyApplet should do the init() method and call the Javascript "ShowEmbd()", BUT, instead of show alert from ShowEmbd(), the browser show the code of ShowEmbd() itself ...... It did not run the javascript and shows the alert ??
    The browser shows a message from status bar "The applet not initial" ???? why ???
    Can anyone help ?!

    On first look:
    I am not sure about the Object Tag, but the Applet Tag requires the MAYSCRIPT attribute before Java can call Javascript.

Maybe you are looking for

  • Iphone 5 will not connect to home wifi or Bluetooth after iOS 7.1.1 update! Using unnecessary data please help!

    My iphone 5 will not connect to my home wifi or Bluetooth after I completed the iOS 7.1.1 update. Before the update I was able to connect to my home network with no issues. Now it rarely finds my home network (unless I'm right in front of the router

  • External DVD drive not working with Lombard G3 333

    I have an external DVD drive that worked when I had 10.4, but had to reformat HD and now only have 10.3.9, and now the DVD drive does not work with DVDs, it will work with CDs and CDR media, but not with DVD media. My Lombard did not come with DVD or

  • Crystal report integration with CRM

    Hi, Guru: I would like to check with you. I need show a demo to integrate crystal reports with our CRM product. I know for CRM mobile (mobile system maintenance), we could have this option. however, my requirement is to seek any other options to inte

  • How to change file content in JAR

    I'm deploying a Java application using Webstart based on different jars. One of the jars contains a 'config' file. The config file contains paths to databases. The idea is that the user can change these paths (or other settings) using the application

  • Previous year stock is appearing in Material Master accounting view

    Hi, We have ran cycle count inventory to set the stock Zero for a particulat Material. In Stock overview the report is showing as Zero stock for the material. But in Material Master the stock is showing as one and it is reffering to previous period.