[appengine-java] Re: Creating/Compiling new Java class at run time

2011-03-11 Thread Rick Smith
the appropriate brancings accordingly. Like you write a program that adapts it behavior depending on some parameter file, just that the parameters comes from the UI. Besides, I think that dynamic classloading is not possible in GAE. /J On Mar 7, 9:13 am, Rick Smith rick@gmail.com wrote: Hi

[appengine-java] Creating/Compiling new Java class at run time

2011-03-07 Thread Rick Smith
Hi all Can I create and compile a java class at run time on goolge appengine. Use case: I have given a UI to my application user that they can define their own business logic.Now what is going to be main challenge is that I need to make new deployment each time when some one need to modify its

[appengine-java] Can we use Java Development Server in production mode

2011-03-01 Thread Rick Smith
Hello all We are creating a web application in java on app engine. It has been successfully deployed and has been used by a number of clients. But some of our client demands an offline deployment of this web application. As we know google has provided java development server for testing our

[appengine-java] Re: Can we use Java Development Server in production mode

2011-03-01 Thread Rick Smith
Hi Thanks for your guidance and giving me a better insight of java development server. @didier Data store may not be an issue for us because we use mysql as we are using RDBMS instance(Sql service) of Google app engine. @Jay Young If development server is single threaded, then it will

[appengine-java] Re: How to POST to the BlobStore from a command line Java program?

2011-02-23 Thread Rick Smith
I am also looking for a similar solution. Currently my application is running on a local server and I have uploaded more than 5 thousands file in SVN. Now I want to shift on Google app engine and I have already done most of the hardwork. But I do not found a programatic way to upload these

[appengine-java] How to use XSLT in JAVA

2011-02-18 Thread Rick Smith
Hi all I am new to google app engine and I need to use XSLT parser. I was able to create an example by using file. TransformerFactory tfactory = TransformerFactory.newInstance(); Transformer transformer = tfactory.newTransformer(new StreamSource(new File(xslID))); transformer.transform(new