Interface Matlab with java good links and info

HI All
i want to interface Matlab with java
i did search through the net but i haven't got nay good links and info
by that i mean the given links either not working or do work for old version of matlab ie R13
i have R14
IF you have already done that or
you have a really good links and info and steps
please post them here
thanks

It doesn't appear that Matlab is free, so i'd expect that's why you are having trouble finding download links.
Here's is an overview link
http://www.mathworks.com/access/helpdesk/help/techdoc/rn/r14_v7_external.html#1011951

Similar Messages

  • Problem with java swing button and loop

    Problem with java swing button and loop
    I�m using VAJ 4.0. and I�m doing normal GUI application. I have next problem.
    I have in the same class two jswing buttons named start (ivjGStart) and stop (ivjGStop) and private static int field named Status where initial value is 0. This buttons should work something like this:
    When I click on start button it must do next:
    Start button must set disenabled and Stop button must set enabled and selected. Field status is set to 1, because this is a condition in next procedure in some loop. And then procedure named IzvajajNeprekinjeno() is invoked.
    And when I click on stop button it must do next:
    Start button must set enabled and selected and Stop button must set disenabled.
    Field status is set to 0.
    This works everything fine without loop �do .. while� inside the procedure IzvajajNeprekinjeno(). But when used this loop the start button all the time stay (like) pressed. And this means that a can�t stop my loop.
    There is java code, so you can get better picture:
    /** start button */
    public void gStart_ActionEvents() {
    try {
    ivjGStart.setEnabled(false);
    ivjGStop.setEnabled(true);
    ivjGStop.setSelected(true);
    getJTextPane1().setText("Program is running ...");
    Status = 1;
    } catch (Exception e) {}
    /** stop button */
    public void gStop_ActionEvents() {
    try {
    ivjGStart.setEnabled(true);
    ivjGStart.setSelected(true);
    ivjGStop.setEnabled(false);
    getJTextPane1().setText("Program is NOT running ...");
    Status = 0;
    } catch (Exception e) {
    /** procedure IzvajajNeprekinjeno() */
    public void IzvajajNeprekinjeno() {  //RunLoop
    try {
    int zamik = 2000; //delay
    do {
    Thread.sleep(zamik);
    PreberiDat(); //procedure
    } while (Status == 1);
    } catch (Exception e) {
    So, I'm asking what I have to do, that start button will not all the time stay pressed? Or some other aspect of solving this problem.
    Any help will be appreciated.
    Best regards,
    Tomi

    This is a multi thread problem. When you start the gui, it is running in one thread. Lets call that GUI_Thread so we know what we are talking about.
    Since java is task-based this will happen if you do like this:
    1. Button "Start" is pressed. Thread running: GUI_Thread
    2. Event gStart_ActionEvents() called. Thread running: GUI_Thread
    3. Method IzvajajNeprekinjeno() called. Thread running: GUI_Thread
    4. Sleep in method IzvajajNeprekinjeno() on thread GUI_Thread
    5. Call PreberiDat(). Thread running: GUI_Thread
    6. Check status. If == 1, go tho 4. Thread running: GUI_Thread.
    Since the method IzvajajNeprekinjeno() (what does that mean?) and the GUI is running in the same thread and the event that the Start button has thrown isn't done yet, the program will go on in the IzvajajNeprekinjeno() method forever and never let you press the Stop-button.
    What you have to do is do put either the GUI in a thread of its own or start a new thread that will do the task of the IzvajajNeprekinjeno() method.
    http://java.sun.com/docs/books/tutorial/uiswing/index.html
    This tutorial explains how to build a multi threaded gui.
    /Lime

  • Connection error -2147217387 with Java RAS SDK and Crystal Server 2011

    Due to a change in operating system, we are required to upgrade our Crystal Reports server from BusinessObjects Crystal Reports Server 11.5 to SAP Crystal Server 2011. We use the Java RAS SDK (RASCore 9.2.2.446 / RASApp 9.0) more or less as described in Java RAS2008-unmanaged exportreport. We use the Crystal Server to export reports stored on disk as PDF files.
    In SAP Crystal Server 2011, the CrystalReports2011ReportApplicationServer is configured with Request Port 1566 and Host Identifier 172.16.4.154 (the local machine). The Crystal Server, report-definition files, and Java VM are all on the same machine.
    The error is
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: XML serialization failed.---- Error code:-2147217387 Error code name:connectServer
         at com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.v.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.ab.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.do(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.for(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.for(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(Unknown Source)
         at ourpackage.OurClass.openReport(OurClass.java:95)
         ... 6 more
    Caused by: java.net.SocketException: Connection reset
         at java.net.SocketInputStream.read(SocketInputStream.java:189)
         at java.net.SocketInputStream.read(SocketInputStream.java:121)
         at java.net.SocketInputStream.read(SocketInputStream.java:203)
         at java.io.DataInputStream.readInt(DataInputStream.java:388)
    The code is as follows.
    ReportClientDocument clientDocument = new ReportClientDocument();
    clientDocument.setReportAppServer("172.16.4.154:1566"); // localhost
    // Error occurs on ReportClientDocument.open method
    clientDocument.open("D:\\path\\to\\report.rpt", com.crystaldecisions.sdk.occa.report.application.OpenReportOptions.refreshRepositoryObjects.value());
    DatabaseController dbController = clientDocument.getDatabaseController();
    dbController.logon("dbuser", "dbpassword");
    ParameterFieldController pfController = clientDocument.getDataDefController().getParameterFieldController();
    Fields fields = clientDocument.getDataDefinition().getParameterFields();
    ParameterField oldParameter = (ParameterField) field.get(0);
    ParameterField newParameter = new ParameterField();
    oldParameter.copyTo(newParameter, false);
    newParameter.getCurrentValues().clear();
    ParameterFieldDiscreteValue newDiscreteValue = new ParameterFieldDiscreteValue();
    newDiscreteValue.setValue("paramValue");
    newParameter.getCurrentValues().add(0, newDiscreteValue);
    pfController.modify(oldParameter, newParameter);
    clientDocument.refreshReportDocument();
    PrintOutputController po = clientDocument.getPrintOutputController();
    InputStream is = po.export(reportFormat);
    Could anyone advise me how to proceed with resolving this error?

    Thanks for the link. I copied the CrystalReportsSDK.jar and logging.jar from the Crystal Server java\lib directory into my project and revised the code accordingly. Now, a slightly different error occurs at the same place:
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException: Unable to connect to the server: {0}. --- Connection reset by peer: socket write error---- Error code:-2147217387 [CRSDK00000039] Error code name:connectServer
      at com.crystaldecisions.sdk.occa.report.lib.ReportSDKServerException.throwReportSDKServerException(ReportSDKServerException.java:115)
      at com.crystaldecisions.proxy.remoteagent.TCPIPCommunicationAdapter.request(TCPIPCommunicationAdapter.java:659)
      at com.crystaldecisions.proxy.remoteagent.AdapterCommunicationChannel.send(AdapterCommunicationChannel.java:88)
      at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.request(ReportAppSession.java:382)
      at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.logon(ReportAppSession.java:342)
      at com.crystaldecisions.sdk.occa.report.application.ReportAppSession.initialize(ReportAppSession.java:330)
      at com.crystaldecisions.sdk.occa.report.application.ClientDocument.initializeServerConnectionAdapter(ClientDocument.java:627)
      at com.crystaldecisions.sdk.occa.report.application.ClientDocument.initializeServerConnection(ClientDocument.java:658)
      at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.initializeServerConnection(ReportClientDocument.java:1420)
      at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(ClientDocument.java:982)
      at com.crystaldecisions.sdk.occa.report.application.ReportClientDocument.open(ReportClientDocument.java:226)
      at ourPackage.OurClass.openReport(OurClass.java:97)
    The revised code is
    ReportClientDocument clientDocument = new ReportClientDocument();
    clientDocument.setReportAppServer("172.16.4.154:1566"); // localhost
    // Error occurs here
    clientDocument.open("D:\\path\\to\\report.rpt", com.crystaldecisions.sdk.occa.report.application.OpenReportOptions.openAsReadOnly.value());

  • Problem with java.sql.Clob and oracle.sql.CLOB

    Hi,
    I am using oracle9i and SAP web application server. I am getClob method and storing that in java.sql.Clob and using the getClass().getName() I am getting the class name as oracle.sql.CLOB. But when I am trying to cast this to oracle.sql.CLOB i am getting ClassCastException. The code is given below
    java.sql.Clob lOracleClob = lResultSet.getClob(lColIndex + 1);
    lPrintWriter = new PrintWriter(new BufferedWriter (((oracle.sql.CLOB) lOracleClob).getCharacterOutputStream()));
    lResourceStatus = true;
    can anybody please tell me the what is the problem with this and solution.
    thanks,
    Ashok.

    Hi Ashok
    You can get a "ClassCastException" when the JVM doesn't have access to the specific class (in your case, "oracle.sql.CLOB").
    Just check your classpath and see if you are referring to the correct jar files.
    cheers
    Sameer
    PS: Please award points if you find the answer useful

  • Help needed with Java 1.4 and xml Runtime problem

    I am working on a java 1.3 and JAXP1.1 written code. Now I want to compile and run it using J2SE 1.4. Here are the import statements from the existing code.
    import org.xml.sax.*;
    import org.xml.sax.helpers.DefaultHandler;
    import org.xml.sax.Locator;
    import javax.xml.parsers.SAXParser;
    import javax.xml.parsers.SAXParserFactory;
    import org.xml.sax.Attributes;
    import org.xml.sax.XMLReader;
    import org.xml.sax.InputSource;
    import java.sql.*;
    import java.net.*;
    import java.io.*;
    When I run the existing(using java 1.3 and Jaxp1.1) code I have to include the files crimson.jar and jaxp.jar in the windows 2000 CLASSPATH and works fine.
    But when I compile and run it using J2SE 1.4 which has the built in support for the saxp, I thought that I don't have to specify any CLASSPATH for the new 1.4 so I don't specify any Classpath and it gives me the Microsoft "ClassFactory cannot find the requested class" error which means that even thought the new java 1.4 has the xml classes as libraries yet it still requies some .jar files to be listed in the CLASSPATH.
    If I am right then what path will work(i.e what jar class I need to add to the CLASSPATH).
    Thanks for your help.
    RA.

    Thanks for your reply,
    I think I didn't specify when the error occurs. The ClassFactory related error occurs when I run the program, it compiles without any error.
    From what I understood somewhere in the java 1.4 docs, that the new 1.4 has the xml libraries built in by default so one doesn't need to give the classpaths just like we don't give any CLASSPATH for using swing and many of the other java packages. That is one thing.
    Second thing is that I also tried to use the java_xml_pack-spring02 and java_xml_pack-summer02; but non of them include the crimson.jar and the jaxp.jar files in them which are the 2 .jar files that makes the program run fine when used under the java 1.3 with combination of the jaxp1.1(which was downloaded seperately and then the CLASSPATH for it was set.).
    Can you please help what .jar files do I need to use instead. I tried to use the ones that the new java_xml_pack-spring02 and java_xml_pack-summer02 has for the jaxp in them.
    Thanks again.
    RA

  • One JSP Coded in JSTL with an Action Link and a Form

    My JSP written in JSTL with an action link works fine. The checkboxes are well recognized ( I have a "form" specified in both the action mapping and form bean).
    <%@ page import="......common.pojo.user.User" %>
    <!-- Create a variable in scope called userRows from the Users object -->
    <c:set var="userRows" value="${requestScope.Users}" />
    <c:choose>
         <c:when test="${not empty userRows}">
              <!-- create a "user" object for each element in the userRows -->               
              <c:forEach var="user" items="${userRows}" varStatus="idx">
                      <c:choose>
                              <c:when test="${( idx.count+1 )%2==0}">
                                 <tr class="contentCell1">
                              </c:when>
                              <c:otherwise>
                                 <tr class="contentCell2">
                              </c:otherwise>
                      </c:choose>
                                           <td align="center">
                                                              <html-el:checkbox property="selectedUsers[${idx.index}].selected" />
                                                              <html-el:hidden property="selectedUsers[${idx.index}].id" value="${user.id}"/>
                                           </td>
                                           <td align="center"><c:out value="${user.createdByUserID}" /></td>
                                           <td align="center"><c:out value="${user.firstName}" /></td>
                                           <td align="center"><c:out value="${user.lastName}" /></td>
                             </tr>
              </c:forEach>
                        <tr>
                             <td colspan="6" align="left">
                                      <html-el:link action="/admin/selectUsers.do">Edit Selected Users</html-el:link>
                             </td>
                           </tr>
                   </table>
              </c:when>
              <c:otherwise>
                   <center><H1>No User Found.</H1></center>
              </c:otherwise>
         </c:choose>
    ......But, if I add another form (form B) with some textfield(s) and a submit button in between the opening <c:when ...> and <c:forEach ... > tag, I get the "runtime" JSP error: "cannot find bean: "org.apache.struts.taglib.html.BEAN" in any scope".
    The form B also works well. And varStatus="idx" and var="user" still work. The complaint points specifically to the <html-el:checkbox property="selectedUsers[${idx.index}].selected" />. The getter method for selectedUsers[0].selected can no longer be recognized:
    <%@ page import="......common.pojo.user.User" %>
    <!-- Create a variable in scope called userRows from the Users object -->
    <c:set var="userRows" value="${requestScope.Users}" />
    <c:choose>
         <c:when test="${not empty userRows}">
                                    <html-el:form action="/admin/findUsers.do">
                                               // many textfields and a submit button
                                    </html-el:form>
              <!-- create a "user" object for each element in the userRows -->               
              <c:forEach var="user" items="${userRows}" varStatus="idx">
                      <c:choose>
                              <c:when test="${( idx.count+1 )%2==0}">
                                 <tr class="contentCell1">
                              </c:when>
                              <c:otherwise>
                                 <tr class="contentCell2">
                              </c:otherwise>
                      </c:choose>
                                           <td align="center">
                                                              <html-el:checkbox property="selectedUsers[${idx.index}].selected" />
                                                              <html-el:hidden property="selectedUsers[${idx.index}].id" value="${user.id}"/>
                                           </td>
                                           <td align="center"><c:out value="${user.createdByUserID}" /></td>
                                           <td align="center"><c:out value="${user.firstName}" /></td>
                                           <td align="center"><c:out value="${user.lastName}" /></td>
                             </tr>
              </c:forEach>
                        <tr>
                             <td colspan="6" align="left">
                                      <html-el:link action="/admin/selectUsers.do">Edit Selected Users</html-el:link>
                             </td>
                           </tr>
                   </table>
              </c:when>
              <c:otherwise>
                   <center><H1>No User Found.</H1></center>
              </c:otherwise>
         </c:choose>
    ......

    Hi,
    your strtus config file looks like
    <form-beans >
    <form-bean name="manageAuditFindingsForm" type="com.lib.struts.form.ManageAuditFindingsForm" />
    </form-beans >
    <action
          attribute="manageAuditFindingsForm"
          input="/New.jsp"
          name="manageAuditFindingsForm"
          path="/manageauditfindings"
          scope="request"
          type="com.lib.struts.action.ManageAuditFindingsAction">
          <forward name="success" path="/AuditFindings.jsp" />
        </action>Thanks
    Edward

  • Timer works with Java 1.4 and not Java 1.3 - Why?!

    I am totally lost. I can run this bit of code in java 1.3 and all works fine...
         ActionListener alarmtask = new ActionListener(){
               public void actionPerformed(ActionEvent event){
                  decrementClock();                    
                  setDisplay();
            alarm = new Timer(1000, alarmtask);Then later...
            alarm.start();But when I run it using Java 1.4 it does nothing. The decrementClock() method is never called. I have checked if alarm.isRunning(); and it is.... it seems that the actionPerformed() message never gets to alarmtask.
    Please help!
    Thanks
    LT

    I don't know whether this helps, but:
    The Installer copies the java.exe and javaw.exe files into c:\{windows\winnt}\system32 which is on the path variable by default. These files are copied from the JRE, not the SDK.
    Try use:
    ...\> java[w] -showversion your.Classto ensure it's actually the intended version.
    It's hard to believe yet that this is the problem... another idea: is it possible that you change CLASSPATH along with this, such that it points to an outdated version of your implementation?

  • I'm having problems with the hyper-links and footer

    I'm having problems with the hyper-links (they flicker and also highlight other text on the page) and also the footer space goes on forever in preview site mode, even though I have made it small in the master and homepage and subsequent pages.  This only happened after I loaded a MUSE file into the current version of Muse CC as it runs upgrades on the imported Muse file.  Please Help Me Adobe Community.

    Hi Brad,
    I'll do what you mentioned about republishing all files, what Adobe Muse seems to to is run and upgrade when you open an older version .muse file, optimising it.
    Hopefully republishing it rather than syncing with the new version might help.  I'll do this Tuesday evening when I am back from my client meeting.
    I was thinking, is there a way of me rolling back to a previous version of Adobe MUSE CC ?  I'm using build Adobe Muse CC (2014.3) but I wish to roll back to Adobe Muse CC (2014.1), as this was the version the site was working properly with.
    Thanks Brad.

  • I am increasingly having issues with clicking on links and not going anywhere with Firefox. When I paste the path into Internet Explorer it often works. Why?

    I have always preferred Firefox, but am getting quite annoyed when I click on Google links and don't get to the site. I thought maybe the sites were down, but then started pasting into IE and actually getting something. For example, today I clicked on a link from Harry and David to redeem a free magazine subscription to Food & Wine. I tried it multiple times, then tried it with IE and it worked right away. I don't know if it is just the latest version of Firefox, this seems to have been happening more and more for a while.

    Clear the cache and the cookies from sites that cause problems.
    "Clear the Cache":
    *Tools > Options > Advanced > Network > Cached Web Content: "Clear Now"
    "Remove Cookies" from sites causing problems:
    *Tools > Options > Privacy > Cookies: "Show Cookies"
    Start Firefox in <u>[[Safe Mode|Safe Mode]]</u> to check if one of the extensions (Firefox/Tools > Add-ons > Extensions) or if hardware acceleration is causing the problem (switch to the DEFAULT theme: Firefox/Tools > Add-ons > Appearance).
    *Do not click the Reset button on the Safe mode start window or otherwise make changes.
    *https://support.mozilla.org/kb/Safe+Mode
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes
    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/security/scanner/en-us/default.aspx - Microsoft Safety Scanner
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    You can also do a check for a rootkit infection with TDSSKiller.
    *http://support.kaspersky.com/viruses/solutions?qid=208280684
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • User not able to login to Discoverer Plus 10g with Java 1.8 and Java1.6

    Hi,
    The user is using Windows machine and trying to login to Discoverer Plus 10g. He recently upgraded to Java 1.8 and was not able to login.
    We informed the user that Discoverer 10g is not compatible with java version above 1.6. The user removed the java 1.8 and installed 1.6 again.
    Still he is facing issue.
    The error he gets is:
    Unable to connect to the Discoverer Server: null
    Please contact your Oracle Application Server administrator
    Please suggest.
    1. Is there also a way to make it work with java 1,8 version as the user need to use it for the Oracle HRMS.?
    Thanks
    Chhavi

    Hi,
    The user is using Windows machine and trying to login to Discoverer Plus 10g. He recently upgraded to Java 1.8 and was not able to login.
    We informed the user that Discoverer 10g is not compatible with java version above 1.6. The user removed the java 1.8 and installed 1.6 again.
    Still he is facing issue.
    The error he gets is:
    Unable to connect to the Discoverer Server: null
    Please contact your Oracle Application Server administrator
    Please suggest.
    1. Is there also a way to make it work with java 1,8 version as the user need to use it for the Oracle HRMS.?
    Thanks
    Chhavi

  • I was sent an email from a family member that was not her email address with just a link and open the link. What should i do?

    I was sent an email from a family member that was hacked that had a link and by mistake open the link, what should I do.

    Spammers harvest email address from a variety of sources. Just because your family members name is on the email does not mean that your family members email was hacked. But it's a good idea you let them know you did receive that email. In the meantime do not respond to the email and delete it from your device.

  • Wifi is connected and has good link and traffic is shown but no IP connectivity possible

    I'm getting crazy about that:
    iMac 27" Mid 2011, Airport Extrem/Atheros 9380 Core WLAN 4.0 (400.45.1) is connected with approx. 80% link quality (SNR: 45dB, Noise: 1%) to an 802.11n AP with 5GHz an 80MHz with at least 4 other Clients.
    The link acts with 270-300 Mbit/s and is pretty good, but sometimes (without any change on network settings or configurations) the IP-connectivity get's lost.
    Airport is further connected, traffic counters rise (both RX and TX), while other iMacs (some with similar hardware) are accessing without problems.
    How does ist look like:
    IP-Address (DHCP is enabled on en1) is bound to the interface and I can ping the local IP-address but NO other IP in LAN (for example the standard gateway).
    no ARP requests or broadcasts are shown (except from the local machine)
    What did I do for troubleshooting:
    created new network location and added new wifi connection
    AP reboot
    Apple WiFi Diagnostics:
    10/29/13 08:35:14.9200
    WAN: WiFi interface can ping DNS server 17.254.0.50 . . . pass
    10/29/13 08:35:21.9220
    No LAN Connectivity
    10/29/13 08:35:23.9240
    No LAN Connectivity
    10/29/13 08:35:25.3650
    Scan Cache Updated
    10/29/13 08:35:25.9260
    No LAN Connectivity
    10/29/13 08:35:27.9290
    No LAN Connectivity
    10/29/13 08:35:27.9290
    LAN: WiFi interface can ping IPv4 router 192.168.x.y . . . fail
    10/29/13 08:35:27.9290
    UNEXPECTED DROP DETECTED!!!
    There is no way to use IP communication at this point. The only solution is to reboot or to switch off WiFi an switch on again.
    Those problems occure sometimes once a day and another day after every minute!
    This is, what wifi.log means at this point:
    Tue Oct 29 08:35:25.183 <kernel> scanner_state_suspending_traffic_event state=SUSPENDING_TRAFFIC event=OFFCHAN_SWITCH_FAILED
    Tue Oct 29 08:35:25.183 <kernel> scanner_state_suspending_traffic_event retries=02/03
    Tue Oct 29 08:35:25.283 <kernel> scanner_state_suspending_traffic_event state=SUSPENDING_TRAFFIC event=OFFCHAN_RETRY_EXPIRE
    Tue Oct 29 08:35:25.283 <kernel> HSM: ResMgr :current state BSSCHAN event OFFCHAN_REQUEST[7]
    Tue Oct 29 08:35:25.283 <kernel> ieee80211_resmgr_off_chan_scheduler_bsschan_event_handler : Entry
    Tue Oct 29 08:35:25.283 <kernel> ieee80211_resmgr_oc_check_and_change_state oc_scheduler_state 0 vap_needs_scheduler 0 
    Tue Oct 29 08:35:25.283 <kernel> ieee80211_resmgr_off_chan_scheduler_bsschan_event_handler let the normal bsschan event handler handle the event
    Tue Oct 29 08:35:25.283 <kernel> HSM: ResMgr: transition BSSCHAN => CANPAUSE
    Tue Oct 29 08:35:25.283 <kernel> 97761.264 | scanner_state_suspending_traffic_entry
    Tue Oct 29 08:35:25.283 <kernel> HSM: ResMgr :current state CANPAUSE event VAP_CANPAUSE_TIMER[9]
    Tue Oct 29 08:35:25.304 <kernel> HSM: ResMgr :current state CANPAUSE event VAP_CANPAUSE_TIMER[9]
    Tue Oct 29 08:35:25.304 <kernel> HSM: ResMgr: transition CANPAUSE => PAUSING
    Tue Oct 29 08:35:25.365 <kernel> HSM: ResMgr :current state PAUSING event VAP_PAUSE_FAIL[5]
    Tue Oct 29 08:35:25.365 <kernel> 97761.345 | ieee80211_scan_handle_resmgr_events: state=SUSPENDING_TRAFFIC event OFFCHAN_SWITCH_COMPLETE (1) status=00000005
    Tue Oct 29 08:35:25.365 <kernel> HSM: ResMgr: transition PAUSING => BSSCHAN
    Tue Oct 29 08:35:25.365 <kernel> scanner_state_suspending_traffic_event state=SUSPENDING_TRAFFIC event=OFFCHAN_SWITCH_FAILED
    Tue Oct 29 08:35:25.365 <kernel> scanner_state_suspending_traffic_event retries=03/03
    Tue Oct 29 08:35:25.365 <kernel> 97761.345 | scanner_terminate: reason=MAX_OFFCHAN_RETRIES pause_requested=0
    Tue Oct 29 08:35:25.365 <kernel> 97761.345 | scanner_state_idle_entry
    Tue Oct 29 08:35:25.365 <kernel> vap-0: ieee80211_state_event: VAP state event 3
    Tue Oct 29 08:35:25.365 <kernel> vap-0: ieee80211_connection_sm_scan_evhandler event 1 reason 5
    Tue Oct 29 08:35:25.365 <kernel> ieee80211_notify_scan_done: notifying scan is done
    Tue Oct 29 08:35:25.365 <kernel> getSCAN_RESULT: pid[0]:'kernel_task': mySSID (81ms)
    Tue Oct 29 08:35:25.365 <kernel> getSCAN_RESULT: pid[0]:'kernel_task': All scan results retrieved
    Tue Oct 29 08:35:25.365 <kernel> IO80211ScanManager::scanDone: Scheduling cache purge timer in 30 seconds.
    Tue Oct 29 08:35:25.365 <kernel> vap-0: HSM: connection :current state CONNECTED event SCAN_CANCELLED[8]
    Tue Oct 29 08:35:25.365 <kernel> vap-0: HSM: connection : event 8 not handled in state CONNECTED
    Tue Oct 29 08:35:25.365 <kernel> IO80211ScanManager::getScanResult: All scan results returned for 'WiFi Signal' (pid 10656).
    Tue Oct 29 08:35:25.366 <kernel> IO80211ScanManager::startScan: Broadcast scan request received from 'locationd' (pid 96) ().
    Tue Oct 29 08:35:25.366 <kernel> IO80211ScanManager::getScanResult: All scan results returned for 'locationd' (pid 96).

    Same identical issue and logs for m. expect it says WAN instead of LAN on the failure
    Bump, anybody?

  • Compliabiality of DOT NET Graphical User Interfaces (GUI) with Java

    Hello,
    At present i'm about to start learning GUI's in Java.
    I've acquired all the basic knowledge regarding Java enough to be able to learn GUI's.
    My Questions are:
    1) To begin with Learning Java GUI's, is it really necessary to learn AWT before learning Java Swing Framework ??
    2) I heard that VISUAL STUDIO of Dot Net Framework Supports advanced GUI facilities and Rich look than Java Gui's does, So can we use .Net GUI library classes to build GUI's which have to run in Java Applications???
    Also is it really true???

    Tejaswi.B wrote:
    ..is it really necessary to learn AWT before learning Java Swing Framework ??No, but note there are many (non component) parts of AWT that might be used in Swing interfaces. Fonts, Dimensions, layouts, ..
    Having said that, follow the link Darryl provided and you'll find the tutorial covers those classes (almost) as if they were Swing.
    2) I heard that VISUAL STUDIO of Dot Net Framework Supports advanced GUI facilities and Rich look than Java Gui's does, ..Where did you hear that?
    As far as I understand, there are a few components provided in .NET that are not in Swing, such as (I'm not sure what it is called) a 'switch list' where there are two lists side by side with buttons to move items from one list to the other. These components can be made from other components in Swing. I guess the Swing developers felt those components were too infrequently required to justify adding a specific component for them.
    You might also want to check out SwingX (https://swingx.dev.java.net/), which is built on Swing to provide extra components.

  • Problem with Java Studio Creator and Tomcat Server

    Hi Gays ,
    I have problem:
    here is the error from tomcat 5
    com.sun.rave.web.ui.appbase.ApplicationException: org.apache.jasper.JasperException: java.lang.RuntimeException: java.sql.SQLException: statement handle not executed: getMetaData
    com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.destroy(ViewHandlerImpl.java: 601)
    com.sun.rave.web.ui.appbase.faces.ViewHandlerImpl.renderView(ViewHandlerImpl.ja va:316)
    com.sun.faces.lifecycle.RenderResponsePhase.execute(RenderResponsePhase.java:87 )
    com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:221)
    com.sun.faces.lifecycle.LifecycleImpl.render(LifecycleImpl.java:117)
    javax.faces.webapp.FacesServlet.service(FacesServlet.java:198)
    com.sun.rave.web.ui.util.UploadFilter.doFilter(UploadFilter.java:194)
    if i develop application on my pc ( java studio creator with sun apps bundlled) is working perfectly,
    but i migrated application to Tomcat Server ( Database the same - Oracle 10 g)
    i can't show value ( as text) from datasoruce ( is in SessionBean1)
    (Category-.>Subcat->Items->details( url from items table[items.jsp])
    this is a working url "/faces/testpage.jsp?auk_id=31 "
    ( working with sun apps server , but not on Tomcat 5)
    below prerender method in details.java and fragment of details.jsp
    public void prerender() {
    try {
    String idauk = (getExternalContext().getRequestParameterMap().get("auk_id").toString());
    System.out.println("wartosc auk_id " + idauk);
    if (idauk != null) {
    getSessionBean1().getDetailsRowSet().setObject(1,idauk);
    getSessionBean1().getDetailsDataProvider().refresh();
    details.jsp
    xml version="1.0" encoding="UTF-8"?>
    <jsp:root version="1.2" xmlns:f="http://java.sun.com/jsf/core" xmlns:h="http://java.sun.com/jsf/html" xmlns:jsp="http://java.sun.com/JSP/Page" xmlns:ui="http://www.sun.com/web/ui">
    <jsp:directive.page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8"/>
    <f:view>
    <ui:page binding="#{testpage.page1}" id="page1">
    <ui:html binding="#{testpage.html1}" id="html1">
    <ui:head binding="#{testpage.head1}" id="head1">
    <ui:link binding="#{testpage.link1}" id="link1" url="/resources/stylesheet.css"/>
    </ui:head>
    <ui:body binding="#{testpage.body1}" id="body1" style="-rave-layout: grid">
    <ui:form binding="#{testpage.form1}" id="form1">
    <ui:staticText binding="#{testpage.staticText1}" id="staticText1" style="position: absolute; left: 120px; top: 96px" text="#{SessionBean1.testDataProvider.value['Name']}"/>
    </ui:form>
    </ui:body>
    </ui:html>
    </ui:page>
    </f:view>
    </jsp:root>
    Help People ! Any Ideas I'm stuck, why is working with Sun Servet but not with Tomcat and only just thing ?
    Thanks in advance for helping me to resolve the night problem :)

    Hi I found solution, i puted on the page a table -component (with brand new automaticly created dataprovider) , then i set properties visible= false for table, and now I can bind statictext with database field and deploy on tomcat server .
    But i think it is not a elegant solution in page source i habe noused-code.
    Have Any another Ideas. HELP PEOPLE !!!!
    Mariuszek: I use Creator.because right now I can see result of my job and i can qickly change ideas ,
    I tried with JDeveleper but i did'nt find this functionality (wich version do you prefered ?) , unfortunately i have to deploy my application on Tomcat. This is my study project, and i make this to become a Master of Techinal Univeristy ;), Deadline time is 30 th September :(
    greetings

  • HT1311 I have two Apple IDs, one with all my purchases and info on it. The one with everything on it is under a bad email address. When I tried to change it to my current email, it tells me I already have an account. How do I fix this?

    I had an old iPod under an old Apple ID  which was stolen. I replaced it with an iPhone and apparently created a new Id under my current email address. When i went to sync the phone to my comuter (several months later), I accidentally restored the phone to my old iPod settings and lost everything.  I then continued to make purchases on the phone but didn't realize that it had reverted back to my old Apple ID. This is under an old email that I no longer have access to. When I tried to change the Apple ID/email address in the account settings, it won't let me because it says that there is already an Apple ID under this address. However, all my information (settings, contacts, photos, aps) are under an incorrect email. How can I change the account I have been using to reflect my valid current email address if there is already an existing account (which I never really used) under this address? Please, I don't want to lose all my info again.

    Change the email on the old account to another new, current email address.
    An email address can only be linked to one Apple ID.
    It is possible to have content from multiple Apple ID's on a single iDevice.

Maybe you are looking for