No known valid for: 't3'

Hi,
          I have problem using t3://10.10.5.101 to establish connection to a remote
          machine inside Weblogic 6.2 if 10.10.5.101 is a address for a remote
          machine. It worked fine if 10.10.5.101
          is an address for a local machine. It also worked fine when using
          t3://10.10.5.101 (a remote address) in a stand alone application (not inside
          Weblogic).
          Can anyone tell me what is the problem ?
          I will appreciate any help.
          ===== Here is my code =====
          Hashtable env = new Hashtable();
          env.put(Context.INITIAL_CONTEXT_FACTORY,
          "weblogic.jndi.WLInitialContextFactory");
          env.put(Context.PROVIDER_URL, "t3://10.10.5.101");
          jndiContext = new InitialContext(env);
          ======= Here is the Exception =======
          javax.naming.CommunicationException. Root exception is
          java.net.ConnectException:
          t3:/.10.7.101:-1: No known valid port for: 't3'; No available router to
          destination
          at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:155)
          at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:207)
          at
          weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
          tFactoryDelegate.java:311)
          at
          weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
          tFactoryDelegate.java:211)
          at
          weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFact
          .java:149)
          at
          javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:665)
          at
          javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
          at javax.naming.InitialContext.init(InitialContext.java:222)
          at javax.naming.InitialContext.<init>(InitialContext.java:198)
          at
          com.requisite.bugsi.engine.jms.JmsServiceUtilities.getInitialContext(JmsServ
          Utilities.java:64)
          at
          com.requisite.bugsi.engine.jms.JmsServiceUtilities.<init>(JmsServiceUtilitie
          ava:50)
          at
          com.requisite.bugsi.engine.jms.JmsMessageMgr.init(JmsMessageMgr.java:128)
          at
          com.requisite.bugsi.engine.jms.JmsMessageMgr.<init>(JmsMessageMgr.java:75)
          at BugsI.doGet(BugsI.java:385)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
          at
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          5)
          at
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          0)
          at
          weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
          xt.java:2495)
          at
          weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
          04)
          at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
          at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          java.lang.NullPointerException
          at
          com.requisite.bugsi.servlet.StateServlet.getSessionID(StateServlet.java:1209
          at
          com.requisite.bugsi.servlet.StateServlet.<init>(StateServlet.java:127)
          at
          com.requisite.bugsi.servlet.StateServlet.<init>(StateServlet.java:119)
          at BugsI.doGet(BugsI.java:829)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
          at
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          5)
          at
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          0)
          at
          weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
          xt.java:2495)
          at
          weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
          04)
          at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
          at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          17:04:05:789 : Caught Exception in catch(Exception
          java.lang.NullPointerException
          at BugsI.doGet(BugsI.java:835)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
          at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
          at
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          5)
          at
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          0)
          at
          weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
          xt.java:2495)
          at
          weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
          04)
          at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
          at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          17:04:05:799 : End Connection
          17:04:05:799 : Freed connection normal exit: conn=1
          

I don't know the detailed of your problem on 6.x release. However, if you
          are on the same JVM as the server you try to get a context from you do not
          need to specify the PROVIDER_URL in the env.
          "hj jj" <[email protected]> wrote in message news:[email protected]...
          > Hi,
          >
          > I have problem using t3://10.10.5.101 to establish connection to a remote
          > machine inside Weblogic 6.2 if 10.10.5.101 is a address for a remote
          > machine. It worked fine if 10.10.5.101
          > is an address for a local machine. It also worked fine when using
          > t3://10.10.5.101 (a remote address) in a stand alone application (not
          inside
          > Weblogic).
          >
          > Can anyone tell me what is the problem ?
          > I will appreciate any help.
          >
          > ===== Here is my code =====
          > Hashtable env = new Hashtable();
          > env.put(Context.INITIAL_CONTEXT_FACTORY,
          > "weblogic.jndi.WLInitialContextFactory");
          > env.put(Context.PROVIDER_URL, "t3://10.10.5.101");
          > jndiContext = new InitialContext(env);
          >
          > ======= Here is the Exception =======
          > javax.naming.CommunicationException. Root exception is
          > java.net.ConnectException:
          > t3:/.10.7.101:-1: No known valid port for: 't3'; No available router to
          > destination
          > at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:155)
          > at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:207)
          > at
          >
          weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
          > tFactoryDelegate.java:311)
          > at
          >
          weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
          > tFactoryDelegate.java:211)
          > at
          >
          weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFact
          > .java:149)
          > at
          > javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:665)
          > at
          > javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
          > at javax.naming.InitialContext.init(InitialContext.java:222)
          > at javax.naming.InitialContext.<init>(InitialContext.java:198)
          > at
          >
          com.requisite.bugsi.engine.jms.JmsServiceUtilities.getInitialContext(JmsServ
          > Utilities.java:64)
          > at
          >
          com.requisite.bugsi.engine.jms.JmsServiceUtilities.<init>(JmsServiceUtilitie
          > ava:50)
          > at
          > com.requisite.bugsi.engine.jms.JmsMessageMgr.init(JmsMessageMgr.java:128)
          > at
          > com.requisite.bugsi.engine.jms.JmsMessageMgr.<init>(JmsMessageMgr.java:75)
          > at BugsI.doGet(BugsI.java:385)
          > at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
          > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
          > at
          >
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          > 5)
          > at
          >
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          > 0)
          > at
          >
          weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
          > xt.java:2495)
          > at
          >
          weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
          > 04)
          > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
          > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          > java.lang.NullPointerException
          > at
          >
          com.requisite.bugsi.servlet.StateServlet.getSessionID(StateServlet.java:1209
          > at
          > com.requisite.bugsi.servlet.StateServlet.<init>(StateServlet.java:127)
          > at
          > com.requisite.bugsi.servlet.StateServlet.<init>(StateServlet.java:119)
          > at BugsI.doGet(BugsI.java:829)
          > at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
          > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
          > at
          >
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          > 5)
          > at
          >
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          > 0)
          > at
          >
          weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
          > xt.java:2495)
          > at
          >
          weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
          > 04)
          > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
          > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          > 17:04:05:789 : Caught Exception in catch(Exception
          > java.lang.NullPointerException
          > at BugsI.doGet(BugsI.java:835)
          > at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
          > at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
          > at
          >
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          > 5)
          > at
          >
          weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java
          > 0)
          > at
          >
          weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletCo
          > xt.java:2495)
          > at
          >
          weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java
          > 04)
          > at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
          > at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
          > 17:04:05:799 : End Connection
          > 17:04:05:799 : Freed connection normal exit: conn=1
          >
          >
          >
          >
          

Similar Messages

  • Create a validation for check double invoice

    Hi,
    I have read here on SDN for check double invoice on reference number. We want to create an warning message if same reference number is posted twice, not depending on invoice date. So if I, on 1st of October have posted an invoice with reference number 123 and then want to post with same reference number on 2nd of October I want to have an warning message. If I had understand right I need to make a validation for that. Is it true that I need to have a programmer to do that or how am I doing (one thread said that this was the solution, see; )?
    I suppose that my prerequisite will look as follows:
    BKPF-BLART = 'KR' OR BKPF-BLART = 'RE' (I want the check when entering both an invoice in FB60 and MIRO)
    How will my "check step" look like when I want to check if this reference has been entered before? Please describe in technical name.
    Is it possible to do a validation for getting a warning, or is it just possible with error message?
    I have also tried to change in IMG, in Material management > Logistics Invoice Verification > Incoming invoice > Set check for Duplicate invoices. Here we have all fields selected (check co. code, check reference, check inv. date). I changed to just select check reference, but this doesn´t solved my problem.
    Best regards Lisa

    Hello Lisa,
    Your first question,
    Yes system does not check MIRO invoice while posting FB60 invoice. Because when you post invoice with using FB60 transaction, system check BSIP table for duplication. But when you post MIRO invoice system doesn't fill BSIP table.
    So that your question answer is YES, you can register an invoice in MIRO with same reference without a warning.
    Your second question,
    BTE means Business Transaction Event. Those events are known as FI user-exit.
    So that when you posting an invoice with using FB60, system triggered on BTE 00001110 as i said on my previous message.
    I try to explain step by step how can you activate this BTE. But you need to ABAPer for giving warning message on this exit.
    Call FIBF transaction -> Settings -> Products -> ...of a customer
    Create a new line,
    Product : ZXX
    Text : BTE Products for FI Exit
    Product active : tick checkbox.
    Call SE37 for exit function and copy from FM SAMPLE_PROCESS_00001110 to ZFI_PROCESS_00001110. Then active your FM and go to FIBF transaction again.
    FIBF -> Settings -> Process Modules -> ...of a customer
    Define a new line.
    Process : 00001120
    Function Module : ZFI_PROCESS_00001110
    Product : ZFI
    And then you can some write ABAP code for validation and give warning message.
    In this FM, If you don't want to check duplicate invoice for your cases you can set export parameter e_nostd = 'X'.
    I hope it helps to you,
    Regards,
    Burak

  • Driver not valid for HP Pavilion dv6t

    Need to update my Intel HD Graphic driver.
    Tried HP and Intel and both are stating that the driver being installed is not validated for this computer. Please obtain the appropriate driver from the computer manufacture. Set up will exit.
    Can anyone help? TY

    @ls1313 ,
    Hello and thank you for posting on the HP support forums.  Here is the link to the only supported drivers for your notebook.
    HP Pavilion dv6t-3000 CTO Entertainment Notebook PC
    I hope this helps.
    Have a great day and thank you for posting.
    Please click the "Thumbs Up" on the bottom right of this post to say thank you if you appreciate the support I provide!
    Also be sure to mark my post as “Accept as Solution" if you feel my post solved your issue, it will help others who face the same challenge find the same solution.
    D5GR
    I work on behalf of HP

  • Validation for text field: Null and contains no spaces

    Currently on APEX 3.2
    I want to check 1 text field and 2 text areas to ensure they are not null and blank (hitting the space bar in the field) before submitting the page. How do I do both validations for on each field?

    I created a validation with a type of 'Function Returning Boolean' and using the following code in the expression:
    IF( TRIM( :P1_Text_Field) IS NULL
    Or LTRIM( :P1_Text_Field ) != :P1_Text_Field )
    THEN
    RETURN false;
    ELSE
    RETURN true;
    END IF;
    Edited by: Jeremy_F on Apr 12, 2012 8:15 AM

  • When trying to update my Apps I am being advised my account is not valid for the UK, I must switch to the Ireland store. How do I do this?

    When trying to update or purchase Apps I am being advised my account is not valid for the UK Store and I must switch to the IReland store. How do I do this?

    Change App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3.Tap "View Apple ID"
    4. Enter your user name and password.
    5. Tap "Country/Region."
    6. Tap "Change Country/Region"
    7. Select the region where you will be located.
    8. Tap "Done".

  • I have been using my Apple ID in India and recently i moved to Spain and now i can not see my indian apps.it says my apple ID is valid for only spanish store.how to download apps from Indian store being in Spain.

    I have been using my Apple ID in India and recently i moved to Spain and now i can not see my indian apps.it says my apple ID is valid for only spanish store.how to download apps from Indian store being in Spain.

    Did you try to change the location  in Settings/iTunes & AppStore/AppleID -> view Apple ID, log in ->Country/Region -> India?

  • Whenever I updated or downloaded a new app from the App Store, a message appears saying:   "Account Not In This Store Your account is not valid for use in the U.S. store. You must switch to the Swedish. store before purchasing."   I made some research onl

    Whenever I updated or downloaded a new app from the App Store, a message appears saying:
    "Account Not In This Store
    Your account is not valid for use in the U.S. store. You must switch to the Swedish. store before purchasing."
    I made some research online and asked a few of my friends with the same problem. All they did was sign out of iTunes from settings>iTunes & App Stores or from the App Store itself and signed back in. It worked for many of them but not with my iPhone 4s. It really does get on my nerves to always sign out and back in to the App Store as it sometimes works and allows me to update and download or most of the time it doesnt.
    When viewing my Apple ID account on my iPhone (after entering the password) it either views my account or says:
    "This Apple ID is only valid for purchases in the U.S. iTunes Store. You will be switched to that Store. Try your purchase again."
    So I press on OK then either switches me to the App Store app of its choice, or says "Cannot connect to iTunes Store".
    I tried restoring iOS6 hoping it was a bad installation, but i still have the same problem.
    Can anyone help me please?
    Arian

    Are you sure your AppleID is NOT tied to the US store? If you are trying to buy an app from the Swedish store you will be unable to do that. Some apps are only available on certain stores. That is why you get the "Cannot connect to the iTunes store" message when trying to buy that app. Your updates are being done from the US store ; thats why you can update sometimes and sometimes not.
    If you keep encountering problems contact iTunes support. They will help you sort it out.

  • Why do I get the message when I try to purchase an app or song on itunes using my iPhone5? "Account Not In This Store. Your account is not valid for use in the U.S. store. You must switch to the New Zealand store before purchasing."

    When I try to buy either an app or a song via iTunes, I have just started getting the following message and I am unable to change the store location. "Account Not In This Store. Your account is not valid for use in the U.S. store. You must switch to the New Zealand store before purchasing."
    This problem has only just started happening. I am on an iPhone5 iOS 7.0.4.
    Very frustrating. Can someone please tell me why & where the change has occured and how to fix it? In the past I have purchased many apps and songs on itunes and never had this problem.
    Thanks a mill :-)

    Click here and follow the instructions to change the iTunes Store country.
    (97125)

  • Outlook 2013 - Password change breaks S/MIME Certs "An error occurred in the underlying security system. Key not valid for us in specified state."

    AD password change comes up, user changes password.
    Tries to send signed or encrypted email with a Comodo S/MIME certificate, and gets the following error:
    ""An error occurred in the underlying security system.  Key not valid for us in specified state."
    I now have two reports of this error - one on Windows 7, and one on Windows 8.0 (remote user).
    The one on Windows 8.0, we tried removing their S/MIME cert from Outlook/Windows and re-adding, this did NOT resolve the issue.
    Plan was originally to have the 8.0 user ship their machine in, and wipe it, since nothing else could fix it and I wasn't finding anyone else with the same issue.  Now that I've got a second user with the same issue, its looking like a bug/issue and
    not a random glitch.
    Thanks in advance for any and all help with this!

    Hi,
    Thank you for your question.
    I am trying to involve someone familiar with this topic to further look at this issue.
    Thanks,
    Melon Chen
    Forum Support
    Come back and mark the replies as answers if they help and unmark them if they provide no help.
    If you have any feedback on our support, please click
    here

  • Product is not valid for Sales org and distribution chain

    Hello friends,
    When i am saving the trade promotions , i am getting error message
    "Product XXXX is not valid for distribution chain XXXX, XXXX"
    I have maintained sales organization and distribution channel in commpr01 under sales and distribution tab.
    kindly help.
    Regards,
    Srinivas

    Hi Srinivas,
    the error is raised from the trade promotion CCA check - raised from method CL_CRM_MKTGS_PD_CCA_CHECK_HDLR~CHECK. There are the following checks performed:
    * There are several checks to do based on the distribtion chain
    * Execute the checks and identify which products fail which check
    1. *   Determine if the product passes the distribution chain check
    2. *   Determine if the product category 1 of the product assignment
       *   passes the product category check
    3. *   Determine if the product category 2 of the product assignment
       *   passes the product category check
    4. *   Determine if the product group of the product assignment
       *   passes the product group check
    5. *   Determine if the sales status of the product is set to blocked
    You may also need to check the sales and distribution data of the product category or product group of the mentioned product, if this is assigned to any.
    best regards,
    Johannes

  • Handle not valid for open spool request

    Hello everyone,
    i am facing an error while clicking the print preview option in change PO (me22n).
    i have given the dispatch time in further data of o/p as 'Send with application own transaction'.
    now, when i save and click print preview button i get an error as
    "Handle not valid for open spool request"
    Kindly give me some idea how to tackle this.
    Thanks
    gaurav

    Gaurav,
    I am having a similar issue and would appreciate if you could let us know how your problem was solved?
    What control parameters did you change to make this work?
    Thanks,
    Jay

  • I need to change from Japan App Store to Australia App Store. I get this every time I try using My MacID: "This Apple ID is only valid for purchases in the Japanese iTunes Store. You will be switched to that Store." What next TY. JohnCahill

    I moved from Japan to Australia. I need to change from Japan App Store to the Australian App Store. I get the following message every time I try using My MacID which was set up in Japan: "This Apple ID is only valid for purchases in the Japanese iTunes Store. You will be switched to that Store." At one point... by which path I do not remember... I was instructed to created a new ID. I fill out the new ID forms, but the address is rejected each time... quite confusing. Does it want a new name? But it says I cannot use an apple domain (tag?) even though I guess it has to be an apple address... ? So I have iTunes crdit cards purchansed in Australia, can't spend in AUstralian iTunes Store, get directed back to Japan each time, and can't open a new ID... What am I doing wrong? Thank you in advance.  John. Australia.

    You must have a separate Apple ID registered in the other store along with a valid bank-issued charge card in the other country, and a legal billing address in the other country.
    Sorry... But... You cannot use other countries itunes stores.
    You must be within the Country with a Valid Billing Address and Credit Card for that Country to use the iTunes Store of that Country..
    iTunes Store Terms of Service
    http://www.apple.com/legal/itunes/us/terms.html#SERVICE

  • "This Apple ID is only valid for purchase in the US store" and I'm in the PH?

    Hi! So originally my Billing Info was set in the US and today I wanted to upgrade my MBP to OS ML. I'm in the PH now so I changed my Billing Info and set it to my address here in the Philippines, but everytime I hit that "Buy App" button in the App Store and log in, I'm always taken to my Billing Info and even though I already changed my account info, the address that's displayed there is still the US one. I tried to change the country numerous times and set it to PH, but I always get the message saying my Apple ID is only valid for purchase in the US. I'm taken to the US store afterwards, and after I hit "Buy App" the same thing happens over and over again.
    I've been trying to figure this out for over an hour now. What else can I do?

    Try contacting the App Store support folks - http://www.apple.com/support/mac/app-store/.
    I sort of understand what's going on, but not sure why you weren't able to rectify the problem. Maybe the support folks can help.
    Clinton

  • ITunes / AppStore problem: I live in Colombia, my apple ID and iTunes account are set in Colombia, but each time I try to register my Colombian credit card it tells me my credit card is not valid for the store. How can I fix this?

    I live in Colombia, my apple ID and iTunes account are set in Colombia, but each time I try to register my Colombian credit card it tells me my credit card is not valid for the store. How can I fix this?

    credit card it tells me my credit card is not valid for the store.
    Hi Don ...
    "Although you can browse the iTunes Store in any country without being signed in, you can only purchase content from the iTunes Store for your own country. This is enforced via the billing address associated with your credit card or other payment method that you use with the iTunes Store, rather than your actual geographic location."
    From here >  The Complete Guide to Using the iTunes Store | iLounge Article
    The iTunes and Mac App Store are one in the same.
    And check out this support article here   >  iTunes Store: My credit card's security code or zip code does not match my bank's records

  • Code is only valid for users of store

    Help....
    Ive just gifted an app to my son as I often do and when he tries to redeem it it says "This code is only valid for customers of the Store".
    Ive looked this up and normally it will involve someone from one country trying to gift an app to someone in another country but with me this is not the case.
    My son lives in the same country, the same address everything.
    The app was called Kick the buddy: Second kick
    Can anyone please help
    Thank you

    Thanks to James, I have just had a reply saying that they do not know why this error has occured but they have refunded my purchase costs.
    Good luck to anyone who has the same problem

Maybe you are looking for

  • Report Not Refreshing in Crystal Reports Server 2008

    I created a report and posted it on Crystal Reports Server 2008.  I have since updated the report's selection expert and I want the new criteria to be updated.  When I right click on the report and choose Refresh Options I have chosen to update and r

  • Custom Icon for Lync Custom Menus

    We can create custom menus in LYNC Client by setting some  registry values.  But we are not able set custom icons fro the same(instead of default ICON). Is there any to set custom Icon for Custom Menus. Thanks in advance,

  • RSD Experience

    My Macbook started the dreaded random shut downs this week after 5 trouble free months. Having read the experiences of others I was not hopeful of a fast resolution but I took it into the Apple Store in the Bullring this morning at 10am. It was repai

  • Mac Pro 6 GB, Parallels 1910 and Vista RC1

    Hi all, My 15 days trial expired yesterday so I couldn't try 1908, I've tried the first day two weeks ago and it was not working. So I'd like to know if somebody installed this config : Mac Pro 6 GB, 1910 and Vista RC1, since to test it I have to buy

  • Photoshop Elements 9 doesn't start

    When I try to start, it's not working. I really don't know what to do I tried: Restart Computer. Patch PSE 9 The last time I used PSE 9 was, when I got my Cintiq - it worked fine. Two days later there was a Windows Update. After those two Installatio