Totally confused need ur expert advice

hello bb pals,
im not sure where to post this apologies if im in the wrong forum but im havin problems restoring my contacts. i lost my bb last week i have a new curve 8520, v5.0.0.681 and have registered my email adress through my carrier (Tesco) BIS website but when i click restore it says my email is not linked to any blackberry messenger account. i had made a back up a few weeks before on my old bb using this email, any ideas guys?

fixing the IOExecption!
ok i made a small modification to the code that i posted.
(ie) in the catch block of IOExecption i said p.destroy();
so that i there occurs an IOExeception, the process would be killed.
It looks like it works for now!! I am not sure but if it quite solved my problem...I need to test it more...
what's your take?

Similar Messages

  • Need an expert advice in Implementing continuous delivery across environments

    Hi All,
    I need an expert advice/solution in implementing continuous delivery in our project. (PF Screenshot)
    Deployment goes like this.. 
    Dev checks in -> TFS Builds - > RM Invokes -> using PS/DSC -> Copies the binaries to DIT environemnt's IIS virtual dir -> Manual replacement of Web.config files (since we have many environments)- > App runs
    PS/DSC does following things : Copies binaries using X copy , Uploads SP excel reports , Executing Dacpac scripts etc ..
    Now the chanllenge earlier faced was wrt Web.Config files was, for every DIT environment many configurations, conn strings would change. In order to overcome this , Implemented Web.config transformations( like Web.DIT1.Config .... Web.DIT6.config in my solution
    explorer. 
    Added a custom MSBuild script in my .csproj file and before triggerig the build defination I 'd change in Process tab- > Basic - > Configuration = DIT1 (based on requirement) and triggers . )
    It perfectly deploys to the DIT 1 without manually replacing WEb.config files. 
    1) Now the blocker for me, Can we achieve this without Web.config transformations ? Since I don't want to expose the sensitive date in config files is there any way to implementing the same ?
    2) I wanted to have continuous deployments from DIT to SIT and from SIT to UAT etc , How can we achevive the same ?
       I m planning to implement the same with web.config tokenizing in RM?
    Looking for some expert advice in achieving the same?
    Many Thanks ,
    Abraham Dhanyaraj

    HI Abraham,
    Instead of having web config transformations to set config values for each environment do the following.
    1. Have one transformation config say for example web.release.config which will contain tokens understood by RM (starting and ending with double underscore) for each config value.
    <log4net>
    <appender name="FileAppender" type="log4net.Appender.FileAppender">
    <file value="__log4netLogFile__" xdt:Transform="Replace" />
    </appender>
    </log4net>
    <ClientsSection>
    <Clients xdt:Transform="Replace">
    <add Id="__ClientId1__" Secret="__SecretCode1__" RedirectUrl="__RedirectUrl1__"></add>
    <add Id="__ClientId2__" Secret="__SecretCode2__" RedirectUrl="__RedirectUrl2__"></add>
    </Clients>
    </ClientsSection>
    <appSettings xdt:Transform="Replace">
    <add key="MinCaps" value="2" />
    <add key="MinSymbols" value="1" />
    <add key="MinNumerics" value="1" />
    <add key="MinLength" value="6" />
    <add key="MaxLength" value="" />
    <add key="webpages:Version" value="3.0.0.0" />
    <add key="webpages:Enabled" value="false" />
    <add key="PreserveLoginUrl" value="true" />
    <add key="ClientValidationEnabled" value="true" />
    <add key="UnobtrusiveJavaScriptEnabled" value="true" />
    <add key="WebPortalName" value="__WebPortalName__" />
    <add key="TimeZoneFrom" value="Pacific Standard Time"/>
    <add key="TimeZoneTo" value="Mountain Standard Time"/>
    </appSettings>
    The TFS builds can generate output with above formatted configs with web config transformation.
    2. Then in RM server templates change the config files to have values depending on the environment. You can do this using a custom deployment component or default xcopy deployment component to set parameters.
    3. Then in the release template set the config values.
    Cheers!
    Chaminda

  • Need usablility expert advice for an ncurses based pacman frontend

    Hi,
    I am working on a frontend for pacman using  ncurses/python/pyalpmm. It is in really early stage of development. So i need advice about usability aspects of the program .
    Screenshot  http://omploader.org/vMXVhaQ
    The program will mostly be useful for searching and browsing  ( nothing can beat pacman for installation and updating )
    Ideas(some implemented, some not yet )
    1) It has a 3 pane layout like most of the other package managers.(Suggestions for any better layout ? )
    2) Uses vim based keybindings ( j/k = up/down, / = search, tab = switch between panes  i=install, d=remove ?=help )
    3) few more options to show orphans etc
    4) planning to implement a tree based layout showing deps
    5) Also a sort by real size option for installed packages (like Allans script )
    6) pick and choose updates is also something which i have been missing for long time.
    The idea is to keep the interface as clean/simple as possible
    All ideas and suggestions are welcome
    Dont miss your chance to get on the scrolling credits screen
    Last edited by u_no_hu (2009-06-16 07:59:14)

    u_no_hu wrote:Hi,
    I am working on a frontend for pacman using  ncurses/python/pyalpmm. It is in really early stage of development. So i need advice about usability aspects of the program .
    This looks really nice. I am looking forward to it.
    1) It has a 3 pane layout like most of the other package managers.(Suggestions for any better layout ? )
    This would be fine. The other suggestion with panes on top would work as well. I guess panes on top (i.e. a stacked layout) would save space.
    2) Uses vim based keybindings ( j/k = up/down, / = search, tab = switch between panes  i=install, d=remove ?=help )
    Vim is so confusing. Please make a Emacs keybinding as as well And of course an intuitive dummy mode (arrows, space|enter=mark etc)
    All ideas and suggestions are welcome
    Maybe a feature to sort by type of program. I.e. X programs, cli programs etc. I think Zendo/zpm for Zenwalk/Slackware is really great and something similar to your project, although not in ncurses.
    --Rasmus

  • Need the experts advice..

    Hello folks,
    I need to know how can I solve this situation.. Any help is apperciated.
    I want to write the client part of a webservice in order to update and query database records. The server allows document/literal type where the xml is about table and records in this format:
    <Table>
    <Field1> Value1 </Field1>
    <RelationShip Table2>
    <FieldX> ValueX </FieldX>
    </Table>
    The schema may change based on administration decision (adding/removing fields then redeploy service). Also, I want to have control , in Java, over objects I am creating dynamically so I don't have to generate stubs with every change of the schema on the server. I want to validate variables which can have null value as well as types. So, I want to build my java objects and use the client service to send data to the server.
    How can i do that in Java? Dynamic proxy?
    Thanks a lot guys and please let me know if you need more clarifications.

    Is my question weird or very difficult?
    In other words, I want to be able to parse my document literal soap message into Java classes dynamically taking into consideration that schema can be changed from time to time.. how to resolve this?

  • Need HTML expert advice. Strange borders around JPGs

    Hi!
    I'm stumped by an HTML problem in Dreamweaver. This is for an ebook. In Dreamweaver and in the final mobi. there are drop shadows or border lines on some jpgs. either a single line on the bottom ot right side. I look at the HTML in dreamweaver and the image does not show any tags to cause the borders.  If anyone has an idea, or advice how I can eliminate this aberration I'd REALLY appreciate it.
    [Link removed as it forced malware download]
    Message was edited by: Sudarshan Thiagarajan

    Yep, Sudarshan is correct. Those lines are present in the original. As a matter of fact, a lot of those images have a black line running down or along one of the sides.
    Fix that first.
    And while you are at it, save the images as 8bit png or 8bit gif with 16 greys: resulting files size is much, much smaller, and your ebook will download a lot faster.

  • I need a expert advice.

    Dear All,
    I need a help about how to prevent a user to export a MACHINE CERTIFICATE from Keychain?
    Thanks.

    Dear Allan,
    We are installing a hardware certificate to identify the machine on the VPN so we need to prevent the user to export the certificate and to import on his personal machine and to hook on the VPN?
    Thanks.

  • Friends i need tech expert advice!!

    Hai! Every any tech experts answer my post pls if i change / install windowos firmware in asha 311 whether nokia asha 311 will support this firmware

    Hi palani6,
    Unfortunately, it's not possible to install or change the software of the Nokia Asha 311 to Windows Phone firmware. Operating system are designed depending on the hardware capability of a certain device. Also, changing or installing a different software on a Nokia product will void its warranty.
    We may not know exactly the main reason why you would like to change your Asha 311's current software, but just feel free to post your concerns about it here in the forum and the community will be happy to assist you. 

  • Im totally confused. need help

    Okay. So my ipod was working fine for a while. its the older versian of the Ipod video. got it band new 2 years ago. up until recently. music will NOT play out of the Right headphone. No wi know what you will say. I plugged my head phones into a different Ipod and both phones worked fine. and just to make sure. i even plugged it into my stereo. the right one still doesnt work.....How does one fix this problem without buying anew ipod?

    It is a hardware issue of your iPod. The poor contact of your iPod's earphone jack. You can go to apple or a 3rd party company for service, or you can have part replacement by yourself, please note that unless you have bought the extra applecare, normally iPod is covered with one year warranty.
    http://www.ifixit.com/

  • Advice needed from Experts.

    Hi,
             I would like to get advice from experts of this community regarding iOS 7.0.2 upgrade to my iPhone 4.
             I am using iPhone 4 and my present iOS is 6. I am happy with my iOS 6.
            I would like to upgrade to iOS 7 and before upgrading I have gone through the reviews in various forums about iOS 7 with iPhone 4. There were mixed reviews and I am totally confused whether to upgrade or not. Hence I would like to seek advice of this community whether shall I go for upgrade of iOS 7 or not.
            Mostly I would like to hear from you the demerits of iOS 7.0.2 over iPhone 4.
    Thank you very much for your suggestions which you're going to provide to me

    no the audio will play back alright through the system sound - you don't need to export it unless you have a specific reason to.
    your QT file should playback just fine within logic. basically if you can play it wiuth the QT player then you can play it through logic. just go "open movie as float" under options in the main menu. you need a reference point in the QT - if the guys your workling with are at all professional they will provide you with BITC, which you can then line up to your own SMPTE by using the movie start in the float window.
    its really very easy. if you are using a really heavy CPU intensive session, then you may want to check what format or codec the QT is in because certain codecs require more from the system than do others. as a rule of thumb, the more compressed and high quality the more work for the cpu.

  • Need expert advice on buying new macbook pro 15 inch

    Hi I Am a digital textile designer and  planning to buy my first retina macbook pro. I need expert advice, which model should i buy 15 inch base model or with dedicated graphics card. i will use macbook for digital designing on Adobe photoshop and multi tasking. so now really confused is intel iris pro graphics will handle heavy files on photoshop or Nvidia GT750 m will good for heavy work. I am working on very large resolution file like 10 to 15k in resolution approx 1 GB in file size with lot of filters is being use while designing. Which model will handle above task well and last longer.

    Look at the specifications here:
    http://store.apple.com/us/buy-mac/macbook-pro
    You may be confusing the quad core CPU with the Graphics processor.
    It should have no difficulty in running Adobe Photoshop.
    Ciao.

  • HT1848 Hi! I am new to i-phone and have a 3gs. I need to update software as itunes will not let me purchase without one. When I go to update it says that there are purchases that have not been downloaded into my library! Am totally confused! Help!!

    Hi!
    Am totally new to iphone and have a 3gs. Am trying to upodate software as in the itunes store it says that I need to to purchase. When I try to update a message says that there are purchases that hav not been down loaded to my library? As far as I know I haven't purchased anything from itunes as it would not let me until i upgraded! Totally confused would it be anything to do with purchases made on my computer through e-bay? Please help me someone as am terrified to upgrade until I know what this message means.
    Would really appreciate any help please.
    Many thanks
    p.s How do you know what operating system you are on?

    http://support.apple.com/kb/HT4972

  • Session/jstl  and load balancing - need expert advice

    After user loggs in, I am getting locale from db and storing it inside userSession along with userLogin. Inside jsp using <fmt> tag to display locale based resource property.
    HttpSession userSession = request.getSession(true);
    userSession.setAttribute("UserLogin", oRS.getString("user_login"));
    Config.set(userSession, Config.FMT_LOCALE, currentLocale);Also using filter after login page to check for User Session. Currently all working fine .
    But if i want to make use of load balancing, whether still it will work?
    1)I understand that if i depend on network config i.e. session request sticks to one server then i believe shld not be a problem
    2)But if that is not the choice then what else ? Client want to make use of serialization technique. I do not know much about it, how to implement it, any sample is greatly appreciated.
    3)what about jstl Config.set(..) whether any changes needed here?
    4)Do i need to change filter code.
    Pls pls help me, i really need expert advice on this.
    regards
    Manisha

    1)If i want cluster server to replicate the session
    then all attributes saved in the session have to be
    serializable.yes.
    2)In docs it is mentioned
    Use setAttribute to Change Session State
    In an HTTP servlet that implements
    javax.servlet.http.HttpSession, use
    HttpSession.setAttribute (which replaces the
    deprecated putValue) to change attributes in a
    session object. If you set attributes in a session
    object with setAttribute, the object and its
    attributes are replicated in a cluster using
    in-memory replication. If you use other set methods
    to change objects within a session, WebLogic Server
    does not replicate those changes. Every time a change
    is made to an object that is in the session,
    setAttribute() should be called to update that object
    across the cluster.
    Whether it means that if I want to store a object
    (which is serializable) e.g. 'String' inside session
    and use setAttribute() method then I do not need to
    make that object implicitly serializable?No, you still need the objects to be serializable.

  • Need Expert advice on choosing Source System for creating/maint Customers.

    Hi Experts,
    Iam on project where we have CRM,ECC(SD),FICA in the System Landscape.The client is currently using ECC(SD) Customer master for creating/maintainig Customer's.As we have CRM & FICA in this implementation, we are planning to propose that we use CRM as the source system for creating/maintaing Customers as Business Partners & Perform standard replication to the other system's in the landscape.
    The client has has asked us to confirm if having CRM as the source is the Best practice in the industry when we have this three systems (CRM,FICA,ECC(SD)) Landscape.I thought to get some expert advice on this & see if any of you have a similar project experience & share some views on this CRM BP vs ECC(SD) Customer Master.
    Thanks in advance!
    Regards,
    Naveen

    Hi,
       I believe it depends on your business senario.Here I can share some my experience for you.
    CRM As Source System
    Advantage:
    1) Choosing CRM as source system ,you can create several roles of customer for tracking the presales process of customer,such as prospect ,sold to party ,customers ,also you can define the life cycle of your customer and control which life cycle of customer should be replicated to ECC and which one should not.
    2)  CRM can have more views of customer and customer defined field (EEWB fields) ,so if you choose CRM as Source it will be more convenient  to create and fill in the all your user defined field .In other words ,choosing ECC as source you have to extend these field again in CRM .
    3) easy to maintain customer relationship
    Disadvantages:
    1) Have to extend Company code view of Customer data, since CRM do not have these view ,it is  just used for billing and integration with financial accounts.
    2)  have to extend some particular partner function of customer ,it is because of CRM it is only possible to create part of partner function automatically like SP ,BP  when business partner  is replicating to ECC.
    ECC As the source
    Oppositely, if you choose ECC as the source ,the advantage become disadvantage.
    Advantage :
    1) Can Easily to create customer's data of company code view
    2)  Can easily to assign any partner function to customer
    To conclude, if you only need to create sales order in ECC ,I believe choosing ECC as Lead system is better, since you do not have to extend customer data and easily to integrate with FICO and SD.Howerver, if you are going to create a sales order from opportunity or quotation ,CRM is your best choice.
    Regards ,Edward

  • Expert advice needed: Why could I not connect to my own server after deletion of SSL certificate?

    Issue: Could not connect to my own server after deletion of SSL certificate despite having SSL disabled
    Hello,
    I admit I am lay user with rudimentary SSL knowledge and I therefore messed up my certificates and I could no longer access my own server (Wikis, WebDav, Device Manager) with Safari. (error: Safari can't connect to server)
    Eventually, I could resolve the problem but I do not understand why there was problem in the first place.
    Maybe someone can explain that to me ?
    OK, here is what I did:
    I created a Certificate Authority because I wanted to use a free SSL Server certificate for our private server.
    (I followed  http://www.techrepublic.com/blog/mac/create-your-own-ssl-ca-with-the-os-x-keycha in/388 )
    Despite several attempts I never got the server to accept the certificate for web services, the certificate was accepted for iCal, Mail and iChat but not for Web services. I tested an older certificate that was created when I set up the server and that that worked for all services incl. Web. So the problem was with my certificate only.
    Out of desperation and lack of concentration I deleted the "original" certificate.
    Now, I soon noticed that I could no longer log in to my server. I solved the problem by restoring the original certificate.
    My question:
    I had SSL disabled in the Server app settings. Why does Safari still look for a proper certicate ? (the server logfile had an entry that a .pem file could not be found which makes sense if the cert has been deleted)
    I would be very grateful for an expert advice.
    Regards,
    Twistan

    Because....
    the server does not have a 'trusted' certificate assigned to it.
    Only the RDP Gateway has the trusted certificate for the external name.
    If you want to remove that error, you have to do one of the following:
    Make sure your domain uses a public top level domaim, and get a public trusted certificate for your server.
    So, something like,
    server.domain.publicdomain.com
    Or,
    Install that certificate on your remote computer so it is trusted.
    Robert Pearman SBS MVP
    itauthority.co.uk |
    Title(Required)
    Facebook |
    Twitter |
    Linked in |
    Google+

  • Need a help / advice & guidance whether to switch on my Career in SAP-PM from core industries after spending my 09 years of experience in Core field that to in Maintenance.

    Hello Adviser /expert,
    Need a help / advice & guidance whether to switch on my Career in SAP-PM from core industries after spending my 09 years of experience in Core field that to in Maintenance.
    As now i m thinking to do SAP-PM certified course from authorized SAP partner in India that to Pune.
    So any one can suggest authorized SAP partner in India that to Pune.
    My introduction (About myself): - I had done my Diploma in Mechanical and had total 09 years of experience in Mechanical Maintenance field that to in different manufacturing company such as Steel, Auto Ancillary & Cotton plant.
    Whether its right decision to change my career from Core sector to SAP-PM..??
    Is there very good scope in SAP-Pm for me after 09 years of Core Maintenance field..???
    Guide me
    Warm Regard
    Ravin

    Ravindra,
    SAP PM is very niche Module, very in demand module, at the same time, being niche, getting into it and getting 1 implementation is also difficult.
    your decision of joining SAP authorized training is the best option, as a certified consultant, you have more chances to get a break as fresher and you can continue working on it, else it would waste of your intellectual energy.
    you just search sap.com training or email them or chat with them, they will give u the training center details,
    but very less training classes are available. Try you will get lucky soon

Maybe you are looking for

  • Async Interface being called synchronously via Web service/SOAP

    Hi, I have an asynchronous interface to receive data into XI which is being sent to a file system, I can successfully use this interface to send data to XI using the file sender communication channel, and the monitoring shows the same as asynchronous

  • Screen flickers while using external display

    while using my macbook pro with an external display (my sony LCD TV). the external screen (TV) flickers. it goes black for about a second then comes on. it will happen about 20 minutes into watching TV and happens more often the longer i watch. for e

  • Unicode in Bex

    Hi all Like mentioned in SAP Note 588480, there are some Unicode restrictions in the BEx front end. I suppose it has sth to do with the OLE DB which does not support Unicode ? Does somebody knows the real reason(s) for it; and how to solve this probl

  • WAP300N No Web interface or Connectivity after 3 - 4 hrs of uptime

    I recently purchased 3 WAP300N devices to revamp my wireless solution in the office. I have configured two of them so far and both are experiencing the same problem. They are running in Access Point mode with static IP's and are set to run on differe

  • Excel Attachment Support?

    I am only getting some of the Excel attachments that come through my corp account. The larger ones are not displaying at all. I am not sure why, as attachments themselves have not posed an issue at all up until this point. Can someone help?