URL BufferedReader and Speed

Hello :)
This is my first post on the java forums :P and I wanna say hello to everyone here ^^
So here it goes ^^
I'm using BufferedReader with a StreamReader and a URL, the prolem is that when I use the java program and the program Bufferes the URL file my connection freezes or slows down for one or few secs.
I was wondering if there is any way I could put less pressure on the internet connection, maybe by limiting the download speed for the program.
Hope somebody can help me :P
darksky0

Post a small demo code that is generally compilable, runnable and could reproduce your problem. See: http://homepage1.nifty.com/algafield/sscce.html and http://www.yoda.arachsys.com/java/newsgroups.html
And when you post the code, you should properly format them. See http://forum.java.sun.com/help.jspa?sec=formatting

Similar Messages

  • How to display URL images and URL link (html) from Smartforms?

    Hi Gurus,
    I'm having difficulty on how to display targeted URL images and URL link from the smartforms, after i sending it out as html mail. The mail i sent just can be preview as a plain text, which can't execute the html code that i put inside the smartforms itself. I follow a few step from this very useful blog.. Hopefully, you guys can give me some solutions or ideas on this.
    /people/pavan.bayyapu/blog/2005/08/30/sending-html-email-from-sap-crmerp -thanks to Pavan for his useful blog.
    My code is like this..
    <--- Start Code.
    FORM call_smartforms.
      DATA : lv_subject TYPE so_obj_des,
             lc_true(1) VALUE 'X',
             lw_control_parameters TYPE ssfctrlop,
             lw_output_options TYPE ssfcompop,
             lc_graphics(8) VALUE 'GRAPHICS',
             lw_xsfparam_line TYPE ssfxsfp,
             lc_extract(7) VALUE 'EXTRACT',
             lc_graphics_directory(18) VALUE 'GRAPHICS-DIRECTORY',
             lc_mygraphics(11) VALUE 'mygraphics/',
             lc_content_id(10) VALUE 'CONTENT-ID',
             lc_enable(6) VALUE 'ENABLE',
             lw_job_output_info TYPE ssfcrescl,
             lw_html_data TYPE trfresult,
             lw_graphics TYPE ssf_xsf_gr,
             lt_graphics TYPE tsf_xsf_gr,
             lv_html_xstr TYPE xstring,
             lw_html_raw LIKE LINE OF lw_html_data-content,
             lv_incode TYPE tcp00-cpcodepage VALUE '4110',
             lv_html_str TYPE string,
             lv_html_len TYPE i,
             lc_utf8(5) VALUE 'utf-8',
             lc_latin1(6) VALUE 'latin1',
             lv_offset TYPE i,
             lv_length TYPE i,
             lv_diff TYPE i,
             lt_soli TYPE soli_tab,
             lw_soli TYPE soli,
             lc_mime_helper TYPE REF TO cl_gbt_multirelated_service,
             lv_name TYPE mime_text VALUE 'sapwebform.htm',
             lv_xstr TYPE xstring,
             lw_raw TYPE bapiconten,
             lt_solix TYPE solix_tab,
             lw_solix TYPE solix,
             lv_filename TYPE string,
             lv_content_id TYPE string,
             lv_content_type TYPE w3conttype,
             lv_obj_len TYPE so_obj_len,
             lv_bmp TYPE so_fileext VALUE 'BMP',
             lv_description TYPE so_obj_des VALUE 'Graphic in BMP format',
             lc_doc_bcs TYPE REF TO cl_document_bcs,
             lc_bcs TYPE REF TO cl_bcs,
             lc_send_exception TYPE REF TO cx_root,
             lw_adsmtp TYPE lty_adsmtp,
             lv_mail_address TYPE ad_smtpadr,
             lc_recipient TYPE REF TO if_recipient_bcs,
             lc_send_request TYPE REF TO cl_bcs,
             lv_sent_to_all TYPE os_boolean.
      DATA : v_language TYPE sflangu VALUE 'E',
             v_e_devtype TYPE rspoptype.
      v_form_name = 'ZTEST_EMAIL'.
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname           = v_form_name
        IMPORTING
          fm_name            = v_namef
        EXCEPTIONS
          no_form            = 1
          no_function_module = 2
          OTHERS             = 3.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
    starting here. ***
    Set title for the output
      lv_subject = 'Smartforms.'.
    Set control parameters to "no dialog"
      lw_control_parameters-no_dialog = lc_true.
    IF lw_service_subject-code = lc_fm1.
    *--- To get output device type
      CALL FUNCTION 'SSF_GET_DEVICE_TYPE'
        EXPORTING
          i_language    = v_language
          i_application = 'SAPDEFAULT'
        IMPORTING
          e_devtype     = v_e_devtype.
      lw_output_options-tdprinter = v_e_devtype.
      lw_control_parameters-getotf = 'X'.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
    Set output options
      lw_output_options-xsf        = lc_true.
      lw_output_options-xsfcmode   = lc_true.
      lw_output_options-xsfoutmode = 'A'.
      lw_output_options-xsfoutdev  = space.
      lw_output_options-xsfformat  = lc_true.
      lw_xsfparam_line-name  = lc_graphics.
      lw_xsfparam_line-value = lc_extract.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
      lw_xsfparam_line-name  = lc_graphics_directory.
      lw_xsfparam_line-value = lc_mygraphics.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
      lw_xsfparam_line-name  = lc_content_id.
      lw_xsfparam_line-value = lc_enable.
      APPEND lw_xsfparam_line TO lw_output_options-xsfpars.
    Get the smartform content
      CALL FUNCTION v_namef
        EXPORTING
          control_parameters   = lw_control_parameters
          output_options       = lw_output_options
    *pass other application specific parameters (eg order number, items ).
      IMPORTING
          job_output_info    = lw_job_output_info
      TABLES
          tt_tabh              = tt_tabh
          tt_tabb              = tt_tabb
          tt_tabf              = tt_tabf
      EXCEPTIONS
          formatting_error = 1
          internal_error   = 2
          send_error       = 3
          user_canceled    = 4
          OTHERS           = 5.
      IF sy-subrc = 0.
       break mhusin.
      ENDIF.
      lw_html_data  = lw_job_output_info-xmloutput-trfresult.
      lt_graphics[] = lw_job_output_info-xmloutput-xsfgr[].
      CLEAR lv_html_xstr.
      LOOP AT lw_html_data-content INTO lw_html_raw.
        CONCATENATE lv_html_xstr lw_html_raw INTO lv_html_xstr IN BYTE MODE.
      ENDLOOP.
      lv_html_xstr = lv_html_xstr(lw_html_data-length).
      CALL FUNCTION 'SCP_TRANSLATE_CHARS'
        EXPORTING
          inbuff       = lv_html_xstr
          incode       = lv_incode
          csubst       = lc_true
          substc_space = lc_true
        IMPORTING
          outbuff      = lv_html_str
          outused      = lv_html_len
        EXCEPTIONS
          OTHERS       = 1.
    *HACK THE HTML CODE GENERATED BY SMARTFORM TO MAKE THE
    *EXTERNAL IMAGES APPEAR AS <IMG> TAG IN HTML
      REPLACE ALL OCCURRENCES OF '<IMG' IN lv_html_str WITH '<IMG' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '/>' IN lv_html_str WITH '/>' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '</A>' IN lv_html_str WITH '' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '<' IN lv_html_str WITH '<' IGNORING CASE.
      REPLACE ALL OCCURRENCES OF '>' IN lv_html_str WITH '>' IGNORING CASE.
    CALL METHOD html_control - >load_mime_object
       EXPORTING
         object_id  = 'ZWN'
         object_url = 'ZWN.GIF'
       EXCEPTIONS
         OTHERS     = 1.
      REPLACE ALL OCCURRENCES OF lc_utf8 IN lv_html_str WITH lc_latin1.
    REPLACE ALL OCCURRENCES OF lc_utf8 IN lv_html_str WITH 'iso-8859-1'.
       break mhusin.
      lv_html_len = STRLEN( lv_html_str ).
      lv_offset = 0.
      lv_length = 255.
      WHILE lv_offset < lv_html_len.
        lv_diff = lv_html_len - lv_offset.
        IF lv_diff > lv_length.
          lw_soli-line = lv_html_str+lv_offset(lv_length).
        ELSE.
          lw_soli-line = lv_html_str+lv_offset(lv_diff).
        ENDIF.
        APPEND lw_soli TO lt_soli.
        ADD lv_length TO lv_offset.
      ENDWHILE.
      CREATE OBJECT lc_mime_helper.
      CALL METHOD lc_mime_helper->set_main_html
        EXPORTING
          content     = lt_soli
          filename    = lv_name
          description = lv_subject.
      LOOP AT lt_graphics INTO lw_graphics.
        CLEAR lv_xstr.
        LOOP AT lw_graphics-content INTO lw_raw.
          CONCATENATE lv_xstr lw_raw-line INTO lv_xstr IN BYTE MODE.
        ENDLOOP.
        lv_xstr = lv_xstr(lw_graphics-length).
        lv_offset = 0.
        lv_length = 255.
        CLEAR lt_solix[].
        WHILE lv_offset < lw_graphics-length.
          lv_diff = lw_graphics-length - lv_offset.
          IF lv_diff > lv_length.
            lw_solix-line = lv_xstr+lv_offset(lv_length).
          ELSE.
            lw_solix-line = lv_xstr+lv_offset(lv_diff).
          ENDIF.
          APPEND lw_solix TO lt_solix.
          ADD lv_length TO lv_offset.
        ENDWHILE.
        CONCATENATE lc_mygraphics lw_graphics-graphics text-001 INTO lv_filename.
        CONCATENATE lc_mygraphics lw_graphics-graphics text-001 INTO lv_content_id.
        lv_content_type = lw_graphics-httptype.
        lv_obj_len      = lw_graphics-length.
    *Add images to the email
        CALL METHOD lc_mime_helper->add_binary_part
          EXPORTING
            content      = lt_solix
            filename     = lv_filename
            extension    = lv_bmp
            description  = lv_description
            content_type = lv_content_type
            length       = lv_obj_len
            content_id   = lv_content_id.
      ENDLOOP.
      TRY.
          lv_subject = lv_subject.
          lc_doc_bcs = cl_document_bcs=>create_from_multirelated(
                   i_subject          = lv_subject
                   i_multirel_service = lc_mime_helper ).
        CATCH cx_document_bcs INTO lc_send_exception.
        CATCH cx_bcom_mime INTO lc_send_exception.
        CATCH cx_gbt_mime INTO lc_send_exception.
      ENDTRY.
    Create send request
      TRY.
          lc_bcs = cl_bcs=>create_persistent( ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
      TRY.
          lc_bcs->set_document( i_document = lc_doc_bcs ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
    Set-up email receiver
      lv_mail_address = '[email protected]'.
    TRANSLATE lv_mail_address TO UPPER CASE.
      TRY.
          lc_recipient = cl_cam_address_bcs=>create_internet_address(
              i_address_string = lv_mail_address ).
        CATCH cx_address_bcs INTO lc_send_exception.
      ENDTRY.
      TRY.
          lc_bcs->add_recipient( i_recipient = lc_recipient ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
    Send smartforms as HTML email
      TRY.
          lc_bcs->send( ).
        CATCH cx_send_req_bcs INTO lc_send_exception.
      ENDTRY.
      COMMIT WORK.
      WRITE:/ 'Mail sent'.
    ENDFORM.                    "call_smartforms
    End Code --->
    Thanks and Regards.

    1- put your images in a directory under the web app directory. Example: app/images/
    2- in your jsp, use: String file = application.getRealPath("/images/"); to get the images directory. See http://java.sun.com/j2ee/sdk_1.3/techdocs/api/javax/servlet/ServletContext.html#getRealPath(java.lang.String)
    3- it's not the right forum to post this kind of question. Post them in the JSP/Servlet JSTL forum instead

  • HT3281 Podcasts from Current Tv, since three weeks prior to the Nov 2012 election have had a url problem and cannot be played on my mac mini 2011 with 10.8.2 and the latest Itunes? anyone know why ? I am in contact with Itunes now and they wanted screensh

    Podcasts from Current Tv, since three weeks prior to the Nov 2012 election have had a url problem and cannot be played on my mac mini 2011 with 10.8.2 and the latest Itunes? anyone know why> ? I am in contact with Itunes now and they wanted screenshots of the problem, I can get these current tv episodes with a vpn and my isp says they are not blocking them, but i was surprised that prior to the election they were blocked, ?
    I also can get them on my Android Samsung Galaxy note 2 with no problem but on the Macmini cannot>/? I Unsubscribed and subscribed many times but still no luck, any ideas? I am waiting for the senior advisor to get back to me on this issue. I am in THailand now where the problem is happening and as I said the ISP says they do not block any podcasts.I also do not want it on my iphone 5, so I have to wait and see why the mac mini is not getting it.

    I seem to have fixed it by putting <div  class="clearfloat"></div> after the navigation bar?

  • MacBook Pro (13-inch, Mid 2009) - Maximum internal hard drive size and speed?

    What is the maximum size of hard drive and speed for an internal hard drive to my Macbook Pro (13 inch, Mid 2009), please?
    I bought myself a Technics 1TB, 7200 rpm internal hardrive. Made a clone successfully in Super Duper.
    It fits, but It is not available for starting up my Macbook Pro. Not available in System Prefs, but visible and grey in Disc Utility.
    Although it starts up my Mac Pro just fine.. but not my Macbook Pro.
    Is there a limit of hard drive specifics?
    What is the maximum size of hard drive and speed for an internal hard drive to my Macbook Pro (13 inch, Mid 2009), please?

    Thanks for the reply
    I cloned the Technics HDD ( 2,5" HGST Travelstar 7K1000 - 1 TB : HTS721010A9E630) from the MBP.
    I tried to boot it up with my Technincs ( 2,5" HGST Travelstar 7K1000 - 1 TB : HTS721010A9E630) installed in my MBP (as my internal hard drive).

  • Can I use more than one blue-tooth device at the same time on IPhone 4S? Like a wireless headsets and speed and cadence sensor for cycling computer, receive the data and listen music simultaneously

    Can I use more than one blue-tooth device at the same time on IPhone 4S? Like a wireless headsets and speed and cadence sensor for cycling computer, receive the data and listen music simultaneously

    As long as the profiles are different (ex. HID vs AD2P) you will not have any issues. But say if you try to use 2 keyboards at once, it won't work. Or 2 headsets at once. Your scenario seems fine.

  • I am Unable to Type or use Keyboard in Firefox 18.0 anywhere including URL bar and Search Bar. how should rectify this?

    I am unable to type anything or use keyboard to type in Firefox. I am using Firefox 18.0 installed on Windows 7.
    I am able to Paste into the URL bar and also the Search bar but absolutely not able to type in it.
    I have already tried the "reset" option but still unable to type.
    Also tried Firefox in safe mode with disabled addons but still unable to type.
    Installed a fresh copy of firefox after uninstalling Firefox and deleting the old folder "Mozilla Firefox" from windows. but still unable to type.
    Please tell me a solution to this.

    I'm not on a laptop so I don't have a FN key. But on my desktop F9 + Windows key appears to have resolved the issue for me. Thanks for the help!

  • Can't a BufferedReader and a BufferedWriter be open at the same time?

    To the experienced:
    I am writing a class to selectively extract data from an Excel file, and write out to a plain text file. I am using JDeveloper 11.1.1.3.
    It works fine and writes out the output file as expected when reading data from the spreadsheet and directly writing to the output file.
    However, I need to convert the data in one of the columns based on a conversion table. The conversion table is a plain text file that has two columns separated by a space. I read in the conversion table using a BufferedReader and put it in a HashMap for use. However, once the Buffered Reader and the HashMap are introduced, the BufferedWriter does not work any more.
    The way the class works is that, the main() method (not shown here) reads data from the Excel sheet into a List, and then calls the method showExcelData() (as shown below) to write out data from the List to a plain text file.
    When the green color code was not added, the output file was written to the disk fine. A sample line from the output file is:
    JOHN:DOE:11223344:12345:20110824By adding the green code, I expect it to output the line as:
    JOHN:DOE:11223344:STUDENT:20110824The problem is, after the green code is added, the output file the program writes to the disk is zero size.
    I added the System.out.println() lines for troubleshooting. These lines show that the BufferedWriter <b>out</b> is not null, and the conversion is actually taking place. But <b>out.write()</b> simply does not work. Commenting out the green code, the program is working again - of course, without date conversion for that column.
    There must be something wrong but I can not see where it is wrong.
    Your help is very much appreciated!
    Newman
    <pre>
    private static void showExcelData(List sheetData, String outputFilename) throws IOException {
    BufferedWriter out = new BufferedWriter(new FileWriter(outputFilename));
    System.out.println("Is out null? " + (out == null));
    BufferedReader in = null;
    for (int i = 3; i < sheetData.size(); i++) {
    List list = (List)sheetData.get(i);
    for (int j = 0; j < list.size(); j++) {
    HSSFCell cell = (HSSFCell)list.get(j);
    if (j == 5 || j == 6 || j == 7 || j == 11) {
    <font color="green"><b>
    // The column with index 11 is the column of data that needs conversion:
    if (j == 11) {
    String convertionFilename = "ConversionTable.txt";
    Map<String, String> liveMap =
    new HashMap<String, String>();
    try {
    in = new BufferedReader(new FileReader(convertionFilename));
    String line = null;
    while ((line = in.readLine()) != null) {
    String[] keyValue = line.split(" ");
    liveMap.put(keyValue[0], keyValue[1]);
    } catch (IOException e) {
    String message = e.getMessage();
    String titleCode =
    cell.getRichStringCellValue().toString();
    String role = liveMap.get(titleCode).toUpperCase();
    out.write(role);
    System.out.println(titleCode + " " + role);
    } else {</b></font>
    out.write(cell.getRichStringCellValue().toString().toUpperCase());
    System.out.println(cell.getRichStringCellValue().toString().toUpperCase());<font color="green"><b>
    }</b></font>
    if (j < list.size() - 1 && j != 11) {
    out.write(":");
    } else if (j == 26) {
    if (cell.getCellType() == HSSFCell.CELL_TYPE_NUMERIC) {
    if (DateUtil.isCellDateFormatted(cell)) {
    Calendar cellDate = Calendar.getInstance();
    cellDate.setTimeInMillis(cell.getDateCellValue().getTime());
    String year = "" + cellDate.get(Calendar.YEAR);
    String month =
    padding(cellDate.get(Calendar.MONTH) + 1);
    String day =
    padding(cellDate.get(Calendar.DAY_OF_MONTH));
    String expDate = year + month + day;
    out.write(":" + expDate);
    out.write(System.getProperty("line.separator"));
    if (in != null) in.close();
    if (out != null) out.close();
    </pre>

    Hi, All,
    This posting is at the bottom of the stack. Quite a few more postings were added on top of this and solved, and now I reach back to this one.
    The main problems are:
    1. Close the I/O buffer after finishing using it. Otherwise the data in the buffer do not get flushed to the file on the disk. I think that is the cause of the problem of getting zero sized output file.
    2. Do not count on Excel to stop at a blank cell by using Ctrl-down / Ctrl-up. The file I am processing is produced by some reporting program which, I think, instead of skipping the cell, puts a zero-sized string in it. Obviously, Excel does not stop at such cells. I had checked the columns using the Ctrl-down/Ctrl-up key and through that column did not have blank cells. Sharp-eyed gimbal2 spotted the problem, and led me to re-inspect the column by using up/down arrow keys instead, and found the blank cells. Such empty strings are used in my code as key in searching the map (String role = liveMap.get(titleCode).toUpperCase();) and caused the problem.
    And the lesson is, when doing some quick and dirty tests, do not get too quick and too dirty, which can end up slower rather than faster.
    Many thank to all of you for giving me the helping hand!
    Newman

  • Photoshop elements 13 editor has stopped working EVERYTIME i try to use smart detail brus.windows 7 home edition with plent of memeory and speed. any ideas WHY

    photoshop elements 13 editor has stopped working EVERYTIME i try to use smart detail brus.windows 7 home edition with plent of memeory and speed. any ideas WHY

    The faulting module is photoshop. Report below.
    Source
    Adobe Photoshop CC 2014
    Summary
    Stopped working
    Date
    2/2/2015 4:54 PM
    Status
    Report sent
    Description
    Faulting Application Path: C:\Program Files\Adobe\Adobe Photoshop CC 2014\Photoshop.exe
    Problem signature
    Problem Event Name: APPCRASH
    Application Name: Photoshop.exe
    Application Version: 15.2.2.310
    Application Timestamp: 5480338c
    Fault Module Name: Photoshop.exe
    Fault Module Version: 15.2.2.310
    Fault Module Timestamp: 5480338c
    Exception Code: c000001d
    Exception Offset: 00000000049de322
    OS Version: 6.3.9600.2.0.0.768.101
    Locale ID: 1033
    Additional Information 1: 8db4
    Additional Information 2: 8db473619c10c0c8b85ce99afe676ed8
    Additional Information 3: f06d
    Additional Information 4: f06da704bdd5338df2a8d09bde2244bb
    Extra information about the problem
    Bucket ID: 1fe6d1d4e5765bd348843b981b8ec4d2 (85990875000)

  • Need to permanently set network link modes (duplex and speed)

    Hello everyone,
    I have an Intel on-board network card  which does not play well with my FritzBox. According to Intel this is a known issue in how the card negotiates its link mode. Intel provided a tool to set the link mode under windows (because the standard windows settings did not persist). Now I successfully figured out how to set duplex and speed to the appropriate values but i have to do this every time on boot with
    $ ethtool -s eno1 speed 100 duplex full
    My question now is twofold:
    1. Is there any other way to persistently set those values? I know about mii-tool but this reports my card is not supported and I don't know if it would persist a reboot.
    2. If i need to run ethtool on every boot: What would be the preferred (best-practice) way to do it? I'm still really new to arch and Linux but cursory reading indicates to write a systemd service.
    Cheers
    Kai

    Maybe this could be useful
    https://wiki.archlinux.org/index.php/Sy … vice_files
    I have just read a little but I think this will do

  • Is there a maximum size and speed SD card that a 2013 imac will recognize?

    I want to leave an SD card plugged in the imac.
    I was curious if there are any limitations on size and speed?
    Thanks

    Rudegar wrote:
    as far as addressing storage space then the limitations should be that of a normal harddisk
    as far as speed then the speed is how fast the disc is if the interface of the computer can't keep up then the disc will wait for it same with a car being able to run faster then the speed limit
    SD card is not a disk....flash memory...#confused or misreading something.
    I wouldn't use an SD card any larger than 64 GB. I am not even sure if these are made.

  • Bug in form based authorization ( url-patter /* and loginform in /*)

    Try this:
    examples\weapp\security
    default web.xml file for this webapp has url-pattern =
    <url-pattern>/admin/*</url-pattern>
    try to register this web application as default webApplication ( this can be
    done only by editing config.xml manualy - this is feature or bug ? =) )
    and change url-pattern to <url-pattern>/*</url-pattern> and try to run this
    example. Weblogic falls to recursion when executing this example. Porblem is
    that access to loginform is protected by /* but in order to access resouces
    in /* i need autorization which can be performed only by using loginform
    PS: sorry for my poor english
    Regards,
    Giedrius Trumpickas

    in the web.xml, you can specify some security setting , also the the protected
    resources are grouped by url pattern, so to avoid that ,you can group the protected
    url pattern to exclude the form resource, so the form resource page don't need
    to protected. or if weblogic is really smart , they should in default to leave
    the form page or error page or welcome page unprotected.
    Hope that helps.
    Yaodong Hu
    "Giedrius Trumpickas" <[email protected]> wrote:
    Try this:
    examples\weapp\security
    default web.xml file for this webapp has url-pattern =
    <url-pattern>/admin/*</url-pattern>
    try to register this web application as default webApplication ( this
    can be
    done only by editing config.xml manualy - this is feature or bug ? =)
    and change url-pattern to <url-pattern>/*</url-pattern> and try to run
    this
    example. Weblogic falls to recursion when executing this example. Porblem
    is
    that access to loginform is protected by /* but in order to access resouces
    in /* i need autorization which can be performed only by using loginform
    PS: sorry for my poor english
    Regards,
    Giedrius Trumpickas

  • Why is my fan working so noisy and speedly?

    I bought a new macbook air two months ago. My model has 13¨ display, 128 GB SSD, 2 GB RAM, etc.
    Sometimes, specifically while playing flash videos, fan is working so noisy and speedly and macbook air is running so slow as you can feel easily.
    I searched; there are some programs like Coolbook that promise to solve this problem.
    But I'm looking an officially solution from Apple. Is there?
    Thanks,

    Hi muhendisce,
    If you're looking for an official solution you're not going to find it here, this a user-to-user discussion group. You'll need to get on the phone with AppleCare or bring the machine into an Authorized Service Provider / Genius Bar (Retail Store).
    If you're watching flash heavy content expect the CPU & GPU to be taxed and as such the fan to come on. But it shouldn't be noisy (grinding noise).

  • Profile and Speed Reductions

    Hi, sorry for my first post here to be yet another one about slow Infinity speeds but I would really welcome some help and advice. I switched to Infinity from Total Broadband 3 in early November and initial tests showed my line profile for downloads was 37 Mbps with download speeds just under that figure.
    After about a month the download profile and speeds dropped to around 32 Mbps which is what the online estimator forecasted when I signed-up. Over the next few weeks the figures gradually dropped further and then appeared to settle at around 26 Mbps. By the end of December the profile and speeds dropped again to between 20 – 23 Mbps and it was at this time that I decided to upgrade to Infinity 2. This was mainly to obtain the unlimited use but I did hope that it might also help return the profile and speeds to their original figures.
    I was therefore surprised to find that since Infinity 2 was activated the profile is now only 17 Mbps  with download speeds of around 16 Mbps. Upload speeds have remained fairly constant throughout at between 5 - 6 Mbps
    I presume there must something wrong somewhere but after trying all the recommended checks and tests I am unable to find anything. The modem is an ECI V-2FUb/I Rev.B and the homehub is an HH3 A. All speed tests have been carried out using an Ethernet wired connection. I have recycled and reset the hub but as often advised on here I have left the modem permanently on and connected.
    This is the speed test result from this morning...
    Can anyone maybe offer any suggestions? Many thanks.
    Keith.
    Solved!
    Go to Solution.

    Thanks for your replies.
    I was always reluctant to try recycling the modem but after reading the posts I switched it off and did as suggested. I also switched off the PC and the homehub. After twenty minutes I booted the PC back up and then powered-up the modem. Finally I powered-up the homehub and after a minute or two everything connected together correctly.
    Sadly, I then ran a further speedtest and found the results to be more or less the same as this morning. Thanks for trying to help me though..... I do appreciate it. 
    I have now contacted the mods and will wait to hear from them.
    Keith.

  • My toolbar where the url is and the bar with the file, edit, and veiw are both gone. How do I get them back?

    MY sisters or some one messed with the toolbars and now they are both gone I can't get into anything to change it to show them. I can't see the file, edit or veiw buttons or the tool bar with the url and back button.

    Elly, try holding down the Ctrl and Shift keys while you type \ which should bring you back the Tool Bar (the bit with the Back/Forward buttons URL field and search fields).
    Once you've got that, click on the Action Menu (the wee coggy thing to the far right) to see a list of Show/Hide commands for your other Bars (including the Menu Bar):

  • URL Encoding and Decoding in OSB

    Hi,
    Do we have out-of-box solution in OSB to decode XML which is URL encoded and encode XML to URL encoding. If so how can I do it.
    This might be basic question. I am unable to figure out. new to OSB.
    Thanks
    Sham.

    Hi Sham,
    Probably these are what you looking for...
    fn-bea:inlinedXML()
    fn-bea:serialize()
    fn-bea:serialize() to represent an XML document as a string
    fn-bea:inlinedXML() to parses textual XML and returns an instance of the XQuery 1.0 Data Model.
    Supported Function Extensions from Oracle
    http://docs.oracle.com/cd/E23943_01/admin.1111/e15867/xquery.htm#i1101407
    Oracle’s XQuery Implementation
    http://docs.oracle.com/cd/E13162_01/odsi/docs10gr3/xquery/extensions.html
    Cheers,
    Vlad
    It is considered good etiquette to reward answerers with points (as "helpful" - 5 pts - or "correct" - 10pts)
    https://forums.oracle.com/forums/ann.jspa?annID=893

Maybe you are looking for

  • HP ENVY 4500: Wirelesss Setup Will Not Recognize Correct Password!

    I recently attempted to establish a wireless connection for a HP ENVY 4500 and I could not get the printer to accept the CORRECT wireless network password.  This is the second such printer like this that I have set up and I have one additional one to

  • Portal Run time error after changing the logon screen

    Hi all, I am running an EP7 SP08 and I try to change the logon screen as described on: http://help.sap.com/saphelp_nw2004s/helpdata/en/23/c0e240beb0702ae10000000a155106/frameset.htm I copied the 'com.sap.portal.runtime.logon.par.bak' file, renamed it

  • Is there a way to audit user accounts by last login date/time?

    Hello all, Is there a way to see or report on a user's last login.  I don't see a last login date parameter in the UM record.  I see that all security events are logged in the security log including logon and logoff, but what I need is to be able to

  • Callable statement with oracle stored procedure error

    i'm calling a stored procedure in java with the following code. However i constantly recieve this error so what is going on please HELP Parameter Type Conflict: sqlType=2006 my call statement would be this: call Statement = {call getUserByLogin(?,?,?

  • BEx error messages

    At times the error messages that BEx produces are not as clear as they could be, especially in the case where authorizations are involved. Is there a way of changing or even creating my own error messages, that I could make more user friendly for som