source: trunk/www/plugins/org/tigr/microarray/mev/launch_mev.jsp @ 3096

Last change on this file since 3096 was 3096, checked in by Jari Häkkinen, 17 years ago

Addresses #10, #352, #365. First checkin for JWS use to launch MeV.

  • Property svn:eol-style set to native
  • Property svn:keywords set to Id
File size: 3.3 KB
Line 
1<%-- $Id: launch_mev.jsp 3096 2007-02-05 10:37:00Z jari $
2  ------------------------------------------------------------------
3  Copyright (C) 2007 Jari Hakkinen
4
5  This file is part of BASE - BioArray Software Environment.
6  Available at http://base.thep.lu.se/
7
8  This file is part of BASE.
9
10  BASE is free software; you can redistribute it and/or
11  modify it under the terms of the GNU General Public License
12  as published by the Free Software Foundation; either version 2
13  of the License, or (at your option) any later version.
14
15  BASE is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18  GNU General Public License for more details.
19
20  You should have received a copy of the GNU General Public License
21  along with this program; if not, write to the Free Software
22  Foundation, Inc., 59 Temple Place - Suite 330,
23  Boston, MA  02111-1307, USA.
24  ------------------------------------------------------------------
25
26  @author Jari
27  @version 2.2
28--%>
29
30<%@ page session="false"
31  import="net.sf.basedb.util.Values"
32  import="net.sf.basedb.plugins.BioAssaySetExporter"
33%>
34<%
35final String SessionID=request.getParameter("ID");
36final int bioassaysetId=Values.getInt(request.getParameter("bioassayset_id"));
37final BioAssaySetExporter base=null;
38%>
39
40<%@page contentType="application/x-java-jnlp-file"%>
41<%
42response.setHeader("Expires", "0");
43%>
44<?xml version="1.0" encoding="UTF-8"?>
45<!DOCTYPE jnlp PUBLIC "-//Sun Microsystems, Inc.//DTD JNLP 1.5//EN" "http://www.netbeans.org/jnlp/DTD/jnlp.dtd">
46 
47<jnlp spec="1.0"
48  codebase="http://localhost:8080/base/plugins/org/tigr/microarray/mev"
49  version="4.0">
50
51  <information>
52    <title>MeV: MultiExperiment Viewer</title>
53    <vendor>http://www.tm4.org</vendor>
54    <homepage href="http://www.tm4.org"/>
55  </information>
56
57  <security>
58    <all-permissions/>
59  </security>
60
61  <resources>
62    <jar href="mev-base.jar"/> <!-- must be first since main class is here -->
63    <jar href="HTTPClient.jar"/>
64    <jar href="JSciCore.jar"/>
65    <jar href="JSciPartial.jar"/>
66    <jar href="Text_JDBC30.jar"/>
67    <jar href="activation.jar"/>
68    <jar href="base64.jar"/>
69    <jar href="colt.jar"/>
70    <jar href="comcgh.jar"/>
71    <jar href="dialogHelp.jar"/>
72    <jar href="educgh.jar"/>
73    <jar href="ftpbean.jar"/>
74    <jar href="images.jar"/>
75    <jar href="j3daudio.jar"/>
76    <jar href="j3dcore.jar"/>
77    <jar href="j3dutils.jar"/>
78    <jar href="jai_codec.jar"/>
79    <jar href="jai_core.jar"/>
80    <jar href="jama.jar"/>
81    <jar href="jaxp.jar"/>
82    <jar href="jconn2.jar"/>
83    <jar href="mev-algorithm-impl.jar"/>
84    <jar href="mev-algorithm-support.jar"/>
85    <jar href="mev-gui-impl.jar"/>
86    <jar href="mev-gui-support.jar"/>
87    <jar href="mev-util.jar"/>
88    <jar href="normalization.jar"/>
89    <jar href="parser.jar"/>
90    <jar href="servlet.jar"/>
91    <jar href="soap.jar"/>
92    <jar href="vecmath.jar"/>
93    <jar href="xerces.jar"/>
94    <extension name="others" href="others.jnlp"/>
95    <j2se version="1.4.2+"
96      href="http://java.sun.com/products/autodl/j2se"/>
97  </resources>
98  <application-desc main-class="org.tigr.microarray.mev.TMEV">
99    <argument>-Xmx512</argument>
100    <argument>-download_url http://localhost:8080/base/filemanager/files/download/-<%=SessionID%>-/home/jari/mev.txt</argument>
101    <argument>-sesssion <%=SessionID%></argument>
102    <argument>-bioassayset <%=bioassaysetId%></argument>
103    <argument>-row 1</argument>
104    <argument>-column 20</argument>
105  </application-desc>
106</jnlp>
Note: See TracBrowser for help on using the repository browser.