Using the Survey Application with Servlets

I installed Survey application which demonstrate the servlet
architecture.
The application works well with Jdevelopper 2.0
The connection with the database server works.
I installed the Sun Java Web Server 1.1.3 on my PC.
The Java Web administrator works fine. I registered the 2
servlets on the administrator but the JDBC connection failed.
I obtained this resulting error page when try to use the
SDSessionServlet
500 Internal Server Error
The servlet named "oracle.jdbc.driver.OracleDriver", at the
requested URL
http://gvawsgcf:8080/servlet/SDSessionServlet
reported this exception:
oracle.jdbc.driver.OracleDriver
The administrator of this web server should resolve this problem.
What shall I do?
Thanks in advance
null

Hi
JDeveloper online help system has examples of configuring JavaWeb
server.
Goto Help system.
In the "tutorials" book you will find a subtopic "Servlet
Tutorial" which has help on configuring java web server.
The other place is in the "Sample Applications" book you will
find a sub topic "web application for Oracle 8i" which has help
on deploying the servlet to java web server.
You will find these examples useful in configuing your env.
regards
Chris tournier (guest) wrote:
: I installed Survey application which demonstrate the servlet
: architecture.
: The application works well with Jdevelopper 2.0
: The connection with the database server works.
: I installed the Sun Java Web Server 1.1.3 on my PC.
: The Java Web administrator works fine. I registered the 2
: servlets on the administrator but the JDBC connection failed.
: I obtained this resulting error page when try to use the
: SDSessionServlet
: 500 Internal Server Error
: The servlet named "oracle.jdbc.driver.OracleDriver", at the
: requested URL
: http://gvawsgcf:8080/servlet/SDSessionServlet
: reported this exception:
: oracle.jdbc.driver.OracleDriver
: The administrator of this web server should resolve this
problem.
: What shall I do?
: Thanks in advance
null

Similar Messages

  • Restoring a home folder backed up using the Backup application (with the umbrella) to a new hard drive running Snow Leopard

    I was running OS X 10.4 Tiger on a 2006 iMac.  My home folder is backed up on a My Passport 500GB USB external drive using Backup (the original application that came pre-installed with the orange umbrella symbol).
    I was intending to upgrade tp Snow Leopard so that I could sync a new iPad with iTunes and iPhoto so had ordered the disc from Apple and was waiting for it to arrive.
    2 weeks ago my hard drive stopped - and I took the iMac to a support store (I am currently in Belgium and there is no Apple store here).  They confirmed the hard drive was dead and as I had my receipt for Snow Leopard installed this for me.
    Now I am trying to restore my home folder but the new OS does not recognise the data.  I can see there is nearly 200GB of data on the external drive - but the folders contain small files call backup.log, backup.log.gz, InfoPlist.stringscat, stat0.....  all under 5MB.
    Applecare told me they did not know about the Backup application and it was not theirs..... then suggested I tried migration assistant.
    With migration assistant, I just get a spinning wheel at the initial 'select your disk' page - spinning now for more than 8 hours.  I checked on line and the only advice I saw was to use firewire - but my external drive works with the new high speed USB...
    Can anyone help?

    Thank you for your help - I now have a solution  ...in case it helps someone else.....
    ...I also think I may have been a bit silly...
    The solution - thanks to a great guy in Apple Support USA - thank you Matt!!
    first I partitioned my hard drive using disk utility - and set 235GB for a separate install - I called it Tiger install disk
    this allows your hard drive to act as 2 totally separate systems (by holding down the option key when you start the computer you can choose which you want)
    then I reinstalled Tiger from my original discs onto the new part of my hard drive
    then I read my backed up home folder and copied it to the Tiger system on the new hard drive section
    then I rebooted and started up Snow leopard on the original part of the hard drive
    then I used migration assistant to transfer from the 'Tiger install disc' drive - it was recognised by migration assistant
    Where I think I may have been a bit silly
    I am now not sure if the orginal backup was always visible in Snow Leopard
    in Tiger I found backup.sparseimage - which when double clicked opened up my home folder
    now that I have istalled Tiger as well - I can also find this in now Leopard...  ...so maybe I just hadn't opened all the original folders on my backup disk...
    ...but for sure migration assistant could not read the backup copy

  • Trying to use the JSSE library with Jrocket 7.0

    Hi All,
    I HAC who is trying to use the JSSE library with Jrocket 7.0.
    Sometimes the socket works and sometimes it does not. It throws the below
    exception,
    The exception stacktrace is given below:
    java.net.SocketException: SSL implementation not available
    at
    javax.net.ssl.DefaultSSLSocketFactory.createSocket(Ljava.lang.String;I)Ljava
    .net.Socket;(Unknown Source)
    at
    com.twister.transunion.TransUnionUtils.sendRequest(Ljava.lang.String;)Ljava.
    lang.String;(Unknown Source)
    at
    com.twister.transunion.TransUnionUtils.parseRequest(Lcom.twister.transunion.
    TransUnionRequest;)Z(Unknown Source)
    at
    com.twister.struts.signup.Signup5Action.button_apply_now(Lorg.apache.struts.
    action.ActionMapping;Lorg.apache.struts.action.ActionForm;Ljavax.servlet.htt
    p.HttpServletRequest;Ljavax.servlet.http.HttpServletResponse;)Lorg.apache.st
    ruts.action.ActionForward;(Unknown Source)
    at
    COM.jrockit.reflect.NativeMethodInvoker.invoke0(ILjava.lang.Object;[Ljava.la
    ng.Object;)Ljava.lang.Object;(Unknown Source)
    at
    COM.jrockit.reflect.NativeMethodInvoker.invoke(Ljava.lang.Object;[Ljava.lang
    .Object;)Ljava.lang.Object;(Unknown Sou
    the line of code causing the stack trace is:
    Socket socket =
    javax.net.ssl.SSLSocketFactory.getDefault().createSocket(HOST, PORT);
    He has added the following line to his jre/lib/security/java.security file:
    security.provider.3=com.sun.net.ssl.internal.ssl.Provider
    and he has added the JSSE jar files to the jre/lib/ext directory.
    The problem occurs when SSL is enabled in the config.xml file (e.g. <SSL
    Enabled="true" ...>). It does NOT occur when SSL is disabled.
    When SSL is disabled, the following code shows all three providers as
    defined in the java.security file. If SSL is enabled then he only sees the
    default 2 implementation and NOT the one he added above.
    java.security.Provider[] a = java.security.Security.getProviders();
    for (int i=0; i < a.length; i++)
    System.out.println("name: " + a.getName());
    System.out.println("ver: " + a[i].getVersion());
    System.out.println("info: " + a[i].getInfo());
    The problem is that client does not want to use WebLogic specific classes to
    create an SSL socket. As well he do NOT wish to dynamically register the
    SunJSSE provider. Since this setup works when SSL is disabled in WebLogic he
    believes he has configured everything properly.
    It appears to me that WebLogic is removing the JSSE as a security provider
    if SSL is enabled.
    Is it the expected behaviour? and Is it possible to statically register the
    JSSE provider in the jre/lib/security/java.security file ?
    Any pointers will be appreciated,
    Thanks in advance,
    Rubesh

    Hi Howard, just trawling through the Labview TE issues as I myself have started to work on a similar issue. I have now infact upgraded the Labview Test Executive to work in 7.1 ok (both development and Runtime).
    Using XP I had no issues upgrading in the development environment - creating the run-time version was not as easy but manged to do so with help from the Application Builder. I have also tested the SQL function (as i log to Oracle) and a basic audio test using a DSA4551 - again both seem to be upgraded with no issues.
    regards, paul.

  • Always used 1 main account.  Started using individual user accounts. So how do I use software or applications with a lot of data like Quicken under my own user account?

    I recently upgraded our family's mac to OS X.  I thought this was the perfect time to create and use "user accounts".  We had always used 1 main account.  So how do I use software or applications with a lot of data like Quicken under my own user account?  I wanted to be able to manage my own itunes library, iphone apps, messages.  But I still really need to use the Stuff I have in Quicken essentials.  I don't want to have to restart all my work done in Quicken already.

    I haven't used Quicken in a while, but most applications store your files in your Documents folder. Is that where your Quicken data file is? What you do next depends on how many family members need to get at that data.
    If multiple family members need to use the Quicken data file, try moving it to the Documents folder in the Shared account. That is an account that all accounts can see. It's at the same level as the other accounts. In other words, Shared is one level up from your Home account, or Hard Drive/Users/Shared.
    If you're the only one allowed to see that Quicken data, move the Quicken data file from the old main account to your account, and don't leave a copy behind. You can use the Shared folder as a way station for the transfer since you won't be able to see both accounts' Documents folders at the same time (because you're not allowed to peek into other people's accounts). Or you can use another disk or server for the transfer, as long as you can get to it when logged into either account.

  • I was trying to get the iOS 8.2 on my iPhone 5 but then it stopped and my phone is now on recovery mode I have pictures I need and they did not all fit on iCloud  how can I use the phone again with ALL my pictures and videos without restoring it?

    I was trying to get the iOS 8.2 on my iPhone 5 but then it stopped and my phone is now on recovery mode I have pictures I need and they did not all fit on iCloud  how can I use the phone again with ALL my pictures and videos without restoring it?

    Contacts are designed to be synced to a supported application on the computer or a cloud service.
    Pictures taken with the device are designed to regularly be copied off the device to a computer as would be done with any digital camera.
    If you have failed to use the device as designed it may be too late to recovery anything.
    Is the device regularly backed up to a computer via iTunes?  If so, the most recent backup (when restored to a replacement iOS device) should contain all contacts and pictures as of when the backup was created.

  • Suddenly, all my saved Excel Worksheets are opening as Numbers documents, even though I've NEVER used the Numbers application, and even though the documents continue to be identified as Excel documents--losing years of work.  What happened?

    How can I uninstall Numbers?  I've never used the Numbers application before, and suddenly all my saved Excel Worksheets are opening as Numbers documents, even though they continue to be identified as Excel documents?  I'm losing years of work.

    Right click on a Excel Worksheet file, choose 'Get Info'. In the small window that opens change the 'Open with:' from Numbers to Excel. Click on 'Change All…'

  • How can i share the pages application with another computer?

    How can U share the pages application with another computer?

    Just make sure it is for you or your family.
    If you purchased Pages through the Mac App Store, then just login on the other computer using the same Apple I.D. and you can install it at no extra charge.
    Peter

  • What does this mean, " Web service is turned off. An administrator can turn it on using the Server application?"

    I'm attempting to connect to a website I've being using for 5 years plus. Now Firefox reports that the certificate is improper, and the message, " Web service is turned off. An administrator can turn it on using the Server application.", is given.
    I don't know what to do with this information. Web service is on for other websites. What is the "server application?" How can I take control and connect? I am the administrator.

    I cannot replicate on another browser. In fact, I now cannot replicate on my Firefox browser. I can only assume that the certificate problem was taken care of by the website involved. But in case this problem returns, I wonder what server application I am to use in order to turn my (?) web service on?
    Cryptic, unexplained error messages are a pet peeve of mine. It seems that Microsoft does not have a lock on such frustrating messages.

  • Why can't I use the Podcast app with the new update?

    Why can't I use the Podcast app with the new update? There needs to be an update for ios7 but it freezes and goes back to the home screen, can anyone help, thanks!

    See:
    iOS: Troubleshooting applications purchased from the App Store
    Restore from backup. See:
    iOS: How to back up              
    Restore to factory settings/new iPod

  • Use the survey's information (self-registration process - ROS)

    Dear Experts,
    We use the self-registration process (ROS).
    After the vendor register him self, he gets a survey to fill and send back to the SRM system.
    Some can please help me how I can use the information that the vendor write in the survey?
    (with or without the BW system).
    Best Regards
    Eyal Weinreb
    HP

    Hi,
    Buyer can look at the data in Supplier Preselection.
    http://help.sap.com/saphelp_srm70/helpdata/EN/45/e76729b3544ebde10000000a11466f/frameset.htm
    If you are looking for more analytics side, please check the transaction ROS_QSTN_SURVEY and help for Web Survey.
    http://help.sap.com/saphelp_nw70/helpdata/en/a5/73863c593a8767e10000000a114084/frameset.htm
    Regards,
    Masa

  • HT204291 Does anyone know why when streaming a movie from my iMac the screen on my tele goes grey but I still get audio. It only happens when using the DVD application on the mac. iPhoto streams fine.

    Does anyone know why when streaming a movie from my iMac the screen on my tele goes grey but I still get audio. It only happens when using the DVD application on the mac. iPhoto streams fine.

    You are prevented from Airplay mirroring certain things like DVD content as the material is usually protected so you get a checkerboard type display.  I think there is a theoretical risk that the Airplay stream could be intercepted and the protected video copied, albeitin lower quality.
    Apple may be being cautious or are required to do so with the DVD player app by movie studios/licensing authorities.  It makes no sense to the average consumer who is just trying to send their purchased DVD to the TV via the computer and AppleTV.
    Playback in something like VLC should work - not tried it myself but others have commented it doesn't have the restriction.

  • How to use the crypto api with gemalto cyberflex 32k ?

    Hello ,
    I've done many javacard programs using this method :
    _compilation with javacard kit 2.2.1
    _convertion into ".cap"  with the javacard kit 2.1.2
    All this programs work fine with this method : helloworld, read, write in the card, ....
    But when i want to use the crypto api, i can't charge the program in the card (just by adding 2 lines for generating keys):
    ----------> returns 0x80206A80 (6A80: Wrong data / Incorrect values i data.)
    I think it's because i use the 2.1.2 version , but if i use the 2.2.1 to convert , it's another error and no program work with this method.....even helloworld doesn't work...
    -----------> returns 0x80206985 (6985: Command not allowed - Conditions of use not satisfied.)
    I thing i must change my gpshel command , but i have read many forums but can't find the configuration for my card cyberflex 32k, some people had similar problems so they used the kit 2.1.2 combined with 2.2.1 like me, but i think they can't use the crypto api with this.........
    Any help will be apreciated,
    kind regards
    Franck
    Edited by: jojo85 on Mar 20, 2009 11:03 AM

    Hello,
    Thanks Sonnyyu,
    I deleted my gpshell 1.4.2 directory and i installed gpshell 1.4.0 instead like they said , to avoid some bugs
    i've tested the exemple CardEdgeII.ijc ,
    here's what i got:
    mode_201
    enable_trace
    establish_context
    card_connect -readerNumber 1
    select -AID a0000000030000
    open_sc -security 1 -keyind 0 -keyver 0 -mac_key 404142434445464748494a4b4c4d4e4f -enc_key 404142434445464748494a4b4c4d4e4f
    delete -AID A0000003230101
    delete -AID A00000032301
    delete -AID A00000000101
    delete -AID A000000001mode_201
    enable_trace
    establish_context
    card_connect -readerNumber 1
    select -AID a0000000030000
    Command --> 00A4040007A0000000030000
    Wrapped command --> 00A4040007A0000000030000
    Response <-- 6F188407A0000000030000A50D9F6E060011020201009F6501FF9000
    open_sc -security 1 -keyind 0 -keyver 0 -mac_key 404142434445464748494a4b4c4d4e4f -enc_key 404142434445464748494a4b4c4d4e4f
    Command --> 8050000008674672AE4B85E01800
    Wrapped command --> 8050000008674672AE4B85E01800
    Response <-- 000081410002B2C600E4010151982BB4CF843B1431E57DB6418652AE9000
    Command --> 848201001073CF9B92B3F11E10BE12D1318E9A8095
    Wrapped command --> 848201001073CF9B92B3F11E10BE12D1318E9A8095
    Response <-- 9000
    delete -AID A0000003230101
    Command --> 80E40000094F07A000000323010100
    Wrapped command --> 84E40000114F07A000000323010149D51E784E07966B00
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    delete -AID A00000032301
    Command --> 80E40000084F06A0000003230100
    Wrapped command --> 84E40000104F06A00000032301E3788AF4A9E32C2100
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    delete -AID A00000000101
    Command --> 80E40000084F06A0000000010100
    Wrapped command --> 84E40000104F06A00000000101C3CC96E6E54AF0ED00
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    delete -AID A000000001
    Command --> 80E40000074F05A00000000100
    Wrapped command --> 84E400000F4F05A000000001DA73D168B218692C00
    Response <-- 6A88
    delete_applet() returns 0x80206A88 (6A88: Referenced data not found.)
    install -file CardEdgeII.ijc -nvDataLimit 12000 -instParam 00 -priv 2
    install -file CardEdgeII.ijc -nvDataLimit 12000 -instParam 00 -priv 2
    Command --> 80E602001705A00000000107A00000000300000006EF04C60231000000
    Wrapped command --> 84E602001F05A00000000107A00000000300000006EF04C60231000019F52839EB52A80200
    Response <-- 009000
    Command --> 80E80000EFC48230F401000FDECAFFED010204000105A00000000102001F000F001F000A00290256006C2307000A04230000067F00060000000004010004002904000107A0000000620101010107A0000000620102010107A0000000620201000107A000000062000103000A0106A0000000010119CE06006C00800313000C040400051856FFFF1BA41A2A17FB1818183718A61971008300020001011100001E4F1EC51F771F9A1FA71FAC1FB31FBC1FCD1FF41FFD20082043204B205520662071008300030001010D0000209520B520C520D52101211C21742196221F2230226F227D22E1072307000640188C00861803880010
    Wrapped command --> 84E80000F7C48230F401000FDECAFFED010204000105A00000000102001F000F001F000A00290256006C2307000A04230000067F00060000000004010004002904000107A0000000620101010107A0000000620102010107A0000000620201000107A000000062000103000A0106A0000000010119CE06006C00800313000C040400051856FFFF1BA41A2A17FB1818183718A61971008300020001011100001E4F1EC51F771F9A1FA71FAC1FB31FBC1FCD1FF41FFD20082043204B205520662071008300030001010D0000209520B520C520D52101211C21742196221F2230226F227D22E1072307000640188C00861803880010C9DE1DD3FD6CD8CE
    Response <-- 9000
    Command --> 80E80001EF08900B7F001C7B001C03104D387B001C041075387B001C051073387B001C061063387B001C07106C387B001C081065387B001C10061030387B001C1007103038187B001C037B001C925B8C004D6108119CFF8D005318100891008087011810089100808702AD02038F00803D0610108C002037AD020324940000807B001C037B001C925B8B002A7A05361A0525321A062529071F62071F10086C08119C108D00531607610EAD021F24940000802804700CAD011F2494000080280415046708119C108D0053031A07258D002E2905198B003016056A081167008D00531605076D08119C0F8D00531A08252906160504
    Wrapped command --> 84E80001F708900B7F001C7B001C03104D387B001C041075387B001C051073387B001C061063387B001C07106C387B001C081065387B001C10061030387B001C1007103038187B001C037B001C925B8C004D6108119CFF8D005318100891008087011810089100808702AD02038F00803D0610108C002037AD020324940000807B001C037B001C925B8B002A7A05361A0525321A062529071F62071F10086C08119C108D00531607610EAD021F24940000802804700CAD011F2494000080280415046708119C108D0053031A07258D002E2905198B003016056A081167008D00531605076D08119C0F8D00531A082529061605045F95980396338536
    Response <-- 9000
    °
    °
    °
    there are again many lines and the response is always 9000
    i'll try to find a converter to convert the .cap files of my crypto application into .ijc files
    thanks,
    kind regards
    Franck
    Edited by: jojo85 on Mar 21, 2009 2:48 PM

  • How do I use the App store with macbook pro and mac pro

    I currently use the app store with the mac book, but want to buy (share?) apps and music with the mac pro.
    I can't find anything that specifically outlines how this works.
    I use SplashID with the macbook and an iPhone, and want to use it (and sync it) on the mac pro as well.
    If you buy apps for a macbook, can you use them on a second machine, or do you need to buy it a second time?

    Your license from the MAS allows you to download and install the apps on as many Macs as you own or have under your control (institutional or employer supplied Macs.) The Mac should to be running Mac OS X 10.6.8 Snow Leopard or Mac OS X 10.7.2 Lion. Open the MAS app on the Mac Pro and sign into your account to have access to download all of your previous purchases in the Purchased pane.
    Simple apps can also be dragged & dropped over a network connection from the MacBook to the Mac Pro.

  • I have an apple id but i have not been able to use the same id with i tune and app store..what to do

    i have an apple id but i have not been able to use the same id with i tune and app store..what to do???every time i m trying to login it is telling that this id has not been used with i tune and App Store ....reviewing of my id is one of the option provided to me after this...

    Have you logged in and reviewed your account and entered payment details ? Unless the instructions on this page are followed when creating an account : Create an iTunes Store, App Store, or iBooks Store account without a credit card or other payment method - Apple Suppor…
    then credit card details will need to be entered before the account can be used to download any item from the store.
    You could see if this post by mountaingoatgirl lets you review your account without needing to enter credit card details : https://discussions.apple.com/message/24303054#24303054
    If not then you will either have to enter card details (you should be able to remove them after entering them), or create a new account (using the instructions on the above link).

  • Can two people use the same computer with two different ipods?

    I was just wondering if me and my mother can use the same computer with our ipods?

    Glad you asked. Before you get rid of the old one move its iTunes Library to the new one:
    iTunes: How to move your music to a new computer
    http://support.apple.com/kb/HT4527
    "Deauthorize" the old computer too. Go to the iTunes Store menu and select "Deauthorize This Computer..."
    I hope you get a Mac this time

Maybe you are looking for

  • Purchase order print ID for  condition lines

    How to add / remove  condition types ie. freight rates, handling charges in purchase order print out ?. i want the values of these condition types to be /not to be in the purchase order print out. even when i m maintaining these values in P.0 conditi

  • Need help buying products!

    O.K. I found this really great site(s) with some really cheapish products. Are these sites legit? I figured some of you guys may know. 1. Hard Core Mac, http://store.yahoo.com/hardcoremac/macosxcd.html (IS THIS DISK FULL INSTALL. I HAVE 8.6. WILL THI

  • Workflow Builder step type 'Loop (While)' missing

    The step type 'Loop (While)' is missing in the workflow builder in both the SWDD and PFTC transactions.  This is happening is a WebAS 640 Support Pack 14 system and a WebAS 700 Support Pack 8 system. I have searched in SDN and OSS notes but could not

  • Video in lightroom

    I just used the lightroom4.The basis for the adjustment of really great video.so ,I think,lightroom why not work with it and premiere,This is the future. I like to deal with pictures in lightroom, I hope the video can be, because I like lightroom col

  • Expiration of Reward points and status change from elite status how does this happen?

    My rewards point have expired and my elite status has changed. How does this happen?