Hi, 
Sorry for the trouble. 
Could you share a few data from your project? 
For example: 
1/ the entire directory name where the app is (space in dir or not) 
2/ the exact location in the web app of the tag lib and the jsp using it. 
If relevant, some entries in the web.xml. 
3/ Some code fragment if possible of the usage 
4/ If you could share the tag lib and a small jsp using it, where you can 
reproduce the issue it would great! 
Let me know if you want to share the information privately. 

Many thanks for your support, I hope it will be easy to fix with your help, 
Ludo 

On Saturday, December 8, 2012 3:04:31 AM UTC-8, Savaş L. wrote:
>
> with 1.7.4 pre, i am getting a strange error, it works locally but 
> when i try to deploy it produces this.. 
> it doesnt see my custom made taglib, i couldnt find a solution yet.. 
>
> Preparing to deploy: 
>         Created staging directory at: 'C:\Users\savi\AppData\Local\Temp 
> \appcfg1147116988784742342.tmp' 
>         Scanning for jsp files. 
>         Compiling jsp files. 
> com.google.appengine.tools.admin.JspCompilationException: Failed to 
> compile jsp files. 
> Exception in thread "main" org.apache.jasper.JasperException: The 
> class net.munju.viewhelpers.MunjuTagLib specified in TLD for the 
> function mu:postDateHelper cannot be found: 
> net.munju.viewhelpers.MunjuTagLib 
>         at 
> org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.java:
>  
>
> 51) 
>         at 
> org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java: 
> 409) 
>         at 
> org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java: 
> 181) 
>         at org.apache.jasper.compiler.Validator$ValidateVisitor 
> $1MapperELVisitor.visit(Validator.java:1644) 
>         at 
> org.apache.jasper.compiler.ELNode$Function.accept(ELNode.java:129) 
>         at org.apache.jasper.compiler.ELNode$Nodes.visit(ELNode.java:200) 
>         at 
> org.apache.jasper.compiler.ELNode$Visitor.visit(ELNode.java:242) 
>         at org.apache.jasper.compiler.ELNode$Root.accept(ELNode.java:56) 
>         at org.apache.jasper.compiler.ELNode$Nodes.visit(ELNode.java:200) 
>         at org.apache.jasper.compiler.Validator 
> $ValidateVisitor.getFunctionMapper(Validator.java:1672) 
>         at org.apache.jasper.compiler.Validator 
> $ValidateVisitor.prepareExpression(Validator.java:1540) 
>         at org.apache.jasper.compiler.Validator 
> $ValidateVisitor.visit(Validator.java:720) 
>         at 
> org.apache.jasper.compiler.Node$ELExpression.accept(Node.java:958) 
>         at org.apache.jasper.compiler.Node$Nodes.visit(Node.java:2361) 
>         at 
> org.apache.jasper.compiler.Node$Visitor.visitBody(Node.java:2411) 
>
>
> On Dec 8, 11:20 am, Richmond Manzana <[email protected]> wrote: 
> > Hello Everyone! 
> > 
> > We've posted the pre-release SDKs for Python and Java here:
> http://code.google.com/p/googleappengine/downloads/list 
> > 
> > My apologies for not announcing this to the group sooner, some of you 
> may 
> > have noticed that they were available about a day ago. 
> > 
> > Pre-release notes below. 
> > 
> > Cheers, 
> > 
> > Rich 
> > 
> > App Engine Python SDK - Pre-Release Notes 
> > 
> > Version 1.7.4 
> > =============================== 
> > - Mail API Quotas have been updated. For more information please see: 
> >    https://developers.google.com/appengine/docs/quotas.html 
> > - Background threads are now a GA feature. 
> > - Traffic Splitting is now a GA feature. 
> > - Task Queue Statistics is now a GA feature. 
> > - Logs API now has the ability to fetch requests based on a list of 
> >   request_ids. Currently, this only works in production and is not 
> supported 
> >   in dev_appserver. 
> > - Python Interpreter has been upgraded to 2.7.3. 
> > - WebOb 1.2.3 is now available for Python 2.7. 
> > - DISTINCT for Datastore queries is now available as an experimental 
> feature. 
> > - Matplotlib v1.1.1 is now available as an experimental feature. 
> > - The decommissioned Conversion API has been removed. 
> > - Channel API now supports channels being used across multiple 
> application 
> >   versions and backends. You can also limit channel usage to a specific 
> >   application version by adding it to the client id when creating a 
> channel. 
> >    http://code.google.com/p/googleappengine/issues/detail?id=5123 
> > - Mail API now sends notifications for emails that bounce. 
> >    http://code.google.com/p/googleappengine/issues/detail?id=7451 
> > 
> > App Engine Java SDK - Pre-Release Notes 
> > 
> > Version 1.7.4 
> > ============= 
> > - Mail API Quotas have been updated. For more information please see: 
> >    https://developers.google.com/appengine/docs/quotas.html 
> > - Traffic Splitting is now a GA feature. 
> > - Task Queue Statistics is now a GA feature. 
> > - Logs API now has the ability to fetch requests based on a list of 
> >   request_ids. Currently, this only works in production and is not 
> supported 
> >   in dev_appserver. 
> > - DISTINCT feature for Datastore queries is now available as an 
> experimental 
> >   feature. 
> > - The decommissioned Conversion API has been removed. 
> > - Channel API now supports channels being used across multiple 
> application 
> >   versions and backends. You can also limit channel usage to a specific 
> >   application version by adding it to the client id when creating a 
> channel. 
> >    http://code.google.com/p/googleappengine/issues/detail?id=5123 
> > - Mail API now sends notifications for emails that bounce. 
> >    http://code.google.com/p/googleappengine/issues/detail?id=7451 
> > - Various JSP improvements 
> >     JSPs are now compiled together as opposed to one by one. This 
> improves the 
> >     compilation process time. 
> >     JSP compiled classes are packaged in JAR files. 
> >     You can now avoid the upload of JSP source, which is typically not 
> needed 
> >     at runtime. This can be done via the new --delete_jsps option in the 
> >     appcfg tool. By default, this option is not set. 
> >     You can now package all the WEB-INF/classes/* classes into jar 
> files. This 
> >     can be done via the new --enable_jar_classes option in the appcfg 
> tools. By 
> >     default, this option is not set. 
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-appengine/-/bBwSGmO46doJ.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to