You can subscribe to this list here.
| 2009 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(89) |
Oct
(66) |
Nov
(21) |
Dec
(15) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2010 |
Jan
|
Feb
(147) |
Mar
(90) |
Apr
(84) |
May
(175) |
Jun
(181) |
Jul
|
Aug
(24) |
Sep
|
Oct
(7) |
Nov
(3) |
Dec
|
| 2011 |
Jan
|
Feb
(6) |
Mar
(3) |
Apr
(2) |
May
(1) |
Jun
(1) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: <wat...@us...> - 2011-06-05 21:18:09
|
Revision: 751
http://mooshabaya.svn.sourceforge.net/mooshabaya/?rev=751&view=rev
Author: wathsala
Date: 2011-06-05 21:18:03 +0000 (Sun, 05 Jun 2011)
Log Message:
-----------
Reads registry path /ogce/concrete_wdl to list concrete wsdls registered by Gfac
Modified Paths:
--------------
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/GRegistryClient.java
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/GRegistryClient.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/GRegistryClient.java 2011-05-31 12:58:24 UTC (rev 750)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/GRegistryClient.java 2011-06-05 21:18:03 UTC (rev 751)
@@ -267,6 +267,7 @@
private void initialize() throws ComponentRegistryException {
exploreResources(XBayaConstants.WSDL_ROOT_PATH,XBayaConstants.RESOURCE_WSDL,true);
+ exploreResources("/ogce/concrete_wsdl",XBayaConstants.RESOURCE_WSDL,true);
exploreResources(XBayaConstants.WF_ROOT_PATH,XBayaConstants.RESOURCE_WORKFLOW,true);
exploreResources(XBayaConstants.MISC_ROOT_PATH,XBayaConstants.RESORUCE_OTHER,true);
}
@@ -304,6 +305,8 @@
for (String child : children) {
if (type.equals(XBayaConstants.RESOURCE_WSDL) && child.endsWith(".wsdl")) {
this.wsdlPaths.add(child);
+ } else if (type.equals(XBayaConstants.RESOURCE_WSDL) && child.contains("/ogce/concrete_wsdl")) {
+ this.wsdlPaths.add(child);
} else if(type.equals(XBayaConstants.RESOURCE_WORKFLOW) && child.endsWith(".xwf")){
this.wfPaths.add(child);
} else {
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <wat...@us...> - 2011-05-31 12:58:36
|
Revision: 750
http://mooshabaya.svn.sourceforge.net/mooshabaya/?rev=750&view=rev
Author: wathsala
Date: 2011-05-31 12:58:24 +0000 (Tue, 31 May 2011)
Log Message:
-----------
XBaya can now add resources other than text to registry
Modified Paths:
--------------
branches/ogce-branch2/classpath.sh
branches/ogce-branch2/pom.xml
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBaya.java
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBayaConstants.java
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBayaEngine.java
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/file/gui/FileMenu.java
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/gui/XBayaMenu.java
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/Registry.java
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/GRegistry.java
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/GRegistryClient.java
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/gui/GRegistryComponentAddDialog.java
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/gui/GRegistryWindow.java
branches/ogce-branch2/src/main/java/org/wso2/carbon/registry/mgt/ui/resource/services/ResourceAdminServiceStub.java
Modified: branches/ogce-branch2/classpath.sh
===================================================================
--- branches/ogce-branch2/classpath.sh 2011-04-22 06:09:52 UTC (rev 749)
+++ branches/ogce-branch2/classpath.sh 2011-05-31 12:58:24 UTC (rev 750)
@@ -20,6 +20,7 @@
PRGDIR=`dirname "$PRG"`
LOCALCLASSPATH=.
+LOCALCLASSPATH=`echo $PRGDIR/lib/*.jar | tr ' ' ':'`:$LOCALCLASSPATH
LOCALCLASSPATH=`echo $PRGDIR/lib/xpp/*.jar | tr ' ' ':'`:$LOCALCLASSPATH
LOCALCLASSPATH=`echo $PRGDIR/lib/atomixmiser/*.jar | tr ' ' ':'`:$LOCALCLASSPATH
LOCALCLASSPATH=`echo $PRGDIR/lib/xbeans/*.jar | tr ' ' ':'`:$LOCALCLASSPATH
Modified: branches/ogce-branch2/pom.xml
===================================================================
--- branches/ogce-branch2/pom.xml 2011-04-22 06:09:52 UTC (rev 749)
+++ branches/ogce-branch2/pom.xml 2011-05-31 12:58:24 UTC (rev 750)
@@ -269,6 +269,11 @@
<dependencies>
<!-- These are needed by the velocity portlet -->
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>org.wso2.carbon.registry.common</artifactId>
+ <version>2.0.3</version>
+ </dependency>
<dependency>
<groupId>logkit</groupId>
<artifactId>logkit</artifactId>
@@ -597,9 +602,12 @@
<version>1.1</version>
<scope>provided</scope>
</dependency>
-
-
- </dependencies>
+ <dependency>
+ <groupId>org.wso2.carbon</groupId>
+ <artifactId>ogce.registry.client</artifactId>
+ <version>1.1</version>
+ </dependency>
+ </dependencies>
</project>
<!--
/* * Indiana University Extreme! Lab Software License, Version 1.2 * *
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBaya.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBaya.java 2011-04-22 06:09:52 UTC (rev 749)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBaya.java 2011-05-31 12:58:24 UTC (rev 750)
@@ -41,7 +41,6 @@
System.setProperty("javax.net.ssl.trustStore","wso2carbon.jks");
System.setProperty("javax.net.ssl.trustStorePassword", "wso2carbon");
System.setProperty("javax.net.ssl.trustStoreType", "JKS");
-
try {
showSplash(XBayaConstants.SPLASH_DURATION);
} catch (InterruptedException e) {
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBayaConstants.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBayaConstants.java 2011-04-22 06:09:52 UTC (rev 749)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBayaConstants.java 2011-05-31 12:58:24 UTC (rev 750)
@@ -77,7 +77,9 @@
public static final URI DEFAULT_XREGISTRY_URL = URI
.create("https://silktree.cs.indiana.edu:6666/xregistry");
- public static final URI DEFAULT_GREGISTRY_URL=URI.create("https://localhost:9444/");
+ public static final URI DEFAULT_GREGISTRY_URL=URI.create("https://127.0.0.1:9443");
+
+ public static final URI DEFAULT_GREGISTRY_AUTHENTICATION_URL=URI.create("https://127.0.0.1:9443/services/AuthenticationAdminService");
public static final URI DEFAULT_IDENTITY_SERVER_URL=URI.create("https://localhost:9445/");
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBayaEngine.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBayaEngine.java 2011-04-22 06:09:52 UTC (rev 749)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBayaEngine.java 2011-05-31 12:58:24 UTC (rev 750)
@@ -27,6 +27,7 @@
import edu.indiana.extreme.xbaya.mylead.gui.MyLeadLoader;
import edu.indiana.extreme.xbaya.myproxy.MyProxyClient;
import edu.indiana.extreme.xbaya.myproxy.gui.MyProxyDialog;
+import edu.indiana.extreme.xbaya.registry.gregistry.GRegistry;
import edu.indiana.extreme.xbaya.rescat.ResourceCatalogClient;
import edu.indiana.extreme.xbaya.security.XBayaSecurity;
import edu.indiana.extreme.xbaya.util.XMLUtil;
@@ -73,6 +74,8 @@
private boolean exitOnClose = true;
private static XBayaEngine engine;
+
+ private GRegistry gReg;
/**
* Constructs a ApplicationClient.
@@ -488,8 +491,13 @@
return this.workflowPropertiesWindow;
}
-
+ public void setGRegistry(GRegistry grg) {
+ this.gReg = grg;
+ }
+ public GRegistry getGRegisry() {
+ return this.gReg;
+ }
}
/*
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/file/gui/FileMenu.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/file/gui/FileMenu.java 2011-04-22 06:09:52 UTC (rev 749)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/file/gui/FileMenu.java 2011-05-31 12:58:24 UTC (rev 750)
@@ -21,6 +21,8 @@
import edu.indiana.extreme.xbaya.ode.ODEBPELTransformer;
import edu.indiana.extreme.xbaya.ode.ODEDeploymentDescriptor;
import edu.indiana.extreme.xbaya.ode.ODEWSDLTransformer;
+import edu.indiana.extreme.xbaya.registry.gregistry.GRegistry;
+import edu.indiana.extreme.xbaya.registry.gregistry.gui.GRegistryComponentAddDialog;
/**
* @author Satoshi Shirasuna
@@ -68,6 +70,8 @@
private JMenuItem exportODEScriptsItem;
private JMenuItem exportToXRegistry;
+
+ private JMenuItem uploadRegistryItem;
private XBayaEngine engine;
@@ -104,6 +108,7 @@
createExportScuflScriptItem();
createExportODEScriptsItem();
createExportWorkflowTOXRegistry();
+ createUploadRegistryItem();
this.fileMenu = new JMenu("File");
this.fileMenu.setMnemonic(KeyEvent.VK_F);
@@ -124,6 +129,7 @@
this.fileMenu.add(this.exportToXRegistry);
this.fileMenu.addSeparator();
this.fileMenu.add(this.saveImageItem);
+ this.fileMenu.add(this.uploadRegistryItem);
}
/**
@@ -255,8 +261,29 @@
}
});
}
+
+ private void createUploadRegistryItem() {
+ this.uploadRegistryItem = new JMenuItem("Upload Item to Registry");
+ this.uploadRegistryItem.addActionListener(new AbstractAction() {
+ public void actionPerformed(ActionEvent e) {
+ GRegistry gReg = FileMenu.this.engine.getGRegisry();
+ if (gReg != null) {
+ GRegistryComponentAddDialog gca = new GRegistryComponentAddDialog(gReg, engine);
+ gca.show();
+ }
+ else {
+ try {
+ throw new Exception("Add a WSO2 Governance Registry Before Uploading an Item!");
+ } catch (Exception e1) {
+ FileMenu.this.engine.getErrorWindow().error(e1);
+ }
+ }
+ }
+ });
+ }
+
}
/*
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/gui/XBayaMenu.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/gui/XBayaMenu.java 2011-04-22 06:09:52 UTC (rev 749)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/gui/XBayaMenu.java 2011-05-31 12:58:24 UTC (rev 750)
@@ -17,6 +17,7 @@
import edu.indiana.extreme.xbaya.mylead.gui.MyLeadMenu;
import edu.indiana.extreme.xbaya.wf.gui.WorkflowMenu;
import edu.indiana.extreme.xbaya.mashup.gui.MashupMenu;
+//import edu.indiana.extreme.xbaya.registry.gregistry.gui.RegistryMenu;
import javax.swing.*;
@@ -67,8 +68,6 @@
this.componentMenu = new ComponentMenu(this.engine);
this.monitorMenu = new MonitorMenu(this.engine);
this.securityMenu = new SecurityMenu(this.engine);
-
-
createMenuBar();
}
@@ -99,7 +98,6 @@
this.menuBar.add(this.componentMenu.getMenu());
this.menuBar.add(this.monitorMenu.getMenu());
this.menuBar.add(this.securityMenu.getMenu());
-
// Space before Help
// this.menuBar.add(Box.createHorizontalGlue());
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/Registry.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/Registry.java 2011-04-22 06:09:52 UTC (rev 749)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/Registry.java 2011-05-31 12:58:24 UTC (rev 750)
@@ -40,6 +40,10 @@
protected URL url;
+ public Registry(XBayaEngine engine){
+ super(engine);
+ }
+
public Registry(URL url, XBayaEngine engine){
super(engine);
this.url=url;
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/GRegistry.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/GRegistry.java 2011-04-22 06:09:52 UTC (rev 749)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/GRegistry.java 2011-05-31 12:58:24 UTC (rev 750)
@@ -6,6 +6,7 @@
import edu.indiana.extreme.xbaya.component.registry.ComponentRegistryException;
import edu.indiana.extreme.xbaya.component.gui.ComponentRegistryOptions;
import edu.indiana.extreme.xbaya.XBayaEngine;
+import org.ogce.registry.client.*;
import java.net.URL;
@@ -19,13 +20,10 @@
public class GRegistry extends Registry {
private String userName;
-
private String password;
-
private TrustStoreCredential ks;
-
private GRegistryOptions options;
-
+
public GRegistry(URL url, String userName, String password, TrustStoreCredential ks, XBayaEngine engine){
super(url,engine);
this.options=new GRegistryOptions(this,engine);
@@ -35,8 +33,8 @@
}
public void initClient() throws ComponentRegistryException{
- this.client=new GRegistryClient(url,userName,password,ks);
- }
+ this.client=new GRegistryClient(url,userName,password,ks);
+ }
public ComponentRegistryOptions getComponentRegistryOptions(){
return this.options;
@@ -49,5 +47,4 @@
public ComponentRegistryDialog getResourceDeleteDialog(XBayaEngine engine) {
return null; //To change body of implemented methods use File | Settings | File Templates.
}*/
-
}
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/GRegistryClient.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/GRegistryClient.java 2011-04-22 06:09:52 UTC (rev 749)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/GRegistryClient.java 2011-05-31 12:58:24 UTC (rev 750)
@@ -15,11 +15,14 @@
import org.wso2.carbon.registry.mgt.ui.resource.services.ResourceAdminServiceStub;
import org.wso2.carbon.registry.mgt.ui.resource.services.ExceptionException0;
+import org.wso2.carbon.registry.mgt.ui.resource.services.ResourceAdminServiceStub.ContentDownloadBean;
import org.apache.axiom.om.OMElement;
import org.apache.axiom.om.impl.llom.util.AXIOMUtil;
import org.apache.axis2.AxisFault;
import org.apache.axis2.transport.http.HTTPConstants;
+import javax.activation.DataHandler;
+import javax.activation.FileDataSource;
import javax.xml.stream.XMLStreamException;
import javax.xml.namespace.QName;
@@ -71,52 +74,74 @@
public void addResource(String fileName, String parentPath, String description, String type) throws ComponentRegistryException {
File file = new File(fileName);
StringBuffer fileData = new StringBuffer(1000);
-
- try{
- BufferedReader reader = new BufferedReader(new FileReader(file));
- char[] buf = new char[1024];
- int numRead=0;
- while((numRead=reader.read(buf)) != -1){
- fileData.append(buf, 0, numRead);
- }
- reader.close();
- }catch(IOException e){
- throw new ComponentRegistryException(e);
+ ResourceAdminServiceStub.AddTextResource textResource = null;
+ ResourceAdminServiceStub.AddResource resource = null;
+ if (type.equals(XBayaConstants.RESOURCE_WSDL) || type.equals(XBayaConstants.RESOURCE_WORKFLOW))
+ {
+ try{
+ BufferedReader reader = new BufferedReader(new FileReader(file));
+ char[] buf = new char[1024];
+ int numRead=0;
+ while((numRead=reader.read(buf)) != -1){
+ fileData.append(buf, 0, numRead);
+ }
+ reader.close();
+ }catch(IOException e){
+ throw new ComponentRegistryException(e);
+ }
}
- ResourceAdminServiceStub.AddTextResource textResource = new ResourceAdminServiceStub.AddTextResource();
- textResource.setFileName(file.getName());
+ //ResourceAdminServiceStub.AddTextResource textResource = new ResourceAdminServiceStub.AddTextResource();
if(type.equals(XBayaConstants.RESOURCE_WSDL)){
-
+
+ textResource = new ResourceAdminServiceStub.AddTextResource();
+ textResource.setFileName(file.getName());
if (!parentPath.startsWith(XBayaConstants.WSDL_ROOT_PATH)) {
parentPath = XBayaConstants.WSDL_ROOT_PATH + parentPath;
//parentPath = "/governance/testthis/" + parentPath;
}
textResource.setMediaType(XBayaConstants.WSDL_MEDIA_TYPE);
-
+
}else if(type.equals(XBayaConstants.RESOURCE_WORKFLOW)){
+ textResource = new ResourceAdminServiceStub.AddTextResource();
+ textResource.setFileName(file.getName());
if (!parentPath.startsWith(XBayaConstants.WF_ROOT_PATH)) {
parentPath = XBayaConstants.WF_ROOT_PATH + parentPath;
}
textResource.setMediaType(XBayaConstants.XML_MEDIA_TYPE);
+
}else if(type.equals(XBayaConstants.RESORUCE_OTHER)){
-
+
+ resource = new ResourceAdminServiceStub.AddResource();
if (!parentPath.startsWith(XBayaConstants.MISC_ROOT_PATH)) {
parentPath = XBayaConstants.MISC_ROOT_PATH + parentPath;
}
+ resource.setMediaType("application/octet-stream");
}
-
- textResource.setParentPath(parentPath);
- textResource.setDescription(description);
- textResource.setContent(fileData.toString());
-
+
+ if (type.equals(XBayaConstants.RESOURCE_WSDL) || type.equals(XBayaConstants.RESOURCE_WORKFLOW))
+ {
+ textResource.setParentPath(parentPath);
+ textResource.setDescription(description);
+ textResource.setContent(fileData.toString());
+ }
+ else
+ {
+ resource.setPath(parentPath+"/"+file.getName());
+ resource.setDescription(description);
+ resource.setContent(new DataHandler(new FileDataSource(file.getAbsolutePath())));
+ }
try {
- stub.addTextResource(textResource);
+ if (type.equals(XBayaConstants.RESOURCE_WSDL) || type.equals(XBayaConstants.RESOURCE_WORKFLOW))
+ stub.addTextResource(textResource);
+ else
+ stub.addResource(resource);
} catch (ExceptionException0 e) {
throw new ComponentRegistryException(e);
} catch (RemoteException e) {
+ e.printStackTrace();
throw new ComponentRegistryException(e);
}
@@ -408,15 +433,18 @@
}
protected ResourceDescription[] getMiscDescriptions(String miscResourceName,boolean retry) throws ComponentRegistryException{
- ResourceAdminServiceStub.GetTextContent textContent = new ResourceAdminServiceStub.GetTextContent();
- List<ResourceDescription> descList = new ArrayList<ResourceDescription>();
+ //ResourceAdminServiceStub.GetTextContent textContent = new ResourceAdminServiceStub.GetTextContent();
+ ResourceAdminServiceStub.GetContentDownloadBean getDlBean = new ResourceAdminServiceStub.GetContentDownloadBean();
+ List<ResourceDescription> descList = new ArrayList<ResourceDescription>();
for(String path:this.miscPaths){
- textContent.setPath(path);
-
- ResourceAdminServiceStub.GetTextContentResponse text = null;
+ //textContent.setPath(path);
+ getDlBean.setPath(path);
+ //ResourceAdminServiceStub.GetTextContentResponse text = null;
+ ResourceAdminServiceStub.GetContentDownloadBeanResponse getDlBeanRes = null;
try {
- text = stub.getTextContent(textContent);
+ //text = stub.getTextContent(textContent);
+ getDlBeanRes = stub.getContentDownloadBean(getDlBean);
} catch (RemoteException e) {
if(retry){
handler.retry("getMiscDescriptions", miscResourceName);
@@ -427,10 +455,10 @@
}
}
- String miscStr = text.get_return();
-
- ResourceDescription desc=new ResourceDescriptionImpl(path,path,miscStr);
-
+ //String miscStr = text.get_return();
+ ContentDownloadBean dlBean = getDlBeanRes.get_return();
+ //ResourceDescription desc=new ResourceDescriptionImpl(path,path,miscStr);
+ ResourceDescription desc=new ResourceDescriptionImpl(path, path, dlBean.getResourceName());
if(miscResourceName.equals("")){
descList.add(desc);
}
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/gui/GRegistryComponentAddDialog.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/gui/GRegistryComponentAddDialog.java 2011-04-22 06:09:52 UTC (rev 749)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/gui/GRegistryComponentAddDialog.java 2011-05-31 12:58:24 UTC (rev 750)
@@ -77,7 +77,12 @@
GRegistryClient client=(GRegistryClient)this.registry.getClient();
try{
- client.addResource(name,XBayaConstants.WSDL_ROOT_PATH,description,type);
+ if (type.equals(XBayaConstants.RESOURCE_WSDL))
+ client.addResource(name,XBayaConstants.WSDL_ROOT_PATH,description,type);
+ else if (type.equals(XBayaConstants.RESOURCE_WORKFLOW))
+ client.addResource(name,XBayaConstants.WF_ROOT_PATH,description,type);
+ else
+ client.addResource(name,XBayaConstants.MISC_ROOT_PATH,description,type);
}catch(ComponentRegistryException e){
this.engine.getErrorWindow().error(ErrorMessages.RESOURCE_ADDITION_ERROR);
}
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/gui/GRegistryWindow.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/gui/GRegistryWindow.java 2011-04-22 06:09:52 UTC (rev 749)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/registry/gregistry/gui/GRegistryWindow.java 2011-05-31 12:58:24 UTC (rev 750)
@@ -117,7 +117,7 @@
hide();
GRegistry registry = new GRegistry(url, userName, password,null,this.engine);
-
+ engine.setGRegistry(registry);
try {
this.engine.setXRegistryURL(url.toURI());
} catch (URISyntaxException e) {
Modified: branches/ogce-branch2/src/main/java/org/wso2/carbon/registry/mgt/ui/resource/services/ResourceAdminServiceStub.java
===================================================================
--- branches/ogce-branch2/src/main/java/org/wso2/carbon/registry/mgt/ui/resource/services/ResourceAdminServiceStub.java 2011-04-22 06:09:52 UTC (rev 749)
+++ branches/ogce-branch2/src/main/java/org/wso2/carbon/registry/mgt/ui/resource/services/ResourceAdminServiceStub.java 2011-05-31 12:58:24 UTC (rev 750)
@@ -6127,7 +6127,6 @@
, org.wso2.carbon.registry.mgt.ui.resource.services.ExceptionException0 {
org.apache.axis2.context.MessageContext _messageContext = null;
-
try {
org.apache.axis2.client.OperationClient _operationClient = _serviceClient
.createClient(_operations[23].getName());
@@ -8242,7 +8241,7 @@
org.apache.axiom.soap.SOAPEnvelope env = null;
_messageContext = new org.apache.axis2.context.MessageContext();
-
+
// Style is Doc.
env = toEnvelope(
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <wat...@us...> - 2011-04-22 06:09:58
|
Revision: 749
http://mooshabaya.svn.sourceforge.net/mooshabaya/?rev=749&view=rev
Author: wathsala
Date: 2011-04-22 06:09:52 +0000 (Fri, 22 Apr 2011)
Log Message:
-----------
Fixed several default URLs and key store file paths
Modified Paths:
--------------
branches/ogce-branch2/classpath.sh
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBaya.java
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBayaConstants.java
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/component/gui/URLRegistryWindow.java
Added Paths:
-----------
branches/ogce-branch2/wso2carbon.jks
Modified: branches/ogce-branch2/classpath.sh
===================================================================
--- branches/ogce-branch2/classpath.sh 2011-04-07 09:24:51 UTC (rev 748)
+++ branches/ogce-branch2/classpath.sh 2011-04-22 06:09:52 UTC (rev 749)
@@ -48,6 +48,9 @@
else
LOCALCLASSPATH=`echo $PRGDIR/build/lib/*.jar | tr ' ' ':'`:$LOCALCLASSPATH
LOCALCLASSPATH=$PRGDIR/build/classes:$LOCALCLASSPATH
+ LOCALCLASSPATH=`echo $PRGDIR/lib/axis2/*.jar | tr ' ' ':'`:$LOCALCLASSPATH
+ LOCALCLASSPATH=`echo $PRGDIR/target/xbaya-3.0.3.jar`:$LOCALCLASSPATH
+ LOCALCLASSPATH=$PRGDIR/src/main/resources:$LOCALCLASSPATH
if [ "$1" = "run" ] ; then
if [ "$2" = "set" ] ; then
CLASSPATH=$LOCALCLASSPATH
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBaya.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBaya.java 2011-04-07 09:24:51 UTC (rev 748)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBaya.java 2011-04-22 06:09:52 UTC (rev 749)
@@ -38,13 +38,10 @@
* @param args
*/
public XBaya(String[] args) {
- System.setProperty("javax.net.ssl.trustStore","/home/hemapani/playground/ogce-suite/wso2greg-3.0.3/resources/security/wso2carbon.jks");
+ System.setProperty("javax.net.ssl.trustStore","wso2carbon.jks");
System.setProperty("javax.net.ssl.trustStorePassword", "wso2carbon");
System.setProperty("javax.net.ssl.trustStoreType", "JKS");
-
-
-
try {
showSplash(XBayaConstants.SPLASH_DURATION);
} catch (InterruptedException e) {
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBayaConstants.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBayaConstants.java 2011-04-07 09:24:51 UTC (rev 748)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/XBayaConstants.java 2011-04-22 06:09:52 UTC (rev 749)
@@ -58,7 +58,7 @@
* DEFAULT_GFAC_URL
*/
public static final URI DEFAULT_GFAC_URL = URI
- .create("https://silktree.cs.indiana.edu:23443/");
+ .create("http://localhost:12346/");
/**
@@ -96,7 +96,7 @@
* Default message box URL.
*/
public static final URI DEFAULT_MESSAGE_BOX_URL = URI
- .create("http://tyr11.cs.indiana.edu:13333/MsgBox");
+ .create("http://localhost:8080/axis2/services/MessageBoxService/");
/**
* DEFAULT_DSC_URL
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/component/gui/URLRegistryWindow.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/component/gui/URLRegistryWindow.java 2011-04-07 09:24:51 UTC (rev 748)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/component/gui/URLRegistryWindow.java 2011-04-22 06:09:52 UTC (rev 749)
@@ -80,7 +80,7 @@
private void initGUI() {
this.urlTextField = new XBayaTextField();
XBayaLabel urlLabel = new XBayaLabel("URL", this.urlTextField);
-
+
GridPanel infoPanel = new GridPanel();
infoPanel.add(urlLabel);
infoPanel.add(this.urlTextField);
Added: branches/ogce-branch2/wso2carbon.jks
===================================================================
(Binary files differ)
Property changes on: branches/ogce-branch2/wso2carbon.jks
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <hp...@us...> - 2011-04-07 09:24:57
|
Revision: 748
http://mooshabaya.svn.sourceforge.net/mooshabaya/?rev=748&view=rev
Author: hperera
Date: 2011-04-07 09:24:51 +0000 (Thu, 07 Apr 2011)
Log Message:
-----------
use axis2 all the time
Modified Paths:
--------------
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/jython/lib/invoker/InvokerFactory.java
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/jython/lib/invoker/InvokerFactory.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/jython/lib/invoker/InvokerFactory.java 2010-10-17 03:14:40 UTC (rev 747)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/jython/lib/invoker/InvokerFactory.java 2011-04-07 09:24:51 UTC (rev 748)
@@ -40,16 +40,16 @@
&& definitions.getServices().iterator().hasNext()) {
// The WSDL has a service information. Assume that the service is
// running.
-
- // check if this web service supports asynchronous invocation
- if (WSDLUtil.isAsynchronousSupported(WSDLUtil
- .wsdlDefinitions3ToWsdlDefintions5(definitions))) {
- invoker = new AsynchronousInvoker(definitions, messageBoxURL);
- } else {
- //TODO if you need to use old invoker not Axis2, change this back
- //invoker = new SimpleInvoker(definitions);
- invoker = new Axis2Invoker(definitions);
- }
+ invoker = new Axis2Invoker(definitions);
+// // check if this web service supports asynchronous invocation
+// if (WSDLUtil.isAsynchronousSupported(WSDLUtil
+// .wsdlDefinitions3ToWsdlDefintions5(definitions))) {
+// invoker = new AsynchronousInvoker(definitions, messageBoxURL);
+// } else {
+// //TODO if you need to use old invoker not Axis2, change this back
+// //invoker = new SimpleInvoker(definitions);
+// invoker = new Axis2Invoker(definitions);
+// }
} else if (resourceCatalogURL != null
&& resourceCatalogURL.length() != 0) {
invoker = new ResourceCatalogInvoker(portTypeQName, definitions,
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: Denis W. <de...@ws...> - 2011-03-18 17:22:44
|
On Fri, Mar 18, 2011 at 2:25 PM, Srinath Perera <sr...@ws...> wrote: > Hi Guys, > > Let me take back what I said. > > I thought about this and decided it will be very useful to fix the ODE > integration to XBaya to work with BPS. I can also help. Let me know if > anyone interested. > When we started the final year project, we went through the BPEL generation impl. We'll first try, the current BPEL generation in Xbaya and figure out, what limitations in it to run in ODE. > > Basically, what that includes is fixing the BPEL generated by XBaya > and then deploying by calling the admin services of BPS. > > --Srinath > > > On Mon, Feb 28, 2011 at 5:22 PM, Buddhika Chamith <bud...@ws...> > wrote: > > > >> > > >> > We are trying to merge XBaya, Messanger, Gfac, and WSO2 registry > >> > together as a one project (mostly done), and with IU guys we will push > >> > this to Apache. > >> > >> +1. This would be a great option. Let us know if there is something to > >> be done for this, from Mooshabaya's end. > >> > > > > +1 > > > > Regards > > Buddhika > > > > > > -- > ============================ > Srinath Perera, Ph.D. > Senior Software Architect, WSO2 Inc. > Visiting Faculty, University of Moratuwa > Member, Apache Software Foundation > Research Scientist, Lanka Software Foundation > Blog: http://srinathsview.blogspot.com/ > -- Thanks, Denis ---------------------------------------------------------- *Denis Weerasiri* Software Engineer; WSO2 Inc.; http://wso2.com, *email: denis <http://goog_277208233/>** [AT] wso2.com* <http://wso2.com/>* blog: **http://ddweerasiri.blogspot.com* <http://ddweerasiri.blogspot.com/>* twitter: **http://twitter.com/ddweerasiri* <http://twitter.com/ddweerasiri>* linked-in: **http://lk.linkedin.com/in/ddweerasiri*<http://lk.linkedin.com/in/ddweerasiri> |
|
From: Srinath P. <sr...@ws...> - 2011-03-18 16:59:16
|
basically generate the WSDL, deploy it in ODE and try .. then have to fix the changes in the code gen logic .. with few wsdls we will get there . --Srinath On Fri, Mar 18, 2011 at 4:52 PM, Denis Weerasiri <de...@ws...> wrote: > > > On Fri, Mar 18, 2011 at 2:25 PM, Srinath Perera <sr...@ws...> wrote: >> >> Hi Guys, >> >> Let me take back what I said. >> >> I thought about this and decided it will be very useful to fix the ODE >> integration to XBaya to work with BPS. I can also help. Let me know if >> anyone interested. > > When we started the final year project, we went through the BPEL generation > impl. We'll first try, the current BPEL generation in Xbaya and figure out, > what limitations in it to run in ODE. > >> >> Basically, what that includes is fixing the BPEL generated by XBaya >> and then deploying by calling the admin services of BPS. >> >> --Srinath >> >> >> On Mon, Feb 28, 2011 at 5:22 PM, Buddhika Chamith <bud...@ws...> >> wrote: >> > >> >> > >> >> > We are trying to merge XBaya, Messanger, Gfac, and WSO2 registry >> >> > together as a one project (mostly done), and with IU guys we will >> >> > push >> >> > this to Apache. >> >> >> >> +1. This would be a great option. Let us know if there is something to >> >> be done for this, from Mooshabaya's end. >> >> >> > >> > +1 >> > >> > Regards >> > Buddhika >> > >> >> >> >> -- >> ============================ >> Srinath Perera, Ph.D. >> Senior Software Architect, WSO2 Inc. >> Visiting Faculty, University of Moratuwa >> Member, Apache Software Foundation >> Research Scientist, Lanka Software Foundation >> Blog: http://srinathsview.blogspot.com/ > > > > -- > Thanks, > Denis > ---------------------------------------------------------- > Denis Weerasiri > Software Engineer; WSO2 Inc.; http://wso2.com, > email: denis [AT] wso2.com > blog: http://ddweerasiri.blogspot.com > twitter: http://twitter.com/ddweerasiri > linked-in: http://lk.linkedin.com/in/ddweerasiri > > -- ============================ Srinath Perera, Ph.D. Senior Software Architect, WSO2 Inc. Visiting Faculty, University of Moratuwa Member, Apache Software Foundation Research Scientist, Lanka Software Foundation Blog: http://srinathsview.blogspot.com/ |
|
From: Srinath P. <sr...@ws...> - 2011-03-18 08:55:50
|
Hi Guys, Let me take back what I said. I thought about this and decided it will be very useful to fix the ODE integration to XBaya to work with BPS. I can also help. Let me know if anyone interested. Basically, what that includes is fixing the BPEL generated by XBaya and then deploying by calling the admin services of BPS. --Srinath On Mon, Feb 28, 2011 at 5:22 PM, Buddhika Chamith <bud...@ws...> wrote: > >> > >> > We are trying to merge XBaya, Messanger, Gfac, and WSO2 registry >> > together as a one project (mostly done), and with IU guys we will push >> > this to Apache. >> >> +1. This would be a great option. Let us know if there is something to >> be done for this, from Mooshabaya's end. >> > > +1 > > Regards > Buddhika > -- ============================ Srinath Perera, Ph.D. Senior Software Architect, WSO2 Inc. Visiting Faculty, University of Moratuwa Member, Apache Software Foundation Research Scientist, Lanka Software Foundation Blog: http://srinathsview.blogspot.com/ |
|
From: Buddhika C. <bud...@ws...> - 2011-02-28 12:19:37
|
> > > > We are trying to merge XBaya, Messanger, Gfac, and WSO2 registry > > together as a one project (mostly done), and with IU guys we will push > > this to Apache. > > +1. This would be a great option. Let us know if there is something to > be done for this, from Mooshabaya's end. > > +1 Regards Buddhika |
|
From: Kathiravelu P. <kk....@gm...> - 2011-02-28 02:43:48
|
Hi Srinath, On Mon, Feb 28, 2011 at 6:34 AM, Srinath Perera <sr...@ws...> wrote: > Hi Guys, > > It is srinath, you can drop the Dr. ;) > > We have marged it with the OGCE code base > (https://mooshabaya.svn.sourceforge.net/svnroot/mooshabaya/branches/ogce-branch) Thanks. yes. I was thinking whether we also can contribute it back to the main stream OGCE (code base's trunk) or XBaya if possible. > . > > We are trying to merge XBaya, Messanger, Gfac, and WSO2 registry > together as a one project (mostly done), and with IU guys we will push > this to Apache. +1. This would be a great option. Let us know if there is something to be done for this, from Mooshabaya's end. Thank you. Regards, Pradeeban. > > Currently Watshala working with GFac. You guys are welcome to help. > > Dennis, one thing if you are interested is Map-Reduce support for > XBaya. We can discuss and decide. > > Thanks > Srinath > > > > On Sun, Feb 27, 2011 at 9:42 PM, Kathiravelu Pradeeban > <kk....@gm...> wrote: >> ela.. >> >> On Sun, Feb 27, 2011 at 9:40 PM, Denis Weerasiri <ddw...@gm...> wrote: >>> Dr. Srinath once mentioned he's going to merge XBaya to Apache code >>> base. I guess we cab discuss on it and support it. >>> >>> On Sun, Feb 27, 2011 at 9:04 PM, Kathiravelu Pradeeban >>> <kk....@gm...> wrote: >>>> Hi All, >>>> How are we going to proceed further with Mooshabaya? Let's see if we >>>> can take it some more higher. >>>> We can talk to Srinath regarding this. Any thoughts? >>>> >>>> Thank you. >>>> Regards, >>>> Pradeeban. >>>> >>>> -- >>>> Kathiravelu Pradeeban. >>>> Software Engineer. >>>> WSO2 Inc. >>>> >>>> Blog: [Llovizna] http://kkpradeeban.blogspot.com/ >>>> >>>> ------------------------------------------------------------------------------ >>>> Free Software Download: Index, Search & Analyze Logs and other IT data in >>>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data >>>> generated by your applications, servers and devices whether physical, virtual >>>> or in the cloud. Deliver compliance at lower cost and gain new business >>>> insights. http://p.sf.net/sfu/splunk-dev2dev >>>> _______________________________________________ >>>> Mooshabaya-devlp mailing list >>>> Moo...@li... >>>> https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp >>>> >>> >>> >>> >>> -- >>> Thanks, >>> Denis >>> ---------------------------------------------------------- >>> Denis Weerasiri >>> blog: http://ddweerasiri.blogspot.com >>> twitter: http://twitter.com/ddweerasiri >>> linked-in: http://lk.linkedin.com/in/ddweerasiri >>> >> >> >> >> -- >> Kathiravelu Pradeeban. >> Software Engineer. >> WSO2 Inc. >> >> Blog: [Llovizna] http://kkpradeeban.blogspot.com/ >> >> ------------------------------------------------------------------------------ >> Free Software Download: Index, Search & Analyze Logs and other IT data in >> Real-Time with Splunk. Collect, index and harness all the fast moving IT data >> generated by your applications, servers and devices whether physical, virtual >> or in the cloud. Deliver compliance at lower cost and gain new business >> insights. http://p.sf.net/sfu/splunk-dev2dev >> _______________________________________________ >> Mooshabaya-devlp mailing list >> Moo...@li... >> https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp >> > > > > -- > ============================ > Srinath Perera, Ph.D. > Senior Software Architect, WSO2 Inc. > Visiting Lecturer, University of Moratuwa > Member, Apache Software Foundation > Research Scientist, Lanka Software Foundation > Blog: http://srinathsview.blogspot.com/ > -- Kathiravelu Pradeeban. Software Engineer. WSO2 Inc. Blog: [Llovizna] http://kkpradeeban.blogspot.com/ |
|
From: Srinath P. <sr...@ws...> - 2011-02-28 01:04:45
|
Hi Guys, It is srinath, you can drop the Dr. ;) We have marged it with the OGCE code base (https://mooshabaya.svn.sourceforge.net/svnroot/mooshabaya/branches/ogce-branch) . We are trying to merge XBaya, Messanger, Gfac, and WSO2 registry together as a one project (mostly done), and with IU guys we will push this to Apache. Currently Watshala working with GFac. You guys are welcome to help. Dennis, one thing if you are interested is Map-Reduce support for XBaya. We can discuss and decide. Thanks Srinath On Sun, Feb 27, 2011 at 9:42 PM, Kathiravelu Pradeeban <kk....@gm...> wrote: > ela.. > > On Sun, Feb 27, 2011 at 9:40 PM, Denis Weerasiri <ddw...@gm...> wrote: >> Dr. Srinath once mentioned he's going to merge XBaya to Apache code >> base. I guess we cab discuss on it and support it. >> >> On Sun, Feb 27, 2011 at 9:04 PM, Kathiravelu Pradeeban >> <kk....@gm...> wrote: >>> Hi All, >>> How are we going to proceed further with Mooshabaya? Let's see if we >>> can take it some more higher. >>> We can talk to Srinath regarding this. Any thoughts? >>> >>> Thank you. >>> Regards, >>> Pradeeban. >>> >>> -- >>> Kathiravelu Pradeeban. >>> Software Engineer. >>> WSO2 Inc. >>> >>> Blog: [Llovizna] http://kkpradeeban.blogspot.com/ >>> >>> ------------------------------------------------------------------------------ >>> Free Software Download: Index, Search & Analyze Logs and other IT data in >>> Real-Time with Splunk. Collect, index and harness all the fast moving IT data >>> generated by your applications, servers and devices whether physical, virtual >>> or in the cloud. Deliver compliance at lower cost and gain new business >>> insights. http://p.sf.net/sfu/splunk-dev2dev >>> _______________________________________________ >>> Mooshabaya-devlp mailing list >>> Moo...@li... >>> https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp >>> >> >> >> >> -- >> Thanks, >> Denis >> ---------------------------------------------------------- >> Denis Weerasiri >> blog: http://ddweerasiri.blogspot.com >> twitter: http://twitter.com/ddweerasiri >> linked-in: http://lk.linkedin.com/in/ddweerasiri >> > > > > -- > Kathiravelu Pradeeban. > Software Engineer. > WSO2 Inc. > > Blog: [Llovizna] http://kkpradeeban.blogspot.com/ > > ------------------------------------------------------------------------------ > Free Software Download: Index, Search & Analyze Logs and other IT data in > Real-Time with Splunk. Collect, index and harness all the fast moving IT data > generated by your applications, servers and devices whether physical, virtual > or in the cloud. Deliver compliance at lower cost and gain new business > insights. http://p.sf.net/sfu/splunk-dev2dev > _______________________________________________ > Mooshabaya-devlp mailing list > Moo...@li... > https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > -- ============================ Srinath Perera, Ph.D. Senior Software Architect, WSO2 Inc. Visiting Lecturer, University of Moratuwa Member, Apache Software Foundation Research Scientist, Lanka Software Foundation Blog: http://srinathsview.blogspot.com/ |
|
From: Kathiravelu P. <kk....@gm...> - 2011-02-27 16:12:43
|
ela.. On Sun, Feb 27, 2011 at 9:40 PM, Denis Weerasiri <ddw...@gm...> wrote: > Dr. Srinath once mentioned he's going to merge XBaya to Apache code > base. I guess we cab discuss on it and support it. > > On Sun, Feb 27, 2011 at 9:04 PM, Kathiravelu Pradeeban > <kk....@gm...> wrote: >> Hi All, >> How are we going to proceed further with Mooshabaya? Let's see if we >> can take it some more higher. >> We can talk to Srinath regarding this. Any thoughts? >> >> Thank you. >> Regards, >> Pradeeban. >> >> -- >> Kathiravelu Pradeeban. >> Software Engineer. >> WSO2 Inc. >> >> Blog: [Llovizna] http://kkpradeeban.blogspot.com/ >> >> ------------------------------------------------------------------------------ >> Free Software Download: Index, Search & Analyze Logs and other IT data in >> Real-Time with Splunk. Collect, index and harness all the fast moving IT data >> generated by your applications, servers and devices whether physical, virtual >> or in the cloud. Deliver compliance at lower cost and gain new business >> insights. http://p.sf.net/sfu/splunk-dev2dev >> _______________________________________________ >> Mooshabaya-devlp mailing list >> Moo...@li... >> https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp >> > > > > -- > Thanks, > Denis > ---------------------------------------------------------- > Denis Weerasiri > blog: http://ddweerasiri.blogspot.com > twitter: http://twitter.com/ddweerasiri > linked-in: http://lk.linkedin.com/in/ddweerasiri > -- Kathiravelu Pradeeban. Software Engineer. WSO2 Inc. Blog: [Llovizna] http://kkpradeeban.blogspot.com/ |
|
From: Denis W. <ddw...@gm...> - 2011-02-27 16:11:08
|
Dr. Srinath once mentioned he's going to merge XBaya to Apache code base. I guess we cab discuss on it and support it. On Sun, Feb 27, 2011 at 9:04 PM, Kathiravelu Pradeeban <kk....@gm...> wrote: > Hi All, > How are we going to proceed further with Mooshabaya? Let's see if we > can take it some more higher. > We can talk to Srinath regarding this. Any thoughts? > > Thank you. > Regards, > Pradeeban. > > -- > Kathiravelu Pradeeban. > Software Engineer. > WSO2 Inc. > > Blog: [Llovizna] http://kkpradeeban.blogspot.com/ > > ------------------------------------------------------------------------------ > Free Software Download: Index, Search & Analyze Logs and other IT data in > Real-Time with Splunk. Collect, index and harness all the fast moving IT data > generated by your applications, servers and devices whether physical, virtual > or in the cloud. Deliver compliance at lower cost and gain new business > insights. http://p.sf.net/sfu/splunk-dev2dev > _______________________________________________ > Mooshabaya-devlp mailing list > Moo...@li... > https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > -- Thanks, Denis ---------------------------------------------------------- Denis Weerasiri blog: http://ddweerasiri.blogspot.com twitter: http://twitter.com/ddweerasiri linked-in: http://lk.linkedin.com/in/ddweerasiri |
|
From: Kathiravelu P. <kk....@gm...> - 2011-02-27 15:35:19
|
Hi All, How are we going to proceed further with Mooshabaya? Let's see if we can take it some more higher. We can talk to Srinath regarding this. Any thoughts? Thank you. Regards, Pradeeban. -- Kathiravelu Pradeeban. Software Engineer. WSO2 Inc. Blog: [Llovizna] http://kkpradeeban.blogspot.com/ |
|
From: Denis W. <ddw...@gm...> - 2010-11-21 12:09:45
|
On Sun, Nov 21, 2010 at 2:19 PM, Kathiravelu Pradeeban < kk....@gm...> wrote: > Hi, > As we have one free day after the conference, we can go and visit some > interesting place in France. Or are we going to spend the whole day in > Shopping? > During the 'Paris by Night', we will be taken along Paris (guess that > will include Eiffel Tower), and "Château de Chantilly [0]" too will be > visited Thursday 9th. > > Shall we plan a visit to some place in Paris or nearer villages in France? > > We can pick a place from the list > http://about-france.com/tourism/tourist-attractions.htm > > [1] Euro Disneyland, Paris > Ticket is around 120 euro. :( > [2] Louvre Museum (Where Mona Lisa lives.. :)) > > We can find some tips about Paris in http://about-france.com/paris.htm > > [0] en.wikipedia.org/wiki/Château_de_Chantilly<http://en.wikipedia.org/wiki/Ch%C3%A2teau_de_Chantilly> > [1] http://www.disneylandparis.co.uk/ > [2] http://www.louvre.fr/llv/commun/home.jsp?bmLocale=en > http://en.wikipedia.org/wiki/Mus%C3%A9e_du_Louvre > > Regards, > Pradeeban. > > -- > Kathiravelu Pradeeban. > Software Engineer. > WSO2 Inc. > > Blog: [Llovizna] http://kkpradeeban.blogspot.com/ > > > ------------------------------------------------------------------------------ > Beautiful is writing same markup. Internet Explorer 9 supports > standards for HTML5, CSS3, SVG 1.1, ECMAScript5, and DOM L2 & L3. > Spend less time writing and rewriting code and more time creating great > experiences on the web. Be a part of the beta today > http://p.sf.net/sfu/msIE9-sfdev2dev > _______________________________________________ > Mooshabaya-devlp mailing list > Moo...@li... > https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > -- Thanks, Denis ---------------------------------------------------------- *Denis Weerasiri* <http://wso2.com/>**** <http://wso2.com/>* blog: ** http://ddweerasiri.blogspot.com* <http://ddweerasiri.blogspot.com/>* twitter: **http://twitter.com/ddweerasiri* <http://twitter.com/ddweerasiri>* linked-in: **http://lk.linkedin.com/in/ddweerasiri*<http://lk.linkedin.com/in/ddweerasiri> |
|
From: Kathiravelu P. <kk....@gm...> - 2010-11-21 08:53:36
|
Sorry, wrong list. On Sun, Nov 21, 2010 at 2:19 PM, Kathiravelu Pradeeban <kk....@gm...> wrote: > Hi, > As we have one free day after the conference, we can go and visit some > interesting place in France. Or are we going to spend the whole day in > Shopping? > During the 'Paris by Night', we will be taken along Paris (guess that > will include Eiffel Tower), and "Château de Chantilly [0]" too will be > visited Thursday 9th. > > Shall we plan a visit to some place in Paris or nearer villages in France? > > We can pick a place from the list > http://about-france.com/tourism/tourist-attractions.htm > > [1] Euro Disneyland, Paris > [2] Louvre Museum (Where Mona Lisa lives.. :)) > > We can find some tips about Paris in http://about-france.com/paris.htm > > [0] en.wikipedia.org/wiki/Château_de_Chantilly > [1] http://www.disneylandparis.co.uk/ > [2] http://www.louvre.fr/llv/commun/home.jsp?bmLocale=en > http://en.wikipedia.org/wiki/Mus%C3%A9e_du_Louvre > > Regards, > Pradeeban. > > -- > Kathiravelu Pradeeban. > Software Engineer. > WSO2 Inc. > > Blog: [Llovizna] http://kkpradeeban.blogspot.com/ > -- Kathiravelu Pradeeban. Software Engineer. WSO2 Inc. Blog: [Llovizna] http://kkpradeeban.blogspot.com/ |
|
From: Kathiravelu P. <kk....@gm...> - 2010-11-21 08:49:58
|
Hi, As we have one free day after the conference, we can go and visit some interesting place in France. Or are we going to spend the whole day in Shopping? During the 'Paris by Night', we will be taken along Paris (guess that will include Eiffel Tower), and "Château de Chantilly [0]" too will be visited Thursday 9th. Shall we plan a visit to some place in Paris or nearer villages in France? We can pick a place from the list http://about-france.com/tourism/tourist-attractions.htm [1] Euro Disneyland, Paris [2] Louvre Museum (Where Mona Lisa lives.. :)) We can find some tips about Paris in http://about-france.com/paris.htm [0] en.wikipedia.org/wiki/Château_de_Chantilly [1] http://www.disneylandparis.co.uk/ [2] http://www.louvre.fr/llv/commun/home.jsp?bmLocale=en http://en.wikipedia.org/wiki/Mus%C3%A9e_du_Louvre Regards, Pradeeban. -- Kathiravelu Pradeeban. Software Engineer. WSO2 Inc. Blog: [Llovizna] http://kkpradeeban.blogspot.com/ |
|
From: Supun M. <aws...@gm...> - 2010-10-17 08:06:37
|
On Sun, Oct 17, 2010 at 8:49 AM, Kathiravelu Pradeeban < kk....@gm...> wrote: > yayyy... > Mooshabaya-1.0 is tagged now [Committed revision 747]. > > Supun, when you get some time, consider creating the Mooshabaya binary > using the current trunk (as it is revision 747 or in tag 1.0) and > upload it to the Sourceforge. The one there we have is pretty > outdated. > > sure, will do > Thank you. > Regards, > Pradeeban. > > On Sat, Oct 16, 2010 at 11:20 PM, Supun Malinga <aws...@gm...> > wrote: > > was kiddin man, jst tag it :) > > > > On Sat, Oct 16, 2010 at 9:51 PM, Kathiravelu Pradeeban > > <kk....@gm...> wrote: > >> > >> +1. I will have a look. > >> Let's tag and keep working on this further. > >> We may tag 1.0.1 sooner, as we finish findbugs, and further > improvements.. > >> :) > >> > >> Regards, > >> Pradeeban. > >> > >> On Sat, Oct 16, 2010 at 10:38 AM, Supun Malinga <aws...@gm...> > >> wrote: > >> > we shld run find bugs ;) > >> > > >> > On Sat, Oct 16, 2010 at 10:31 AM, Kathiravelu Pradeeban > >> > <kk....@gm...> wrote: > >> >> > >> >> Devs, > >> >> Since Mooshabaya got its stable or final stage for the moment, with > no > >> >> major updates whatsoever, I thought of tagging version 1.0 tomorrow. > >> >> Pls let > >> >> us know if you have any objection for this. > >> >> > >> >> Regards, > >> >> Pradeeban. > >> >> > >> >> -- > >> >> Kathiravelu Pradeeban. > >> >> Software Engineer. > >> >> WSO2 Inc. > >> >> > >> >> Blog: [Llovizna] http://kkpradeeban.blogspot.com/ > >> >> > >> >> > >> >> > >> >> > ------------------------------------------------------------------------------ > >> >> Download new Adobe(R) Flash(R) Builder(TM) 4 > >> >> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > >> >> Flex(R) Builder(TM)) enable the development of rich applications that > >> >> run > >> >> across multiple browsers and platforms. Download your free trials > >> >> today! > >> >> http://p.sf.net/sfu/adobe-dev2dev > >> >> _______________________________________________ > >> >> Mooshabaya-devlp mailing list > >> >> Moo...@li... > >> >> https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > >> >> > >> > > >> > > >> > > >> > -- > >> > Supun Malinga, > >> > > >> > Software Engineer, > >> > WSO2 Inc. > >> > http://wso2.com > >> > http://wso2.org > >> > mobile - 071 56 91 321 > >> > > >> > > >> > > ------------------------------------------------------------------------------ > >> > Download new Adobe(R) Flash(R) Builder(TM) 4 > >> > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > >> > Flex(R) Builder(TM)) enable the development of rich applications that > >> > run > >> > across multiple browsers and platforms. Download your free trials > today! > >> > http://p.sf.net/sfu/adobe-dev2dev > >> > _______________________________________________ > >> > Mooshabaya-devlp mailing list > >> > Moo...@li... > >> > https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > >> > > >> > > >> > >> > >> > >> -- > >> Kathiravelu Pradeeban. > >> Software Engineer. > >> WSO2 Inc. > >> > >> Blog: [Llovizna] http://kkpradeeban.blogspot.com/ > >> > >> > >> > ------------------------------------------------------------------------------ > >> Download new Adobe(R) Flash(R) Builder(TM) 4 > >> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > >> Flex(R) Builder(TM)) enable the development of rich applications that > run > >> across multiple browsers and platforms. Download your free trials today! > >> http://p.sf.net/sfu/adobe-dev2dev > >> _______________________________________________ > >> Mooshabaya-devlp mailing list > >> Moo...@li... > >> https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > > > > > > > > -- > > Supun Malinga, > > > > Software Engineer, > > WSO2 Inc. > > http://wso2.com > > http://wso2.org > > mobile - 071 56 91 321 > > > > > ------------------------------------------------------------------------------ > > Download new Adobe(R) Flash(R) Builder(TM) 4 > > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > > Flex(R) Builder(TM)) enable the development of rich applications that run > > across multiple browsers and platforms. Download your free trials today! > > http://p.sf.net/sfu/adobe-dev2dev > > _______________________________________________ > > Mooshabaya-devlp mailing list > > Moo...@li... > > https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > > > > > > > > -- > Kathiravelu Pradeeban. > Software Engineer. > WSO2 Inc. > > Blog: [Llovizna] http://kkpradeeban.blogspot.com/ > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Mooshabaya-devlp mailing list > Moo...@li... > https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > -- Supun Malinga, Software Engineer, WSO2 Inc. http://wso2.com http://wso2.org mobile - 071 56 91 321 |
|
From: Kathiravelu P. <kk....@gm...> - 2010-10-17 03:19:41
|
yayyy... Mooshabaya-1.0 is tagged now [Committed revision 747]. Supun, when you get some time, consider creating the Mooshabaya binary using the current trunk (as it is revision 747 or in tag 1.0) and upload it to the Sourceforge. The one there we have is pretty outdated. Thank you. Regards, Pradeeban. On Sat, Oct 16, 2010 at 11:20 PM, Supun Malinga <aws...@gm...> wrote: > was kiddin man, jst tag it :) > > On Sat, Oct 16, 2010 at 9:51 PM, Kathiravelu Pradeeban > <kk....@gm...> wrote: >> >> +1. I will have a look. >> Let's tag and keep working on this further. >> We may tag 1.0.1 sooner, as we finish findbugs, and further improvements.. >> :) >> >> Regards, >> Pradeeban. >> >> On Sat, Oct 16, 2010 at 10:38 AM, Supun Malinga <aws...@gm...> >> wrote: >> > we shld run find bugs ;) >> > >> > On Sat, Oct 16, 2010 at 10:31 AM, Kathiravelu Pradeeban >> > <kk....@gm...> wrote: >> >> >> >> Devs, >> >> Since Mooshabaya got its stable or final stage for the moment, with no >> >> major updates whatsoever, I thought of tagging version 1.0 tomorrow. >> >> Pls let >> >> us know if you have any objection for this. >> >> >> >> Regards, >> >> Pradeeban. >> >> >> >> -- >> >> Kathiravelu Pradeeban. >> >> Software Engineer. >> >> WSO2 Inc. >> >> >> >> Blog: [Llovizna] http://kkpradeeban.blogspot.com/ >> >> >> >> >> >> >> >> ------------------------------------------------------------------------------ >> >> Download new Adobe(R) Flash(R) Builder(TM) 4 >> >> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly >> >> Flex(R) Builder(TM)) enable the development of rich applications that >> >> run >> >> across multiple browsers and platforms. Download your free trials >> >> today! >> >> http://p.sf.net/sfu/adobe-dev2dev >> >> _______________________________________________ >> >> Mooshabaya-devlp mailing list >> >> Moo...@li... >> >> https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp >> >> >> > >> > >> > >> > -- >> > Supun Malinga, >> > >> > Software Engineer, >> > WSO2 Inc. >> > http://wso2.com >> > http://wso2.org >> > mobile - 071 56 91 321 >> > >> > >> > ------------------------------------------------------------------------------ >> > Download new Adobe(R) Flash(R) Builder(TM) 4 >> > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly >> > Flex(R) Builder(TM)) enable the development of rich applications that >> > run >> > across multiple browsers and platforms. Download your free trials today! >> > http://p.sf.net/sfu/adobe-dev2dev >> > _______________________________________________ >> > Mooshabaya-devlp mailing list >> > Moo...@li... >> > https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp >> > >> > >> >> >> >> -- >> Kathiravelu Pradeeban. >> Software Engineer. >> WSO2 Inc. >> >> Blog: [Llovizna] http://kkpradeeban.blogspot.com/ >> >> >> ------------------------------------------------------------------------------ >> Download new Adobe(R) Flash(R) Builder(TM) 4 >> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly >> Flex(R) Builder(TM)) enable the development of rich applications that run >> across multiple browsers and platforms. Download your free trials today! >> http://p.sf.net/sfu/adobe-dev2dev >> _______________________________________________ >> Mooshabaya-devlp mailing list >> Moo...@li... >> https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > > > > -- > Supun Malinga, > > Software Engineer, > WSO2 Inc. > http://wso2.com > http://wso2.org > mobile - 071 56 91 321 > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Mooshabaya-devlp mailing list > Moo...@li... > https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > > -- Kathiravelu Pradeeban. Software Engineer. WSO2 Inc. Blog: [Llovizna] http://kkpradeeban.blogspot.com/ |
|
From: <kkp...@us...> - 2010-10-17 03:14:46
|
Revision: 747
http://mooshabaya.svn.sourceforge.net/mooshabaya/?rev=747&view=rev
Author: kkpradeeban
Date: 2010-10-17 03:14:40 +0000 (Sun, 17 Oct 2010)
Log Message:
-----------
We are tagging the version 1.0 of Mooshabaya.
Please backport any critical fixes made on the trunk henceforth to 1.0 as well.
Added Paths:
-----------
tags/1.0/
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: Supun M. <aws...@gm...> - 2010-10-16 17:50:52
|
was kiddin man, jst tag it :) On Sat, Oct 16, 2010 at 9:51 PM, Kathiravelu Pradeeban < kk....@gm...> wrote: > +1. I will have a look. > Let's tag and keep working on this further. > We may tag 1.0.1 sooner, as we finish findbugs, and further improvements.. > :) > > Regards, > Pradeeban. > > On Sat, Oct 16, 2010 at 10:38 AM, Supun Malinga <aws...@gm...> > wrote: > > we shld run find bugs ;) > > > > On Sat, Oct 16, 2010 at 10:31 AM, Kathiravelu Pradeeban > > <kk....@gm...> wrote: > >> > >> Devs, > >> Since Mooshabaya got its stable or final stage for the moment, with no > >> major updates whatsoever, I thought of tagging version 1.0 tomorrow. Pls > let > >> us know if you have any objection for this. > >> > >> Regards, > >> Pradeeban. > >> > >> -- > >> Kathiravelu Pradeeban. > >> Software Engineer. > >> WSO2 Inc. > >> > >> Blog: [Llovizna] http://kkpradeeban.blogspot.com/ > >> > >> > >> > ------------------------------------------------------------------------------ > >> Download new Adobe(R) Flash(R) Builder(TM) 4 > >> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > >> Flex(R) Builder(TM)) enable the development of rich applications that > run > >> across multiple browsers and platforms. Download your free trials today! > >> http://p.sf.net/sfu/adobe-dev2dev > >> _______________________________________________ > >> Mooshabaya-devlp mailing list > >> Moo...@li... > >> https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > >> > > > > > > > > -- > > Supun Malinga, > > > > Software Engineer, > > WSO2 Inc. > > http://wso2.com > > http://wso2.org > > mobile - 071 56 91 321 > > > > > ------------------------------------------------------------------------------ > > Download new Adobe(R) Flash(R) Builder(TM) 4 > > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > > Flex(R) Builder(TM)) enable the development of rich applications that run > > across multiple browsers and platforms. Download your free trials today! > > http://p.sf.net/sfu/adobe-dev2dev > > _______________________________________________ > > Mooshabaya-devlp mailing list > > Moo...@li... > > https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > > > > > > > > -- > Kathiravelu Pradeeban. > Software Engineer. > WSO2 Inc. > > Blog: [Llovizna] http://kkpradeeban.blogspot.com/ > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Mooshabaya-devlp mailing list > Moo...@li... > https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > -- Supun Malinga, Software Engineer, WSO2 Inc. http://wso2.com http://wso2.org mobile - 071 56 91 321 |
|
From: Kathiravelu P. <kk....@gm...> - 2010-10-16 16:22:17
|
+1. I will have a look. Let's tag and keep working on this further. We may tag 1.0.1 sooner, as we finish findbugs, and further improvements.. :) Regards, Pradeeban. On Sat, Oct 16, 2010 at 10:38 AM, Supun Malinga <aws...@gm...> wrote: > we shld run find bugs ;) > > On Sat, Oct 16, 2010 at 10:31 AM, Kathiravelu Pradeeban > <kk....@gm...> wrote: >> >> Devs, >> Since Mooshabaya got its stable or final stage for the moment, with no >> major updates whatsoever, I thought of tagging version 1.0 tomorrow. Pls let >> us know if you have any objection for this. >> >> Regards, >> Pradeeban. >> >> -- >> Kathiravelu Pradeeban. >> Software Engineer. >> WSO2 Inc. >> >> Blog: [Llovizna] http://kkpradeeban.blogspot.com/ >> >> >> ------------------------------------------------------------------------------ >> Download new Adobe(R) Flash(R) Builder(TM) 4 >> The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly >> Flex(R) Builder(TM)) enable the development of rich applications that run >> across multiple browsers and platforms. Download your free trials today! >> http://p.sf.net/sfu/adobe-dev2dev >> _______________________________________________ >> Mooshabaya-devlp mailing list >> Moo...@li... >> https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp >> > > > > -- > Supun Malinga, > > Software Engineer, > WSO2 Inc. > http://wso2.com > http://wso2.org > mobile - 071 56 91 321 > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Mooshabaya-devlp mailing list > Moo...@li... > https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > > -- Kathiravelu Pradeeban. Software Engineer. WSO2 Inc. Blog: [Llovizna] http://kkpradeeban.blogspot.com/ |
|
From: Supun M. <aws...@gm...> - 2010-10-16 05:09:17
|
we shld run find bugs ;) On Sat, Oct 16, 2010 at 10:31 AM, Kathiravelu Pradeeban < kk....@gm...> wrote: > Devs, > Since Mooshabaya got its stable or final stage for the moment, with no > major updates whatsoever, I thought of tagging version 1.0 tomorrow. Pls let > us know if you have any objection for this. > > Regards, > Pradeeban. > > -- > Kathiravelu Pradeeban. > Software Engineer. > WSO2 Inc. > > Blog: [Llovizna] http://kkpradeeban.blogspot.com/ > > > > ------------------------------------------------------------------------------ > Download new Adobe(R) Flash(R) Builder(TM) 4 > The new Adobe(R) Flex(R) 4 and Flash(R) Builder(TM) 4 (formerly > Flex(R) Builder(TM)) enable the development of rich applications that run > across multiple browsers and platforms. Download your free trials today! > http://p.sf.net/sfu/adobe-dev2dev > _______________________________________________ > Mooshabaya-devlp mailing list > Moo...@li... > https://lists.sourceforge.net/lists/listinfo/mooshabaya-devlp > > -- Supun Malinga, Software Engineer, WSO2 Inc. http://wso2.com http://wso2.org mobile - 071 56 91 321 |
|
From: Kathiravelu P. <kk....@gm...> - 2010-10-16 05:02:21
|
Devs, Since Mooshabaya got its stable or final stage for the moment, with no major updates whatsoever, I thought of tagging version 1.0 tomorrow. Pls let us know if you have any objection for this. Regards, Pradeeban. -- Kathiravelu Pradeeban. Software Engineer. WSO2 Inc. Blog: [Llovizna] http://kkpradeeban.blogspot.com/ |
|
From: <ra...@us...> - 2010-08-19 04:23:52
|
Revision: 746
http://mooshabaya.svn.sourceforge.net/mooshabaya/?rev=746&view=rev
Author: ramith
Date: 2010-08-19 04:23:46 +0000 (Thu, 19 Aug 2010)
Log Message:
-----------
Removed Paths:
-------------
branches/ogce-branch2/lib/wsmg/broker-1.0.jar
Deleted: branches/ogce-branch2/lib/wsmg/broker-1.0.jar
===================================================================
(Binary files differ)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|
|
From: <ra...@us...> - 2010-08-19 04:22:09
|
Revision: 745
http://mooshabaya.svn.sourceforge.net/mooshabaya/?rev=745&view=rev
Author: ramith
Date: 2010-08-19 04:22:03 +0000 (Thu, 19 Aug 2010)
Log Message:
-----------
Modified Paths:
--------------
branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/test/service/ServiceNotificationSender.java
Modified: branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/test/service/ServiceNotificationSender.java
===================================================================
--- branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/test/service/ServiceNotificationSender.java 2010-08-19 04:20:58 UTC (rev 744)
+++ branches/ogce-branch2/src/main/java/edu/indiana/extreme/xbaya/test/service/ServiceNotificationSender.java 2010-08-19 04:22:03 UTC (rev 745)
@@ -9,11 +9,16 @@
import edu.indiana.extreme.lead.workflow_tracking.Notifier;
import edu.indiana.extreme.lead.workflow_tracking.NotifierFactory;
+import edu.indiana.extreme.lead.workflow_tracking.common.ConstructorConsts;
import edu.indiana.extreme.lead.workflow_tracking.common.ConstructorProps;
import edu.indiana.extreme.lead.workflow_tracking.common.InvocationContext;
import edu.indiana.extreme.lead.workflow_tracking.common.InvocationEntity;
+import edu.indiana.extreme.lead.workflow_tracking.common.WorkflowTrackingContext;
import edu.indiana.extreme.lead.workflow_tracking.util.MessageUtil;
+import edu.indiana.extreme.xbaya.porting.XsulOmBridge;
import edu.indiana.extreme.xbaya.util.XMLUtil;
+
+import org.apache.axis2.addressing.EndpointReference;
import org.apache.xmlbeans.XmlObject;
import org.xmlpull.v1.builder.XmlDocument;
import org.xmlpull.v1.builder.XmlElement;
@@ -32,128 +37,142 @@
*/
public class ServiceNotificationSender {
- private final static MLogger logger = MLogger.getLogger();
+ private final static MLogger logger = MLogger.getLogger();
- private final static String INVOKED_MESSAGE = "Service is invoked";
+ private final static String INVOKED_MESSAGE = "Service is invoked";
- private final static String SENDING_RESULT_MESSAGE = "Sending successful result of invocation";
+ private final static String SENDING_RESULT_MESSAGE = "Sending successful result of invocation";
- private Notifier notifier;
+ private Notifier notifier;
- private InvocationEntity initiator;
+ private InvocationEntity initiator;
- private InvocationEntity receiver;
+ private InvocationEntity receiver;
- private InvocationContext invocationContext;
+ private InvocationContext invocationContext;
- private SoapUtil soapFragrance;
+ private SoapUtil soapFragrance;
- /**
- * @param inputElement
- * @return The ServiceNotificationSender
- */
- public static ServiceNotificationSender invoked(XmlElement inputElement) {
- try {
+ private WorkflowTrackingContext workflowTrackingContext = null;
- XmlElement soapBody = (XmlElement) inputElement.getParent();
- XmlElement soapEnvelope = (XmlElement) soapBody.getParent();
- SoapUtil soapFragrance = SoapUtil.selectSoapFragrance(soapEnvelope,
- new SoapUtil[] { Soap11Util.getInstance(),
- Soap12Util.getInstance() });
- XmlElement soapHeader = soapEnvelope.element(null,
- XmlConstants.S_HEADER);
- XmlElement leadHeader = soapHeader.element(LeadContextHeader.NS,
- LeadContextHeader.TYPE.getLocalPart());
- logger.finest("leadHeader: "
- + XMLUtil.xmlElementToString(leadHeader));
- if (leadHeader == null) {
- return null;
- }
- LeadContextHeader leadContext = new LeadContextHeader(leadHeader);
- ServiceNotificationSender sender = new ServiceNotificationSender(
- soapFragrance, leadContext);
- sender.serviceInvoked(inputElement);
+ /**
+ * @param inputElement
+ * @return The ServiceNotificationSender
+ */
+ public static ServiceNotificationSender invoked(XmlElement inputElement) {
+ try {
- return sender;
- } catch (RuntimeException e) {
- logger.caught(e);
- return null;
- }
- }
+ XmlElement soapBody = (XmlElement) inputElement.getParent();
+ XmlElement soapEnvelope = (XmlElement) soapBody.getParent();
+ SoapUtil soapFragrance = SoapUtil.selectSoapFragrance(soapEnvelope,
+ new SoapUtil[] { Soap11Util.getInstance(),
+ Soap12Util.getInstance() });
+ XmlElement soapHeader = soapEnvelope.element(null,
+ XmlConstants.S_HEADER);
+ XmlElement leadHeader = soapHeader.element(LeadContextHeader.NS,
+ LeadContextHeader.TYPE.getLocalPart());
+ logger.finest("leadHeader: "
+ + XMLUtil.xmlElementToString(leadHeader));
+ if (leadHeader == null) {
+ return null;
+ }
+ LeadContextHeader leadContext = new LeadContextHeader(leadHeader);
+ ServiceNotificationSender sender = new ServiceNotificationSender(
+ soapFragrance, leadContext);
+ sender.serviceInvoked(inputElement);
- /**
- * Constructs a ServiceNotificationSender.
- *
- * @param soapFragrance
- * @param leadContext
- */
- private ServiceNotificationSender(SoapUtil soapFragrance,
- LeadContextHeader leadContext) {
- this.soapFragrance = soapFragrance;
+ return sender;
+ } catch (RuntimeException e) {
+ logger.caught(e);
+ return null;
+ }
+ }
- ConstructorProps props = MessageUtil
- .createConstructorPropsFromLeadContext(leadContext);
- this.notifier = NotifierFactory.createNotifier(props);
+ /**
+ * Constructs a ServiceNotificationSender.
+ *
+ * @param soapFragrance
+ * @param leadContext
+ */
+ private ServiceNotificationSender(SoapUtil soapFragrance,
+ LeadContextHeader leadContext) {
+ this.soapFragrance = soapFragrance;
- URI workflowID = leadContext.getWorkflowId();
- String serviceIDString = leadContext.getServiceId();
- if (serviceIDString == null) {
- serviceIDString = "serviceIDWasNull";
- }
- URI serviceID = URI.create(serviceIDString);
- String nodeID = leadContext.getNodeId();
- String timeStepString = leadContext.getTimeStep();
- Integer timeStep = null;
- if (timeStepString != null) {
- try {
- timeStep = new Integer(timeStepString);
- } catch (NumberFormatException e) {
- logger.caught(e);
- }
- }
- this.initiator = this.notifier.createEntity(workflowID, serviceID,
- nodeID, timeStep);
- this.receiver = this.notifier.createEntity(workflowID, serviceID,
- nodeID, timeStep);
- }
+ edu.indiana.extreme.lead.commons.LeadContextHeader portedLeadContext = XsulOmBridge
+ .bridge(leadContext);
- /**
- * @param inputElement
- */
- private void serviceInvoked(XmlElement inputElement) {
- XmlElement soapBody = (XmlElement) inputElement.getParent();
- XmlElement soapEnvelope = (XmlElement) soapBody.getParent();
- XmlElement soapHeader = soapEnvelope.element(null,
- XmlConstants.S_HEADER);
- XmlObject headerObject = XBeansUtil.xmlElementToXmlObject(soapHeader);
- XmlObject bodyObject = XBeansUtil.xmlElementToXmlObject(soapBody);
- this.invocationContext = this.notifier.serviceInvoked(this.receiver,
- this.initiator, headerObject, bodyObject, INVOKED_MESSAGE);
- }
+ ConstructorProps props = MessageUtil
+ .createConstructorPropsFromLeadContext(portedLeadContext);
- /**
- * @param outputElement
- */
- public void sendingResult(XmlElement outputElement) {
- try {
- XmlDocument document = this.soapFragrance
- .wrapBodyContent(outputElement);
- XmlElement soapEnvelope = document.getDocumentElement();
- XmlElement soapHeader = soapEnvelope.element(null,
- XmlConstants.S_HEADER);
- XmlElement soapBody = soapEnvelope.element(null,
- XmlConstants.S_BODY);
- XmlObject headerObject = null;
- if (soapHeader != null) {
- headerObject = XBeansUtil.xmlElementToXmlObject(soapHeader);
- }
- XmlObject bodyObject = XBeansUtil.xmlElementToXmlObject(soapBody);
- this.notifier.sendingResult(this.invocationContext, headerObject,
- bodyObject, SENDING_RESULT_MESSAGE);
- } catch (RuntimeException e) {
- logger.caught(e);
- }
- }
+ this.notifier = NotifierFactory.createNotifier();
+
+ URI workflowID = leadContext.getWorkflowId();
+ String serviceIDString = leadContext.getServiceId();
+ if (serviceIDString == null) {
+ serviceIDString = "serviceIDWasNull";
+ }
+ URI serviceID = URI.create(serviceIDString);
+ String nodeID = leadContext.getNodeId();
+ String timeStepString = leadContext.getTimeStep();
+ Integer timeStep = null;
+ if (timeStepString != null) {
+ try {
+ timeStep = new Integer(timeStepString);
+ } catch (NumberFormatException e) {
+ logger.caught(e);
+ }
+ }
+
+ this.workflowTrackingContext = this.notifier.createTrackingContext(
+ null, new EndpointReference((String) props
+ .get(ConstructorConsts.BROKER_EPR)), workflowID,
+ serviceID, nodeID, timeStep);
+
+ this.initiator = this.notifier.createEntity(workflowTrackingContext,
+ workflowID, serviceID, nodeID, timeStep);
+ this.receiver = this.notifier.createEntity(workflowTrackingContext,
+ workflowID, serviceID, nodeID, timeStep);
+ }
+
+ /**
+ * @param inputElement
+ */
+ private void serviceInvoked(XmlElement inputElement) {
+ XmlElement soapBody = (XmlElement) inputElement.getParent();
+ XmlElement soapEnvelope = (XmlElement) soapBody.getParent();
+ XmlElement soapHeader = soapEnvelope.element(null,
+ XmlConstants.S_HEADER);
+ XmlObject headerObject = XBeansUtil.xmlElementToXmlObject(soapHeader);
+ XmlObject bodyObject = XBeansUtil.xmlElementToXmlObject(soapBody);
+ this.invocationContext = this.notifier.serviceInvoked(
+ this.workflowTrackingContext, this.initiator, headerObject,
+ bodyObject, INVOKED_MESSAGE);
+ }
+
+ /**
+ * @param outputElement
+ */
+ public void sendingResult(XmlElement outputElement) {
+ try {
+ XmlDocument document = this.soapFragrance
+ .wrapBodyContent(outputElement);
+ XmlElement soapEnvelope = document.getDocumentElement();
+ XmlElement soapHeader = soapEnvelope.element(null,
+ XmlConstants.S_HEADER);
+ XmlElement soapBody = soapEnvelope.element(null,
+ XmlConstants.S_BODY);
+ XmlObject headerObject = null;
+ if (soapHeader != null) {
+ headerObject = XBeansUtil.xmlElementToXmlObject(soapHeader);
+ }
+ XmlObject bodyObject = XBeansUtil.xmlElementToXmlObject(soapBody);
+ this.notifier.sendingResult(this.workflowTrackingContext,
+ this.invocationContext, headerObject, bodyObject,
+ SENDING_RESULT_MESSAGE);
+ } catch (RuntimeException e) {
+ logger.caught(e);
+ }
+ }
}
/*
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|