diff --git a/war/WEB-INF/web.xml b/war/WEB-INF/web.xml
new file mode 100644
index 0000000..9b3da3d
--- /dev/null
+++ b/war/WEB-INF/web.xml
@@ -0,0 +1,13 @@
+
+
+
+
+ Wordbubbles Solver
+
+ Solver for things
+
+
+
diff --git a/war/error.jsp b/war/error.jsp
new file mode 100644
index 0000000..e816df0
--- /dev/null
+++ b/war/error.jsp
@@ -0,0 +1,6 @@
+
+
+<%@ page isErrorPage="true" %>
+Error: <%= exception %>
+
+
diff --git a/war/index.jsp b/war/index.jsp
new file mode 100644
index 0000000..8888e61
--- /dev/null
+++ b/war/index.jsp
@@ -0,0 +1,23 @@
+
+Wordbubbles solver
+<%@ page import="uk.org.mafoo.wordbubbles.*" %>
+
+Wordbubbles or Boggle solver
+Input grid
+
+
+
+
+
diff --git a/war/solver.jsp b/war/solver.jsp
new file mode 100644
index 0000000..04f1e02
--- /dev/null
+++ b/war/solver.jsp
@@ -0,0 +1,80 @@
+
+Wordbubbles solver
+<%@ page import="java.util.*" %>
+<%@ page import="java.io.*" %>
+<%@ page import="uk.org.mafoo.wordbubbles.*" %>
+<%@ page errorPage="error.jsp" %>
+<%
+
+// String dict = request.getParameter("dictionary");
+// if(dict != "twl06") throw new Exception("failed to get dictionary");
+String dict = "/usr/share/dict/twl06";
+
+uk.org.mafoo.wordbubbles.Lexicon words = uk.org.mafoo.wordbubbles.Lexicon.loadLexiconFromFile(dict);
+ArrayList> grid = new ArrayList>();
+HashSet desired = new HashSet();
+boolean desired_active = false;
+
+if(request.getParameterValues("desired") != null) {
+ desired_active = true;
+ for( String p : request.getParameterValues("desired") ) {
+ desired.add(new Integer(p));
+ }
+}
+
+if (request.getParameter("grid").length() > 2048) { throw new Exception("Input too large"); }
+
+for ( String line : request.getParameter("grid").split("\r\n")) {
+ ArrayList row = new ArrayList();
+ for ( char c : line.toLowerCase().toCharArray() ) {
+ if( (c >= 'a' && c <= 'z') || c == ' ' || c == '.' || c == '_') {
+ if(c == '.' || c == '_') c = ' ';
+ row.add(new Character(c));
+ } else {
+ throw new Exception("invalid char");
+ }
+ }
+ grid.add(row);
+}
+
+uk.org.mafoo.wordbubbles.Prison prison = new uk.org.mafoo.wordbubbles.Prison(grid);
+ArrayList> found = prison.search(words);
+HashSet foundwords = new HashSet();
+for ( LinkedHashSet w : found ) {
+ String str = "";
+ for ( Cell letter : w ) {
+ str += letter;
+ }
+ if(desired_active) {
+ if(desired.contains(new Integer(str.length()))) { foundwords.add(str); }
+ } else {
+ foundwords.add(str);
+ }
+}
+%>
+
+Wordbubble Solver
+Input
+
+<% for (ArrayList row : grid) { %>
+
+<% for(Character c : row) { %>
+ <%= c %> |
+<% }
+ }
+%>
+
+
+<% if(desired_active) { %> Looking for words of length(s): <%= desired %> <% } %>
+Results
+
+
+<%
+ List output = new ArrayList(foundwords);
+ Collections.sort(output);
+ for (String word : output) { %>
+- <%= word %>
+<% } %>
+
+
+
diff --git a/war/test.jsp b/war/test.jsp
new file mode 100644
index 0000000..94fd6f3
--- /dev/null
+++ b/war/test.jsp
@@ -0,0 +1,23 @@
+
+Wordbubbles solver
+<%@ page import="uk.org.mafoo.wordbubbles.*" %>
+
+Wordbubbles or Boggle solver
+Input grid
+
+
+
+
+
|