URL Delivery question

I am delivering a simple URL to a group of users with no problem, however it launches with the default web browser, explorer. I need it to launch with Firefox, which is available on the local machine. Not having any success. Tried embedding the browsers .exe in quotes at the beginning of the url, ZEN say's can't find web page when I test URL. Any help with best way to accomplish this is greatly appreciated. Dana

Shaun,
Thx for the response, worked like a charm. Was even able to add requirements for different delivery location for XP and Win7. Again, Thanks, Dana

Similar Messages

  • Jdbc.url newbie question

    Hi there,
    Apologies for this very begginerish question.
    I have been working with oracle in college for the last year. Have been conecting from java using these settings
    jdbc.driver=oracle.jdbc.driver.OracleDriver
    jdbc.url=jdbc:oracle:thin:@nc-oracle-2.students.collegename.ie:1521:orcl
    jdbc.username=username
    jdbc.password=password
    I am trying to finish up project at home for the weekend and have installed oracle 9.20.10.
    I am not sure what these settings should be or how to find out. I have user name and password set up and can work away in sqlplus. How do I find out what the jdbc.url is?
    Thanks in advance
    stuart.

    thanks, I ran those commands and now have this
    jdbc.url=jdbc:oracle:thin@localhost:1521:stuart
    When I run my app I am getting this message:
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Any suggestions?
    Message was edited by:
    newbie101
    Message was edited by:
    newbie101
    Message was edited by:
    newbie101

  • Message Queuing and Once Only Delivery Question

    Okay... not looking for too detailed information as you'll lose me.  Was hoping someone could clear something up for me.  In the Websphere world Websphere uses MQ as it's queuing mechanism internally to guarantee once-only delivery of messages.  Now I know XI can integrate with MQ (or other messaging systems, JMS,etc...)but certainly XI guarantees once-only delivery without any of those components.  My question is is XI's "queuing" mechanism proprietary or can, for instance, an external system somehow "put" or "get" information to/from that "queue"?

    Shaun,
    As far as my knowledge goes, I don't think external system can use the queuing mechanism of XI.
    Regards,
    Ravi
    Note : Pleaser reward the posts that help you.

  • BOM Delivery Question

    Hello! I have researching a support ticket regarding a BOM Sales Order and I am still learning about this part of the system. The issue or question I am researching is that a sales order was created with a BOM and the components had the same delivery group. The person was able to create a delivery for one of the items and do a Post Goods Issue. The person who has posed this question thought that the items had to be delivered together since they belong to the same delivery group. Is this correct? I have done several searches and am unable to find an answer.
    Thanks!

    Don't need the answer to this anymore.

  • Another URL/Servlet question...

    Say a user types in:
    http://www.ttonline.org?country=italy/
    In the servlet that services this request, how can I retrieve the string "italy" ?
    Would it be something like
    String value = req.getParamter("country") ?
    And what do you call the stuff on the right hand side of the question mark ? Is that the query string?
    Just in case you want to know why I would have such a URL, is because we want to have different URLs for each country so we can track the number of hits from each country.
    Many thanks,

    In your doGet (or a method performed from the doGet) do the following
         String[]  countries = request.getParameterValues("country");
         // this block of code is to find the form that has been submitted and
         // get the value of the parameter as appropriate.  Each HTML page
         // can only have one instance of a variable name regardless of how
         // many forms it contains.
         if countries != null  && countries .length > 0) {     
              country  = countries [0];     
         }That will get you the parameter value you are looking for.
    good luck!

  • Url Label Question

    I did this to emulate a URL Label
    jLabel3.setForeground(new Color(168, 156, 156));
              jLabel3.setText("Click here to launch in default browser ..");
              jLabel3.addMouseListener(new MouseAdapter() {
                   public void mouseClicked(MouseEvent e)
                        jLabel3_mouseClicked(e);
                   public void mouseEntered(MouseEvent e)
                        jLabel3_mouseEntered(e);
                   public void mouseExited(MouseEvent e)
                        jLabel3_mouseExited(e);
              }); and
    private void jLabel3_mouseClicked(MouseEvent e)
              try {
                   URI uri = new URI("http://lalala/fxrates.xml");
                   Desktop desktop = null;
                   if (Desktop.isDesktopSupported()) {
                        desktop = Desktop.getDesktop();
                   if (desktop != null)
                        desktop.browse(uri);
              } catch (IOException ioe) {
                   ioe.printStackTrace();
              } catch (URISyntaxException use) {
                   use.printStackTrace();
         private void jLabel3_mouseEntered(MouseEvent e)
              jLabel3.setForeground(Color.BLUE);
         private void jLabel3_mouseExited(MouseEvent e)
              jLabel3.setForeground(new Color(168, 156, 156));
         } The question is how do I underline the Labels text ?

    You can search the net for my Visual Font Designer (without the spaces) class, which will allow you to preview the font and generate the code needed to reproduce it elsewhere.
    db

  • ADFLibraryFilter & JpsFilter URL mapping question

    Hi,
    The ADFLibaryFilter and JspFilter are both mapped to the URL /*.
    When accessing static content (e.g. css and image files) the filter hierarchy is build which seems to be unneccessary.
    One of our customers is complaining about this issue, after they have monitored the application using Dynatrace to check server resource usage.
    My question: Is it neccessary to map both filters to the /* or is it okay to map them to the Faces Servlet? Do I need to add other servlets to the mapping (e.h. resources, adfLibResources)?
    ADF version: JDEVADF_11.1.2.1.0_GENERIC_110907.2314.6081
    WebLogic Server: 10.3.5
    Regards,
    Steven.
    Message was edited by: Steven Janssens

    Is it neccessary to map both filters to the /* or is it okay to map them to the Faces Servlet?
    Filters are not mapped to Faces Servlet, but to /*.
    <filter>
       <filter-name>ADFLibraryFilter</filter-name>
       <filter-class>oracle.adf.library.webapp.LibraryFilter</filter-class>
       <init-param>
       <param-name>provider-lazy-inited</param-name>
       <param-value>true</param-value>
       </init-param>
      </filter>
    <filter-mapping>
       <filter-name>ADFLibraryFilter</filter-name>
       <url-pattern>/*</url-pattern>
       <dispatcher>FORWARD</dispatcher>
       <dispatcher>REQUEST</dispatcher>
      </filter-mapping>
    Do I need to add other servlets to the mapping (e.h. resources, adfLibResources)?
    Other servlets may be added.
    <servlet>
       <servlet-name>resources</servlet-name>
       <servlet-class>org.apache.myfaces.trinidad.webapp.ResourceServlet</servlet-class>
      </servlet>
    <servlet>
       <servlet-name>adflibResources</servlet-name>
       <servlet-class>oracle.adf.library.webapp.ResourceServlet</servlet-class>
      </servlet>
    <servlet-mapping>
       <servlet-name>resources</servlet-name>
       <url-pattern>/adf/*</url-pattern>
      </servlet-mapping>
      <servlet-mapping>
       <servlet-name>resources</servlet-name>
       <url-pattern>/afr/*</url-pattern>
      </servlet-mapping>
    <servlet-mapping>
       <servlet-name>adflibResources</servlet-name>
       <url-pattern>/adflib/*</url-pattern>
      </servlet-mapping>

  • Published URL overwrite question

    I had a published temporary site fail at 60% because (I'm assuming) I had assets that were not sampled correctly. Now that I have fixed that issue, can I publish again to the temp site that I created with my first attempt. (url address at business catalyst? I received the email from Adobe stating the site had been created, but when going to the url is gives me "coming soon"  Thanks

    Yes, you can publish to the same URL. When you publish you will be given that option. (May take a moment to show up)

  • Delivery question on audio...

    We are delivering a digibeta of a spot we just created, I just got an email in regards of the delivery. "Please have them delievered to ** on digibeta tape with a beauty and mattes, and any effets should be on split audio tracks." What i dont' really understand is the 'any effects should be on split audio tracks.' Does anyone know what they mean by this. And have any advice on delivery? Thanks in advance.
    Rhyno

    Hello there...
    your audio will have to be mixed down and exported as an AIFF, then re-imported, with what's called an M & E (music and effects) on one audio track and VO (voice over) on the other.
    The term 'effects' really applies to any sync sound/ambient sound that is in your production, that accompanies what is viewed on the screen.
    The delivery requirments do vary depending on the final destination ie-broadcast, corporate etc, so before i start telling you every detail of how i prep my audio for master tapes, perhaps you could give some more info.

  • URL Simple Question

    I want to put the path of a file into a URL so that I can use the URL to open the file and put it in an image object.
    URL url = New URL("C:\FolderA\FolderB\filename.tif")
    however, I get a Malformed URL Exception
    Any tips?

    Use this
    URL url = new URL("file:\\FolderA\\FolderB\\filename.tif");

  • HttpServlet and multiple URL addresses question

    Hi!
    I've created a HttpServlet using the New... wizard (BTW, my web.xml file wasn't updated so I had to do it manually). I've implemented doGet and doPost methods in this class. I specified an url-pattern in web.xml as <url-pattern>/httpservlet/*</url-pattern>.
    If I'd like more than one URL address inside this servlet, what do I need to do? I'd like to have an URL that only supports POST method. This is something I have now as my doGet method looks like this:
        response.setContentType(CONTENT_TYPE);
        PrintWriter out = response.getWriter();
        out.println("<html>");
        out.println("<head><title>HttpServlet</title></head>");
        out.println("<body>");
        out.println("<p>GET method is not supported. Please use POST method for XML messages.</p>");
        out.println("</body></html>");
        out.close();Now I'd like another URL that supports only GET method and has a parameter. This address will be used for downloading some PDF documents. Do I need another HTTP server? Do I have to create a jspx file (how do I 'tell' it that is in this servlet)? Are there other options?
    Thank you in advance for any suggestions.
    BB

    Hi,
    you can create another servlet mapping in web.xml for the same Servlet. However, note that the access path doesn't determine the access method. Your servlet still need to check if it was called from a GET or POST request
    Frank

  • Iphone delivery question

    I preordered my iphone 3GS last week (Monday) on apple.com and am wondering why I did not get it Friday or yesterday? I was home all day Friday so I know I didn't miss the delivery.

    If you have not received an email advising your phone has been shipped, you can go to the Apple Store by clicking the "Store" button at the top of this page. Then click the account button left of the shopping cart and check your order status. If it has been shipped, there will be a carrier tracking number you can use to see where it is.

  • UCCX 8.5 same skill delivery question

    Hi all, I've a question about how a call is delivered when agents in ready state have same skill level in the same CSQ.
    In my CSQ I have 4 agent with skill 9, 2 with 7 and 1 with 5. How can I set the algoritm used for the first 4 agent?
    Now calls is delivered to the first agent, maybe the best is longest time idle to balancing the work on the call center.
    Enrico.

    Enrico,
    It depends on what algorithm you are using on the CSQ definition as you have few to pick from. For example if you are using Most Skilled then the first call will be offered to agent with skill competency of 9, etc.  If you are using Longest Idle then the competency is irrelevant and call will be delivered to an agent that has been IDLE the longest. There are some other ones as well. If you are using Most Skilled and 2 agents have the same skill competency then longest idle is used between those agents.
    HTH,
    Chris

  • Pre-ordered new Ipad delivery question

    Ive pre-ordered the new IPad will it arrive at my house on the 16th or is it being dispatched on that day?

    You'll find the same thing with movie releases or if you'd ordered one of the Harry Potter books....the originator dispatches them, the delivery service gets them close and then manages their staffing to deliver them all on the day of release.
    One other thing, and I've never gotten a delivery from Apple of this magnitude, but when I got my netbook and laptop delivered i had to sign for it, in person, so you may want to look into that because some recipients may be facing a further delay if they work on the 16th and aren't home to receive the shipment, they MAY need to go to the delivery place and track it down.
    It's done as a protection thing, with something this expensive if someone signs for it then it eliminates the 'it got stolen' and confirms delivery to the correct recipient.
    I'm not saying this will be the case, but it wouldn't surprise me if it was.

  • Ordered 32" Sony TV - Delivery Question

    Hello, I ordered a 32" Sony tv in one of your local stores, paid for it in cash at the store and I am I having it shipped to my house.  Item was not available in the store.  The clerk at the store said the delivery guy would inspect and install the TV to make sure it wasn't damaged in transit. Is this correct?
    Also, what must I do, and what can I expect from the delivery guy if the item is damaged, i.e. cracked screen?
    Is there a proceedure to follow?
    Thanks.
    Rick

    Hello atomicsmurf,
    Congratulations on your new TV! I know how excited I get whenever new technology comes into my home. I hope you get many years of enjoyment from it!
    Using the information you provided when you signed up for Best Buy Unboxed, I was able to locate your order. While what you were informed in store is true if your product is delivered by Best Buy, your TV is shipping to you via UPS, so setup of your TV ill not be provided. Should your TV arrive in unsatisfactory condition, you may return it to your local store for a return or exchange.
    I hope this helps. I'm very grateful that you wrote to us.
    Regards,
    John|Social Media Specialist | Best Buy® Corporate
     Private Message

Maybe you are looking for

  • New exchange rate type

    1. Our client would like to maintain a new exchange rate type for the company code W100. Presently there are some 20 company codes are useing EURX exchange rate type including the company code W100.Is it possible to maintain new exchange rate type on

  • Sales deals in pharma industry

    can somebody tell me what a Sales Deal  is? all i know is that there a corresponding Contract for every Sales deal that we have. sk

  • Video Card: Cores vs RAM

    I am looking into upgrading the video cards on my system, with the primary intention being to speed up OpenGL applications, primarily After Effects.  I have narrowed down the field to two choices based on price and performance: 2x Geforce GTX 260 w/

  • Windows installer package problems

    it says i have a problem with my windows installer package and that im missing a program, how could i know which is it?

  • Sound goes up and down occasionally, sometimes it crackles right before

    Sometimes my sound goes low and then comes back up to the normal volume when I am listening to music, watching a show, or watching something on youtube. I'm not sure what is causing it and the online chat person couldn't figure it out. She when into