GridShib is optional, and gadget container deployments not using it will work as normal.
Monday, April 04, 2011
OGCE Gadget Container GridShib Support
GridShib is optional, and gadget container deployments not using it will work as normal.
OGCE Gadget Container Part of Apache Rave Incubator
Wednesday, January 19, 2011
TG10 OGCE Paper
http://portal.acm.org/citation.cfm?id=1838590&CFID=6079067&CFTOKEN=84307850
Tuesday, December 07, 2010
OGCE SciDAC2010 Tutorial
OGCE TeraGrid 2010 ASTA Support
OGCE TeraGrid 2010 Science Gateway Tutorial Intro
Monday, December 06, 2010
Twitter, SlideShare
Wednesday, November 17, 2010
OGCE's XBaya Running a GridChem Workflow
Wednesday, November 10, 2010
OGCE Demos and Presentations at SC10 in New Orleans
- We have a mini-workshop Tuesday from 10:00 am - 12:00 noon at the IU booth.
- Monday-Thursday at the IU Booth, we have walk-up demos on demand at the interactive touch screen kiosk.
- Monday-Thursday at the Purdue Booth, we also have on demand demos.
- Wednesday from 1:00-2:00 pm, we have on demand presentations and demos at the NCSA booth.
Tuesday, November 09, 2010
GCE10 Program Now Available
Monday, August 30, 2010
GCE10 Deadline Extension
Sunday, August 01, 2010
TG10 Tutorial Agenda
1:00-2:15
- Introduction
- computational chemistry workflow demo
- build demo
2:30-5:00
- Hands on demo of OREChem workflow (using XBaya composer)
- Hands data mining tutorial (using XRegistry and Experiment Builder gadgets)
- Gadget container overview
Thursday, July 15, 2010
Sample Build Instructions Movie for OGCE Portal and Services
Wednesday, June 30, 2010
GCE10 Workshop Accepted for Supercomputing 2010
Thursday, June 03, 2010
Condor jDRMAA Example
package org.ogce.jobsub.api;
import java.util.ArrayList;
import java.util.LinkedList;
import java.util.List;
import java.util.Set;
import org.ggf.drmaa.*;
import net.sf.igs.*;
public class DRMAAJobSubmission {
public static void main(String[] args) {
Session session = null;
String jobPath = "/bin/echo";
session = SessionFactory.getFactory().getSession();
String jobId = null;
JobTemplate jt = null;
JobInfo status = null;
ArrayList
argslist.add("Hello");
try {
System.out.println(session.getDrmSystem());
System.out.println(session.getContact());
System.out.println(session.getDrmaaImplementation());
session.init("localhost");
jt = session.createJobTemplate();
jt.setRemoteCommand(jobPath);
jt.setWorkingDirectory("/tmp");
jt.setJoinFiles(true);
jt.setOutputPath("/tmp/hello.out" );
jt.setArgs(argslist);
jt.setTransferFiles(new FileTransferMode(false, false, false));
} catch (DrmaaException e) {
e.printStackTrace();
}
try {
jobId = session.runJob(jt);
status = session.wait(jobId, Session.DONE);
if (status.wasAborted()) {
System.out.println("job " + jobId + " never ran");
} else if (status.hasExited ())
{
System.out.println("job " + jobId +
"finished successfully with Exit Status "
+ status.getExitStatus());
} else if (status.hasSignaled ())
{
System.out.println("job " + jobId + " finished due to signal" +
status.getTerminatingSignal ());
} else
{
System.out.println("job " + jobId +
" finished with unclear conditions");
}
} catch (DrmaaException e) {
System.out.println("Internal Exception: " + e.getMessage());
e.printStackTrace();
}
catch (org.ggf.drmaa.InternalException ie)
{
System.out.println("Internal Exception: " + ie.getMessage());
ie.printStackTrace();
}
}
}
Condor
Condor
job 25.0 finished successfully with Exit Status 0
Tuesday, May 18, 2010
Gadget Container, Registry, and Experiment Builder Movie Links
- OGCE Gadget Container: portal software for running secure Open Social gadgets: http://ogceportal.iu.teragrid.org/tutorials/Gadget_Container.htm
- XRegistry Gadget: a gadget for registering host computers and scientific application services into the OGCE XRegistry service: http://ogceportal.iu.teragrid.org/tutorials/XregistryInterface.htm
- Experiment Builder Gadget and XBaya Workflow Composer: the experiment builder gadget allows you to build, execute, and monitor experiments from services and workflow stored in XRegistry: http://ogceportal.iu.teragrid.org/tutorials/ExperimentBuilder.htm
Wednesday, May 12, 2010
OGCE "All" Release Candidate
svn co https://ogce.svn.sourceforge.net/svnroot/ogce/ogce-all-rc1
This is a preview release that will need to undergo additional acceptance testing, but it is stable for early users. Future updates can be obtained using the usual "svn update" command, and the release can be modularly rebuilt.
This download integrates several software components:
- The OGCE Gadget Container: an iGoogle-style portal container for science gateways.
- Experiment Builder and XRegistry gadgets for interfacing with the OGCE GFAC and XRegistry services and the XBaya workflow composer
- XRegistery and GFAC services for registering, launching, monitoring, and sharing application services and workflows.
- A collection of third party gadgets.
- mvn clean install -Dservices-only builds only GFAC and XBaya. These services can run on separate servers from the gadget container, and you can run more than one instance of these services.
- mvn clean install -Dgadget-container builds just the gadget container.
- mvn clean install -Dgadgets-and-clients builds the gadget container, registry gadget, and experiment builder gadget.
Wednesday, April 28, 2010
Updated TeraGrid CA Files
Changes have been made to the list of Teragrid recognized Certificate Authorities.
The new CA tarball, v1.10, can be found on repo. This tarball adds the new PSC MyProxy CA, with hash value 4b2783ac. You can obtain a copy of the tarball and signatures file from the software WG site at:
http://software.teragrid.org/security/teragrid-certs.tar.gz
http://software.teragrid.org/security/teragrid-certs.tar.gz.asc
Please incorporate the new list as specified (RPs, Science Gateways and users within 24 hours)
Monday, April 26, 2010
New OGCE Discussion List, Google Group
You are welcome to join, and we also allow anonymous viewing and moderated posts by group non-members. Only project managers can see the member list.
The project RSS feed is http://groups.google.com/group/ogce-discuss/feed/rss_v2_0_msgs.xml.