Click here to Skip to main content
15,868,141 members

Comments by Member 3369145 (Top 7 by date)

Member 3369145 25-Jun-13 8:27am View    
i followed this syntax from the link
http://www.w3.org/2009/sparql/wiki/Feature:FullText#Feature:_Full_Text_Search
but not working, :(


?s ?p ?o .
FILTER ( ?p IN (dct:title, foaf:name, rdfs:label)) .
FILTER ( ?o contains "foo*" ) .
Member 3369145 30-Mar-13 10:35am View    
yes i did debug and it is populating data. but not passing the data in jsp
Member 3369145 30-Mar-13 8:29am View    
and here is web.xml details


<web-app xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://java.sun.com/xml/ns/javaee" xmlns:web="http://java.sun.com/xml/ns/javaee/web-app_2_5.xsd" xsi:schemalocation="http://java.sun.com/xml/ns/javaee http://java.sun.com/xml/ns/javaee/web-app_3_0.xsd" version="3.0">
<display-name>finalproject
<servlet>
<servlet-name>tablet
<servlet-class>finalpackage.tablet

<servlet-mapping>
<servlet-name>tablet
<url-pattern>/tablet

<welcome-file-list>
<welcome-file>index.jsp

Member 3369145 30-Mar-13 3:41am View    
i ave changed according to u, but not working, it show nathing in wow.jsp -----------
i have post my changed code also
Member 3369145 30-Mar-13 3:36am View    
Deleted
i ave changed according to u, but not working, it show nathing ,thanks again

wow.jsp --------------

<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>

<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c" %>
<%@ page isELIgnored="false" %>



<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>

<title>WHEEMS</title>
</head>
<body>
<table>

<c:foreach items="${requestScope.resultss}" var="rowObject">
<tr>
<td>${rowObject.getName()}</td>
<td>${rowObject.getSymbol()}</td>
<td>${rowObject.getNumber()}</td>

</tr>

</table>


</body>
</html>