The issue is parsing. In my experience, this is due to using backslashes (\)
where you should use two backslashes (\\) or a forward slash (/). 

To debug:
  It is not necessarily true that the file that defines the servlet "action"
is the culprit. What you need to do is go through that file and verfiy you
have correctly typed in all directories (locations on your computer). If
they are correct (I suspect they might be), you need to find all files
related to initializing the application. Config files, properties files,
etc... look for any files that are used as initializers and parse through
the parts where you specify directories. If at any point you come across a
place where you use a different set of slashes, a red flag should go off. If
you use one set of slashes the whole way through, remember that just because
you are working on a Windows box does not mean you use backslashes. If this
is what you've done, back-up your work, change all backslashes to forward
slashes, and restart the server again.

  If you want, you may also get a nicer parser. Google is the way I would go
about doing this.

Your Case:
 I am not 100% sure you are experiencing a parsing issue that deals with
slashes; however, I am pretty sure you are dealing with a parsing issue. If
my debugging help doesn't work for you, I would try to remember back to any
parts where you felt uncertain about what you were typing and look for
things that the parser may not like.



apetrelli wrote:
> 
> Sandeep Gupta ha scritto:
>> Hi
>>
>> I am using Struts 1.1 and Weblogic 8.1 SP1. The problem is while 
>> deploying
>> my WAR (in the exploded form only) after modification of 
>> struts-config.xml.
>> I have this project running for the past 6 years now.
>>
>> As soon as I add another form bean to the struts-config.xml file, I am
>> getting the exception on deployment of the WAR in EXPLODED format:
>>
>> <Oct 10, 2006 3:51:04 PM GMT+05:30> <Error> <HTTP> <BEA-101216> <Servlet:
>> "action" failed to preload on startup in Web application: "cdWeb".
>> javax.servlet.UnavailableException: Parsing error processing resource 
>> path
>>        at org.apache.struts.action.ActionServlet.handleConfigException(
>> ActionServlet.java:1035)
>>        at org.apache.struts.action.ActionServlet.parseModuleConfigFile(
>> ActionServlet.java:1014)
> 
> Can you post your ActionServlet configuration (servlet and 
> servlet-mapping) in your web.xml and, if you have it, the part of 
> struts-config.xml where you configure modules?
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Parsing-error-processing-resource-path-tf2415845.html#a9481780
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to