Newbie - A question about RequestDispatcher

I have a problem when using a RequestDispatcher, some help would be really appreciated :)
I have an HTML page with some tags like:
<A CLASS="x" HREF="http://localhost/servlet/testPackage.dbTestServlet?myOption=opt1">Products</A>
That HTML page is located in:
c:\tomcat\webapps\ROOT\
And the servlet is in:
c:\tomcat\webapps\ROOT\classes\testPackage\
In the servlet, in the doGet function I check for the "myOption" parameter...
option = request.getParameter("myOption");
if(option.equals("opt1")){
goToProducts(request, response);
then, the goToProducts function looks like:
String loggedUsername;
String myURL;
response.setContentType("text/html");          
HttpSession mySession = request.getSession(true);
loggedUsername = (String)mySession.getValue("username");
if(loggedUsername == null) myURL = "/loginpage.jsp";
else myURL = "/option1.html";
goToPage(myURL, request, response);
and the goToPage function looks like:
RequestDispatcher rd = getServletContext().getRequestDispatcher(url);
rd.forward(request, response);
Apparently it works because when I click on the link on the first page it actually redirects me to the loginpage.jsp which is located in:
c:\tomcat\webapps\ROOT\loginpage.jsp
BUT it doesn't display correctly, I have some tags in that jsp page like:
<IMG SRC="./images/top.jpg">
(The images directory is c:\tomcat\webapps\ROOT\images\ and the next.html file is in c:\tomcat\webapps\ROOT\next.html)
And when I place the mouse over the link, I can see on the IE status bar: http://localhost/servlet/next.html and NOT http://localhost/next.html
So it seems that even if I can access loginpage.jsp via http://localhost/loginpage.jsp, it's trying to access the images and css links from within http://localhost/servlet/ and not from http://localhost/
I even tried to change the myURL variable in the goToProducts function:
myURL = "/../loginpage.jsp";
But that way I get a "resource not available" error in Tomcat.
Thanks in advance,
Joel.

one more note that might help
when you use the servletcontext to get the request dispatcher, then that url can't be relative but must start with a /.
why don't you try to use the request object to get the request dispatcher, i guess it will work i.e
in your method goToPage
RequestDispatcher rd = requet.getRequestDispatcher(url);
rd.forward(request, response);
i wish it helps

Similar Messages

  • A question about RequestDispatcher

    I'm using Tomcat ...
    when clicking a button on a webpage, Test.class (servlet) is executed. And Test.class forwards request and response to another servlet MyFD.class.
    both Test.class and MyFD.class are located in the same directory .../WEB-INF/classes
    in this case, what should I put in the place DIR in the following code?
    RequestDispatcher dis = getServletContext().getRequestDispatcher("/DIR");I tried MyFD or /servlet/MyFD or other combination ... but none of them is right :( Any idea? Thanks so much.

    forget about this question, I just figured it out :) thanks anyway

  • Newbie with question about mouse wheel button

    Sorry in advance if this is too simple, but I'm trying to create an interactive website that requires scene switching by way of the mouse wheel button.
    I'm creating mutliple interactive labeled images that I want to be able to scroll through by using the mouse wheel button but I don't know the action script code.
    Any help?
    Furna.

    Hi Kglad I have a small query about your code correct me if I am wrong some where. You used following lines to
    create  movie clip,
    set focus on it,
    and add event listener to it.
    the lines are
    var tl:MovieClip = this
    stage.focus = tl
    tl.addEventListener(MouseEvent.MOUSE_WHEEL,f);
    Now say I have a button on stage and I click it once. the focus will change to the button. and hence we will have to set the focus again to tl after processing button click.  am I correct on this?
    we can alternatively use
    stage.addEventListener(MouseEvent.MOUSE_WHEEL,f);
    which will always listen to the scroll event no matter where the focus is, or is there some problem which might occur due to this?

  • Newbie has question about Apple TV

    if I download a torrent file/show then convert it in iSquint and put it in my iTunes, can I play it on my tv via Apple TV? thanks

    So long as iSquint can convert a file for iPod, it should also play on AppleTV.
    It's the output file that's relevant not the source file.
    Remember that iSquint itself will make things suitable for iPod viewing, and these may well be lower resolution than AppleTV could handle unless it's changed recently. VisualHub has AppleTV presets.
    AC

  • Newbie photographer, question about in-camera settings and RAW

    I have a Nikon D200, and I can make a wealth of in-camera settings that would greatly mitigate the amount of post-production processing that I would have to do. Nikon's own RAW Capture NX software reads these settings. I'm assuming that Aperture doesn't read (most) of them (with, perhaps, the exception of White Balance, and maybe Hue). Is there a reference somewhere of what in-camera settings are preserved by Aperture on a RAW import?
    Thanks in advance,
    Mark Taber

    It's a pretty safe assumption that no raw editor except the OEM version will remember the in-camera settings, aside from white balance.
    Why's that? Because those settings don't really do anything anyway - they are just advance instructions for the converter.

  • Newbie Flex Question about ComboBox in DataGrid

    Heya!
    Just downloaded Flex today and pleasantly surprised at how
    cool it is. Can any of you fine gents and girls help me out? Why
    doesn't this give me an editable column in my data grid?

    It's a pretty safe assumption that no raw editor except the OEM version will remember the in-camera settings, aside from white balance.
    Why's that? Because those settings don't really do anything anyway - they are just advance instructions for the converter.

  • Newbie with question about the $400 Deposit for FIOS TV Service

    Okay, i was real happy when i found Fios is finally available in my area after years of waiting.  I call to order and theysay i need to post a 400 dollar deposit for fios tv.  I ask why and they say combination of poor credit and also the fact that the TV equipment as in the DVR boxes are very expensive and they just want security.  Its fullt refundable after 1 year.  However, to my suprise i was approved for FIOS Internet And Phone Service or Double freedom plan 20/5 internet and Freedom Phone plan both for $64 Dollars monthly 2 year guarantee.  Also get the 100 dollars cash back in for of the debit card.  My problem is that i dont need any verizon equipment for the Televisions as all my tvs in the home have tivo.  All i need is the cablecard decoder which i am sure are considerably less expensive than the Home media dvr or regular dvr.  Is there a way to get around this or am i stuck without fios tv until i put up the 400 dollars?  Is there a higher power i can appeal to?? 

    Thanks for the many previous replies.....  I solved my problem by calling verizon and using my wifes maiden name.  Now i will have all 3 fios services with no $400 dollar deposit. 

  • Newbie question about loading servlets on tomcat

    I have what is probably a very basic question about loading simple servlets on to tomcat to test its installation. I have followed instructions from numerous tutorials to the letter but still I can't get it to work.
    I have installed tomcat on win2k in c:\tomcat. I set up the jdk, environment vars (JAVA_HOME, CATALINA_HOME, TOMCAT_HOME) which all point at the correct dirs. I can compile a servlet without errors. I can also place a test jsp and html file into the root directory and they both work fine.
    However, now I am trying a test servlet and no matter what I do it gives me a 404. I have a servlet class file called "HelloServlet.class" which I placed into the %install_dir%\webapps\ROOT\WEB-INF\classes directory. I try to reference it using this url:
    http://localhost/servlet/HelloServlet
    Tomcat is configured to use port 80 and has been restarted after adding the servlet class file. Does anyone have a clue why this is not working for me?
    Many thanks
    Marc

    You have to add in the web.xml file that it is in the WEB-INF dir, the information about your servlet. An example:
    <web-app>
    <servlet>
    <servlet-name>HelloServlet</servlet-name>
    <servlet-class>HelloServlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>HelloServlet</servlet-name>
    <url-pattern>/HelloServlet</url-pattern>
    </servlet-mapping>
    </web-app>

  • Newbie question - general question about e-mail sync

    Hi,
    I have a general question about email sync and BlackBerry smartphones.  Are there any devices that allow email syncing with a Microsoft Exchange 2007 system that do not require the BlackBerry Enterprise server?
    Thanks; sorry if this has been asked before but I was unable to find it in the forums, documentation, etc.  Everything I found assumes that for this kind of environment you will be using a BlackBerry Enterprise solution, but I can't assume.
    Thanks again.
    Solved!
    Go to Solution.

    Hi and Welcome to the Forums!
    If the Exchange server has anything that faces the internet (OWA, POP, IMAP), then BIS can be used to handle email (only email...calendar and contacts require BES to sync OTA).
    Or, a PC, inside the network (but with an internet path) and logged into the email server (using Outlook), can be left running, using the RIM Desktop Software's Desktop Redirector capability to forward  messages to the BB.
    Those are basically the options.
    Hope that helps! Let us know!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Possible newbe to Appleworld has 11 questions  about Ipad2

    Hello everybody,
    As a Windows user I am very interested in the Ipad 2 as so to become a member of the AppleWorld. But still I have some questions about the Ipad2 and hopefully somebody can help me with my questions:
    1) Is the only way to install the applications by using the Itunes Store? Or can it also be dragged and dropped and than installed like in Windows.
    2) If the anwser on the first question is "YES", what happens than if you install programs using Itunes and for some reason you have to format the Ipad? Do you have to download them again? Pay for them again? or is it something like the Wii, that you can download the payed ones so many times you want on the same Ipad?
    3) Can you play normal DIVX movies on the Ipad or do you have to convert them to Mp4 always?
    4) Can you see normal PDF files or do they neede to be converted also?
    5) I have read that it doesnñ´t support flash for example, so how cna you see Youtube movies or CNN reports on teh Ipad?
    6) The battery life is somewhat 10 hours, but as we know in life, all the batteries die after x years. Can you cange them by yourself? Or do you need to go to a Applestore and they change it? And if so, is it expensive?
    7) Can you just drag and drop your own MP3 collection on it?
    8) I have a PDA which I use with a GPS device (using Bluetooth), and using the program TomTom. Does the Ipad has a program similar as TomTom? Does anybody has had experience with it?
    9) I have in my home a private network using Wifi and cable. Can I connect an Ipad and then searching for excample my PC harddrive for a movie? Is that possible to link the world of Apple with the World of MS?
    10) Where can I take a look of all the Apps for the Ipad2? Do I first have to install Itunes, even if I do not have an Ipad2?
    11) My primary use for the Ipad will be: reading mail, surf the web, read PDf files and maybe see some videos. I suppose the Ipad2 can do all that (and more). I thought of the 32GB, should it be enough? I mean of the 32GB, what finally have you for using/storing?
    Many thx for helping me and I hope to be very soon a part of this "new" world for me.
    David
    Message was edited by: DavidL_70

    DavidL_70 wrote:
    Hello everybody,
    As a Windows user I am very interested in the Ipad 2 as so to become a member of the AppleWorld. But still I have some questions about the Ipad2 and hopefully somebody can help me with my questions:
    1) Is the only way to install the applications by using the Itunes Store? Or can it also be dragged and dropped and than installed like in Windows.
    You download apps directly to the iPad from the App Store app which is preinstalled on the iPad. You can also download the apps in iTunes on your computer and then sync them to the iPad.
    2) If the anwser on the first question is "YES", what happens than if you install programs using Itunes and for some reason you have to format the Ipad? Do you have to download them again? Pay for them again? or is it something like the Wii, that you can download the payed ones so many times you want on the same Ipad?
    You do not have to "format" apps for the iPad if you download them in iTunes on your computer. If you purchase an app, if you need to download it again, there is no charge.
    3) Can you play normal DIVX movies on the Ipad or do you have to convert them to Mp4 always?
    Read the requirements on this link.
    http://www.apple.com/ipad/specs/
    4) Can you see normal PDF files or do they neede to be converted also?
    You can download iBooks in the App Store as a free download to view and save PDF files. If someone emails you a PDF, you will be able to open and read it in the Mail App once you set up your email.
    5) I have read that it doesnñ´t support flash for example, so how cna you see Youtube movies or CNN reports on teh Ipad?
    It does not support Flash. There is a preinstalled YouTube App on every iPad. Many websites are using html5 which makes a lot of video content available while surfing the web on an iPad.
    6) The battery life is somewhat 10 hours, but as we know in life, all the batteries die after x years. Can you
    cange them by yourself? Or do you need to go to a Applestore and they change it? And if so, is it expensive?
    You must have the battery replaced by Apple. I easily get 10-12 hours a day from a full charge. Read about the iPad battery care here.
    http://www.apple.com/batteries/ipad.html
    7) Can you just drag and drop your own MP3 collection on it?
    You sync music and other content from your iTunes library on your computer, so you will need to install iTunes on your computer. Your computer must meet minimum requirements which are detailed in the iPad specs website referred to above. This site will give you more information on iOS 4.2, the newest software on the iPad.
    http://www.apple.com/ipad/ios4/
    8) I have a PDA which I use with a GPS device (using Bluetooth), and using the program TomTom. Does the Ipad has a program similar as TomTom? Does anybody has had experience with it?
    All iPads have a preinstalled Maps App for directions. Navigation Apps are available in the App Store.
    9) I have in my home a private network using Wifi and cable. Can I connect an Ipad and then searching for excample my PC harddrive for a movie? Is that possible to link the world of Apple with the World of MS?
    Yes you can "link" the two worlds. Peace and harmony have come to the land of the iPad.
    The newest software on the iPad has a feature called Home Sharing that allows you to view content on your computer, in your iTunes library on your iPad without having to sync the movie to the iPad. This allows you to free up storage space on you iPad but still be able to enjoy all of the movies and TV shows that you have purchased.
    10) Where can I take a look of all the Apps for the Ipad2? Do I first have to install Itunes, even if I do not have an Ipad2
    You do not have to install iTunes to see some of the apps that are available for the iPad. You can Google IPad apps and there any number of websites that talk about and review apps. You can go to Apple's iPad and/or iTunes websites and navigate through them to see some of available apps.
    11) My primary use for the Ipad will be: reading mail, surf the web, read PDf files and maybe see some videos. I suppose the Ipad2 can do all that (and more). I thought of the 32GB, should it be enough? I mean of the 32GB, what finally have you for using/storing?
    Because of the new Home Sharing feature you can download loads of video content and not have to keep it on your iPad if you want to view it. Only you can be the judge of how much storage capacity you will need. From your brief description, the middle of the road 32GB model should be fine. If your are a gamer at all, some of the bigger name games can take up 700 or MB and videos and movies can be 3-4GB as well, but you can keep those in your iTunes library as mentioned previously. And remember, a very extensive music or photo collection can take up a good bit of storage as well.
    Message was edited by: Demo

  • Two (too much?) newbies questions about KT3 Ultra 2

    Goodmorning all.
    I've bought a KT3 Ultra2 (MS-6380E) motherboard and i've two questions about it.
    First of all I need to buy the optional S-Bracket to use my SPDif sound sistem... where can i buy it in Italy or in Internet?
    In second i've to know the highest processor my MB support becouse i have to upgrade my PC.
    Can U help me?
    Tha a lot and sorry for disturb.
    Hallo.

    Hello,
    question 2, not sure about question 1,
    http://www.msi.com.tw/program/products/mainboard/mbd/pro_mbd_cpu_support_detail.php?UID=341&kind=1
    You may need this BIOS update too.
    http://www.msi.com.tw/program/support/bios/bos/spt_bos_detail.php?UID=341&kind=1

  • Misc questions about DFS

    Hi, I'm a newbie in DFS and I have several questions about DFS that I hope somebody could answer me:
    1. Introduction/theory/basic stuff:
        I've found this webpage "How DFS Works" at https://technet.microsoft.com/en-us/library/cc782417%28v=ws.10%29.aspx. But looking at its date,
    I'm pretty sure it was written for Windows Server 2003.
       Is there any updated webpage for Windows Server 2008 or later?
    2. My computers are in a domain/AD 2008 R2.  I'm pretty sure one of the servers is DFS root server.  Are we allowed to have more than one DFS root servers in a domain?
    3. Is there a way (GUI or command line) to list out all DFS root servers?
    4. I'm also reading a white paper on "Microsoft File Server Migration Toolkit" that can be downloaded at http://www.microsoft.com/en-us/download/details.aspx?id=17959. 
    In page 16 & 17 of that document, it's written that "DFS consolidation roots" can only be hosted in DFS root server running on one of the followings:
       Windows Server 2003 Enterprise Edition SP2
       Windows Server 2003 Datacenter Edition SP2
       Windows Storage Server 2003 Enterprise Edition
       Windows Server 2008 Datacenter Edition
       Windows Storage Server 2008 Enterprise Edition
       Like most people now in year 2015, I'm not going to use version 2003.  That leaves me two choices.  But I actually have a server "Windows Storage Server 2008 R2
    Standard Edition" sold by Dell.  Do you think it could work like "Windows Storage Server 2008
    Enterprise Edition"?  Otherwise, the only option for me would be to make a "Windows Server 2008 Datacenter Edition"?
    Thanks in advance

    Hi,
    1.Is there any updated webpage for Windows Server 2008 or later?
    https://technet.microsoft.com/en-us/library/cc732863%28v=ws.10%29.aspx?f=255&MSPPError=-2147217396
    2. My computers are in a domain/AD 2008 R2.  I'm pretty sure one of the servers is DFS root server.  Are we allowed to have more than
    one DFS root servers in a domain?
    You could have more than one DFS root server in a domain.
    3. Is there a way (GUI or command line) to list out all DFS root servers?
    We could use the Dfsutil.exe tool to manage the DFS.
    http://blogs.technet.com/b/filecab/archive/2008/06/26/dfs-management-command-line-tools-dfsutil-overview.aspx
    4. Consolidation root just supports run on Windows server 2008 R2 but doesnt support Windows server 2008 R2 as a DFS root.
    Regards.
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Support, contact [email protected]

  • Question about setting track level

    Hi I finally got my new macbook pro and moto 8 pre and have just today tried a bit of recording just to get used to it. I am at the moment using garage band. I have a question about track levels. In Garage Band when I select a track to record there is a slider for input level or an option of clicking the automatic level control. But for some reason they are both just that color of grey you get when something can not be selected on a computer. How do I activate this? It's strange as I did actually manage to record the track, I just can't seem to really adjust the level. I thought maybe it has to do with the motu and I can only select the track level there, and that garage band level setting are (rightfully) disabled? Maybe that's what I should be doing, but just a bit confused. Anyway, thanks in advance for whoever takes the time to help out a newbie.

    Ah, ok. Good to know. Thanks for the info.

  • Some questions about building  a plug in

    Hello,
    1.I'm trying to build a plug in ( for EM12c release 2 ) for my standalone java application - which exposes mbeans whom i want to collect some metrics with.
    It's been a while since i started to build it - and I asked quite a lot of quesions about it - because the documnets supplied with the EDK and
    the books ( ProgrammersGuide, ProgrammersReferece and the README file ) are not very clear to me ( I'm a newbie with EM in general .. )
    So far some of the questions got answered and were very halpfull with this long process. BUT, there are some questions that nobody answered yet.
    I'm quite "stuck" with it. I'm talking about the questions in : Re: A question about updating metadata files in plug in
    I have a deadline for this plug in ( which is very close ..) so this the reason I post this new message.
    I will appriciate any help about those questions .
    2. Regarding the above, ( hoping to have an answered soon ..) I'm trying another way to buils this plug in:
    In the README file there is this section( 3.6 : using MPCUI ) . I read the programmersReference ( chapter 8 ) and followed the instructions both in the README file and the ProgrammersReference .
    For a begining, I just wanted to modify a small thing in the example supplied ( Demo Host System ) just to get started with something .
    So i modify the file which contains the label ' Select member ... ' ( i don't remember the name of the file since the project is in my office , and I can't copy/paste ..- I think the the file icontians the name ' ConfirmationTarget .xml - it's one of the pages seen while adding a target ) .
    I i changed it , i build the project ( using FlexBuilder) but did not use ANT as it's says in the README - the eclipse IDE build this file automatically
    ( HostSystem.swf  in bin-debug dir as it says in the README ) . I copied this file to stage_dir/oms/metadata/mpcui .
    i build a new plug in ( i incremented the version of it ) - no errors, everty thing was fine .I also copied this file to the oms server ( it wasn't there before )
    and than run the commad ' emctl register oms ...' as it says in section 3.6 - and o got 'Success' eventually .
    Now, when i opened the EM console , hoping to see tge change i made ( again , it's just a change of the title of the step while adding the target , and adding another menuitem to the 3 item that were alreay there ( CPU, FS, etc ) .
    I believe wad i did is right- i mean changing in the right file and place ( there is no title like like this in any oter source file in the whole project )
    but still, I didn't see any change! it seems execatly as it was befoer the change ..
    Any idea?
    Thanks.

    Regarding your question #2. Please read my response here carefully as it covers a number of different issues.
    1. Ant is not required to build the SWF file in your plug-in. It is an OPTION. Section 8.27 describes the different development options using either Ant or FlexBuilder.
    2. You do NOT need to ever copy a SWF file to any location under the OMS runtime. You need to include it in the stage area and then either build an OPAR or use emctl to incrementally update the deployed plug-in. It has to either be deployed as part of the plug-in deployment or updated incrementally using emctl register oms metadata. Section 8.27.2.6 describes the specific steps to do this incremental update.
    Steps to update the SWF associated with demo_hostsample. These are covered in the README and in chapter 8.
    1. deploy the demo_hostsample plug-in as described in the README
    2. create an instance of the Host Sample target type through manually discovery (Add Targets->Add Non-Host Target Specifying Properties)
    3. using the demo_hostsample.zip project in Flex Builder, modify some part of the code, for example, modify the line containing label="Current Status" to label="My New Label"
    4. rebuild the SWF, to be sure you can to a Clean build of the demo_hostsample project
    5. ensure there is an updated copy of the HostSample.swf under demo_hostsample\mpcui\bin-debug (NOT bin-release, unless you Exported A Release Build)
    6. copy that updated HostSample.swf file to the location on the OMS machine where you unzipped and built the OPAR for the demo_hostsample plug-in
    7. cd to the stage/oms/metadata/mpcui directory and replace the current HostSample.swf with the one you just built (BE SURE ITS THE UPDATED FILE)
    8. execute the command "emctl register oms metadata -sysman_pwd sysman -pluginId oracle.sysman.ohs -service mpcui -file demo_hostsample_uimd_swf.xml (BE SURE TO USE THE CORRECT sysman_pwd)
    At this point you should be able to go to the homepage for the Host Sample target you created and see the changes.

  • Question about session variables and binding

    Hi All,
    I'm a newbie with Application Express. I've gone through several tutorials and a book, and now I'm actually getting started with apex. My first adventure is a tiny little form, where all you do is fill it out and it sends an email. Pretty simple.
    And, i have it working just fine - but I have a question about something I don't quite understand. Basically, I am generating the email text in a page process. And some of the form fields work fine if i reference them as *:ACCT_NAME*, but some give me the dreaded "not all variables bound" error. For the ones that give me the error, I can reference them like V('ACCT_NAME').
    So, as a newbie, I'm a little confused. When is it appropriate to use the V function, and when it is appropriate to use binding? Why would one of the fields work with binding but not another from the same form?
    Thanks for any clarification you can offer,
    Lisa

    Lisa,
    A bind variable is a place holder variable available in an environment.It is used quite frequently(outside Apex Context) in SQL and PLSQL scripts and especially in Dynamic SQL statements.Many times using a bind variable gives better performance. In the Apex environment,page items and many other variables related to the session are available as bind variables and hence their value can be referred in SQL,PLSQL contexts as :VARIABLE_NAME.
    Now V() function is an apex specific function which returns the value of an apex session variable outside the apex environment. So as Machaan pointed out, it is used in
    procedures and triggers that gets called from within an apex session. This is required since the bind variables themselves are not directly available in the SQL environment but their values from the corresponding session can be accessed by this apex built-in function.
    The length of any Bind variable name is limited to 30 characters, this is a limitation inherited from Oracle SQL itself and hence session variables(page or application items) whose name has a length which exceeds 30 characters cannot be used as the :ITEM_NAME format. In such cases you would have to use the v() method again. This might be happening in your case.

Maybe you are looking for

  • Which keys are used in Client/Server Authentication?

    Hi. I am trying to understand how SunX509 algorithm works in a TLS context. When Server or Client authentication is done, which keys of the keystore are used? I mean, when you set up your KeyStore instance, it is loaded a whole KeyStore from the file

  • Soa_server1 not getting started

    I have followed the steps to install Oracle SOA suite 11g. But when I was trying to start the mananged server soa_server1 it shows the below error messages: For server soa_server1, the Node Manager associated with machine LocalMachine is not reachabl

  • MacBook Air 6,1 Bootloader

    I have a Macbook Air 2013, 6,1. I have been trying to use rEFInd as the bootloader, but I can't seem to make it work. Here's how I have my partition's set up: sda1 EFI (vfat) sda2 Mac OS X (HFS+) sda3 Mac OS Recovery sda4 / (ext4) sda5 swap I have sd

  • What's the best way to import spoken word files?

    How do you import spoken word files, such as audio books etc? Of course, there's no need to use as much a high bit rate as one would for music... does anyone have some good advice about the way to import it? If I use AAC, is the 'Spoken Podcast' sett

  • Downgrading Phone Service

    I am trying to downgrade my phone service from 1400 shared family plan to 700 shared family plan however, when I go to the link for "My Verizon" I can change everything about my plan but the "next" button link is not working on my computer?  Is this