It basically displays the two textarea containing the edges of the two graphs..and the another textarea showing the intersection of the 2 graphs
On Mon, May 24, 2010 at 12:19 PM, bufferings <[email protected]> wrote: > mm... > The setting is good. > > So I touched your service. > http://deepmhn.appspot.com/ > > The servlet call seems to be working. > What does "computeIntersectionServlet" draw? > > 2010/5/25 drift elysium <[email protected]>: > > here's my web.xml file: > > > > > > <?xml version="1.0" encoding="utf-8"?> > > <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_2_5.xsd" version="2.5"> > > <servlet> > > <servlet-name>EdgeIntersection</servlet-name> > > <servlet-class>servlets.EdgeIntersectionServlet</servlet-class> > > </servlet> > > <servlet> > > <servlet-name>computeIntersection</servlet-name> > > > <servlet-class>servlets.computeIntersectionServlet</servlet-class> > > </servlet> > > <servlet-mapping> > > <servlet-name>EdgeIntersection</servlet-name> > > <url-pattern>/EdgeIntersection</url-pattern> > > </servlet-mapping> > > > > <servlet-mapping> > > <servlet-name>computeIntersection</servlet-name> > > <url-pattern>/computeIntersection</url-pattern> > > </servlet-mapping> > > > > <welcome-file-list> > > <welcome-file>EdgeIntersection</welcome-file> > > </welcome-file-list> > > </web-app> > > > > > > On Mon, May 24, 2010 at 11:49 AM, bufferings <[email protected]> > wrote: > >> > >> hi > >> > >> I want to know servlet-mapping and "computeIntersectionServlet" class > >> name. > >> > >> 2010/5/25 drift elysium <[email protected]>: > >> > Hi, > >> > > >> > One reason I suspect might be this. I have my servlets under the > folder > >> > "servlets" . So in the web.xml I had mapping like this: > >> > > >> > <servlet-name>computeIntersection</servlet-name> > >> > > >> > <servlet-class>servlets.computeIntersectionServlet</servlet-class> > >> > > >> > how do I specify the path for the servlet class so that it works in > the > >> > production server also? > >> > > >> > Thanks > >> > > >> > On Mon, May 24, 2010 at 9:51 AM, bufferings <[email protected]> > >> > wrote: > >> >> > >> >> Hi drift elysium, > >> >> > >> >> I think you are using the version 1.3.3.1 if you use > >> >> appengine-api-1.0-sdk-1.3.3.1.jar. > >> >> You can confirm the version by the value of SystemProperty.version. > >> >> > >> >> > >> >> > >> >> > http://code.google.com/intl/en/appengine/docs/java/javadoc/com/google/appengine/api/utils/SystemProperty.html#version > >> >> > >> >> I guess another reason. > >> >> Are the capital letter and the small letter of your path correct? > >> >> > >> >> - bufferings > >> >> > >> >> 2010/5/24 drift elysium <[email protected]>: > >> >> > Hi bufferings, > >> >> > > >> >> > Thanks for the reply. Can you please tell me how to update to the > >> >> > latest > >> >> > version? > >> >> > > >> >> > The lib in my war folder has this file- > >> >> > appengine-api-1.0-sdk-1.3.3.1.jar . > >> >> > So this means I'm using the version 1.3.3.1 right? > >> >> > > >> >> > On Sat, May 22, 2010 at 10:03 AM, bufferings <[email protected] > > > >> >> > wrote: > >> >> >> > >> >> >> hi drift elysium > >> >> >> > >> >> >> If you use GAE 1.3.3, the servlet filter does not work on the > >> >> >> production server. > >> >> >> The bug is fixed in GAE 1.3.3.1. > >> >> >> http://code.google.com/p/googleappengine/issues/detail?id=3138 > >> >> >> > >> >> >> hth > >> >> >> - bufferings > >> >> >> > >> >> >> > >> >> >> On May 22, 10:15 pm, drift elysium <[email protected]> > wrote: > >> >> >> > http://deepmhn.appspot.com/ > >> >> >> > > >> >> >> > The goal is to find the intersection of edges of two graphs. For > >> >> >> > simplicity > >> >> >> > I have generated 10 random edges for each graph. On pressing the > >> >> >> > compute > >> >> >> > button, another servlet should run which displays the > intersection > >> >> >> > of > >> >> >> > the > >> >> >> > edges. It is displaying in the localhost but not in this site. > Are > >> >> >> > there > >> >> >> > any > >> >> >> > development mode parameters that I can set for HttpServlet? > >> >> >> > > >> >> >> > On Sat, May 22, 2010 at 3:24 AM, Ian Marshall > >> >> >> > <[email protected]>wrote: > >> >> >> > > >> >> >> > > Have you got any example output and related code (if > relevant)? > >> >> >> > > >> >> >> > > -- > >> >> >> > > You received this message because you are subscribed to the > >> >> >> > > Google > >> >> >> > > Groups > >> >> >> > > "Google App Engine for Java" group. > >> >> >> > > To post to this group, send email to > >> >> >> > > [email protected]. > >> >> >> > > To unsubscribe from this group, send email to > >> >> >> > > > >> >> >> > > > >> >> >> > > > >> >> >> > > [email protected]<google-appengine-java%[email protected]> > <google-appengine-java%2B > >> >> >> > > [email protected]> > >> >> >> > > . > >> >> >> > > For more options, visit this group at > >> >> >> > >http://groups.google.com/group/google-appengine-java?hl=en. > >> >> >> > > >> >> >> > -- > >> >> >> > You received this message because you are subscribed to the > Google > >> >> >> > Groups "Google App Engine for Java" group. > >> >> >> > To post to this group, send email to > >> >> >> > [email protected]. > >> >> >> > To unsubscribe from this group, send email to > >> >> >> > [email protected]<google-appengine-java%[email protected]> > . > >> >> >> > For more options, visit this group > >> >> >> > athttp://groups.google.com/group/google-appengine-java?hl=en. > >> >> >> > >> >> >> -- > >> >> >> You received this message because you are subscribed to the Google > >> >> >> Groups > >> >> >> "Google App Engine for Java" group. > >> >> >> To post to this group, send email to > >> >> >> [email protected]. > >> >> >> To unsubscribe from this group, send email to > >> >> >> [email protected]<google-appengine-java%[email protected]> > . > >> >> >> For more options, visit this group at > >> >> >> http://groups.google.com/group/google-appengine-java?hl=en. > >> >> >> > >> >> > > >> >> > > >> >> > >> >> -- > >> >> You received this message because you are subscribed to the Google > >> >> Groups > >> >> "Google App Engine for Java" group. > >> >> To post to this group, send email to > >> >> [email protected]. > >> >> To unsubscribe from this group, send email to > >> >> [email protected]<google-appengine-java%[email protected]> > . > >> >> For more options, visit this group at > >> >> http://groups.google.com/group/google-appengine-java?hl=en. > >> >> > >> > > >> > -- > >> > You received this message because you are subscribed to the Google > >> > Groups > >> > "Google App Engine for Java" group. > >> > To post to this group, send email to > >> > [email protected]. > >> > To unsubscribe from this group, send email to > >> > [email protected]<google-appengine-java%[email protected]> > . > >> > For more options, visit this group at > >> > http://groups.google.com/group/google-appengine-java?hl=en. > >> > > >> > >> -- > >> You received this message because you are subscribed to the Google > Groups > >> "Google App Engine for Java" group. > >> To post to this group, send email to > >> [email protected]. > >> To unsubscribe from this group, send email to > >> [email protected]<google-appengine-java%[email protected]> > . > >> For more options, visit this group at > >> http://groups.google.com/group/google-appengine-java?hl=en. > >> > > > > -- > > You received this message because you are subscribed to the Google Groups > > "Google App Engine for Java" group. > > To post to this group, send email to > [email protected]. > > To unsubscribe from this group, send email to > > [email protected]<google-appengine-java%[email protected]> > . > > For more options, visit this group at > > http://groups.google.com/group/google-appengine-java?hl=en. > > > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine for Java" group. > To post to this group, send email to > [email protected]. > To unsubscribe from this group, send email to > [email protected]<google-appengine-java%[email protected]> > . > For more options, visit this group at > http://groups.google.com/group/google-appengine-java?hl=en. > > -- You received this message because you are subscribed to the Google Groups "Google App Engine for Java" group. 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-java?hl=en.
