[acs-wg] Agenda for the Call on Feb 8 Wed 19:00 EST/Feb 9 Thu 9:00 JST

Sachiko Wada sachiko at ascade.co.jp
Wed Feb 8 10:26:11 CST 2006


Hi,

> 3. GGF16 session (10 min)
>    Below is the tentative plan for the session. I'm still looking
>    for more presentations for ACS-WG#1.
>    // ACS-WG#1  Tuesday, February 14 1:30 pm - 3:00 pm
>    Outreach presentation.
>    - Overview of ACS (Concepts, Integration with CDL,JSDL, etc.) - 15 min.
>    - Outline of the ACS Specification 1.0 and call for comments. - 5 min.
>    - Introduction of the NAREGI-PSE development with ACS. - 15 min.
>    - Introduction of the ACS sample implementation by Business Grid project. - 10 min.
>    - Questions and Answers - 15 min.
>    Location: Macedonia B
>    http://www.ggf.org/gf/event_schedule/index.php?id=177

Attached are my current thought about a sample application archive and its 
usage. I got CDL examples from their sourceforge site:
http://cvs.sourceforge.net/viewcvs.py/deployment/deployment/test/cdl/valid/

I'm going to make a presentation material for GGF16 based on this thought.
I believe this will fit in "Overview of ACS (Integration with CDL, JSDL, etc)".
I welcome your comments.

Thank you.

-------------- next part --------------
A non-text attachment was scrubbed...
Name: EMSSequence.ppt
Type: application/vnd.ms-powerpoint
Size: 29184 bytes
Desc: not available
Url : http://www.ogf.org/pipermail/acs-wg/attachments/20060209/f7e5d55b/attachment.ppt 
-------------- next part --------------

 ApplicationArchive
   +-- aad.xml
   +-- jsdl/
   |    +-- jsdl.xml
   +-- cdl/
   |    +-- full-example-1.xml
   |    +-- full-example-2.xml
   |    +-- full-example-3-acs.xml
   +-- application/
   |    +-- test.war
   +-- data/
        +-- db.zip

------------------------
[full-example-3-acs.xml]
<?xml version="1.0"?>
<cdl:cdl xmlns:cdl="http://www.gridforum.org/namespaces/2005/02/cddlm/CDL-1.0"
  xmlns:c="http://cddlm.org/component-model-example"
  xmlns:xsd="http://www.w3.org/2001/XMLSchema"
  targetNamespace="http://example.org/webapp-deploy"
  xmlns="http://example.org/webapp-deploy"
  xmlns:t="http://example.org/webapp-template"
 >
  <cdl:import location="full-example-2.cdl" namespace="http://example.org/webapp-template"/>

  <cdl:configuration>
    <ACSWebApp cdl:extends="t:WebApp">
      <archive cdl:type="EndpointReference" cdl:lazy="true"/>
    </ACSWebApp>
  </cdl:configuration>

  <cdl:system>
    <WebApplication cdl:extends="ACSWebApp">
      <t:application>application/test.war</t:application>
      <t:applicationPath>/test</t:applicationPath>
      <t:dbname>jdbc/Test</t:dbname>
      <t:data>data/db.zip</t:data>
      <t:dbuser>myapp</t:dbuser>
      <t:dbpassword>pass</t:dbpassword>
    </WebApplication>
  </cdl:system>
</cdl:cdl>

---------------------------------------------
[aad.xml]
<?xml version="1.0" encoding="UTF-8" ?>
<aaf:AAD xmlns:aaf="http://schemas.ggf.org/acs/2005/10/aaf"
         xmlns:ds="http://www.w3.org/2000/09/xmldsig#"
         xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
         xmlns:bar="http://www.example.ggf.org/">

 	<aaf:AAID>
		<aaf:Name>http://www.foo.ggf.org/sample-webapp</aaf:Name>
		<aaf:Version>1.0.0</aaf:Version>
	</aaf:AAID>

	<aaf:Author>
		<aaf:Name>Foo Software Inc.</aaf:Name>
		<aaf:Description xml:lang="en">home page is http://www.foo.org/</aaf:Description>
		<aaf:Location>
			<aaf:Country>United States</aaf:Country>
		</aaf:Location>
	</aaf:Author>

	<aaf:Descriptions>
		<aaf:Description>sample web app</aaf:Description>
	</aaf:Descriptions>

	<aaf:AccessConstraint 
			dialect="urn:oasis:names:tc:xacml:1.0:policy">
		<xacml:Policy 
			xmlns:xacml="urn:oasis:names:tc:xacml:1.0:policy">
			...
		</xacml:Policy>
	</aaf:AccessConstraint>

	<aaf:Contents>
		<aaf:Content type="aaf:JobDescriptor">
			<aaf:Pathname>jsdl/jsdl.xml</aaf:Pathname>
			<ds:DigestMethod 
						Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
			<ds:DigestValue>MTIzNDU2Nzg...</ds:DigestValue>
		</aaf:Content>
		<aaf:Content type="aaf:DeploymentDescriptor">
			<aaf:Pathname>cdl/full-example-3-acs.xml</aaf:Pathname>
			<ds:DigestMethod 
						Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
			<ds:DigestValue>MTIzNDU2Nzg...</ds:DigestValue>
		</aaf:Content>
		<aaf:Content type="aaf:DeploymentDescriptor">
			<aaf:Pathname>cdl/full-example-1.xml</aaf:Pathname>
			<ds:DigestMethod 
						Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
			<ds:DigestValue>MTIzNDU2Nzg...</ds:DigestValue>
		</aaf:Content>
		<aaf:Content type="aaf:DeploymentDescriptor">
			<aaf:Pathname>cdl/full-example-2.xml</aaf:Pathname>
			<ds:DigestMethod 
						Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
			<ds:DigestValue>MTIzNDU2Nzg...</ds:DigestValue>
		</aaf:Content>
		<aaf:Content type="bar:ApplicationBinary">
			<aaf:Pathname>application/test.war</aaf:Pathname>
			<ds:DigestMethod 
						Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
			<ds:DigestValue>MjM0NTY3ODk...</ds:DigestValue>
		</aaf:Content>
		<aaf:Content type="bar:UserData">
			<aaf:Pathname>data/db.zip</aaf:Pathname>
			<ds:DigestMethod 
						Algorithm="http://www.w3.org/2000/09/xmldsig#sha1"/>
			<ds:DigestValue>NDU2Nzg5MDE...</ds:DigestValue>
		</aaf:Content>
	</aaf:Contents>
	<ds:Signature>...</ds:Signature>
</aaf:AAD>


More information about the acs-wg mailing list