Regarding CLDC Hotspot

Hi,
i am Mukesh From India Bangalore. can any one help me in setting the cldc hotspot implemation ? i mean what are all things required to setup the development enviorment,i have gone through the white papers but it is not clear how to set up.
secondly i am working on J2ME Application using wtk2.3 beta version, i would like to enable & disable JIT(Just in time) Compiler.
and last query is: How can i do make my methods as inline ? (Wait before you answer this question) i have already tried my hands with static, final, private, making local variables, but no use @ all.
-Waiting for you quick response.
-Mukesh
Bangalore
India.

{color:#000080}Your question is not at all clear, but if you're looking for an IDE for j2me you could try NetBeans, a free product from Sun, with the Mobility pack and WTK 2.5.1 (or latest).{color}
i have already tried my hands with static, final, private, making local variables{color:#000080}Doesn't make sense to try stuff without understanding. Programming is not a lottery. I suggest you go through some Java tutorials, such as those available at
{color}{color:#0000ff}http://java.sun.com/docs/books/tutorial/index.html{color}{color:000080}
To ask better questions which in turn get you better answers, read
{color}{color:#0000ff}http://catb.org/~esr/faqs/smart-questions.html{color}{color:000080}
db{color}

Similar Messages

  • Porting CLDC Hotspot VM

    Hello,
    I want to port CLDC Hostspot VM to an OS running on ARM9 processor.
    Where can I download CLDC Hotspot VM source code ?
    Thanks In Advance,
    Regards
    Surendra

    If you don't get a definitive answer here, you might try asking on the hotspot-dev (at) openjdk.java.net mailing list. That's where all the HotSpot developers hang out. I know there are people there working on an ARM9 port, though I don't know if it's for the full Standard Edition or CLDC.

  • InPlace execution in CLDC hotspot implementation

    I am working on Inplace execution feature given by SUN in CLDC Hot spot Implementaion. I want to know how much performance can be increased by using inplace execution for the midlet to be run on the device. I have converted the midlet jar file into application image (bun) but not able to know whether I have got any significant improvement or not.
    Can anybody tell me that how can inplace execution improve the performance and it will affect which part? Is there any way to know how much performance has been increased like some benchmark midlet for InPlace Execution feature.
    Please provide some help.

    This type of emulation is called HLE, there are some drawbacks to this approch. The one that i think prevented implementors of an VM to go this road is that it's verry hard to compile all bytecode to native code and be sure there are no security problems. Also the general protection failts will come to your java code! Of cause this can be prevented by putting in a lot of overhead code for every bytecode instruction, but then it's not fast anymore! ;o)

  • ALV + HOTSPOT + DOWNLOAD ALV O/P to a file  Querry ??

    Hi All
    I have the following requirement in my SAP-ABAP prog which is as under:
    <b>>></b>Hotspot click to be provided on EBELN field then call ME23 tcode skipping the first screen.
    <b>>></b>Hotspot click to be provided on VBELN field then call VF03 tcode skipping the first screen.
    <b>>></b>If check box marked save the data displayed on the report as a file to a presentation server
    <b>>></b> and please let me the Field catalogue table name which exists in dic
    As such ther's no inconsistency in my prog. But when i execute my prog , the ALV  O/p shows no data .
    And regarding the Hotspot click , if you are telling me to use SET parameter Id statement , thn plz specify how to use it.
    i mean in the statement
    e.g
      SET PARAMETER ID 'EBE' FIELD ACC_TAB-EBELN.
    when i double click on EBE , it does not allows me to specify EBE as parameter for field EBELN.
    I can provide you with the prog which i have made , if needed.
    So do help. Helpful entries will be rewarded.
    Thanks
    Gaurav
    Message was edited by:
            Gaurav Verma

    Hi
    <b>please go through this Program it was handled by Hot spot only .</b>
    report zbnstest.
    * TABLES AND DATA DECLARATION.
    *TABLES: mara,makt.",marc.
    data syrepid like sy-repid.
    data sydatum(10). " LIKE sy-datum.
    data sypagno(3) type n.
    * WHEN USING MORE THAN ONE TABLE IN ALV WE NEEED TO DECLARE THE TYPE
    * GROUP (TYPE-POOLS--------->SLIS)
    type-pools : slis.
    * INTERNAL TABLE DECLARATION.
    * INTERNAL TABLE TO HOLD THE VALUES FROM THE MARA TABLE
    data: begin of t_mara occurs 0,
    matnr like mara-matnr,
    meins like mara-meins,
    mtart like mara-mtart,
    matkl like mara-matkl,
    end of t_mara.
    * INTERNAL TABLE TO HOLD THE CONTENTS FROM THE EKKO TABLE
    data : begin of t_marc occurs 0,
    matnr like mara-matnr,
    werks like marc-werks,
    minbe like marc-minbe.
    data: end of t_marc.
    * INTERNAL TABLE TO HOLD THE VALUES FROM MAKT TABLE.
    data : begin of t_makt occurs 0,
    matnr like mara-matnr,
    maktx like makt-maktx,
    spras like makt-spras,
    end of t_makt.
    * INTERNAL TABLE WHICH ACTUALLY MERGES ALL THE OTHER INTERNAL TABLES.
    data: begin of itab1 occurs 0,
    matnr like mara-matnr,
    meins like mara-meins,
    maktx like makt-maktx,
    spras like makt-spras,
    werks like marc-werks,
    minbe like marc-minbe,
    end of itab1.
    * THE FOLLOWING DECLARATION IS USED FOR DEFINING THE FIELDCAT
    * AND THE LAYOUT FOR THE ALV.
    * HERE AS slis_t_fieldcat_alv IS A INTERNAL TABLE WITHOUT A HEADER LINE
    * WE EXPLICITELY DEFINE AN INTERNAL TABLE OF THE SAME STRUCTURE AS THAT
    * OF slis_t_fieldcat_alv BUT WITH A HEADER LINE IN THE DEFINITION.
    * THIS IS DONE TO MAKE THE CODE SIMPLER.
    * OTHERWISE WE MAY HAVE TO DEFINE THE STRUCTURE AS IN THE NORMAL SAP
    * PROGRAMS.
    * IN THE FIELDCATALOG TABLE WE ACTUALLY PASS THE FIELDS FROM ONE OR
    * MORE TABLES AND CREATE A STRUCTURE
    * IN THE LAYOUT STRUCTURE WE BASICALLY DEFINE THE FORMATTING OPTIONS
    * LIKE DISPLAY IN THE ZEBRA PATTERN ,THE HOTSPOT OPTIONS ETC.
    data: fieldcatalog type slis_t_fieldcat_alv with header line,
    fieldlayout type slis_layout_alv.
    * DECLARING THE EVENTTABLE INTERNL TABLE FOR USING EVENTS LIKE
    * TOP-OF-PAGE ETC.
    data : eventstab type slis_t_event with header line.
    * DECLARING AN INTERNAL TABLE TO HOLD THE DATA FOR THE TOP-OF-PAGE
    data : heading type slis_t_listheader with header line.
    data : heading1 type slis_t_listheader with header line.
    data : heading2 type slis_t_listheader with header line.
    data : heading3 type slis_t_listheader with header line.
    data : heading4 type slis_t_listheader with header line.
    data : heading5 type slis_t_listheader with header line.
    data : heading6 type slis_t_listheader with header line.
    data : heading7 type slis_t_listheader with header line.
    data : heading8 type slis_t_listheader with header line.
    * STRUCTURE TO PASS THE COLOR ATTRIBUTES FOR DISPLAY.
    data : colorstruct type slis_coltypes.
    * INITIALIZATION. *
    initialization.
    syrepid = sy-repid.
    sypagno = sy-pagno.
    clear fieldcatalog.
    * START-OF-SELECTION. *
    start-of-selection.
    * SUBROUTINE TO POPULATE THE COLORSTRUCT
    perform fill_colorstruct using colorstruct.
    * SUBROUTINE TO POPULATE THE FIELDS OF THE FIELD CATALOGUE
    perform populate_fieldcatalog.
    * SUBROUTINE TO SELECT DATA FROM VARIOUS TABLES AND POPULATE IT IN THE
    * INTERNAL TABLE.
    perform selectdata_and_sort.
    * SUBROUTINE TO POPULATE THE LAYOUT STRUCTURE.
    perform populate_layout using fieldlayout.
    * SUBROUTINE TO CALL THE FUNCTION MERGE TO ENSURE PROPER DISPLAY.
    perform merge_fieldcatalog.
    * SUBROUTINE TO POPULATE THE EVENTSTAB.
    perform fill_eventstab tables eventstab.
    * SUBROUTINE TO POPULATE THE HEADING TABLES.
    perform fill_headingtable tables heading using 'HEADING'.
    perform fill_headingtable tables heading1 using 'HEADING1'.
    perform fill_headingtable tables heading2 using 'HEADING2'.
    perform fill_headingtable tables heading3 using 'HEADING3'.
    perform fill_headingtable tables heading4 using 'HEADING4'.
    perform fill_headingtable tables heading5 using 'HEADING5'.
    perform fill_headingtable tables heading6 using 'HEADING6'.
    perform fill_headingtable tables heading7 using 'HEADING7'.
    perform fill_headingtable tables heading8 using 'HEADING8'.
    * SUBROUTINE TO DISPLAY THE LIST.
    perform display_alv_list.
    * FORMS
    * IN THIS SUBROUTINE WE POPULATE THE FIELDCATALOG TABLE WITH THE NAMES
    * OF THE TABLE,FIELDNAME,WHETHER IT IS KEY FIELD OR NOT,HEADING AND
    * COLUMN JUSTIFICATION.
    form populate_fieldcatalog.
    perform fill_fields_of_fieldcatalog tables fieldcatalog
    using 'ITAB1' 'MATNR' 'X' .
    perform fill_fields_of_fieldcatalog tables fieldcatalog
    using 'ITAB1' 'MEINS' ' '.
    perform fill_fields_of_fieldcatalog tables fieldcatalog
    using 'ITAB1' 'MAKTX' ' ' .
    perform fill_fields_of_fieldcatalog tables fieldcatalog
    using 'ITAB1' 'MTART' ' ' .
    perform fill_fields_of_fieldcatalog tables fieldcatalog
    using 'ITAB1' 'MATKL' ' ' .
    perform fill_fields_of_fieldcatalog tables fieldcatalog
    using 'ITAB1' 'SPRAS' ' ' .
    perform fill_fields_of_fieldcatalog tables fieldcatalog
    using 'ITAB1' 'WERKS' ' ' .
    perform fill_fields_of_fieldcatalog tables fieldcatalog
    using 'ITAB1' 'MINBE' ' ' .
    endform. " POPULATE_FIELDCATALOG
    * FORM FILL_FIELDS_OF_FIELDCATALOG *
    * --> FIELDCATALOG *
    * --> P_TABNAME *
    * --> P_FIELDNAME *
    * --> P_KEY *
    * --> P_KEY *
    form fill_fields_of_fieldcatalog tables fieldcatalog
    structure fieldcatalog
    using p_tabname
    p_fieldname
    p_key.
    * p_no_out.
    fieldcatalog-tabname = p_tabname.
    fieldcatalog-fieldname = p_fieldname.
    fieldcatalog-key = p_key.
    fieldcatalog-emphasize = '1234'.
    *fieldcatalog-no_out = p_no_out.
    append fieldcatalog.
    endform. " FILL_FIELDSOFFIELDCATALOG
    * FORM POPULATE_LAYOUT *
    * --> FIELDLAYOUT *
    form populate_layout using fieldlayout type slis_layout_alv.
    fieldlayout-f2code = '&ETA' .
    fieldlayout-zebra = 'X'.
    * FOR THE WINDOW TITLE.
    fieldlayout-window_titlebar = 'ALV with Events'.
    fieldlayout-colwidth_optimize = 'X'.
    fieldlayout-no_vline = ' '.
    *fieldlayout-no_input = 'X'.
    fieldlayout-confirmation_prompt = ''.
    fieldlayout-key_hotspot = 'X'.
    * This removes the column headings if the flag is set to 'X'
    fieldlayout-no_colhead = ' '.
    *fieldlayout-hotspot_fieldname = 'MAKTX'.
    fieldlayout-detail_popup = 'X'.
    * fieldlayout-coltab_fieldname = 'X'.
    endform. " POPULATE_LAYOUT
    * FORM SELECTDATA_AND_SORT *
    form selectdata_and_sort.
    select matnr meins mtart matkl from mara
    into corresponding fields of t_mara
    up to 500 rows .
    select matnr maktx spras from makt
    into corresponding fields of t_makt
    where matnr = t_mara-matnr and
    spras = sy-langu.
    select matnr werks minbe from marc
    into corresponding fields of t_marc
    where matnr = t_mara-matnr.
    append t_marc.
    endselect.
    append t_makt.
    endselect.
    append t_mara.
    endselect.
    perform populate_itab1.
    sort itab1 by matnr.
    endform. " SELECTDATA_AND_SORT
    * FORM MERGE_FIELDCATALOG *
    form merge_fieldcatalog.
    call function 'REUSE_ALV_FIELDCATALOG_MERGE'
    exporting
    i_program_name = syrepid
    i_internal_tabname = 'ITAB1'
    * i_structure_name = 'COLORSTRUCT'
    * I_CLIENT_NEVER_DISPLAY = 'X'
    i_inclname = syrepid
    changing
    ct_fieldcat = fieldcatalog[]
    exceptions
    inconsistent_interface = 1
    program_error = 2
    others = 3.
    endform. " MERGE_FIELDCATALOG
    * IN THIS FUNCTION THE MINIMUM PARAMETERS THAT WE NEED TO PASS IS AS
    * FOLLOWS:-
    * i_callback_program --> CALLING PROGRAM NAME
    * i_structure_name --> STRUCTURE NAME.
    * is_layout --> LAYOUT NAME.
    * it_fieldcat ---> BODY OF THE FIELD CATALOGUE INTERNAL TABLE
    form display_alv_list.
    call function 'REUSE_ALV_LIST_DISPLAY'
    exporting
    * I_INTERFACE_CHECK = ' '
    i_callback_program = syrepid
    * I_CALLBACK_PF_STATUS_SET = ' '
    * I_CALLBACK_USER_COMMAND = ' '
    i_structure_name = 'ITAB1'
    is_layout = fieldlayout
    it_fieldcat = fieldcatalog[]
    * IT_EXCLUDING =
    * IT_SPECIAL_GROUPS =
    * IT_SORT =
    * IT_FILTER =
    * IS_SEL_HIDE =
    * I_DEFAULT = 'X'
    * THE FOLLOWING PARAMETER IS SET AS 'A' INORDER TO DISPLAY THE STANDARD
    * TOOL BAR
    i_save = 'A'
    * IS_VARIANT = ' '
    it_events = eventstab[]
    * IT_EVENT_EXIT =
    * IS_PRINT =
    * I_SCREEN_START_COLUMN = 0
    * I_SCREEN_START_LINE = 0
    * I_SCREEN_END_COLUMN = 0
    * I_SCREEN_END_LINE = 0
    * IMPORTING
    * E_EXIT_CAUSED_BY_CALLER =
    * ES_EXIT_CAUSED_BY_USER =
    tables
    t_outtab = itab1
    exceptions
    program_error = 1
    others = 2.
    endform. " DISPLAY_ALV_LIST
    *& Form POPULATE_ITAB1
    * text
    * --> p1 text
    * <-- p2 text
    form populate_itab1.
    loop at t_mara.
    loop at t_makt where matnr = t_mara-matnr.
    loop at t_marc where matnr = t_mara-matnr.
    move-corresponding t_mara to itab1.
    move-corresponding t_makt to itab1.
    move-corresponding t_marc to itab1.
    append itab1.
    endloop.
    endloop.
    endloop.
    endform. " POPULATE_ITAB1
    *& Form FILL_EVENTSTAB
    * text
    * -->P_EVENTSTAB text *
    form fill_eventstab tables p_eventstab structure eventstab.
    * WHEN THE FOLLOWING FUNCTION IS CALLED THE SYSTEM POPULATES THE
    * INTERNAL TABLE EVENTSTAB WITH A LIST OF EVENTS NAME.
    * AS SHOWN BELOW WHEN USING I_LIST_TYPE = 0 THE FUNCTION RETURNS 14
    * EVENTS NAME.
    call function 'REUSE_ALV_EVENTS_GET'
    exporting
    i_list_type = 0
    importing
    et_events = p_eventstab[]
    exceptions
    list_type_wrong = 1
    others = 2.
    * BY CALLING THE ABOVE FUNCTION WE FIRST POPULATE THE EVENTSTAB WITH
    * THE PREDEFINED EVENTS AND THEN WE MOVE THE FORM NAME AS SHOWN BELOW.
    * WE ASSIGN A FORM NAME TO THE EVENT AS REQUIRED BY THE USER.
    * FORM NAME CAN BE ANYTHING.THE PERFORM STATEMENT FOR THIS FORM
    * IS DYNAMICALY CALLED.
    read table p_eventstab with key name = slis_ev_top_of_page.
    if sy-subrc = 0 .
    move 'TOP_OF_PAGE' to p_eventstab-form.
    append p_eventstab.
    endif.
    read table p_eventstab with key name = slis_ev_top_of_coverpage.
    if sy-subrc = 0 .
    move 'TOP_OF_COVERPAGE' to p_eventstab-form.
    append p_eventstab.
    endif.
    read table p_eventstab with key name = slis_ev_end_of_coverpage .
    if sy-subrc = 0 .
    move 'END_OF_COVERPAGE' to p_eventstab-form.
    append p_eventstab.
    endif.
    read table p_eventstab with key name = slis_ev_foreign_top_of_page.
    if sy-subrc = 0 .
    move 'FOREIGN_TOP_OF_PAGE' to p_eventstab-form.
    append p_eventstab.
    endif.
    read table p_eventstab with key name = slis_ev_foreign_end_of_page.
    if sy-subrc = 0 .
    move 'FOREIGN_END_OF_PAGE' to p_eventstab-form.
    append p_eventstab.
    endif.
    read table p_eventstab with key name = slis_ev_list_modify.
    if sy-subrc = 0 .
    move 'LIST_MODIFY' to p_eventstab-form.
    append p_eventstab.
    endif.
    read table p_eventstab with key name = slis_ev_top_of_list.
    if sy-subrc = 0 .
    move 'TOP_OF_LIST' to p_eventstab-form.
    append p_eventstab.
    endif.
    read table p_eventstab with key name = slis_ev_end_of_page.
    if sy-subrc = 0 .
    move 'END_OF_PAGE' to p_eventstab-form.
    append p_eventstab.
    endif.
    read table p_eventstab with key name = slis_ev_end_of_list .
    if sy-subrc = 0 .
    move 'END_OF_LIST' to p_eventstab-form.
    append p_eventstab.
    endif.
    endform. " FILL_EVENTSTAB
    *& Form FILL_HEADINGTABLE
    * text
    * -->P_HEADING text *
    form fill_headingtable tables p_heading structure heading
    using tablename.
    case tablename.
    when 'HEADING'.
    p_heading-typ = 'H'.
    concatenate
    ' REPORT NAME:-' syrepid
    ' ABB Industry Pte Ltd' into p_heading-info.
    append p_heading.
    write sy-datum using edit mask '__/__/____' to sydatum.
    concatenate
    ' DATE:-' sydatum ' USER: ' sy-uname 'PAGE NO:' sypagno
    into p_heading-info.
    append p_heading.
    when 'HEADING1'.
    p_heading-typ = 'H'.
    p_heading-info = 'TOP-OF-COVER-PAGE'.
    append p_heading.
    when 'HEADING2'.
    p_heading-typ = 'H'.
    p_heading-info = 'END-OF-COVER-PAGE'.
    append p_heading.
    when 'HEADING3'.
    p_heading-typ = 'H'.
    p_heading-info = 'FOREIGN-TOP-OF-PAGE'.
    append p_heading.
    when 'HEADING4'.
    p_heading-typ = 'H'.
    p_heading-info = 'FOREIGN-END-OF-PAGE'.
    append p_heading.
    * WHEN 'HEADING5'.
    * P_HEADING-TYP = 'H'.
    * P_HEADING-INFO = 'LIST-MODIFY'.
    * APPEND P_HEADING.
    when 'HEADING6'.
    p_heading-typ = 'H'.
    p_heading-info = 'END-OF-PAGE'.
    append p_heading.
    when 'HEADING7'.
    p_heading-typ = 'H'.
    p_heading-info = 'END-OF-LIST'.
    append p_heading.
    when 'HEADING8'.
    p_heading-typ = 'H'.
    p_heading-info = 'TOP-OF-LIST'.
    append p_heading.
    endcase.
    endform. " FILL_HEADINGTABLE
    * FORM TOP_OF_PAGE *
    form top_of_page.
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = heading[]
    exceptions
    others = 1.
    endform.
    *& Form FILL_COLORSTRUCT
    * text
    * -->P_COLORSTRUCT text *
    form fill_colorstruct using p_colorstruct type slis_coltypes .
    p_colorstruct-heacolfir-col = 6.
    p_colorstruct-heacolfir-int = 1.
    p_colorstruct-heacolfir-inv = 1.
    endform. " FILL_COLORSTRUCT
    * FORM TOP_OF_COVERPAGE *
    form top_of_coverpage.
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = heading1[]
    exceptions
    others = 1.
    endform.
    * FORM END_OF_COVERPAGE *
    form end_of_coverpage.
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = heading2[]
    exceptions
    others = 1.
    endform.
    * FORM FOREIGN_TOP_OF_PAGE *
    form foreign_top_of_page.
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = heading3[]
    exceptions
    others = 1.
    endform.
    * FORM FOREIGN_END_OF_PAGE *
    form foreign_end_of_page.
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = heading4[]
    exceptions
    others = 1.
    endform.
    * FORM LIST_MODIFY *
    *FORM LIST_MODIFY.
    * CALL FUNCTION 'REUSE_ALV_COMMENTARY_WRITE'
    * EXPORTING
    * IT_LIST_COMMENTARY = HEADING5[]
    * EXCEPTIONS
    * OTHERS = 1.
    *ENDFORM.
    * FORM END_OF_PAGE *
    form end_of_page.
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = heading6[]
    exceptions
    others = 1.
    endform.
    * FORM END_OF_LIST *
    form end_of_list.
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = heading7[]
    exceptions
    others = 1.
    endform.
    * FORM TOP_OF_LIST *
    form top_of_list.
    call function 'REUSE_ALV_COMMENTARY_WRITE'
    exporting
    it_list_commentary = heading8[]
    exceptions
    others = 1.
    endform.
    *--- End of Program
    make use of there FMs
    SAP_CONVERT_TO_XLS_FORMAT
    -> MS_EXCEL_OLE_STANDARD_DAT
    -> RSPO_DOWNLOAD_SPOOLJOB
    RH_START_EXCEL_WITH_DATA
    but , Header Description length will be based on the Field length.
    <b>Reward if usefull</b>

  • What is the Best UK Hotspot Provider for using with the ipod Touch ?

    Just ordered my new ipod touch and can't wait to start using it. I just wondered whether anybody here in the UK had done any research regarding what Hotspot Provider to sign up with? I know there is the BT Openzone option or possibly a new company called 'The Cloud' that looks OK ... then there is the 'pay as you go' option or monthly contract choice to make? I know my ultimate choice might depend on what usuage I want or where I am most likely to want wifi? But any comments, observations or user experiences would be welcome.
    Thanks.
    Jon.

    The Cloud have an account specifically for iPod Touch users. I haven't set anything up on mine as I use my mobile for surfing when out and about - but I do check to see if there's free wi fi available before I use the mobile.

  • Web service and ejp enterprise in JBoss

    Is Java a compiled language?
    Actually, Java is a compiled/interpreted language. See the links below. This is the best classification for the Java language, in my opinion. Read [_this thread_|http://forums.sun.com/thread.jspa?threadID=5320643&start=0&tstart=0] and give your opinion, too! You are very welcome in this interesting discussion. The more I participate in this forum, the more I learn. The more you participate the more you learn, too! Thank you very much for this forum, Sun!
    [_CLDC HotSpot Implementation Architecture Guide Chapter 10_|http://java.sun.com/javame/reference/docs/cldc-hi-2.0-web/doc/architecture/html/VFP.html]
    +The 1.1.3 release of CLDC HotSpot Implementation included limited VFP support. This feature was supported only when running in interpreted mode. In this release, full vector floating point support is provided when the virtual machine is running in compiled mode.+
    [_Java Virtual Machines_|http://java.sun.com/j2se/1.4.2/docs/guide/vm/index.html]
    +Adaptive compiler - Applications are launched using a standard interpreter, but the code is then analyzed as it runs to detect performance bottlenecks, or "hot spots". The Java HotSpot VMs compile those performance-critical portions of the code for a boost in performance, while avoiding unnecessary compilation of seldom-used code (most of the program). The Java HotSpot VMs also usesthe adaptive compiler to decide, on the fly, how best to optimize compiled code with techniques such as in-lining. The runtime analysis performed by the compiler allows it to eliminate guesswork in determining which optimizations will yield the largest performance benefit.+
    [_CLDC HotSpot Implementation Architecture Guide Chapter 4_|http://java.sun.com/javame/reference/docs/cldc-hi-2.0-web/doc/architecture/html/DynamicCompiler.html]
    +Two different compilers are contained in the CLDC HotSpot Implementation virtual machine: an adaptive, just-in-time (JIT) compiler and an ahead-of-time compiler. The JIT compiler is an adaptive compiler, because it uses data gathered at runtime to decide which methods to compile. Only the methods that execute most frequently are compiled. The other methods are interpreted by the virtual machine.+
    [_Java Tuning White Paper_|http://java.sun.com/performance/reference/whitepapers/tuning.html]
    +One of the reasons that it's challenging to measure Java performance is that it changes over time. At startup, the JVM typically spends some time "warming up". Depending on the JVM implementation, it may spend some time in interpreted mode while it is profiled to find the 'hot' methods. When a method gets sufficiently hot, it may be compiled and optimized into native code.+
    [_Frequently Asked Questions About the Java HotSpot VM_|http://java.sun.com/docs/hotspot/HotSpotFAQ.html]
    +Remember how HotSpot works. It starts by running your program with an interpreter. When it discovers that some method is "hot" -- that is, executed a lot, either because it is called a lot or because it contains loops that loop a lot -- it sends that method off to be compiled. After that one of two things will happen, either the next time the method is called the compiled version will be invoked (instead of the interpreted version) or the currently long running loop will be replaced, while still running, with the compiled method. The latter is known as "on stack replacement", or OSR.+
    [_Java Technology Fundamentals Newsletter Index - Making Sense of the Java Classes & Tools: Collection Interfaces, What's New in the Java SE 6 Platform Beta 2, and More_|http://java.sun.com/mailers/newsletters/fundamentals/2006/July06.html]
    +Java: A simple, object-oriented, network-savvy, interpreted, robust, secure, architecture neutral, portable, high- performance, multithreaded, dynamic language.+
    [_Introduction to scripting in Java, Part 1_|http://www.javaworld.com/javaworld/jw-07-2007/jw-07-awscripting1.html?page=2]
    +Many of today's interpreted languages are not interpreted purely. Rather, they use a hybrid compiler-interpreter approach, as shown in Figure 1.3.+
    +In this model, the source code is first compiled to some intermediate code (such as Java bytecode), which is then interpreted. This intermediate code is usually designed to be very compact (it has been compressed and optimized). Also, this language is not tied to any specific machine. It is designed for some kind of virtual machine, which could be implemented in software. Basically, the virtual machine represents some kind of processor, whereas this intermediate code (bytecode) could be seen as a machine language for this processor.+
    +This hybrid approach is a compromise between pure interpreted and compiled languages, due to the following characteristics:+
    Because the bytecode is optimized and compact, interpreting overhead is minimized compared with purely interpreted languages.
    The platform independence of interpreted languages is inherited from purely interpreted languages because the intermediate code could be executed on any host with a suitable virtual machine.
    Lately, just-in-time compiler technology has been introduced, which allows developers to compile bytecode to machine-specific code to gain performance similar to compiled languages. I mention this technology throughout the book, where applicable.
    [_Compiled versus interpreted languages_|http://publib.boulder.ibm.com/infocenter/zoslnctr/v1r7/index.jsp?topic=/com.ibm.zappldev.doc/zappldev_85.html]
    Assembler, COBOL, PL/I, C/C&#43;&#43; are all translated by running the source code through a compiler. This results in very efficient code that can be executed any number of times. The overhead for the translation is incurred just once, when the source is compiled; thereafter, it need only be loaded and executed.
    Interpreted languages, in contrast, must be parsed, interpreted, and executed each time the program is run, thereby greatly adding to the cost of running the program. For this reason, interpreted programs are usually less efficient than compiled programs.
    +Some programming languages, such as REXX and Java, can be either interpreted or compiled.+

    Is Java a compiled language?
    Actually, Java is a compiled/interpreted language. See the links below. This is the best classification for the Java language, in my opinion. Read [_this thread_|http://forums.sun.com/thread.jspa?threadID=5320643&start=0&tstart=0] and give your opinion, too! You are very welcome in this interesting discussion. The more I participate in this forum, the more I learn. The more you participate the more you learn, too! Thank you very much for this forum, Sun!
    [_CLDC HotSpot Implementation Architecture Guide Chapter 10_|http://java.sun.com/javame/reference/docs/cldc-hi-2.0-web/doc/architecture/html/VFP.html]
    +The 1.1.3 release of CLDC HotSpot Implementation included limited VFP support. This feature was supported only when running in interpreted mode. In this release, full vector floating point support is provided when the virtual machine is running in compiled mode.+
    [_Java Virtual Machines_|http://java.sun.com/j2se/1.4.2/docs/guide/vm/index.html]
    +Adaptive compiler - Applications are launched using a standard interpreter, but the code is then analyzed as it runs to detect performance bottlenecks, or "hot spots". The Java HotSpot VMs compile those performance-critical portions of the code for a boost in performance, while avoiding unnecessary compilation of seldom-used code (most of the program). The Java HotSpot VMs also usesthe adaptive compiler to decide, on the fly, how best to optimize compiled code with techniques such as in-lining. The runtime analysis performed by the compiler allows it to eliminate guesswork in determining which optimizations will yield the largest performance benefit.+
    [_CLDC HotSpot Implementation Architecture Guide Chapter 4_|http://java.sun.com/javame/reference/docs/cldc-hi-2.0-web/doc/architecture/html/DynamicCompiler.html]
    +Two different compilers are contained in the CLDC HotSpot Implementation virtual machine: an adaptive, just-in-time (JIT) compiler and an ahead-of-time compiler. The JIT compiler is an adaptive compiler, because it uses data gathered at runtime to decide which methods to compile. Only the methods that execute most frequently are compiled. The other methods are interpreted by the virtual machine.+
    [_Java Tuning White Paper_|http://java.sun.com/performance/reference/whitepapers/tuning.html]
    +One of the reasons that it's challenging to measure Java performance is that it changes over time. At startup, the JVM typically spends some time "warming up". Depending on the JVM implementation, it may spend some time in interpreted mode while it is profiled to find the 'hot' methods. When a method gets sufficiently hot, it may be compiled and optimized into native code.+
    [_Frequently Asked Questions About the Java HotSpot VM_|http://java.sun.com/docs/hotspot/HotSpotFAQ.html]
    +Remember how HotSpot works. It starts by running your program with an interpreter. When it discovers that some method is "hot" -- that is, executed a lot, either because it is called a lot or because it contains loops that loop a lot -- it sends that method off to be compiled. After that one of two things will happen, either the next time the method is called the compiled version will be invoked (instead of the interpreted version) or the currently long running loop will be replaced, while still running, with the compiled method. The latter is known as "on stack replacement", or OSR.+
    [_Java Technology Fundamentals Newsletter Index - Making Sense of the Java Classes & Tools: Collection Interfaces, What's New in the Java SE 6 Platform Beta 2, and More_|http://java.sun.com/mailers/newsletters/fundamentals/2006/July06.html]
    +Java: A simple, object-oriented, network-savvy, interpreted, robust, secure, architecture neutral, portable, high- performance, multithreaded, dynamic language.+
    [_Introduction to scripting in Java, Part 1_|http://www.javaworld.com/javaworld/jw-07-2007/jw-07-awscripting1.html?page=2]
    +Many of today's interpreted languages are not interpreted purely. Rather, they use a hybrid compiler-interpreter approach, as shown in Figure 1.3.+
    +In this model, the source code is first compiled to some intermediate code (such as Java bytecode), which is then interpreted. This intermediate code is usually designed to be very compact (it has been compressed and optimized). Also, this language is not tied to any specific machine. It is designed for some kind of virtual machine, which could be implemented in software. Basically, the virtual machine represents some kind of processor, whereas this intermediate code (bytecode) could be seen as a machine language for this processor.+
    +This hybrid approach is a compromise between pure interpreted and compiled languages, due to the following characteristics:+
    Because the bytecode is optimized and compact, interpreting overhead is minimized compared with purely interpreted languages.
    The platform independence of interpreted languages is inherited from purely interpreted languages because the intermediate code could be executed on any host with a suitable virtual machine.
    Lately, just-in-time compiler technology has been introduced, which allows developers to compile bytecode to machine-specific code to gain performance similar to compiled languages. I mention this technology throughout the book, where applicable.
    [_Compiled versus interpreted languages_|http://publib.boulder.ibm.com/infocenter/zoslnctr/v1r7/index.jsp?topic=/com.ibm.zappldev.doc/zappldev_85.html]
    Assembler, COBOL, PL/I, C/C&#43;&#43; are all translated by running the source code through a compiler. This results in very efficient code that can be executed any number of times. The overhead for the translation is incurred just once, when the source is compiled; thereafter, it need only be loaded and executed.
    Interpreted languages, in contrast, must be parsed, interpreted, and executed each time the program is run, thereby greatly adding to the cost of running the program. For this reason, interpreted programs are usually less efficient than compiled programs.
    +Some programming languages, such as REXX and Java, can be either interpreted or compiled.+

  • I can�t understand this

    Is Java a compiled language?
    Actually, Java is a compiled/interpreted language. See the links below. This is the best classification for the Java language, in my opinion. Read [_this thread_|http://forums.sun.com/thread.jspa?threadID=5320643&start=0&tstart=0] and give your opinion, too! You are very welcome in this interesting discussion. The more I participate in this forum, the more I learn. The more you participate the more you learn, too! Thank you very much for this forum, Sun!
    [_CLDC HotSpot Implementation Architecture Guide Chapter 10_|http://java.sun.com/javame/reference/docs/cldc-hi-2.0-web/doc/architecture/html/VFP.html]
    +The 1.1.3 release of CLDC HotSpot Implementation included limited VFP support. This feature was supported only when running in interpreted mode. In this release, full vector floating point support is provided when the virtual machine is running in compiled mode.+
    [_Java Virtual Machines_|http://java.sun.com/j2se/1.4.2/docs/guide/vm/index.html]
    +Adaptive compiler - Applications are launched using a standard interpreter, but the code is then analyzed as it runs to detect performance bottlenecks, or "hot spots". The Java HotSpot VMs compile those performance-critical portions of the code for a boost in performance, while avoiding unnecessary compilation of seldom-used code (most of the program). The Java HotSpot VMs also usesthe adaptive compiler to decide, on the fly, how best to optimize compiled code with techniques such as in-lining. The runtime analysis performed by the compiler allows it to eliminate guesswork in determining which optimizations will yield the largest performance benefit.+
    [_CLDC HotSpot Implementation Architecture Guide Chapter 4_|http://java.sun.com/javame/reference/docs/cldc-hi-2.0-web/doc/architecture/html/DynamicCompiler.html]
    +Two different compilers are contained in the CLDC HotSpot Implementation virtual machine: an adaptive, just-in-time (JIT) compiler and an ahead-of-time compiler. The JIT compiler is an adaptive compiler, because it uses data gathered at runtime to decide which methods to compile. Only the methods that execute most frequently are compiled. The other methods are interpreted by the virtual machine.+
    [_Java Tuning White Paper_|http://java.sun.com/performance/reference/whitepapers/tuning.html]
    +One of the reasons that it's challenging to measure Java performance is that it changes over time. At startup, the JVM typically spends some time "warming up". Depending on the JVM implementation, it may spend some time in interpreted mode while it is profiled to find the 'hot' methods. When a method gets sufficiently hot, it may be compiled and optimized into native code.+
    [_Frequently Asked Questions About the Java HotSpot VM_|http://java.sun.com/docs/hotspot/HotSpotFAQ.html]
    +Remember how HotSpot works. It starts by running your program with an interpreter. When it discovers that some method is "hot" -- that is, executed a lot, either because it is called a lot or because it contains loops that loop a lot -- it sends that method off to be compiled. After that one of two things will happen, either the next time the method is called the compiled version will be invoked (instead of the interpreted version) or the currently long running loop will be replaced, while still running, with the compiled method. The latter is known as "on stack replacement", or OSR.+
    [_Java Technology Fundamentals Newsletter Index - Making Sense of the Java Classes & Tools: Collection Interfaces, What's New in the Java SE 6 Platform Beta 2, and More_|http://java.sun.com/mailers/newsletters/fundamentals/2006/July06.html]
    +Java: A simple, object-oriented, network-savvy, interpreted, robust, secure, architecture neutral, portable, high- performance, multithreaded, dynamic language.+
    [_Introduction to scripting in Java, Part 1_|http://www.javaworld.com/javaworld/jw-07-2007/jw-07-awscripting1.html?page=2]
    +Many of today's interpreted languages are not interpreted purely. Rather, they use a hybrid compiler-interpreter approach, as shown in Figure 1.3.+
    +In this model, the source code is first compiled to some intermediate code (such as Java bytecode), which is then interpreted. This intermediate code is usually designed to be very compact (it has been compressed and optimized). Also, this language is not tied to any specific machine. It is designed for some kind of virtual machine, which could be implemented in software. Basically, the virtual machine represents some kind of processor, whereas this intermediate code (bytecode) could be seen as a machine language for this processor.+
    +This hybrid approach is a compromise between pure interpreted and compiled languages, due to the following characteristics:+
    Because the bytecode is optimized and compact, interpreting overhead is minimized compared with purely interpreted languages.
    The platform independence of interpreted languages is inherited from purely interpreted languages because the intermediate code could be executed on any host with a suitable virtual machine.
    Lately, just-in-time compiler technology has been introduced, which allows developers to compile bytecode to machine-specific code to gain performance similar to compiled languages. I mention this technology throughout the book, where applicable.
    [_Compiled versus interpreted languages_|http://publib.boulder.ibm.com/infocenter/zoslnctr/v1r7/index.jsp?topic=/com.ibm.zappldev.doc/zappldev_85.html]
    Assembler, COBOL, PL/I, C/C+ are all translated by running the source code through a compiler. This results in very efficient code that can be executed any number of times. The overhead for the translation is incurred just once, when the source is compiled; thereafter, it need only be loaded and executed.+
    Interpreted languages, in contrast, must be parsed, interpreted, and executed each time the program is run, thereby greatly adding to the cost of running the program. For this reason, interpreted programs are usually less efficient than compiled programs.
    +Some programming languages, such as REXX and Java, can be either interpreted or compiled.+

    why this ; after the condition?
    and why do you put else + condition? Maybe you want to put else if?
    try this:
      if (a.length() == 1) {  // I always open and close { } to make my code more readable and avoid errors
        a = "0" + a;
      } else if (a.length() == 3) {
        a = a.substring(1, 3);
      }Hope this helps
    Zerjio

  • Java ME SDK 3.0 Released

    I am happy to announce the Revenue Release of Java Platform Micro Edition Software Development Kit 3.0.
    Java ME SDK includes the advanced tools found in Java Wireless Toolkit 2.5.2 [for CLDC] and Sun Java Toolkit 1.0 [for CDC] and many new features.
    Key Features
    * Integration with third-party emulators and Windows Mobile devices
    * On-device deployment and on-device debugging
    * CLDC/MIDP, CDC/FP/PBP/AGUI, and BD-J integrated into one SDK
    * New CLDC HotSpot Virtual Machine
    * Optimized MSA 1.1 stack with extensions
    * Profiling support
    * Network monitor
    * BD-J support
    * New development environment based on Netbeans Platform
    * Lightweight UI Toolkit (LWUIT) integration
    * Device search database integrated in SDK
    * JavaFX Mobile Emulator included
    Have a look for yourself: [http://java.sun.com/javame/downloads/sdk30.jsp]

    Are there any plans about releasing the SDK on Linux, and if yes, when?

  • RADIO APPLICATION compatible with on BB (BES)

    Dear,
    Regarding : RADIO APP (to listen to FM radio stations) compatible with on BB (BES)
    I would like to download and make use of a compatible RADIO (to listen to the radio) application on BlackBerry curve that is compatible with BlackBerry Enterprise Service I use (BES).
    unfortunaltely TUNEIN Radio aapp is not compatible with BlackBerry Enterprise Service I use (BES) used in the company.
    What Radio app can you advise to simply listen to FM radio stations.
    Thank you for your advice.
    Best regards,
    JM

    bropamda304 wrote:
    Hello guys,
                        i have a blackberry curve 9380 running OS 7.1, but i didn't find the radio Fm and the mobile hotspot  application installed on it. Can you tell me how i can install this applications?
                         Thanks.
    Hello bropamda304
    Welcome to BlackBerry Support Forums
    FM Radios are available on a limited Curve model even Bold and Toruch Models don't have that ,   I believe 9380 don't have any FM Radios as per this official page  http://worldwide.blackberry.com/blackberrycurve/9380/curve_specifications.jsp  and  this website  http://www.gsmarena.com/blackberry_curve_9380-4331.php  .
    Again , regarding Mobile Hotspot feature , This feasture depends on your Carrier and the service plan you have . If your Carrier supports Mobile Hotspot and you have the required plan then you'll see the same under Manage Connection . If you're not getting this feature then it is not something which you can Install from app world But you should call your Carrier Digicel to know further . You can also refer to this below KB Article : 
    KB31857  : How to setup and manage a Mobile Hotspot Connection
    Good luck.
    Click " Like " if you want to Thank someone.
    If Problem Resolves mark the post(s) as " Solution ", so that other can make use of it.

  • Is java a compiled language - part 2

    yamm_v6.6_6 said
    Again, I think you are confusing the compilation process and the interpretation process with the meaning of "compiled language" and "interpreted language", mr. jschell. Compilation process and interpretation process have definitions very well established in the Computer Science, as you said, and I agree with you. There are no controversies in those definitions. On the other hand, the meaning of "compiled language" and "interpreted language" might vary, because in this case there are controversiesNo.
    Compilers are one of the most well studied and well defined aspects of computer science more so than any other part of computer science.
    And the Dragon book is now, and has been for at least 20 years, the recognized authoratative source of that part of computer science.
    And there is nothing in there that supports your conclusion nor nothing that supports your term definitions.
    A language in of itself is never compiled nor interpreted. That book specifically defines the process under which a language must be processed to become either compiled and/or interpreted.
    If you wish to disagree with that then state something from that book or first demonstrate that that book is no longer the authorative source.
    Finally note that in terms of computer science none of the java documents (specifications or otherwise) are suitable authoratative sources. The java specifications although adequate are far from precise in the adherence to definitions in computer science, or even in the definition of java itself.

    Wow! I was just googling, and then look at what I found! This thread! Thanks, mr jschell, for your replies. I really appreciate them.
    jschell wrote:
    Finally note that in terms of computer science none of the java documents (specifications or otherwise) are suitable authoratative sources. The java specifications although adequate are far from precise in the adherence to definitions in computer science, or even in the definition of java itself.Well, do you want authoritative sources, right? How about this:
    [_CLDC HotSpot Implementation Architecture Guide Chapter 10_|http://java.sun.com/javame/reference/docs/cldc-hi-2.0-web/doc[_CLDC HotSpot Implementation Architecture Guide Chapter 10_|http://java.sun.com/javame/reference/docs/cldc-hi-2.0-web/doc/architecture/html/VFP.html]
    +The 1.1.3 release of CLDC HotSpot Implementation included limited VFP support. This feature was supported only when running in interpreted mode. In this release, full vector floating point support is provided when the virtual machine is running in compiled mode.+
    [_Java Virtual Machines_|http://java.sun.com/j2se/1.4.2/docs/guide/vm/index.html]
    +Adaptive compiler - Applications are launched using a standard interpreter, but the code is then analyzed as it runs to detect performance bottlenecks, or "hot spots". The Java HotSpot VMs compile those performance-critical portions of the code for a boost in performance, while avoiding unnecessary compilation of seldom-used code (most of the program). The Java HotSpot VMs also usesthe adaptive compiler to decide, on the fly, how best to optimize compiled code with techniques such as in-lining. The runtime analysis performed by the compiler allows it to eliminate guesswork in determining which optimizations will yield the largest performance benefit.+
    [_CLDC HotSpot Implementation Architecture Guide Chapter 4_|http://java.sun.com/javame/reference/docs/cldc-hi-2.0-web/doc/architecture/html/DynamicCompiler.html]
    +Two different compilers are contained in the CLDC HotSpot Implementation virtual machine: an adaptive, just-in-time (JIT) compiler and an ahead-of-time compiler. The JIT compiler is an adaptive compiler, because it uses data gathered at runtime to decide which methods to compile. Only the methods that execute most frequently are compiled. The other methods are interpreted by the virtual machine.+
    [_Java Tuning White Paper_|http://java.sun.com/performance/reference/whitepapers/tuning.html]
    +One of the reasons that it's challenging to measure Java performance is that it changes over time. At startup, the JVM typically spends some time "warming up". Depending on the JVM implementation, it may spend some time in interpreted mode while it is profiled to find the 'hot' methods. When a method gets sufficiently hot, it may be compiled and optimized into native code.+
    [_Frequently Asked Questions About the Java HotSpot VM_|http://java.sun.com/docs/hotspot/HotSpotFAQ.html]
    +Remember how HotSpot works. It starts by running your program with an interpreter. When it discovers that some method is "hot" -- that is, executed a lot, either because it is called a lot or because it contains loops that loop a lot -- it sends that method off to be compiled. After that one of two things will happen, either the next time the method is called the compiled version will be invoked (instead of the interpreted version) or the currently long running loop will be replaced, while still running, with the compiled method. The latter is known as "on stack replacement", or OSR.+
    [_Java Technology Fundamentals Newsletter Index - Making Sense of the Java Classes & Tools: Collection Interfaces, What's New in the Java SE 6 Platform Beta 2, and More_|http://java.sun.com/mailers/newsletters/fundamentals/2006/July06.html]
    +Java: A simple, object-oriented, network-savvy, interpreted, robust, secure, architecture neutral, portable, high- performance, multithreaded, dynamic language.+

  • IPhone4 and WIFI Access

    I understand you can use your iPhone4 to connect your laptop to the internet.....is this true and if so how does it work? My Verizon Access Manager just ask for my cell phone number to do this but don't really understand it.
    Thanks

    mjpeters01 wrote:
    I understand you can use your iPhone4 to connect your laptop to the internet.....is this true and if so how does it work? My Verizon Access Manager just ask for my cell phone number to do this but don't really understand it.
    Thanks
    Thank you all for the great input!
    I have included some additional information regarding the Hotspot feature for the iPhone 4 for your convenience.
    The iPhone 4 is capable of acting as a mobile Hotspot to share its data connection with up to five devices at once over Wi-Fi. It can also function as a modem via USB or Bluetooth. This capability is called Personal Hotspot on the device. See pricing below:
    $20.00 monthly recurring charge.
    2 GB monthly data allowance applies to all data transmitted (on handset and shared devices) while the mobile Hotspot application is active.
    $20 / 1 GB Overage Rate.
    This is in addition to the iPhone Data Plan.
    Detailed set up instructions for the Hotspot on the iPhone 4 can be found at the link below:
    http://support.apple.com/kb/HT4517

  • Wifi gone slow on ios devices connected to AEx

    I have the current gen airport express which is using both 5ghz and 2.4ghz. i have a mbp mid 2010, ipad mini and iphone 5 connected to it. i assume all the three devices are capable of 5ghz networking. my AE connects to my ISP via pppoe.
    i am on a 10 mbps line and i get a full 10 mbps (1.2mBps) on my macbook pro. for some reason iso devices are experiencing a terrible slow down. even the apple tv 3rd gen is experiencing lags. i barely get about 400kbps (50kBps) of speed from the ios devices. this is when there is no active download running on the macbook. i got this app from the mac app store called systempal and it doesn't indicate any activity on the mac.
    to confirm if this has nothing to do with the "speed test" app on the devices, i ran the test from different speed testing apps. all reported same results. and the speed test app on an android device on my network reported full download speed!
    also, when transfering some movie files to my ipad over wifi from my mac via itunes, the speed was terribly slow. it took about 20 minutes to transfer a 900 mb movie to my app via itunes file sharing.
    i have done the usualy troubleshooting like rebooting the devices and the router, resetting the network settings on my devices and resetting the router, etc.
    no go!
    can someone help please?

        Hi JBelcher!
    Thanks for troubleshooting your device with Samsung regarding the hotspot and iOS devices. I see that you mentioned you have no problem with Android or Windows devices, and the only issue is with Apple devices.
    Have you tried the hotspot in different areas with the iOS devices? Please do so and check the speeds in different areas.
    Please also complete a master reset on the Charge and let us know how this works for you. Here's a link on the master reset. http://bit.ly/w21WpW
    Thanks!
    Christina B
    VZW Support
    Follow us on Twitter @VZWSupport

  • Received mysteries text regarding a code send from my own Iphone after using a unprotected public Wifi-hotspot

    Today I received a text from my own Iphone number displayed as +28 18 xx xx that I have not written myself. It said I now had a new code thas was xxxx without specifying what for. Just before I got that text I had used a couple of different public wifi-hotspots. Should i be worried? After i searched Google all I could find was that it was a possibility your Iphone can be hacked on Wifi and the other option was that the code I received maybe was from the Verified SecureCode by Visa & Mastercard that I did sign up for a long time ago. If that was the case someone would be trying to use my credit card. If anyone could help me to disclose why i got the text from my own Iphone I would be very grateful.

    This is likely a Phishing message
    The following refers to eMails but can be applied to any message you receive regarding correspondence appearing to be from Apple
    Phishing & Other Suspicious Emails
    Identifying fraudulent "phishing" email - Apple Support
    Identifying legitimate emails from the iTunes Store - Apple Support
    ÇÇÇ

  • Lenovo g570 wifi hotspot sharing in windows 8 not working below the log

    Microsoft Windows [Version 6.2.9200]
    (c) 2012 Microsoft Corporation. All rights reserved.
    C:\Windows\system32>netsh wlan set hostednetwork mode=allow ssid=name wifi Hotsp
    ot key=yourpassword
    One or more parameters for the command are not correct or missing.
    Usage: set hostednetwork [mode=]allow|disallow [ssid=]<ssid>
    [key=]<passphrase> [keyUsage=]persistent|temporary
    Parameters:
    Tag Value
    mode Specifies whether to allow or disallow the hosted network.
    ssid SSID of the hosted network.
    key The user security key used by the hosted network.
    keyUsage Specifies whether the user security key is persistent or
    temporary.
    Remarks:
    This command changes the properties of hosted network, including: SSID
    of the hosted network, allow or disallow the hosted network in the system,
    and a user security key that is used by the hosted network.
    The user security key should be a string with 8 to 63 ASCII characters,
    eg. a passphrase, or 64 hexadecimal digits which represent 32 binary
    bytes.
    If keyUsage is specified as persistent, the security key will be saved
    and used when the hosted network is started again in future. Otherwise
    it will be used only when the current or next time the hosted network
    is started. Once the hosted network is stopped, the temporary security
    key will be deleted from the system. If keyUsage is not specified, it
    is persistent by default.
    This command requires administrator privileges to allow or disallow the
    hosted network.
    Examples:
    set hostednetwork mode=allow
    set hostednetwork ssid=ssid1
    set hostednetwork key=passphrase keyUsage=persistent
    C:\Windows\system32>
    C:\Windows\system32>netsh wlan set hostednetwork mode=allow
    The hosted network mode has been set to allow.
    C:\Windows\system32>ssid=name wifi Hotspot key=yourpassword
    'ssid' is not recognized as an internal or external command,
    operable program or batch file.
    C:\Windows\system32>netsh wlan set hostednetwork mode=allow ssid=name wifi Hotsp
    ot key=yourpassword
    One or more parameters for the command are not correct or missing.
    Usage: set hostednetwork [mode=]allow|disallow [ssid=]<ssid>
    [key=]<passphrase> [keyUsage=]persistent|temporary
    Parameters:
    Tag Value
    mode Specifies whether to allow or disallow the hosted network.
    ssid SSID of the hosted network.
    key The user security key used by the hosted network.
    keyUsage Specifies whether the user security key is persistent or
    temporary.
    Remarks:
    This command changes the properties of hosted network, including: SSID
    of the hosted network, allow or disallow the hosted network in the system,
    and a user security key that is used by the hosted network.
    The user security key should be a string with 8 to 63 ASCII characters,
    eg. a passphrase, or 64 hexadecimal digits which represent 32 binary
    bytes.
    If keyUsage is specified as persistent, the security key will be saved
    and used when the hosted network is started again in future. Otherwise
    it will be used only when the current or next time the hosted network
    is started. Once the hosted network is stopped, the temporary security
    key will be deleted from the system. If keyUsage is not specified, it
    is persistent by default.
    This command requires administrator privileges to allow or disallow the
    hosted network.
    Examples:
    set hostednetwork mode=allow
    set hostednetwork ssid=ssid1
    set hostednetwork key=passphrase keyUsage=persistent
    C:\Windows\system32>
    C:\Windows\system32>netsh wlan show drivers
    Interface name: Wi-Fi
    Driver : Qualcomm Atheros AR9285 Wireless Network Adapter
    Vendor : Qualcomm Atheros Communications Inc.
    Provider : Microsoft
    Date : 7/3/2012
    Version : 3.0.0.130
    INF file : C:\Windows\INF\netathrx.inf
    Files : 2 total
    C:\Windows\system32\DRIVERS\athrx.sys
    C:\Windows\system32\drivers\vwifibus.sys
    Type : Native Wi-Fi Driver
    Radio types supported : 802.11b 802.11g 802.11n
    FIPS 140-2 mode supported : Yes
    802.11w Management Frame Protection supported : Yes
    Hosted network supported : Yes
    Authentication and cipher supported in infrastructure mode:
    Open None
    Open WEP-40bit
    Open WEP-104bit
    Open WEP
    WPA-Enterprise TKIP
    WPA-Personal TKIP
    WPA2-Enterprise TKIP
    WPA2-Personal TKIP
    Vendor defined TKIP
    WPA2-Enterprise Vendor defined
    Vendor defined Vendor defined
    WPA-Enterprise CCMP
    WPA-Personal CCMP
    WPA2-Enterprise CCMP
    Vendor defined CCMP
    WPA2-Enterprise Vendor defined
    Vendor defined Vendor defined
    WPA2-Personal CCMP
    Vendor defined Vendor defined
    Authentication and cipher supported in ad-hoc mode:
    Open None
    Open WEP-40bit
    Open WEP-104bit
    Open WEP
    WPA2-Personal CCMP
    Vendor defined Vendor defined
    Interface name: Wi-Fi 6
    Driver : Belkin USB Wireless Adaptor
    Vendor : Belkin International, Inc.
    Provider : Microsoft
    Date : 6/1/2011
    Version : 1086.41.214.2012
    INF file : C:\Windows\INF\net8192su64.inf
    Files : 2 total
    C:\Windows\system32\DRIVERS\RTL8192su.sys
    C:\Windows\system32\drivers\vwifibus.sys
    Type : Native Wi-Fi Driver
    Radio types supported : 802.11n 802.11g 802.11b
    FIPS 140-2 mode supported : No
    802.11w Management Frame Protection supported : No
    Hosted network supported : Yes
    Authentication and cipher supported in infrastructure mode:
    Open None
    WPA2-Personal CCMP
    Open WEP-40bit
    Open WEP-104bit
    Open WEP
    WPA-Enterprise TKIP
    WPA-Personal TKIP
    WPA2-Enterprise TKIP
    WPA2-Personal TKIP
    WPA-Enterprise CCMP
    WPA-Personal CCMP
    WPA2-Enterprise CCMP
    Vendor defined TKIP
    Vendor defined CCMP
    Authentication and cipher supported in ad-hoc mode:
    Open None
    Open WEP-40bit
    Open WEP-104bit
    Open WEP
    WPA2-Personal CCMP
    C:\Windows\system32>Type netsh wlan set hostednetwork mode=allow ssid=Hotspotnam
    e key=password
    The system cannot find the file specified.
    Error occurred while processing: netsh.
    The system cannot find the file specified.
    Error occurred while processing: wlan.
    The system cannot find the file specified.
    Error occurred while processing: set.
    The system cannot find the file specified.
    Error occurred while processing: hostednetwork.
    The system cannot find the file specified.
    Error occurred while processing: mode.
    The system cannot find the file specified.
    Error occurred while processing: allow.
    The system cannot find the file specified.
    Error occurred while processing: ssid.
    The system cannot find the file specified.
    Error occurred while processing: Hotspotname.
    The system cannot find the file specified.
    Error occurred while processing: key.
    The system cannot find the file specified.
    Error occurred while processing: password.
    C:\Windows\system32>wlan set hostednetwork mode=allow ssid=Hotspotname key=passw
    ord
    'wlan' is not recognized as an internal or external command,
    operable program or batch file.
    C:\Windows\system32>netsh wlan set hostednetwork mode=allow ssid=Hotspotname key
    =password
    The hosted network mode has been set to allow.
    The SSID of the hosted network has been successfully changed.
    The user key passphrase of the hosted network has been successfully changed.
    C:\Windows\system32>netsh wlan start hostednetwork
    The hosted network couldn't be started.
    A device attached to the system is not functioning.
    C:\Windows\system32>
    Solved!
    Go to Solution.

    hi airtet,
    Seing that you have an both the Qualcomm Atheros AR9285 Wireless Network Adapter and the Belkin USB Wireless Adaptor, have you tried disabling one or the other and run Connectify?
    You may also want to check this discussion for more info and troubleshooting.
    Regards
    Did someone help you today? Press the star on the left to thank them with a Kudo!
    If you find a post helpful and it answers your question, please mark it as an "Accepted Solution"! This will help the rest of the Community with similar issues identify the verified solution and benefit from it.
    Follow @LenovoForums on Twitter!

  • EXCEPTION_ACCESS_VIOLATION issue with regard to OpenGL

    EXCEPTION_ACCESS_VIOLATION issue with OpenGL occurring with the Java SE Runtime Environment 6u17 on Windows 7, 32 & 64 bit platforms.   Version 6u24 and later does not produce the crash. However, we cannot use any other version of JRE other than 6u17 due to customer constraints. The two primary scenarios where crash  (jvm exits) occurs are: 1) toggling between two applications then selecting an image item on screen ( OpenGL rendering takes place)... (Log file: hs_err_pid6568_C2_TC_error.log). Scenario 2: When panning an image (OpenGL rendering takes place) and then clicking a button to load additional image data (OpenGL rendering takes place), crash occurs (Log file: hs_err_pid6036_ENR_TERRAIN_crash.log)
    Is there any Oracle documentation noting any JRE fixes between 6u17 and 6u24 that might at least mitigate the issue(s) described above? Or information with regard to issues between JRE's and OpenGL ? Also, if anyone can advise on code mods, etc that we can try toward said mitigation efforts of course would be helpful.
    The following snippet hopefully should suffice as general example for both noted issues:
    Log snippet ( hs_err_pid6568_C2_TC_error.log):
    # A fatal error has been detected by the Java Runtime Environment:
    #  EXCEPTION_ACCESS_VIOLATION (0xc0000005) at pc=0x6ec158d6, pid=6568, tid=7176
    # JRE version: 6.0_17-b04
    # Java VM: Java HotSpot(TM) Client VM (14.3-b01 mixed mode windows-x86 )
    # Problematic frame:
    # C  [GLU32.dll+0x58d6]
    # If you would like to submit a bug report, please visit:
    #   http://java.sun.com/webapps/bugreport/crash.jsp
    # The crash happened outside the Java Virtual Machine in native code.
    # See problematic frame for where to report the bug.
    ---------------  T H R E A D  ---------------
    Current thread (0x4d996000):  JavaThread "pool-6-thread-1" [_thread_in_native, id=7176, stack(0x502b0000,0x50300000)]
    siginfo: ExceptionCode=0xc0000005, reading address 0x00000028
    Registers:
    EAX=0x00179ca0, EBX=0x00179ce8, ECX=0x00179ca0, EDX=0x5691e9a0
    ESP=0x502ff4ac, EBP=0x502ff4cc, ESI=0x00000000, EDI=0x00179ca0
    EIP=0x6ec158d6, EFLAGS=0x00010246
    Top of Stack: (sp=0x502ff4ac)
    0x502ff4ac:   6ec13548 001833f8 0018e060 0018e018
    0x502ff4bc:   00179ca0 00000000 00000018 502ff4f0
    0x502ff4cc:   502ff4f0 6ec165a8 001a5038 0018e048
    0x502ff4dc:   0018e018 001cd728 6ec147d7 001cd728
    0x502ff4ec:   001a5038 502ff514 6ec14925 2e5096af
    0x502ff4fc:   5f338d35 5038bf30 001a5038 001a5038
    0x502ff50c:   02e177c2 0016b930 502ff534 6ec12c65
    0x502ff51c:   001a5038 5038bf30 0000001d 001a5038
    Instructions: (pc=0x6ec158d6)
    0x6ec158c6:   30 dc 61 30 eb e7 dd db dd d9 dd d8 c3 dd 41 28
    0x6ec158d6:   dc 66 28 dd 42 28 dc 61 28 d9 c0 d8 c2 d9 ee d8
    Stack: [0x502b0000,0x50300000],  sp=0x502ff4ac,  free space=317k
    Native frames: (J=compiled Java code, j=interpreted, Vv=VM code, C=native code)
    C  [GLU32.dll+0x58d6]
    C  [GLU32.dll+0x65a8]
    C  [GLU32.dll+0x4925]
    C  [GLU32.dll+0x2c65]
    C  [pep_gx.dll+0x3dc8]
    Java frames: (J=compiled Java code, j=interpreted, Vv=VM code)
    j  com.cimmeria.efb.crom.tc.cmn.jni.ChartRendererNative.nativeGetRenderedChart(Lcom/cimmeria/efb/crom/common/utility/ILogUtility;Lcom/cimmeria/efb/crom/common/jni/JNIErrorInfo;Lcom/cimmeria/efb/crom/tc/cmn/jni/IChartImageProxy;IFZI)V+0
    j  com.cimmeria.efb.crom.tc.cmn.jni.ChartRendererNative$RenderCallable.call_aroundBody2(Lcom/cimmeria/efb/crom/tc/cmn/jni/ChartRendererNative$RenderCallable;Lorg/aspectj/lang/JoinPoint;)Ljava/lang/Object;+51
    j  com.cimmeria.efb.crom.tc.cmn.jni.ChartRendererNative$RenderCallable.call_aroundBody3$advice(Lcom/cimmeria/efb/crom/tc/cmn/jni/ChartRendererNative$RenderCallable;Lorg/aspectj/lang/JoinPoint;Lcom/cimmeria/efb/crom/tc/cmn/aop/RuntimeExceptionAndErrorMonitorAspect;Lorg/aspectj/runtime/internal/AroundClosure;Lorg/aspectj/lang/JoinPoint;)Ljava/lang/Object;+14
    j  com.cimmeria.efb.crom.tc.cmn.jni.ChartRendererNative$RenderCallable.call()Ljava/lang/Object;+34
    j  java.util.concurrent.FutureTask$Sync.innerRun()V+30
    j  java.util.concurrent.FutureTask.run()V+4
    J  java.util.concurrent.ThreadPoolExecutor$Worker.runTask(Ljava/lang/Runnable;)V
    j  java.util.concurrent.ThreadPoolExecutor$Worker.run()V+28
    j  java.lang.Thread.run()V+11
    v  ~StubRoutines::call_stub

    There are some other solutions possible.
    1. Get another driver. The only one known is java only so it wont crash. But is not not free.
    2. Use a proxy driver. That means that another app actually does the database work. If it crashes you just start it again (which you can do in your main code.) That way it won't take down your server. There are commercial jdbc drivers that claim MS Access but are are really just proxy implementations as an option in this area.

Maybe you are looking for

  • Analytic View activation fails because of a Calculated Measure

    I'm working with HANA SPS02 here. Step 1 I have an Analytic View where I have CALDAY among Private Attributes and VALUE in Measures. I add an Attribute View with UCALDAY (whatever it means) and implement a new calculated measure CALCVAL with logic as

  • How can i get cbs shows in uk

    it is infuriating that the US itunes store has all the tv shows i want but cannot buy them in the uk i.e. csi ncis other networks have realised and are releasing new series simultaneously in uk and US. i.e. castle surely cbs must comprehend if they c

  • Rollover state now not working

    I had my social media images change from grey to a colour upon rollover, but since the update it isn't working, not even working in the preview, but it does work on normal state Upon roller of a grey image: colour blue e.g. glow set to 100 opacity, 1

  • Tar -x never finishes. [Solved]

    I'm a complete beginner to Arch. I've installed the system, and I'm trying to setup yaourt so I can install AUR packages more easily. The problem is, tar isn't working. I downloaded yaourt.tar.gz from the AUR, but when I type "tar -x yaourt.tar.gz" i

  • T42 driver for ACPI\ATM1100\4&61F3B4B&0

    New XPSP3 installation, I found all the drivers on the LENOVO site except for OTHER DEVICE (ACPI\ATM1100\4&61F3B4B&0) Can anyone help me with this one, it must be related with power management but none such drivers works. THANKS