Simple JSP does not recognize class(FaqCatagories)

The following is a simple welcome.jsp file that I am trying to run on a local J2EE sever. As you can see it tries to import classes one being the FaqCategories.class which is located in the folder Ch03 of the WEB-INF directory. When I call the page up on the browser It gives me that it does not recognize the  FaqCategories faqs = new FaqCategories;  class error. I am wondering why(Is the import statement wrong? Did I put the class in the wrong directory? Etc... I followed everything the book told me to a que and I still received an error.    <&@ page errorPage="/WEB-INF/errorPage.jsp" import="java.util.Iterator,Ch03.FaqCategories" %>  <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> <html> <head> <title>Java FAQ Welcome Page</title> </head>  <body> <h1>Java FAQ Welcome Page</h1> Welcome to the Java FAQ  <%! FaqCategories faqs = new FaqCategories(); %> Click a link below for answers to the given topic. <% Iterator categories = faqs.getAllCategories(); while(categories.hasNext()) { String category = (String) categories.next(); %> <a href="<%= replaceUnderscore(category) %>.jsp"><%= category
%></a> <% } %> <%@ include file="/WEB-INF/footer.jspf" %> </body> </html>  <%! public String replaceUnderscore(String s) { return s.replace(' ','_'); } %> 

FaqCategories.class which is located in the folder Ch03 of the WEB-INF directory.You mean "FaqCategories.class which is located in the folder Ch03 of the WEB-INF/classes directory."

Similar Messages

  • Weblogic does not recognize the classes

    I have the following problem.
              I have an application running in weblogic 8.1, this works correctly. When I copy the folder of the application and I paste in another different server weblogic 8.1 (in another PC) this does not recognize any of the classes even though the application is a faithful copy of the application that at the moment this executing itself in another server Weblogic 8.1.
              I deployed of aplication in the new server but nothing works!!
              the error is the following one:
              Compilation of 'C:\bea\WEBLOG~1\samples\domains\workshop\.\cgServer\.wlnotdelete\extract\cgServer_gar_prueba2_gar_prueba2\jsp_servlet\__login_45_proc.java' failed:
              C:\bea\WEBLOG~1\samples\domains\workshop\.\cgServer\.wlnotdelete\extract\cgServer_gar_prueba2_gar_prueba2\jsp_servlet\__login_45_proc.java:229: cannot resolve symbol
              probably occurred due to an error in /login-proc.jsp line 43:
              user.changePassw(loginchg,passw,passw1)){
              C:\bea\WEBLOG~1\samples\domains\workshop\.\cgServer\.wlnotdelete\extract\cgServer_gar_prueba2_gar_prueba2\jsp_servlet\__login_45_proc.java:308: cannot resolve symbol
              probably occurred due to an error in /login-proc.jsp line 78:
              boolean entrada = user.setUser(login, passwd, loginBD, passwdBD);

    Can you show me what the error looks like. Also are you deploying the war to the other server? If the war worked on one server it should work on the other server too.
              -- Nagesh

  • HT1369 Brand new computer with Windows 8.1 will not sync with iPod Classic 120G.  Windows does not recognize anything but iPod Touch?  Is there a simple sloution?

    Brand new computer with Windows 8.1 will not sync to iPod Classic 120G.  Windows does not recognize anything but iPod Touch?  Is there a simple solution.  Diagnostics have run and failed to point to a fix.

    Might be worth tearing down the whole iTunes install and starting over...
    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (Later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    See also HT1925: Removing and Reinstalling iTunes for Windows XP or HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    Should you get the error iTunes.exe - Entry Point Not Found after the above reinstall then copy QTMovieWin.dll from:
    C:\Program Files (x86)\Common Files\Apple\Apple Application Support
    and paste into:
    C:\Program Files (x86)\iTunes
    The above paths would be for a 64-bit machine. Hopefully the same fix with the " (x86)" omitted would work on 32-bit systems with the same error.
    tt2

  • HT201302 I am trying to copy photos from an iPad to a Mac Air, but iPhoto does not recognize them Do you have to use PhotoStream to do this. Please forgive the ignorance, but we have just started moving to apple products and I know nothing about them. Tha

    I am trying to copy photos from an iPad to a Mac Air, but iPhoto does not recognize them. Please forgive the ignorance, but we have just started moving to apple products and I know nothing about them. Do you have to use PhotoStream to do this?

    How did the photos that you want to copy off get on the iPad  ? To copy photos to your computer that were taken with the iPad, copied to it via the camera connection kit, or saved from emails/websites then see this page - on a Mac you should be able to use iPhoto, Aperture or Image Capture
    To copy photos that were originally synced from a computer you will need a third-party app on your iPad such as Simple Transfer which can copy them off via your wifi network. But as photos are 'optimised' when they are synced to the iPad, any that you then copy back to a computer may not be exactly the same as they originally were on your computer.

  • Untrusted server cert chain & does not recognize the certificate authority

    I have java code that makes an ssl connection to an HTTPS server.
    The code workes fine when I connect to a server that has a
    certificate that was issued by a recognizable authority.
    But when I try to connect to our test HTTPS server which has a
    certificate that was created by ourselves for debug, I get this
    java exception: "untrusted server cert chain".
    When I connect to our test HTTPS server with a browser, I get
    this message from the browser in a popup window:
    "www.xyz.com is a web site that uses a security certifcate to
    identify itself. However netscape 6 does not recognize the
    certificate authority that issued this certificate."
    At this point I am able to accept the certificate in the popup
    window and continue.
    Question: In my java code how can I accept a certificate
    that was signed by an unrecognizable authority just like the
    browser can. Or during debug, how can I set an override
    to accept ALL certs no matter what.
    Thanks.....Paul

    You will have to import your server test certificate into your client machine keystore. By default the keystore will be the 'cacerts' file in JAVA_HOME/jre/lib/security, get your server certificate in .pem format and use keytool to import it to the client.
    keytool -import -alias <anything> -file <full path of .pem file> -keystore <full path of cacerts file>
    The keystore password is 'changeit' by default, keytool comes with the JDK.
    The reasoning behind this is to prevent the misuse of test certificates, the client has to consciously import an untrusted certificate. When you install a real certificate on your server the client will be automatically validated if bought from a trusted CA (Thawte, Verisign).
    Take a look at the java.security.KeyStore class, you can use it to view your certificate chain.
    Ronny.

  • Windows does not recognize ipod whatsoever

    This is so frustrating.
    I just bought a new ipod video after giving up on my old ipod.
    Windows does not recognize the new ipod at all, not even as an extra drive. I'm tried uninstalling and reinstalling everything, restoring the ipod, connecting to different ports. No such luck. I've read up on the past posts concerning this problem with no luck.
    Can anyone help me?

    here's a bit here's what microsotft says:
    To resolve this problem, delete the UpperFilters registry value and the LowerFilters registry value. These values may cause access problems. To do this, follow these steps: 1. Click Start, click Run, type regedit , and then click OK.
    2. Locate and then click the UpperFilters registry value. This value is located in the following registry subkey:
    HKEYLOCALMACHINE\SYSTEM\CurrentControlSet\Control\Class\{4D36E980-E325 11CE-BFC1-08002BE10318}
    3. On the Edit menu, click Delete, and then click OK.
    4. Locate and then click the LowerFilters registry value. This value is located in the following registry subkey:
    HKEYLOCALMACHINE\SYSTEM\CurrentControlSet\Control\Class\4D36E967-E325-11CE-BFC1-08002BE10 318}
    5. On the Edit menu, click Delete, and then click OK.
    6. Exit Registry Editor.
    7. Restart the computer.
    it worked perfectly for me!make sure to follow the directions. it's easy and resolves many Windows XP problems related to ipods. for more info try microsoft help and support and just serch for ipod. it list a bit more info there. it doesn't say anything about reinstalling the apple software, but just to be thorough i unistalled itunes and quicktime before anything just to start with a clean slate, then reinstalled them from my ipod disk after the restart. then i downloaded all the updates from apple. my ipod has never worked better. good luck. theres no link to the page just search for ipod in windows help and support for exact wording

  • HT3819 My iPad will not allow me to type in my password. Curser is blinking but what i begin typing it just does not recognize that i am printing

    Is there any process I can use to allow me to type into my iPad my password. When I open up the device it sets itself up for me to type in my password. The cursor is blinking, the key pad comes up but it does not recognize that I am typing in the password. The cursor remains in the same position. However it will still play a sideshow of my photos, play music but I cant get into the iPad to operate it to get emails, or operate Safari etc. Is there any thing I can do other than take it to a technician? .

    Gonda...
    Not just a language issue...
    "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. You can use the iTunes Store in all countries of which you’re a resident, but you’ll either need a separate iTunes Store account for each one, or you’ll need to continually be switching your billing information on your single account. Generally, it’s simpler just to set up an alternative account for these situations."
    From here >  The Complete Guide to Using the iTunes Store | iLounge Article

  • HT1766 My iPad will not allow me to type in my password. Curser is blinking but what i begin typing it just does not recognize that i am printing

    Is there any process I can use to allow me to type into my iPad my password. When I open up the device it sets itself up for me to type in my password. The cursor is blinking, the key pad comes up but it does not recognize that I am typing in the password. The cursor remains in the same position. However it will still play a sideshow of my photos, play music but I cant get into the iPad to operate it to get emails, or operate Safari etc. Is there any thing I can do other than take it to a technician? .

    Gonda...
    Not just a language issue...
    "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. You can use the iTunes Store in all countries of which you’re a resident, but you’ll either need a separate iTunes Store account for each one, or you’ll need to continually be switching your billing information on your single account. Generally, it’s simpler just to set up an alternative account for these situations."
    From here >  The Complete Guide to Using the iTunes Store | iLounge Article

  • Problem: package javax.servlet.jsp does not exist

    I am a novice JSP programmer. My projects that use any javax.servlet classes are not seeing those at all. I am working with a group of folks using Java SE 1.5. (Note: I'm using Windows so the directory separator is "\")
    What Used to work:
    1. Nearly all my projects were working using Java version 1.6. These projects were developed as examples from Wrox and Apress books about JSP and Struts.
    What has changed:
    1. I un-installed the version 1.6 of JDK and JRE, as well as tomcat, netbeans, and all the associated libraries/jars.
    2. I installed version 1.5 of JDK and JRE, as well as tomcat, netbeans, and all the associated libraries/jars.
    3. I updated my JAVA_HOME, CATALINA_HOME, CLASSPATH, and PATH environmental variables. I made sure that the path to servlet-api.jar (in the tomcat common\lib) is included in the classpath.
    What is wrong:
    1. References to javax.servlet.* are not satisfied--they are flagged in the source code in NetBeans and I get compiler errors with any project containing those references. For example:
    ... package javax.servlet.jsp does not exist
    import javax.servlet.jsp.*;
    What I've found:
    1. My CATALINA_HOME=C:\Java\Tomcat 5.5
    2. My JAVA_HOME=C:\Java\jdk1.5.0_11
    3. My CLASSPATH=.;C:\Program Files\QuickTime\QTSystem\QTJava.zip;%JAVA_HOME%\lib;%JAVA_HOME%\jre\lib;%JAVA_HOME%\lib\jsp-api.jar;%CATALINA_HOME%\common\lib\servlet-api.jar;C:\Java\logging-log4j-1.2.14\dist\lib\log4j-1.2.14.jar
    4. My PATH=c:\wint\BIN;%JAVA_HOME%\bin;%JAVA_HOME%\jre\bin;%CATALINA_HOME%\bin;C:\MySQL\MySQL Server 5.0\bin;D:\MiKTeX 2.5\miktex\bin;C:\Perl\bin\;%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;C:\Program Files\QuickTime\QTSystem\;C:\Program Files\Microsoft SQL Server\80\Tools\Binn\;C:\SFU\Perl\bin\;C:\SFU\common\;C:\Program Files\Lahey-Fujitsu Fortran\v7.1\Bin;C:\Program Files\Lahey-Fujitsu Fortran\v7.1\Win32\Bin
    What I need:
    1. I need to have some reference to the servlet classes satisfied in my configuration. Any help is appreciated.
    thanks
    jondr

    Oh. I got some over-the-shoulder debug help.
    My error was in the classpath specification:
    The path: %JAVA_HOME%\lib\jsp-api.jar
    Should be: %CATALINA_HOME%\lib\jsp-api.jar
    That contains the javax.servlet.jsp.*
    Thimk.
    Message was edited by: jon
    jondr

  • Package javax.servlet.jsp does not exist.

    dear all!
    I've one program which import javax.servlet.jsp.* as one of the package to be used in
    the program, and I am using j2sdk 1.4.0_01 to compiled it.
    However I got this error message : package javax.servlet.jsp does not exist.
    Where does it wrong?.
    error message like :
    logisticslib.java:6: package javax.servlet.jsp does not exist
    import javax.servlet.jsp.*;
    ^
    logisticslib.java:201: cannot resolve symbol
    symbol : class JspWriter
    location: class elogistic.db.logisticslib
    public void getServiceInfo(JspWriter out, String SQL) {

    You need a J2EE implementation, I recomemend Tomcat, you also need to put the .jar w/ the implementation in in your classpath.

  • Java 1.6.0_05 does not recognize first and last property in jnlp file

    Hi
    Has anybody else seen this?
    The jnlp file contains five properties, but the JRE does not recognize the first nor the last property.
    It has been working great since 1.4.2, through 1.5 and 1.6 until 1.6.0_05.
    <property name='bog' value='%2fdata%2fkirkeboeger1892%2f'/>
    <property name='opslag' value='aa001/AB/007/0000a-A.Jpg,aa001/AB/007/0002a-F.Jpg,... </property>
    <property name='sessionId' value='ed0l5n55yu2h04alvqxdpbn3'/>
    <property name='service' value='http://ao.sa.dk/LAView/ImageServer/Service1.asmx'/>
    <property name='titel' value='1908+-+1924%2c+Agerskov%2c+N%c3%b8rre+Rangstrup%2c+Haderslev'/>The 'opslag' property is much longer, so I cut it off to make it more readable.
    Pressing 's' in the console gives me this
    Dump system properties ...
    awt.toolkit = sun.awt.windows.WToolkit
    file.encoding = Cp1252
    file.encoding.pkg = sun.io
    file.separator = \
    http.auth.serializeRequests = true
    https.protocols = TLSv1,SSLv3
    java.awt.graphicsenv = sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob = sun.awt.windows.WPrinterJob
    java.class.path = C:\Program Files\Java\jre1.6.0_05\lib\deploy.jar
    java.class.version = 50.0
    java.endorsed.dirs = C:\Program Files\Java\jre1.6.0_05\lib\endorsed
    java.ext.dirs = C:\Program Files\Java\jre1.6.0_05\lib\ext;C:\Windows\Sun\Java\lib\ext
    java.home = C:\Program Files\Java\jre1.6.0_05
    java.io.tmpdir = C:\Users\MAJ-BR~1\AppData\Local\Temp\
    java.library.path = C:\Program Files\Java\jre1.6.0_05\bin;.;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Program Files\Java\jre1.6.0_05\bin;C:\Program Files\Mozilla Firefox;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;"C:\Program Files\Java\jre1.6.0_05\bin"
    java.protocol.handler.pkgs = com.sun.javaws.net.protocol|com.sun.deploy.net.protocol
    java.runtime.name = Java(TM) SE Runtime Environment
    java.runtime.version = 1.6.0_05-b13
    java.security.policy = file:C:\Program Files\Java\jre1.6.0_05\lib\security\javaws.policy
    java.specification.name = Java Platform API Specification
    java.specification.vendor = Sun Microsystems Inc.
    java.specification.version = 1.6
    java.vendor = Sun Microsystems Inc.
    java.vendor.url = http://java.sun.com/
    java.vendor.url.bug = http://java.sun.com/cgi-bin/bugreport.cgi
    java.version = 1.6.0_05
    java.vm.info = mixed mode, sharing
    java.vm.name = Java HotSpot(TM) Client VM
    java.vm.specification.name = Java Virtual Machine Specification
    java.vm.specification.vendor = Sun Microsystems Inc.
    java.vm.specification.version = 1.0
    java.vm.vendor = Sun Microsystems Inc.
    java.vm.version = 10.0-b19
    javaplugin.proxy.config.type = direct
    javawebstart.version = javaws-1.6.0_05
    jnlpx.heapsize = 64m,128m
    jnlpx.home = C:\Program Files\Java\jre1.6.0_05\bin
    jnlpx.jvm = "C:\Program Files\Java\jre1.6.0_05\bin\javaw.exe"
    jnlpx.remove = false
    jnlpx.splashport = 49557
    line.separator = \r\n
    opslag = aa001/AB/007/0000a-A.Jpg,aa001/AB/007/0002a-F.Jpg,...
    os.arch = x86
    os.name = Windows Vista
    os.version = 6.0
    path.separator = ;
    service = http://ao.sa.dk/LAView/ImageServer/Service1.asmx
    sessionId = ed0l5n55yu2h04alvqxdpbn3
    sun.arch.data.model = 32
    sun.boot.class.path = C:\Program Files\Java\jre1.6.0_05\lib\resources.jar;C:\Program Files\Java\jre1.6.0_05\lib\rt.jar;C:\Program Files\Java\jre1.6.0_05\lib\sunrsasign.jar;C:\Program Files\Java\jre1.6.0_05\lib\jsse.jar;C:\Program Files\Java\jre1.6.0_05\lib\jce.jar;C:\Program Files\Java\jre1.6.0_05\lib\charsets.jar;C:\Program Files\Java\jre1.6.0_05\classes;C:\Program Files\Java\jre1.6.0_05\lib\javaws.jar;C:\Program Files\Java\jre1.6.0_05\lib\deploy.jar
    sun.boot.library.path = C:\Program Files\Java\jre1.6.0_05\bin
    sun.cpu.endian = little
    sun.cpu.isalist = pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
    sun.desktop = windows
    sun.io.unicode.encoding = UnicodeLittle
    sun.java.launcher = SUN_STANDARD
    sun.jnu.encoding = Cp1252
    sun.management.compiler = HotSpot Client Compiler
    sun.os.patch.level =
    trustProxy = true
    user.country = DK
    user.dir = C:\Users\Maj-Britt\Documents
    user.home = C:\Users\Maj-Britt
    user.language = da
    user.name = Maj-Britt
    user.timezone = Europe/Paris
    user.variant = As one can clearly see, the 'bog' and 'titel' (i.e. first and last) properties are missing, resulting (bad code - I know) in a NullPointerException.

    We also have this problem, but it's not first and last property.
    We have 6 properties, and the 3. property is gone.
    If I download the jnlp file, the property is there, if I choose show jnlp file in "javaws -viewer" it's not there. Only difference between this property and the working properties is length.
    The length is char 255, and the data is base64 encoded.
    I worked fine before upgrading to Java 6 update 5.
    Anyone any ideas?

  • My iTunes does not recognize my iPod all of a sudden

    Hello, My iTunes does not recognize my iPod all of a sudden.  Today before I went running I downloaded some new podcasts to listen to.  I plugged in my iPod and for some reason iTunes could not recognize my iPod nano.  I run iTunes on Windows 8.1 on a Surface Pro and have successfully synced my iPod before with this system.  I do not know why it doesn't work now.
    Per the instructions on Apple Help, I went through the troubleshoot steps (i.e., restarting iTunes, restarting my computer, updating iTunes, etc.).  When all that failed, I uninstalled iTunes and reinstalled it but this still does not work.
    I cannot afford to purchase help through Apple, but I like running and I like listening to new stuff when I run.  Can someone please help me on this board?  I am pretty good with walking myself through simple computer steps.
    Thank you in advance!

    Try with the iPod in forced disk mode.
    Putting iPod into disk mode.
    Still no joy, see this.
    iTunes 7 doesn't recognize the iPod.

  • I am trying to set up the MiFi4620L jetpack to my brother-in-laws computer, which has WIFI.  It does not recognize the jetpack.  What do I need to do?

    I recently put in a new SIMS card to our MiFi4620L Jetpack.  When I was at the Verizon Store the person who was helping me was able to sign onto the internet via the jetpack.  Now that I have my brother-in-laws computer, which has WIFI, I am unable to set up the Jetpack.  It does not recognize it.  What do I need to do to get it set up?

    If the PC cannot "See" the Jetpack then that means one of the following has happened:
    1. The wireless adapter in the PC is defective
    2. The Jetpack is defective
    3. The wireless adapter on the PC cannot see the signal coming from the Jetpack (2.4 Ghz vs. 5.0 Ghz)
    4. There are too many competing wireless signals and the PC cannot see the signal from the Jetpack
    Solving 1 and 2 is a simple matter of trial and error.  Confirm that the PC can see and connect to other networks.  Confirm that the Jetpack can connect to other PCs.  After that you need to check the specs on the Jetpack and the PC wireless card to make sure they are compatible.  If they are but the Jetpack is still not visible then that usually means the air is too crowded with competing SSIDs/Network names.  This is common in urban/apartment/dorm scenarios where multiple signals are exposed to a single machine.  The solution is either to move to an area with less competition, convert to an Ethernet cable via a wireless bridging device, or migrate to 5.0 Ghz (this jetpack only works on 2.4 Ghz).

  • Macintosh: Flash Player does not recognize external webcam

    Hi,
    the Adobe Flashplayer does not recognize an external webcam on my iMac. When I open Settings and try to choose a camera, it offers:
    DV Video
    IIDC FirWire Video
    USB Video Class Video
    The last entry activates the built-in iSight camera, but not the Logitech Camera which is connected via USB. If I choose one of the other options, the picture freezes, but it does not activate the external Logitech cam.
    The Computer recognizes the Logitech Cam alright, it works fine with other apps (Skype, iChat). Does anyone have an idea what can be the problem?
    Webcam: Logitech Vision Pro USB für Mac, nagelneu
    Computer: Intel Mac, OSX Tiger 10.4.?
    Browser: Mozilla Firefox
    Thanks for any help!

    I've been trying to work through similar problems, as have many other Mac users from what it looks like.  Here's a quote from a post I found in Apple's forum:
    My Logictech 9000 doesn't show up in the Flash video source dropdown for me either. Selecting USB camera just selects the iSight.
    However, I did find a workaround: it seems to choose the first available usb webcam, which is typically the built-in iSight. If you have a mac mini with no built-in iSight, it uses the external camera by default. For my MacBook, I found the trick was to make the iSight busy by opening Photo Booth first, then opening the flash chat page.  That causes the flash player to find and use the external USB webcam. 
    Note: your webcam probably has to support the new standard USB Video plug-and-play protocol for this to work, and perhaps only on Leopard.
    Here's the link to the page where I found this post:
    http://discussions.apple.com/thread.jspa?threadID=1374761
    Hopefully this works for you if you haven't already found a solution - I see you posted back in April!  I'm sorry that no one attempted to answer your question before now, including the Adobe people who staff these forums!

  • Sparql endpoint does not recognize named graph

    Hi, I created a sem model A, and later added quads into it. while when I searched the named graph using sem_match from sql plus, it worked well, but it did not work using neither java code nor Joseki end point. For example, I simply count the number of triples, the number using sem_match is greater than that using the code. so I guess the code does not recognize the new added quads. Any ideas?
    here are the java code:
    Oracle oracle = new Oracle(szJdbcURL, szUser, szPasswd);
    DataSource ds = DatasetFactory.create();
    ModelOracleSem model = ModelOracleSem.createOracleSemModel(oracle, szModelName);
    ds.setDefaultModel(model);
    String queryString =
    " select (count(*) as ?count) from named <http://****> " +
    " where {" +
    " graph ?g {?s ?p ?o } " +
    Query query = QueryFactory.create(queryString) ;
    QueryExecution qexec = QueryExecutionFactory.create(query, ds) ;
    ResultSet results = qexec.execSelect() ;
    ResultSetFormatter.out(System.out, results, query);
    So does Joseki end point, do I need to add the named graph into joseki-config.ttl?
    Thanks.

    Hi,
    To deal with quads, you need to use DatasetGraphOracleSem class.
    You can search for Test11.java in the following document.
    http://docs.oracle.com/cd/E11882_01/appdev.112/e11828/sem_jena.htm
    To configure named graph support for Joseki, please take a look at oracle:allGraphs
    in Section 7.2 of the above document.
    Hope it helps,
    Zhe Wu

Maybe you are looking for