Hi Amila,

I think the settings in your web.xml file are being overridden by
those in the META-INF/context.xml file.  A quick fix would be to
delete the META-INF/context.xml file from the deployed webapp.  Then
your web.xml settings won't be overridden.

I tested this with a similar environment to you (Windows, Java 7,
Maven 3) and after setting up and getting the same error that you
reported, the above change got things running for me.

Alternatively, a better approach might be to remove the three
parameter settings from web.xml and set them in your context.xml file
instead.  You can then move your configuration data and application
data (i.e. context.xml file, qtree and geodata folders) elsewhere on
your file system rather than having them within the deployed webapp.
In this way, if you update and redeploy the webapp at some point in
the future, all of your configuration and application data will be
retained.  I'll try to update the wiki with instructions on how to do
that and will let you know when it's ready.  But in the meantime,
deleting META-INF/context.xml might be the easiest way to get things
running.

Regards,

Ross





On 21 Apr 2013, at 06:45, AMILA RANATUNGA <[email protected]> wrote:

> Hi,
>
> Thanks for the replies. I previously ran with embedded jetty. I tried using
> tomcat also. Then the error message was that File not found exception of
> /path/to/sis-location-config.xml. (screenshot <http://min.us/lbdfwzNgGMtKA9>).
> yes path is wrong. but the error points as \path\to\which ....
> instead of my path.
>
> Here are my context parameters
>
> <context-param>
>  <param-name>org.apache.sis.services.config.qIndexPath</param-name>
>  <param-value>C:/tomcat/webapps/sis/webapps/sis/qtree</param-value>
> </context-param>
>
> <context-param>
>  <param-name>org.apache.sis.services.config.geodataPath</param-name>
>  <param-value>C:/tomcat/webapps/sis/webapps/sis/geodata</param-value>
> </context-param>
>
> <context-param>
>    <param-name>org.apache.sis.services.config.filePath</param-name>
>
> <param-value>C:/tomcat/webapps/sis/WEB-INF/classes/sis-location-config.xml</param-value>
>  </context-param>
>
> Here <http://min.us/lyeuFPTINkq2i>is my deployment structure. I am using
> tomcat 7.0.35
>
>
> Thank You!
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
>
> On Sun, Apr 21, 2013 at 3:48 AM, Ross Laidlaw <[email protected]>wrote:
>
>> Hi Amila,
>>
>> I remember getting a similar error message (as shown in your first
>> screenshot) when the webapp couldn't locate the sis-location-config.xml
>> file.  Can you recheck that you've configured the webapp so that it can
>> find the config file?  For example, you could do the following:
>>
>> 1)  In the deployed webapp, open the WEB-INF/web.xml file and locate the
>> following lines:
>>
>>  <context-param>
>>    <param-name>org.apache.sis.services.config.filePath</param-name>
>>    <param-value>/path/to/sis-location-config.xml</param-value>
>>  </context-param>
>>
>>
>> 2)  Change /path/to/sis-location-config.xml to the location of your
>> sis-location-config.xml file.  For example, I changed mine to
>> /usr/local/sis/sis-webapp/sis-location-config.xml
>>
>> 3)  Restart Tomcat.
>>
>>
>> Hopefully this might fix it!
>>
>> Regards,
>>
>> Ross
>>
>>
>>
>>
>> On 20 April 2013 22:47, Mattmann, Chris A (398J) <
>> [email protected]> wrote:
>>
>>> OK I will try and replicate the behavior you are seeing.
>>> What version of Tomcat are you using? And did you configure
>>> the SIS web app according to the install instructions?
>>>
>>> Can you post your *config.xml files?
>>>
>>> Cheers,
>>> Chris
>>>
>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>> Chris Mattmann, Ph.D.
>>> Senior Computer Scientist
>>> NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
>>> Office: 171-266B, Mailstop: 171-246
>>> Email: [email protected]
>>> WWW:  http://sunset.usc.edu/~mattmann/
>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>> Adjunct Assistant Professor, Computer Science Department
>>> University of Southern California, Los Angeles, CA 90089 USA
>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>
>>>
>>>
>>>
>>>
>>>
>>> -----Original Message-----
>>> From: AMILA RANATUNGA <[email protected]>
>>> Reply-To: "[email protected]" <[email protected]>
>>> Date: Saturday, April 20, 2013 2:34 PM
>>> To: "[email protected]" <[email protected]>
>>> Subject: Re: Exception when followed getting started tutorial
>>>
>>>> Yes. I checked it out from the link you pointed.
>>>> http://svn.apache.org/repos/asf/sis/tags/0.2-incubating-rc4/
>>>>
>>>> Thank You !
>>>>
>>>>
>>>> On Sun, Apr 21, 2013 at 2:51 AM, Mattmann, Chris A (398J) <
>>>> [email protected]> wrote:
>>>>
>>>>> Thanks Amila, and you are confident that you are using SIS 0.2,
>> correct?
>>>>>
>>>>> Cheers,
>>>>> Chris
>>>>>
>>>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>> Chris Mattmann, Ph.D.
>>>>> Senior Computer Scientist
>>>>> NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
>>>>> Office: 171-266B, Mailstop: 171-246
>>>>> Email: [email protected]
>>>>> WWW:  http://sunset.usc.edu/~mattmann/
>>>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>> Adjunct Assistant Professor, Computer Science Department
>>>>> University of Southern California, Los Angeles, CA 90089 USA
>>>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>>
>>>>> -----Original Message-----
>>>>> From: AMILA RANATUNGA <[email protected]>
>>>>> Reply-To: "[email protected]" <[email protected]>
>>>>> Date: Saturday, April 20, 2013 2:17 PM
>>>>> To: "[email protected]" <[email protected]>
>>>>> Subject: Re: Exception when followed getting started tutorial
>>>>>
>>>>>> Hi Chris,
>>>>>>
>>>>>> Seems like I am getting 500 as the response on submission.
>>>>>> Here <http://min.us/lX9onPq6FnBos>is the screenshot. Some of the
>>>>> requests
>>>>>> to google map API are ok.
>>>>>>
>>>>>> Thank You !
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>>
>>>>>> On Sun, Apr 21, 2013 at 1:35 AM, Mattmann, Chris A (398J) <
>>>>>> [email protected]> wrote:
>>>>>>
>>>>>>> Hi Amila,
>>>>>>>
>>>>>>> OK do you know how to use Tamper Data? Can you see if the web
>> service
>>>>>>> is properly being submitted to, and if so, what the response is?
>>>>>>> Also I wonder if the Google Maps connection is giving the 500
>> error.
>>>>>>> Can you check that out?
>>>>>>>
>>>>>>> Cheers,
>>>>>>> Chris
>>>>>>>
>>>>>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>>>> Chris Mattmann, Ph.D.
>>>>>>> Senior Computer Scientist
>>>>>>> NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
>>>>>>> Office: 171-266B, Mailstop: 171-246
>>>>>>> Email: [email protected]
>>>>>>> WWW:  http://sunset.usc.edu/~mattmann/
>>>>>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>>>> Adjunct Assistant Professor, Computer Science Department
>>>>>>> University of Southern California, Los Angeles, CA 90089 USA
>>>>>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>>> -----Original Message-----
>>>>>>> From: AMILA RANATUNGA <[email protected]>
>>>>>>> Reply-To: "[email protected]" <[email protected]>
>>>>>>> Date: Saturday, April 20, 2013 12:02 PM
>>>>>>> To: "[email protected]" <[email protected]>
>>>>>>> Subject: Re: Exception when followed getting started tutorial
>>>>>>>
>>>>>>>> Hi Chris,
>>>>>>>>
>>>>>>>> Here is the link <http://minus.com/lqjMjvJYhmsFn>. Sorry for
>>>>>>>> the inconvenience. I have checked out and built the svn you
>>>>> suggested.
>>>>>>>> But got the same error. :(
>>>>>>>>
>>>>>>>> Thank You !
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>>> On Sat, Apr 20, 2013 at 9:41 PM, Mattmann, Chris A (398J) <
>>>>>>>> [email protected]> wrote:
>>>>>>>>
>>>>>>>>> Hi Amila,
>>>>>>>>>
>>>>>>>>> I just couldn't see the error message you are getting b/c your
>>>>>>>>> attachment to the list was dropped (I don't think dev@sisaccepts
>>>>>>>>> attachments). Instead I was asking if you could use the e.g.,
>>>>>>>>> http://min.us/
>>>>>>>>> service to share your screenshot.
>>>>>>>>>
>>>>>>>>> Cheers,
>>>>>>>>> Chris
>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>>>>>> Chris Mattmann, Ph.D.
>>>>>>>>> Senior Computer Scientist
>>>>>>>>> NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
>>>>>>>>> Office: 171-266B, Mailstop: 171-246
>>>>>>>>> Email: [email protected]
>>>>>>>>> WWW:  http://sunset.usc.edu/~mattmann/
>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>>>>>> Adjunct Assistant Professor, Computer Science Department
>>>>>>>>> University of Southern California, Los Angeles, CA 90089 USA
>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>>
>>>>>>>>> -----Original Message-----
>>>>>>>>> From: AMILA RANATUNGA <[email protected]>
>>>>>>>>> Reply-To: "[email protected]" <[email protected]>
>>>>>>>>> Date: Saturday, April 20, 2013 12:56 AM
>>>>>>>>> To: "[email protected]" <[email protected]>
>>>>>>>>> Subject: Re: Exception when followed getting started tutorial
>>>>>>>>>
>>>>>>>>>> Hi Chris,
>>>>>>>>>>
>>>>>>>>>> Is that the last image in wiki?
>>>>>>>>>>
>>>>>>>>>> Thanks !
>>>>>>>>>>
>>>>>>>>>>
>>>>>>>>>> On Sat, Apr 20, 2013 at 11:53 AM, Mattmann, Chris A (398J) <
>>>>>>>>>> [email protected]> wrote:
>>>>>>>>>>
>>>>>>>>>>> Thanks Amila,
>>>>>>>>>>>
>>>>>>>>>>> The image didn't come through can you use min.us or some
>>>>> similar
>>>>>>>>>>> service and paste the link?
>>>>>>>>>>>
>>>>>>>>>>> Cheers,
>>>>>>>>>>> Chris
>>>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>>>>>>>> Chris Mattmann, Ph.D.
>>>>>>>>>>> Senior Computer Scientist
>>>>>>>>>>> NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
>>>>>>>>>>> Office: 171-266B, Mailstop: 171-246
>>>>>>>>>>> Email: [email protected]
>>>>>>>>>>> WWW:  http://sunset.usc.edu/~mattmann/
>>>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>>>>>>>> Adjunct Assistant Professor, Computer Science Department
>>>>>>>>>>> University of Southern California, Los Angeles, CA 90089 USA
>>>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>>
>>>>>>>>>>> -----Original Message-----
>>>>>>>>>>> From: AMILA RANATUNGA <[email protected]>
>>>>>>>>>>> Reply-To: "[email protected]" <[email protected]>
>>>>>>>>>>> Date: Friday, April 12, 2013 11:28 AM
>>>>>>>>>>> To: "[email protected]" <[email protected]>
>>>>>>>>>>> Subject: Re: Exception when followed getting started tutorial
>>>>>>>>>>>
>>>>>>>>>>>> Hi Chris,
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> It's version 0.2. Here is the error I am getting.
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> Thank You !
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> On Fri, Apr 12, 2013 at 10:58 PM, Mattmann, Chris A (398J)
>>>>>>>>>>>> <[email protected]> wrote:
>>>>>>>>>>>>
>>>>>>>>>>>> Hi Amila,
>>>>>>>>>>>>
>>>>>>>>>>>> What version of SIS are you using?
>>>>>>>>>>>>
>>>>>>>>>>>> Cheers,
>>>>>>>>>>>> Chris
>>>>>>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>>>>>>>>> Chris Mattmann, Ph.D.
>>>>>>>>>>>> Senior Computer Scientist
>>>>>>>>>>>> NASA Jet Propulsion Laboratory Pasadena, CA 91109 USA
>>>>>>>>>>>> Office: 171-266B, Mailstop: 171-246
>>>>>>>>>>>> Email: [email protected]
>>>>>>>>>>>> WWW:  http://sunset.usc.edu/~mattmann/
>>>>>>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>>>>>>>>> Adjunct Assistant Professor, Computer Science Department
>>>>>>>>>>>> University of Southern California, Los Angeles, CA 90089 USA
>>>>>>>> ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>> -----Original Message-----
>>>>>>>>>>>> From: AMILA RANATUNGA <[email protected]>
>>>>>>>>>>>> Reply-To: "[email protected]" <[email protected]>
>>>>>>>>>>>> Date: Monday, April 8, 2013 4:30 AM
>>>>>>>>>>>> To: "[email protected]" <[email protected]>
>>>>>>>>>>>> Subject: Exception when followed getting started tutorial
>>>>>>>>>>>>
>>>>>>>>>>>>> Hi,
>>>>>>>>>>>>>
>>>>>>>>>>>>> Hi I am new to SIS. When I started jetty server and entered
>>>>> the
>>>>>>> URL
>>>>>>>>>>>>> http://localhost:8080/sis-webapp/demo.jsp. And enter the
>>>>>>>>>>> co-ordinates. I
>>>>>>>>>>>>> used Java 1.7 and Maven 3.0.4.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Bounding Box:
>>>>>>>>>>>>>     0, 50, 50, 100
>>>>>>>>>>>>>
>>>>>>>>>>>>> I get following exception
>>>>>>>>>>>>>
>>>>>>>>>>>>> 2013-04-08 16:13:28.990:/sis-webapp:WARN:  unavailable
>>>>>>>>>>>>> java.lang.NullPointerException
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>> org.apache.sis.services.LocationServlet.init(LocationServlet.java:9
>>>>>>>>>>> 9)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.servlet.ServletHolder.initServlet(ServletHolder
>>>>>>>>>>>>> .j
>>>>>>>>>>>>> av
>>>>>>>>>>>>> a:
>>>>>>>>>>>>> 44
>>>>>>>>>>>>> 0
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.servlet.ServletHolder.getServlet(ServletHolder.
>>>>>>>>>>>>> ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :3
>>>>>>>>>>>>> 39
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>> org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:4
>>>>>>>>>>> 87
>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :3
>>>>>>>>>>>>> 90
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler
>>>>>>>>>>>>> .j
>>>>>>>>>>>>> av
>>>>>>>>>>>>> a:
>>>>>>>>>>>>> 21
>>>>>>>>>>>>> 6
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :1
>>>>>>>>>>>>> 82
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :7
>>>>>>>>>>>>> 65
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>> org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:41
>>>>>>>>>>> 8)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.handler.ContextHandlerCollection.handle(Context
>>>>>>>>>>>>> Ha
>>>>>>>>>>>>> nd
>>>>>>>>>>>>> le
>>>>>>>>>>>>> rC
>>>>>>>>>>>>> o
>>>>>>>>>>>>> llection.java:230)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollect
>>>>>>>>>>>>> io
>>>>>>>>>>>>> n.
>>>>>>>>>>>>> ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :
>>>>>>>>>>>>> 114)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :1
>>>>>>>>>>>>> 52
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at org.mortbay.jetty.Server.handle(Server.java:326)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.jav
>>>>>>>>>>>>> a:
>>>>>>>>>>>>> 53
>>>>>>>>>>>>> 6)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(Ht
>>>>>>>>>>>>> tp
>>>>>>>>>>>>> Co
>>>>>>>>>>>>> nn
>>>>>>>>>>>>> ec
>>>>>>>>>>>>> t
>>>>>>>>>>>>> ion.java:915)
>>>>>>>>>>>>>   at
>>>>>>> org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:539)
>>>>>>>>>>>>>   at
>>>> org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212)
>>>>>>>>>>>>>   at
>>>> org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:405)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoin
>>>>>>>>>>>>> t.
>>>>>>>>>>>>> ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :4
>>>>>>>>>>>>> 0
>>>>>>>>>>>>> 9)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPo
>>>>>>>>>>>>> ol
>>>>>>>>>>>>> .j
>>>>>>>>>>>>> av
>>>>>>>>>>>>> a:
>>>>>>>>>>>>> 5
>>>>>>>>>>>>> 82)
>>>>>>>>>>>>> 2013-04-08 16:13:28.992::WARN: /sis-webapp/location
>>>>>>>>>>>>> java.lang.NullPointerException
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>> org.apache.sis.services.LocationServlet.init(LocationServlet.java:9
>>>>>>>>>>> 9)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.servlet.ServletHolder.initServlet(ServletHolder
>>>>>>>>>>>>> .j
>>>>>>>>>>>>> av
>>>>>>>>>>>>> a:
>>>>>>>>>>>>> 44
>>>>>>>>>>>>> 0
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.servlet.ServletHolder.getServlet(ServletHolder.
>>>>>>>>>>>>> ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :3
>>>>>>>>>>>>> 39
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>> org.mortbay.jetty.servlet.ServletHolder.handle(ServletHolder.java:4
>>>>>>>>>>> 87
>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.servlet.ServletHandler.handle(ServletHandler.ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :3
>>>>>>>>>>>>> 90
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.security.SecurityHandler.handle(SecurityHandler
>>>>>>>>>>>>> .j
>>>>>>>>>>>>> av
>>>>>>>>>>>>> a:
>>>>>>>>>>>>> 21
>>>>>>>>>>>>> 6
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.servlet.SessionHandler.handle(SessionHandler.ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :1
>>>>>>>>>>>>> 82
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :7
>>>>>>>>>>>>> 65
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>> org.mortbay.jetty.webapp.WebAppContext.handle(WebAppContext.java:41
>>>>>>>>>>> 8)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.handler.ContextHandlerCollection.handle(Context
>>>>>>>>>>>>> Ha
>>>>>>>>>>>>> nd
>>>>>>>>>>>>> le
>>>>>>>>>>>>> rC
>>>>>>>>>>>>> o
>>>>>>>>>>>>> llection.java:230)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollect
>>>>>>>>>>>>> io
>>>>>>>>>>>>> n.
>>>>>>>>>>>>> ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :
>>>>>>>>>>>>> 114)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :1
>>>>>>>>>>>>> 52
>>>>>>>>>>>>> )
>>>>>>>>>>>>>   at org.mortbay.jetty.Server.handle(Server.java:326)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.jav
>>>>>>>>>>>>> a:
>>>>>>>>>>>>> 53
>>>>>>>>>>>>> 6)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.jetty.HttpConnection$RequestHandler.headerComplete(Ht
>>>>>>>>>>>>> tp
>>>>>>>>>>>>> Co
>>>>>>>>>>>>> nn
>>>>>>>>>>>>> ec
>>>>>>>>>>>>> t
>>>>>>>>>>>>> ion.java:915)
>>>>>>>>>>>>>   at
>>>>>>> org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:539)
>>>>>>>>>>>>>   at
>>>> org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:212)
>>>>>>>>>>>>>   at
>>>> org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:405)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.io.nio.SelectChannelEndPoint.run(SelectChannelEndPoin
>>>>>>>>>>>>> t.
>>>>>>>>>>>>> ja
>>>>>>>>>>>>> va
>>>>>>>>>>>>> :4
>>>>>>>>>>>>> 0
>>>>>>>>>>>>> 9)
>>>>>>>>>>>>>   at
>>>
>>>>>>>>>>>> org.mortbay.thread.QueuedThreadPool$PoolThread.run(QueuedThreadPo
>>>>>>>>>>>>> ol
>>>>>>>>>>>>> .j
>>>>>>>>>>>>> av
>>>>>>>>>>>>> a:
>>>>>>>>>>>>> 5
>>>>>>>>>>>>> 82
>>>>>>>>>>>>
>>>>>>>>>>>>
>>>>>>>>>>>>> )
>>>>>>>>>>>>>
>>>>>>>>>>>>> Can anybody please tell where  have I gone wrong.
>>>>>>>>>>>>>
>>>>>>>>>>>>> Thank You !
>>

Reply via email to