Parsing date doesn't work properly

Hi,
I am trying to parse string into date. Here is the code.
try{
    SimpleDateFormat fmt = new SimpleDateFormat("dd-MM-yyyy");
    Date ordDate = fmt.parse(orderDate.getText())
catch(ParseException ex)If I enter 51-51-2001 or any other invalid date for the orderDate.getText(), the parsing does not throw ParseException. Any idea what is wrong with the code.

Well the date object contains Wed Apr 20 00:00:00 IST 2005(for a value of 51-51-2001). Also why is the catch(ParseException ex) not invoked ?

Similar Messages

  • SPGridView - sorting Dates doesn't work properly & how to display the title column as link?

    Hi,
    I've got a SPGridView that is being filled with data from several lists. Some of them are a date-field and a title-field. I already added sorting, paging and filtering options and at first look they seem to work fine. But now I noticed that sorting dates
    doesn't work as expected. If I select ascending sorting, the result is something like this:
    01.08.2014
    02.08.2014
    17.07.2014
    18.07.2014
    23.07.2014
    If I select descending sorting, the result is this:
    23.07.2014
    18.07.2014
    17.07.2014
    02.08.2014
    01.08.2014
    This isn't what I want obviously. 
    I just added the EventReceiver for the sorting like it is shown in several tutorials:
    (The date field is a BoundField.)
    grid.Sorting += new GridViewSortEventHandler(grid_Sorting);
    private void grid_Sorting(object sender, GridViewSortEventArgs e)
    if (ViewState["FilterExpression"] != null)
    gridDS.FilterExpression = (string)ViewState["FilterExpression"];
    And my second problem is how to add a link to the title column. In my grid I'm displaying tasks from different lists and I want to link the title to the related task. I stumbled accross HyperLinkFields and tried this:
    HyperLinkField hyperLinkField = new HyperLinkField();
    hyperLinkField.DataTextField = "Titel";
    hyperLinkField.DataNavigateUrlFields = new string[] { "Titel" };
    hyperLinkField.DataNavigateUrlFormatString = "{0}";
    hyperLinkField.HeaderText = "Titel";
    hyperLinkField.SortExpression = "Titel";
    grid.Columns.Add(hyperLinkField);
    The resulting link is something like ...sites/MySite/_catalogs/masterpage/A1-V1-2 where "A1-V1-2" is the name of the task and also shown in the title field.
    The actual link should look more like ...sites/MySite/Lists/mytasklistname/DispForm.aspx?ID=.... or something like that to display the task details. How could I achieve that?
    Thanks in advance

    http://www.experts-exchange.com/OS/Microsoft_Operating_Systems/Server/MS-SharePoint/Q_27718782.html
    Here is the exact code you need to use:
    http://social.msdn.microsoft.com/Forums/ar/sharepointcustomization/thread/c463a8c6-4806-4233-b6a4-8db8369c5fc2
    http://sharepoint.stackexchange.com/questions/53459/change-title-linked-to-item-with-edit-menu-to-different-column
    Open the AllItems.aspx page for the specific list.
    Search for the <ViewFields> tag
    List item LinkToItem="TRUE" to whichever column you want the link:
    <ViewFields><br/>
    <FieldRef Name="Attachments"/><br/>
    <FieldRef Name="LinkTitle"/><br/>
    <FieldRef Name="linkThisColumn" LinkToItem="TRUE"/><br/>
    <FieldRef Name="data_x0020_column"/><br/>
    <FieldRef Name="Another_x0020_column"/><br/>
    </ViewFields><br/>
    http://sharepoint.stackexchange.com/questions/58954/link-title-in-list-to-value-in-url-column
    Create calculated column.
    Insert following formula -
    ="<a href='"&UrlFieldName&"'>"&Title&"</a>"
    Set "data type returned from this formula is" to integer.
    As a result on list view you will see the title with link to your url.
    UPD: It seems that URL field is not valid for calculated column, as workaround you can copy url value in a receiver into the another text field, which is not shown on the view.
    If this helped you resolve your issue, please mark it Answered

  • Sorting table by date doesn't work properly

    what am I doing wrong?
    I've made a table with 5 columns and many rows, with one column being the date.
    I need to sort the entire table by date, but it doesn't seem to be very accurate - sorted items appear out of date order
    suggestions?
    pete

    Hello
    I know that.
    But if you receive a foreign document (ie not a Pages one) embedding dates stored as mm/dd/yyyy or dd/mm/yyyy, your app will not recognize them as dates.
    I get this behavior every day.
    I repeat, not with iWork '09 documents because in these ones, dates are stored as numbers (number of seconds since 01/01/2001) and displayed matching your system settings.
    If you receive a CSV or a TSV file, your machine will not recognize the embedded dates because most of these formats's users ignore what is the ISO format.
    Back to the date storage.
    At first, only column B was filled. The string "Yvan" was just used to help me to reach this storage area in the index.xml file. Here is a screenshot of this area.
    Small arrows are pointing the numbers describing the dates.
    In the completed table, in column C I copied the values stored in the index.
    The cell D2 contain the formula :
    =-DATEDIF(B,$B$3,"D")
    I was forced to use the reverse of others because DATEDIF refuse a start date greater than an end one.
    In D3, the formula is :
    =DATEDIF($B$3,B,"D")
    then apply fill down
    They calculate the count of days.
    In E2, the formula is :
    =D*24*60*60
    apply fill down
    It calculate the number of seconds corresponding to the number of days and of course, it matches what is stored in the index.xml file.
    Given that, opening in every location an iWork '9 document created everywhere, we will get correct dates whichever format is used for creation or for reading.
    Theoretically, it would work the same if you import a M…Soft document (they use also numbers to store dates).
    I can't check for iWork '08 documents because I don't have old foreign ones in good health. Those which I kept are corrupted ones in which I look from time to time trying to find where is the wrongdoer.
    When the source file is a CSV or a TSV one, the apps have no way to decide which is the format used.
    Of course, if the third component has four digits, it's a year.
    If a first two digits component is greater than 12, it's a day
    If a second two digits component is greater than 12, it's a day
    but that's all.
    No way to know for sure what is 5/6/2010
    As you use the ISO format, for you it will be a string
    For an US user, it will be 6 may 2010
    For a French user, it will be 5 juin 2010
    If the value is the well known  31/12/1943
    for you and for US users, it will be a string
    Happily, for me, it's 31 décembre 1943.
    As you often wrote, it would be easier if everybody was using the ISO format but I'm not sure that the grand children of my grand son will use it.
    Yvan KOENIG (VALLAURIS, France) samedi 2 juillet 2011 19:01:15 iMac 21”5, i7, 2.8 GHz, 4 Gbytes, 1 Tbytes, mac OS X 10.6.8
    Please : Search for questions similar to your own before submitting them to the community
    To be the AW6 successor, iWork MUST integrate a TRUE DB, not a list organizer !

  • URGENT: Replication of Session Data doesn't work properly

    We have an envirnoment that consist of 2 physical machine, two wls-server
              instances on each of these, and two wls-clusters. One of the clusters have
              light workload, the other that are our problem have a heavy workload. We
              have a BIG-IP load balancer in front of the two wls-machines, that is
              configured according to BEA's documentation. On each machine we have
              installed Apache-webserver, with wls proxy plugin. Each virtual host in
              apache is configured with the cluster machines, and idempotent ON.
              We have two web-apps running in the cluster which we are experiencing the
              problems with.
              We can start all the servers, and everything works fine, except that the
              serverlogs are full of the messages I have put at the end og this message.
              After A while one of the servers just dissappears from the console (running
              is missing). But both servers handles requests (I think that is because the
              load balancer and Apache still redirects sessions to both server-intances).
              The questions are:
              1. What does the text from the server logs mean?
              2. What can we do to correct the problem?
              3. Why does one of the servers just disappear from "Servers | running"?
              We have set PersistentStoreType to replicated in weblogic.xml.
              Regards
              Tommy
              May 16, 2002 11:15:08 AM CEST www3_a Error HTTP
              [WebAppServletContext(6060948,oppslag,/oppslag)] Servlet fai
              led with Exception
              java.lang.NullPointerException
              at
              weblogic.servlet.internal.session.SessionData.<init>(SessionData.java:117)
              at
              weblogic.servlet.internal.session.ReplicatedSessionData.<init>(ReplicatedSes
              sionData.java:73)
              at
              weblogic.servlet.internal.session.ReplicatedSessionContext.getNewSession(Rep
              licatedSessionContext.java:189)
              at
              weblogic.servlet.internal.ServletRequestImpl.getNewSession(ServletRequestImp
              l.java:2111)
              at
              weblogic.servlet.internal.ServletRequestImpl.getSession(ServletRequestImpl.j
              ava:1925)
              at
              jsp_servlet._oppslag._enhet.__treffliste._jspService(__treffliste.java:85)
              at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :265)
              at
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              :200)
              at
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              ntext.java:2495)
              at
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              :2204)
              at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
              at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              

    Yes, we are using WLS 6.1 SP2
              We have installed the patch, and the problem is resolved.
              Thank you.
              Regards
              Tommy
              "Kumar Allamraju" <[email protected]> wrote in message
              news:[email protected]...
              > Before i comment on the problem i need to know the weblogic ver & SP
              level.
              >
              > Regarding the NPE, it's a known issue
              > Pls contact support and reference CR064294. This NPE is already fixed
              > for the next service pack 61 SP3.
              >
              > --
              > Kumar
              >
              >
              >
              > Tommy Larsen wrote:
              >
              > > We have an envirnoment that consist of 2 physical machine, two
              wls-server
              > > instances on each of these, and two wls-clusters. One of the clusters
              have
              > > light workload, the other that are our problem have a heavy workload. We
              > > have a BIG-IP load balancer in front of the two wls-machines, that is
              > > configured according to BEA's documentation. On each machine we have
              > > installed Apache-webserver, with wls proxy plugin. Each virtual host in
              > > apache is configured with the cluster machines, and idempotent ON.
              > >
              > > We have two web-apps running in the cluster which we are experiencing
              the
              > > problems with.
              > >
              > > We can start all the servers, and everything works fine, except that the
              > > serverlogs are full of the messages I have put at the end og this
              message.
              > >
              > > After A while one of the servers just dissappears from the console
              (running
              > > is missing). But both servers handles requests (I think that is because
              the
              > > load balancer and Apache still redirects sessions to both
              server-intances).
              > >
              > > The questions are:
              > > 1. What does the text from the server logs mean?
              > > 2. What can we do to correct the problem?
              > > 3. Why does one of the servers just disappear from "Servers | running"?
              > >
              > > We have set PersistentStoreType to replicated in weblogic.xml.
              > >
              > > Regards
              > >
              > > Tommy
              > >
              > >
              > > May 16, 2002 11:15:08 AM CEST www3_a Error HTTP
              > > [WebAppServletContext(6060948,oppslag,/oppslag)] Servlet fai
              > >
              > > led with Exception
              > >
              > > java.lang.NullPointerException
              > > at
              > >
              weblogic.servlet.internal.session.SessionData.<init>(SessionData.java:117)
              > > at
              > >
              weblogic.servlet.internal.session.ReplicatedSessionData.<init>(ReplicatedSes
              > > sionData.java:73)
              > > at
              > >
              weblogic.servlet.internal.session.ReplicatedSessionContext.getNewSession(Rep
              > > licatedSessionContext.java:189)
              > > at
              > >
              weblogic.servlet.internal.ServletRequestImpl.getNewSession(ServletRequestImp
              > > l.java:2111)
              > > at
              > >
              weblogic.servlet.internal.ServletRequestImpl.getSession(ServletRequestImpl.j
              > > ava:1925)
              > > at
              > >
              jsp_servlet._oppslag._enhet.__treffliste._jspService(__treffliste.java:85)
              > > at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
              > > at
              > >
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              > > :265)
              > > at
              > >
              weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
              > > :200)
              > > at
              > >
              weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
              > > ntext.java:2495)
              > > at
              > >
              weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
              > > :2204)
              > > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
              > > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
              > >
              > >
              > >
              > >
              > >
              > >
              >
              

  • The cable doesn't work properly when connected as data cable.

    Hi,
    I have recently encountered problem of the cable. The thing is that if i use it just for charging with the plug, it works fine. But when i wanna use it with computer (i.e., accessing itunes, etc) or with my car, it doesn't work properly, it keeps switching between charging and discharging very fast. I will appreciate your quick support!
    Regards,
    Farhan

    Just for all the people to know, I found out the solution. You have to mark the correct side of the charging cable which connects at inlet of the phone. Because this point acts as a chip when used as data cable or auxiliary use (car,etc). That's why it charges with the plug on any side. I don't know what's the frequency of it happening to iphone 5s users, because I bought it recently (iOS 7.1.1) Hope it helps to others in future.

  • HT1923 The sync function on my iPod Touch 3rd generation doesn't work properly.  My OS is up to date, but some of my podcasts won't transfer onto the iPod, and it won't delete ones I've already listened to.

    The sync function on my 3rd gen iPod Touch doesn't work properly.  It won't sync all the podcasts I've downloaded, and it won't delete ones I've listened to and deleted on iTunes.

    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 &amp; above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.
    Now launch your iTunes and see if it is working now.
    If you are still having these type of problems after trying the winsock reset, refer to this article to identify which software in your system is inserting LSP:
    iTunes 10.5 for Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • What can I do if my CD or DVD drive doesn't work properly in Windows 8?

    QuestionWhat can I do when if my laptop CD or DVD drive doesn't work properly in Windows 8?
    AnswerNote: For help with this issue in Windows 7, please see this article.
    To get your CD or DVD drive working correctly, try these suggestions in the order listed.
    Reinstall the Driver
    Hold the Windows key and press the 'x' key to open a menu in the lower-left. In this menu, select "Device Manager." Expand "DVD/CD-ROM drives." Right-click the entry for the CD/DVD drive nested under "DVD/CD-ROM drives," then select "Uninstall." Finally, restart the computer. The computer will reinstall the drivers for the drive.
    Power Cycle
    Even when your laptop is off and unplugged, residual power can still be held in some components. While this is normal, clearing it can help with some hardware problems. Perform these steps to complete what’s called a power cycle.
    Ensure the laptop is turned off.
    Unplug the laptop's AC power cable.
    Unplug all wires and peripherals. This includes CDs, DVDs, USB sticks, mice, printers, and any other accessories.
    Remove the battery (if the model has a removable battery). If the model does not have a removable battery, check your user's guide to determine if you have a pinhole reset on the bottom. If you do, press this.
    Hold down the power button for thirty seconds.
    Reattach the battery if removed.
    Connect the AC adaptor to the power socket that was confirmed to be working in the first step.
    Connect the other end of the AC adaptor to your computer.
    Start the computer and test the drive
    Microsoft Fix-it
    Your computer may exhibit one or more of the following symptoms:
    Your CD or DVD drive no longer appears in Windows
    Your CD or DVD drive does not read or write and is shown as disabled
    The media in your CD or DVD drive cannot be read
    The media cannot be written to a CD or DVD inserted into the drive
    You receive an error message about your CD or DVD drive
    If any of these symptoms apply to your computer, use Microsoft Fix-it troubleshooter available here.
    System Restore
    Try using System Restore to restore to the most restore point from before the problem arose.
    How To: Understanding System Restore, Refresh, Reset, and, Recovery options in Windows 8 + Video
    System Recovery
    If the System Restore doesn't solve the issue, you could try a System Reset. Resetting your laptop to its original, out-of-the-box state is a great way to eliminate software as a possible cause of the problem. Note that doing a system reset will return the laptop to its default conditions, completely wiping your data. Information on how to perform a system recovery can be found in your user's guide.
    For more information on performing a recovery, see the following article:
    How To: Understanding System Restore, Refresh, Reset, and, Recovery options in Windows 8 + Video
    Contact Customer Support
    If the drive doesn't work after performing a recovery, it may be due to hardware failure. Please call customer support or seek servicing.

    See this Microsoft article - http://support.microsoft.com/kb/314060/en-us  For ways to fix manually
    and/or use the proper microsoft fixit 8.1 and 8 or the other one for Windows 7, Vista, and XP listed below.
    (these are from the Microsoft article)
    Resolution 2: Use the CD/DVD Fix it troubleshooter
    To automatically fix common issues with CD or DVD drives, click Run now, and then follow the on-screen instructions. Windows 8.1 and Windows 8   
    The Automatically diagnose and fix common problems with CD or DVD drives troubleshooter may automatically fix the problem described in this article.
                                    This troubleshooter fixes many problems. learn more
    Run now
    Windows 7, Windows Vista and Windows XP
    The Automatically diagnose and fix common problems with CD or DVD drives troubleshooter may automatically fix the problem described in this article.
                                    This troubleshooter fixes many problems. learn more
    Run now
    If your problem is not solved, try the next
    S70-ABT2N22 Windows 7 Pro & 8.1Pro, C55-A5180 Windows 8.1****Click on White “Kudos” STAR to say thanks!****

  • Flatten to sring doesn't work properly.

    Using LV8.20, found "flatten to string" function under 7.x function group. but it doesn't work properly in lv8.20. Is there a function "flatten to string" function in LV8?
    Thanks.

    Not sure where you found the 7.x functions palette. I found the function under Numeric>>Data Manipulation.
    NI changed some things about data representation and flattening in LV8, so if you want to work with old data, you should right click the function and select Convert 7.x Data.
    There is a rant here about the palette being in a problematic location, but that will go into the proper thread.
    Try to take over the world!

  • HT4623 My iPhone 4S speaker suddently doesn't work properly from one week ago? How I can do? 4s is still under warranty?

    My iPhone 4S speaker suddently doesn't work properly from one week ago? How I can do? 4s is still under warranty?

    Have you tried any troubleshooting steps, like resetting you iPhone, for example?  Or restoring it?
    If not by all means do so because your problem could be caused by software glitches that could be solved resetting or restoring.
    Warranty is for one year from date of purchase and two years if you bought Apple Care at the time of purchase. If your iPhone has a hardware issue within warranty, it would be replaced by Apple.  If it is already out of warranty, you might be eligible for an out of warranty replacement where you pay a much lower amount but this varies according to the country and currency, so it is better to check with Apple or with an authorized reseller.
    You could check your warranty status here:
    https://selfsolve.apple.com/agreementWarrantyDynamic.do

  • Wifi driver doesn't work properly

    HI,I've installed W8.1 instead of W7 but Wifi Dosen't work as a reight Way The Wi-Fi works for then depends on the work and then worked for againe
    this affects my Job if  i download anything,it stop loading continuesly.
    I've tried W8 and the same problem but it works  truely with w7.
    what should i do for making it works  truely with W8.1.
    Sorry length of e-mail.

    vn7571g_user,
    Sorry to hear that you are not having the best possible experience with your new notebook. I'd like to try and address a few of your concerns that you have listed and see if there are some things we can resolve for you.
    1. Wifi doesn't work properly:
    I see that you have posted in a couple other threads (1st, 2nd) regarding wireless issues with this notebook. We can gladly check this unit at the repair depot for you if you are not keen on changing the card out, PM me the following information and I will see what I can do for you:
    SNID or serial number
    Contact name
    Contact number
    Email address
    Shipping address
    Purchase date
    2. Wifi doesn't work after switching on and off 'Airplane mode'
    If you have already tried to install/update the drivers, it could be a Windows issue. You can attempt a refresh to see if that helps resolve it.
    3. Trackpad response is terrible
    This notebook uses a precision touchpad possibly, but since it uses Synaptics drivers you have a couple options:
    You can change the way that the touchpad works.
    It says Windows 7, but you can see if you have this option in the touchpad settings and see if it helps you out.
    4. Speakers jar
    Do you have the same issue without the Dolby turned on?
    5. Num-Lock is 'Off' after every sleep session
    Here is a Microsoft article that discusses this feature. You can follow the steps that they list if you would like.
    6. Keyboard-backlight setting is 'On' after every sleep session
    The backlit keyboard is working as designed. Here is an article with some FAQ about the backlit keyboard to help customers understand its functionality a bit more.
    A couple final thoughts:
    Did the issue(s) you are having occur before or after Windows updates, sometime a bad installation of an update can cause all sorts of things to happen.
    Worst case, you can always try to restore to factory defaults and test all these things before applying updates or installing any applications or programs.

  • Interleaving doesn't work properly for Cisco 3725 router, IP Plus IOS

    Dear All,
    I am deploying VoIP between 2 sites using Cisco 3725 routers. Currently, interleaving doesn't work properly which result in voice quality problem only during data trafic. Issuing "show int multilink 1" command, I realise that there is no interleaves even though VoIP call and data are traversing on the link.
    Attached here is the info for your reference.
    Any idea, please help.
    Thanks in advance.
    Duc

    Here is the info:
    VNHCMR01#sh call active voice brief
    : hs. + pid:
    dur hh:mm:ss tx:/ rx:/
    IP : rtt:ms pl:/ms lost://
    delay://ms
    MODEMPASS buf:/ loss /
    last s dur:/s
    FR [int dlci cid] vad: dtmf: seq:
    (payload size)
    ATM [int vpi/vci cid] vad: dtmf: seq:
    (payload size)
    Tele : tx://ms noise: acom: i/o:/ dBm
    MODEMRELAY info:// xid:/ total://
    speeds(bps): local / remote /
    Proxy :,,,,, endpt: /
    bw: / codec: /
    tx: /,/,/
    rx: /,/,/
    Telephony call-legs: 1
    SIP call-legs: 0
    H323 call-legs: 1
    MGCP call-legs: 0
    Total call-legs: 2
    12FF : 5798794hs.1 +202 pid:80 Answer 710 active
    dur 00:01:14 tx:3721/74420 rx:3721/74420
    Tele 0/0:15:424: tx:74420/74420/0ms g729r8 noise:0 acom:24 i/0:-50/-29 dBm
    12FF : 5798794hs.2 +202 pid:81 Originate 81555 active
    dur 00:01:14 tx:3721/74420 rx:3721/74420
    IP 159.12.56.1:19526 rtt:30ms pl:73890/40ms lost:0/1/6 delay:67/67/107ms g729r8
    Telephony call-legs: 1
    SIP call-legs: 0
    H323 call-legs: 1
    MGCP call-legs: 0
    Total call-legs: 2
    VNHCMR01#sh int mu1
    Multilink1 is up, line protocol is up
    Hardware is multilink group interface
    Description:
    Interface is unnumbered. Using address of FastEthernet0/0 (159.12.55.2)
    Backup interface Dialer1, failure delay 30 sec, secondary disable delay 30 sec,
    kickin load not set, kickout load not set
    MTU 1500 bytes, BW 256 Kbit, DLY 100000 usec,
    reliability 255/255, txload 33/255, rxload 13/255
    Encapsulation PPP, LCP Open, multilink Open
    Open: CDPCP, IPCP, loopback not set
    DTR is pulsed for 2 seconds on reset
    Last input 00:00:00, output never, output hang never
    Last clearing of "show interface" counters 00:00:50
    Input queue: 0/75/0/0 (size/max/drops/flushes); Total output drops: 0
    Queueing strategy: weighted fair
    Output queue: 0/1000/64/0/0 (size/max total/threshold/drops/interleaves)
    Conversations 0/5/64 (active/max active/max total)
    Reserved Conversations 1/1 (allocated/max allocated)
    Available Bandwidth 56 kilobits/sec
    5 minute input rate 14000 bits/sec, 69 packets/sec
    5 minute output rate 34000 bits/sec, 72 packets/sec
    3062 packets input, 100509 bytes, 0 no buffer
    Received 0 broadcasts, 0 runts, 0 giants, 0 throttles
    0 input errors, 0 CRC, 0 frame, 0 overrun, 0 ignored, 0 abort
    3078 packets output, 298192 bytes, 0 underruns
    0 output errors, 0 collisions, 0 interface resets
    0 output buffer failures, 0 output buffers swapped out
    0 carrier transitions
    VNHCMR01#sh ppp multilink
    Multilink2, bundle name is VNHANR01
    Bundle up for 02:47:34, 3/255 load
    Receive buffer limit 12192 bytes, frag timeout 1000 ms
    0/0 fragments/bytes in reassembly list
    0 lost fragments, 0 reordered
    0/0 discarded fragments/bytes, 0 lost received
    0x145A1 received sequence, 0x21A41 sent sequence
    Member links: 1 active, 0 inactive (max not set, min not set)
    Se0/2, since 02:47:32, 320 weight, 312 frag size
    Multilink1, bundle name is VNBHCR01
    Bundle up for 16:07:32, 35/255 load
    Receive buffer limit 12192 bytes, frag timeout 1000 ms
    0/0 fragments/bytes in reassembly list
    0 lost fragments, 0 reordered
    0/0 discarded fragments/bytes, 0 lost received
    0x2DB8D received sequence, 0x536BD sent sequence
    Member links: 1 active, 0 inactive (max not set, min not set)
    Se0/1, since 16:07:30, 320 weight, 312 frag size
    VNHCMR01#sh run int multilink 1
    Building configuration...
    Current configuration : 380 bytes
    interface Multilink1
    description
    bandwidth 256
    ip unnumbered FastEthernet0/0
    service-policy output llq
    backup delay 30 30
    backup interface Dialer1
    ip tcp header-compression iphc-format
    no ip mroute-cache
    ppp multilink
    ppp multilink fragment delay 10
    ppp multilink interleave
    ppp multilink group 1
    ip rtp header-compression iphc-format
    end
    VNHCMR01#show policy-map
    Policy Map llq
    Class voip-rtp
    Strict Priority
    Bandwidth 50 (%)
    Class voip-sig
    Bandwidth 8 (kbps) Max Threshold 64 (packets)
    VNHCMR01#show class-map
    Class Map match-any class-default (id 0)
    Match any
    Class Map match-any voip-sig (id 1)
    Match access-group name VoIP-SIG
    Class Map match-any voip-rtp (id 2)
    Match ip rtp 16384 16383
    VNHCMR01#

  • Sorting albums by year doesn't work properly in new iTunes 11.

    Sorting albums by year doesn't work properly in new iTunes 11.
    See the screenshots below.
    There's a kind of albums. Double CD in one set. Queen "The Works" 1984, for example.
    First CD is the original release and the second one is bonus CD for the original album's reissue in 2011.
    iTunes 10 took year info from track 1 of CD1 for "sort album by year" function.
    But new iTunes 11 takes the highest value of year in the album's track list.
    Same things with additional bonus tracks for the album's reissues.
    See the screenshot of Madonna "Like a Virgin" 1984 album.
    So my collection is in a huge mess after last update to iTunes 11.
    It's a big problem. And must be solved to the next update.

    I noticed this too, and I think it gets even more complicated when you think about the difference between how you want Re-releases to be ordered: based upon the intial release year (like you have described above), and Compilations or Greatest Hits: where you want them to be sorted by when the albums were actually released. iTunes 11 seems to just grab the date of the most recently released song on an album. This worked fine for 2/3 of my Compilation albums, because they just happened to be released the same year as the latest song on each album.
    Compilation example (released: 2003, latest song on album: 1969):
    This is what I submitted to Apple as feedback:
    This issue is actually aimed at  iTunes 11, but 10.6.3 is the most recent version number I could select in the drop-down menu.
    As with normal albums, iTunes 11 puts a release year next to "Various Artists" in Albums > Expanded View (and also in the Songs and Genre Tabs). However, iTunes seems to produce this number by looking for the last released song on the album. This has worked fine for 2/3 of my compilations, but the third one is a 60s compilation released in 2003. It displays "1969" next to "Various Artists" and there are no tags available in Get Info to change this. This also happens to greatest hits collections.
    When selecting View > View Options > "Artist" then "Year" in Album view, and View > View Options > "Year" in Artist and Genre view, the above issue causes compilations, greatest hits collections, and re-releases (Although users may want re-releases to be listed in order of original release) to be sorted in the wrong order.
    Considering iTunes 11 has added this feature (in previous iTunes versions, "Year" would only appear next to individual tracks), it is a shame an "Album Year" or "Sort Album Year" hasn't been added to the Get Info options.
    As is, the only solution I can think of is to change all track years to the release year of the album.
    I imagine this might be a bit of an edge case, and not something the majority of iTunes users would care about, but then again, I could imagine a fair number of musicphiles wanting control over this metadata.
    Message was edited by: folo1988, info added.

  • Trouble with the PS CC2014 3D Effects - Intel HD Graphics 3000 that doesn't work properly?

    I Have a MBP 13 inch 2.8 GHz Intel Core i7 late 2011 and I'm Having trouble with the PS CC2014 3D Effects crashing when trying to apply a New 3D extrusion, are there any solution regarding the Intel HD Graphics 3000 that doesn't work properly?
    Thanks!

    Look at this document. It should help you troubleshoot and it suggests settings to try out.
    Photoshop CC and CC 2014 GPU FAQ
    While the stock advice for Windows users is to go to the Intel site for updates, Mac users can only get their drivers in the Mac OSX system updates. So you need to be sure your OS is up to date. If you have an earlier version, like 10.7 or 10.8, it is possible an upgrade to 10.9 might help.

  • Mobile data doesn't work and I can't access the front camera.

    Hi, I received my new Xperia Z3 Compact in white just over a week ago and unfortunately I have few unresolved issued with it which kind of spoils the experience of owning a new phone.
    I  just switched from a number of Iphones and Xperia was the handset that really impressed me.
    I couldn't see the point of getting an overpriced Iphone with a limited storage capability.
    Unfortunately my Xperia Z3c has some issues;
    - I can't get the front camera work
    - I can get my internet only through Wi-Fi and my unlimited 3G data doesn't work at all (T-Mobile U.K)
    - Three Swipe Gesture doesn’t appear to be working as it should on any Android device (I'm told).
    So I am not a very happy user at the moment and slowly starting to miss the Iphone.

    Hi casson50ml,
    Welcome to the community! Since you're new please be sure that you have checked out our Discussion guidelines.
    Sorry to hear about these issues, I would first suggest clearing the data for the camera.
    Menu > settings > Apps > All > Camera > Clear Data
    Once done try using the device.
    In regards to the Internet, try performing an Internet settings download.
    Menu > Settings > More > Internet Settings > Accept Disclaimer > Choose Network.
    Now try using the network data on the handset.
    Can you explain more about the 3 Finger Gesture issue?
     - Official Sony Xperia Support Staff
    If you're new to our forums make sure that you have read our Discussion guidelines.
    If you want to get in touch with the local support team for your country please visit our contact page.

  • My palm m105's touch screen doesn't work properly after a sync.

    I dug out my old m105, put new batteries in and start it. On first launch it auto runs the alignment tool, and after touching all the points it goes to the main screen and works fine. No problem till here.
    Now, I plug it into my old computer which still has the palm software with my apps, and I run the sync operation (from the palm device sync manager, cause I lost my cradle and I'm connected via the serial cable), and it syncs fine BUT, here comes the problem, when it finishes the sync (successfully) the touch screen is all misaligned. I can't go back to the home screen or do anything useful.
    My palm m105's touch screen doesn't work properly after a sync.
    I dug out my old m105, put new batteries in and start it. On first launch it auto runs the alignment tool, and after touching all the points it goes to the main screen and works fine. No problem till here.
    Now, I plug it into my old computer which still has the palm software with my apps, and I run the sync operation (from the palm device sync manager, cause I lost my cradle and I'm connected via the serial cable), and it syncs fine BUT, here comes the problem, when it finishes the sync (successfully) the touch screen is all misaligned. I can't go back to the home screen or do anything useful.
    Thanks in advance!
    Post relates to: Palm m105
    Post relates to: Palm m105

        Maldoman578,
    Let's help solve this mystery together! Is your screen freezing after every reboot? Is there any physical/liquid damage on the device? When did this issue begin? Did you notice this after a recent update or application download?
    EfrainM_VZW
    Follow us on Twitter @VZWSupport

Maybe you are looking for

  • Reader XI freezes 2-3 seconds after I open it, every time!

    This problem started when I downloaded reader XI.  It didn't happen in reader 9, or whatever the previous version was on my computer.  The little timer on the right moves clockwise 2-3 clicks and then it freezes.  About 20 seconds after being frozen,

  • Opinions on this thought of mine

    I am actually very nervous posting this question in here as, what i think is a sensible thought may turn out to get ripped to shreds by you guys, so please be kind! I?ve been deep in thought after a lecture we received at university a couple of month

  • Is the Random Media Encoder CC Mute Problems Fixed?

    There is a thread about Mute/Solo but here: http://forums.adobe.com/message/5592142#5592142 However it has been quite some time since Adobe staff has responded to that thread, so I thought I'd create a new thread to see if it is fixed. Right now I'm

  • No Signal on 3G???

    Hi, New iPhone and new 3G sim. phone says no signal with 3G sim, old standard sim works ok. I thought if out of coverage I would still get a signal???

  • Send BP changedOn date to external system

    Hi CRM Technical Experts, I am using bapi crmxif_partner_save_m01 to send create and change of BP to external system as Idoc. I also need to send changed on date and user id, if changes are made to bp. but I could't find appropriate fields in bapi. I