Re: [Carbon-dev] Meeting tomorrow morning, 10AM with all folks working on Stratos

2011-06-24 Thread Prabath Abeysekera
On 6/24/11, Anjana Fernando wrote: > Prabath, > > As soon as you are finished with the UI changes, please send a separate mail > on what are the features RSS have, how to use it and some screenshots of it > in action. > > Cheers, > Anjana. > > On Fri, Jun 24, 2011 at 6:35 PM, Prabath Abeysekera >

[Carbon-dev] Fwd: [esb-java-user] How to subscribe/unsubscribe to a topic using WS call in WSO2ESB 4.0.0

2011-06-24 Thread Afkham Azeez
-- Forwarded message -- From: "Vuk Mijovic" Date: Jun 23, 2011 8:19 PM Subject: [esb-java-user] How to subscribe/unsubscribe to a topic using WS call in WSO2ESB 4.0.0 To: Hi, before the 4.0.0 version subscription/unsubscription requests were sent to the EventSource which does no

Re: [Carbon-dev] Meeting tomorrow morning, 10AM with all folks working on Stratos

2011-06-24 Thread Dimuthu Leelarathne
Hi, On Fri, Jun 24, 2011 at 11:25 AM, Afkham Azeez wrote: > What are the product teams doing? What about the performance & long running > tests? Webapp throttling owner was Milinda. > > Can I know how many in the product teams has setup a Stratos system on > their local machines? We have a very

Re: [Carbon-dev] Stratos service aware dynamic LB

2011-06-24 Thread Kathiravelu Pradeeban
On Sat, Jun 25, 2011 at 11:16 AM, Afkham Azeez wrote: > This is working. I was able to load balance to the AS & G-Reg using a > single LB. Now we can save a few thousand $ from the Amazon bill :) wow. Excellent news. Regards, Pradeeban. > > > On Sat, Jun 25, 2011 at 2:46 AM, Afkham Azeez wro

[Carbon-dev] ESB does not use Ports.Offset property for NHTTP ports

2011-06-24 Thread Afkham Azeez
$subject. Why? -- *Afkham Azeez* Director of Architecture; WSO2, Inc.; http://wso2.com Member; Apache Software Foundation; http://www.apache.org/ * ** email: **az...@wso2.com* * cell: +94 77 3320919 blog: **http://blog.afkham.org* * twitter: **http:

Re: [Carbon-dev] How to get the requested hostname from the Synapse MessageContext?

2011-06-24 Thread Afkham Azeez
The following code works. Map headers = (Map)((Axis2MessageContext) synCtx).getAxis2MessageContext().getProperty(org.apache.axis2.context.MessageContext.TRANSPORT_HEADERS); String address = headers.get("Host"); On Sat, Jun 25, 2011 at 9:36 AM, Afkham Azeez wrote: > > > On Sat, Jun 25, 2011 at

[Carbon-dev] juddiDatabase WARN

2011-06-24 Thread Jorge Infante Osorio
Hi folks. Using a fresh installation of GReg 4.0.0, in the second restart I see this WARN. It doesn’t appear in the log files. [2011-06-24 23:30:26,725] INFO {org.wso2.carbon.registry.core.internal.RegistryCoreServiceComponent} - Registry Mode: READ-WRITE 3969 juddiDatabase WARN [Start L

Re: [Carbon-dev] How to get the requested hostname from the Synapse MessageContext?

2011-06-24 Thread Afkham Azeez
On Sat, Jun 25, 2011 at 4:47 AM, Hiranya Jayathilaka wrote: > I found following on simple HTTP server code: > > msgContext.setProperty(MessageContext.TRANSPORT_ADDR, > > conn.getLocalAddress().getHostAddress()); > This returns null for the NHTTP transport > > But other transports doesn't seem to

Re: [Carbon-dev] How to get the requested hostname from the Synapse MessageContext?

2011-06-24 Thread Afkham Azeez
On Sat, Jun 25, 2011 at 3:48 AM, Hiranya Jayathilaka wrote: > > > On Sat, Jun 25, 2011 at 3:07 AM, Afkham Azeez wrote: > >> Sorry, this does not work. I had hardcoded the host for testing it, so >> for subsequent requests that prop was there. > > > It doesn't look like we are keeping track of the

Re: [Carbon-dev] Stratos mashup server - mashup services are not getting deployed

2011-06-24 Thread Yumani Ranaweera
Strange! because both new mashups and uploaded mashups didn't deploy for me. Nevertheless, I will retest and see if there's any mistake on my side. Thanks, Yumani On Fri, Jun 24, 2011 at 6:29 PM, Lalaji Sureshika wrote: > Hi, > > I tested with configuring a local stratos setup using the latest

Re: [Carbon-dev] How to get the requested hostname from the Synapse MessageContext?

2011-06-24 Thread Hiranya Jayathilaka
I found following on simple HTTP server code: msgContext.setProperty(MessageContext.TRANSPORT_ADDR, conn.getLocalAddress().getHostAddress()); But other transports doesn't seem to be setting this. I didn't find anything relevant in servlet transport code :( Than

Re: [Carbon-dev] How to get the requested hostname from the Synapse MessageContext?

2011-06-24 Thread Hiranya Jayathilaka
On Sat, Jun 25, 2011 at 3:07 AM, Afkham Azeez wrote: > Sorry, this does not work. I had hardcoded the host for testing it, so for > subsequent requests that prop was there. It doesn't look like we are keeping track of the full request URI while mediation. The NHTTP transport sets a property nam

Re: [Carbon-dev] How to get the requested hostname from the Synapse MessageContext?

2011-06-24 Thread Afkham Azeez
Sorry, this does not work. I had hardcoded the host for testing it, so for subsequent requests that prop was there. On Sat, Jun 25, 2011 at 2:57 AM, Afkham Azeez wrote: > I found a way to get this. Hope it is the proper way of handling this. > > > ((Axis2MessageContext)synCtx).getAxis2MessageCo

Re: [Carbon-dev] How to get the requested hostname from the Synapse MessageContext?

2011-06-24 Thread Afkham Azeez
I found a way to get this. Hope it is the proper way of handling this. ((Axis2MessageContext)synCtx).getAxis2MessageContext().getConfigurationContext().getProperty("synapse.endpoint.lb.algorithm.sdlbEndpointhost") On Sat, Jun 25, 2011 at 2:39 AM, Afkham Azeez wrote: > Folks, > To implement the

Re: [Carbon-dev] Stratos service aware dynamic LB

2011-06-24 Thread Afkham Azeez
This has been implemented in the 3.2.0 branch and is almost complete. I'm facing a minor issue in trying to getting the requested domain or complete URL from the Synapse MessageContext. Once that is fixed, this will be complete. On Thu, Jun 23, 2011 at 3:39 PM, Afkham Azeez wrote: > Oops, I hav

[Carbon-dev] How to get the requested hostname from the Synapse MessageContext?

2011-06-24 Thread Afkham Azeez
Folks, To implement the Service-aware LB, I need to get the requested host name. The MessageContext.getTo() method does not return the hostname part. Is there any other way to get this, perhaps from the transport headers? Thanks Azeez -- *Afkham Azeez* Director of Architecture; WSO2, Inc.; http:

[Carbon-dev] Error while starting up AS 4.1.1

2011-06-24 Thread Afkham Azeez
[2011-06-25 02:01:44,847] ERROR {org.wso2.carbon.qpid.internal.QpidServiceComponent} - Failed to start Qpid broker : File /Users/azeez/projects/wso2/org/branches/carbon/3.2.0/products/as/4.1.1/modules/distribution/product/target/wso2as-4.1.1/repository/conf/advanced/qpid-config.xml could not be fo

[Carbon-dev] Warnings while building ESB 4.0.1 & LB 1.0.1

2011-06-24 Thread Afkham Azeez
[INFO] Processing DependencySet (output=wso2esb-${pom.version}/lib/core/WEB-INF/lib) [WARNING] POM for 'org.eclipse.equinox:org.eclipse.equinox.simpleconfigurator:pom:1.0.100.v20090520-1905:compile' is invalid. Its dependencies (if any) will NOT be available to the current build. [WARNING] POM for

[Carbon-dev] ESB 4.0.1 docgen errors

2011-06-24 Thread Afkham Azeez
[INFO] Skipped "About" report, file "index.html" already exists for the English version. [ERROR] Error parsing /users/azeez/projects/wso2/org/branches/carbon/3.2.0/products/esb/4.0.1/modules/distribution/product/src/site/xdoc/proxyservices/docs/userguide.xml: line [-1] Error parsing the model: end

Re: [Carbon-dev] org.apache.synapse.wso2.feature in 3.2.0 has directory 3.2.0 but the version is synapse.version

2011-06-24 Thread Afkham Azeez
Milinda, This means our branching model where we simply create the directory based on carbon.platform.version will not work. That directory has to be created after processing the relevant POM. On Sat, Jun 25, 2011 at 12:12 AM, Kathiravelu Pradeeban wrote: > > > On Sat, Jun 25, 2011 at 12:09 AM,

Re: [Carbon-dev] org.apache.synapse.wso2.feature in 3.2.0 has directory 3.2.0 but the version is synapse.version

2011-06-24 Thread Kathiravelu Pradeeban
On Sat, Jun 25, 2011 at 12:09 AM, Afkham Azeez wrote: > Hmm... that does not work. It seems that the we have to switch to > synapse.patch.version=2.1.0.wso2v3 +1. > > > On Sat, Jun 25, 2011 at 12:05 AM, Afkham Azeez wrote: > >> I just replaced this with the standard carbon platform patch ver

Re: [Carbon-dev] org.apache.synapse.wso2.feature in 3.2.0 has directory 3.2.0 but the version is synapse.version

2011-06-24 Thread Afkham Azeez
Hmm... that does not work. It seems that the we have to switch to synapse.patch.version=2.1.0.wso2v3 On Sat, Jun 25, 2011 at 12:05 AM, Afkham Azeez wrote: > I just replaced this with the standard carbon platform patch version and > committed it. > > > On Fri, Jun 24, 2011 at 11:57 PM, Kathiravel

Re: [Carbon-dev] org.apache.synapse.wso2.feature in 3.2.0 has directory 3.2.0 but the version is synapse.version

2011-06-24 Thread Afkham Azeez
I just replaced this with the standard carbon platform patch version and committed it. On Fri, Jun 24, 2011 at 11:57 PM, Kathiravelu Pradeeban wrote: > > > On Fri, Jun 24, 2011 at 11:55 PM, Afkham Azeez wrote: > >> There is an inconsistency here. Is it intentional? >> > > That's where I got con

Re: [Carbon-dev] org.apache.synapse.wso2.feature in 3.2.0 has directory 3.2.0 but the version is synapse.version

2011-06-24 Thread Kathiravelu Pradeeban
On Fri, Jun 24, 2011 at 11:55 PM, Afkham Azeez wrote: > There is an inconsistency here. Is it intentional? > That's where I got confused too, and asked whether I should introduce "synapse.patch.version". Regards, Pradeeban. > > -- > *Afkham Azeez* > Director of Architecture; WSO2, Inc.; http:/

[Carbon-dev] org.apache.synapse.wso2.feature in 3.2.0 has directory 3.2.0 but the version is synapse.version

2011-06-24 Thread Afkham Azeez
There is an inconsistency here. Is it intentional? -- *Afkham Azeez* Director of Architecture; WSO2, Inc.; http://wso2.com Member; Apache Software Foundation; http://www.apache.org/ * ** email: **az...@wso2.com* * cell: +94 77 3320919 blog: **http://blog.afkham.org*

Re: [Carbon-dev] Meeting tomorrow morning, 10AM with all folks working on Stratos

2011-06-24 Thread Anjana Fernando
Prabath, As soon as you are finished with the UI changes, please send a separate mail on what are the features RSS have, how to use it and some screenshots of it in action. Cheers, Anjana. On Fri, Jun 24, 2011 at 6:35 PM, Prabath Abeysekera wrote: > Hi Azeez, > > All the major changes have been

Re: [Carbon-dev] [Stratos-dev] Stratos service aware dynamic LB

2011-06-24 Thread Sanjiva Weerawarana
Cool .. that'll eliminate the LB being an SPOF as well. Sanjiva. On Fri, Jun 24, 2011 at 8:46 PM, Afkham Azeez wrote: > Chamith came up with the excellent idea of having a set of service-aware > LBs, and then doing DNS round robin amongst those LBs. > > > On Fri, Jun 24, 2011 at 8:17 PM, Sanjiv

Re: [Carbon-dev] [Stratos-dev] Stratos service aware dynamic LB

2011-06-24 Thread Afkham Azeez
Chamith came up with the excellent idea of having a set of service-aware LBs, and then doing DNS round robin amongst those LBs. On Fri, Jun 24, 2011 at 8:17 PM, Sanjiva Weerawarana wrote: > +1 .. looks good! > > Sanjiva. > > On Thu, Jun 23, 2011 at 3:39 PM, Afkham Azeez wrote: > >> Oops, I have

Re: [Carbon-dev] [Stratos-dev] Stratos service aware dynamic LB

2011-06-24 Thread Sanjiva Weerawarana
+1 .. looks good! Sanjiva. On Thu, Jun 23, 2011 at 3:39 PM, Afkham Azeez wrote: > Oops, I have made a mistake; the http protocol should not be part of this > configuration; modified configuration shown below; > > > > algorithm="org.apache.synapse.endpoints.algorithms.RoundRobi

[Carbon-dev] Warning on ESB/LB startup in Carbon 3.2.0

2011-06-24 Thread Afkham Azeez
[2011-06-24 19:59:28,111] WARN - DefaultSchemaGenerator We don't support method overloading. Ignoring [saveDynamicEndpointTemplate] [2011-06-24 19:59:28,117] WARN - DefaultSchemaGenerator We don't support method overloading. Ignoring [addEndpointTemplate] -- *Afkham Azeez* Director of Architect

Re: [Carbon-dev] Compilation errors while building 3.2.1

2011-06-24 Thread Amani Soysa
On Fri, Jun 24, 2011 at 6:59 PM, Afkham Azeez wrote: > This was fixed in Carbon 3.2.0 right? We cannot do such changes for 3.2.1 > > > Yes this was done before the release to 3.2.0. > On Fri, Jun 24, 2011 at 6:53 PM, Amani Soysa wrote: > >> Hi, >> >> This is because we change package structur

Re: [Carbon-dev] Compilation errors while building 3.2.1

2011-06-24 Thread Afkham Azeez
This was fixed in Carbon 3.2.0 right? We cannot do such changes for 3.2.1 On Fri, Jun 24, 2011 at 6:53 PM, Amani Soysa wrote: > Hi, > > This is because we change package structure in org.wso2.carbon.logging > component some time back. Can you please build the org.wso2.carbon.logging > compone

Re: [Carbon-dev] Compilation errors while building 3.2.1

2011-06-24 Thread Amani Soysa
Hi, This is because we change package structure in org.wso2.carbon.logging component some time back. Can you please build the org.wso2.carbon.logging component in carbon core. It should fix this issue. Regards, Amani On Fri, Jun 24, 2011 at 6:39 PM, Supun Kamburugamuva wrote: > [INFO] Buil

[Carbon-dev] Compilation errors while building 3.2.1

2011-06-24 Thread Supun Kamburugamuva
[INFO] Building WSO2 Carbon - Logging Services [INFO]task-segment: [install] [INFO] [INFO] [incremental-build:incremental-build {execution: default}] [INFO] Verifying module descriptor ... [INFO] Pom descriptor modificatio

Re: [Carbon-dev] Meeting tomorrow morning, 10AM with all folks working on Stratos

2011-06-24 Thread Prabath Abeysekera
Hi Azeez, All the major changes have been incorporated. And Sumedha just suggested some UI changes and I'm currently working on them. Regards, On Fri, Jun 24, 2011 at 6:18 PM, Afkham Azeez wrote: > > > On Fri, Jun 24, 2011 at 11:18 AM, Hasini Yatawatte wrote: > >> *Meeting notes* >> >> *Targe

Re: [Carbon-dev] Meeting tomorrow morning, 10AM with all folks working on Stratos

2011-06-24 Thread Afkham Azeez
On Fri, Jun 24, 2011 at 11:18 AM, Hasini Yatawatte wrote: > *Meeting notes* > > *Target* > > Cloud1 setup – needs to be ready by 1st July. Days allocated for setting > up are 28,29,30th June > > Cloud2 setup – needs to be ready by 2nd July > > > *Blockers* > > BPS - 4 L1s > > ESB - 6 L1s > > Regi

Re: [Carbon-dev] [Stratos-dev] Stratos AppServer start failure

2011-06-24 Thread Afkham Azeez
Excellent! There was a setNativeName is a Mac OS X specific method. Can somebody please test the attached fix on Windows and confirm that it works? On Fri, Jun 24, 2011 at 5:36 PM, Amila Maha Arachchi wrote: > Hi, > > On Fri, Jun 24, 2011 at 5:04 PM, Afkham Azeez wrote: > >> Supun, >> Can you t

Re: [Carbon-dev] [Stratos-dev] Stratos AppServer start failure

2011-06-24 Thread Amila Maha Arachchi
Hi, On Fri, Jun 24, 2011 at 5:04 PM, Afkham Azeez wrote: > Supun, > Can you try replacing > CARBON_HOME/lib/endorsed/org.wso2.carbon.thread-3.2.1.jar with the attached > jar? > I tried this and AS started successfully with the provided jar. Thanks, AmilaM. > > > On Fri, Jun 24, 2011 at 3:34 P

Re: [Carbon-dev] Stratos AppServer start failure

2011-06-24 Thread Afkham Azeez
Supun, Can you try replacing CARBON_HOME/lib/endorsed/org.wso2.carbon.thread-3.2.1.jar with the attached jar? On Fri, Jun 24, 2011 at 3:34 PM, Supun Malinga wrote: > Hi devs, > > Stratos appserver doesn't start due to the error [1], Anyone got any idea > for the cause of this error?. > Issue re

Re: [Carbon-dev] Stratos AppServer start failure

2011-06-24 Thread Afkham Azeez
This looks like a side effect of adding the org.wso2.carbon.thread jar to endorsed directory. For the moment, remove this jar and start the products. On Fri, Jun 24, 2011 at 3:34 PM, Supun Malinga wrote: > Hi devs, > > Stratos appserver doesn't start due to the error [1], Anyone got any idea >

Re: [Carbon-dev] Stratos mashup server - mashup services are not getting deployed

2011-06-24 Thread Lalaji Sureshika
Will look into this. On Fri, Jun 24, 2011 at 2:59 PM, Yumani Ranaweera wrote: > $Subject. > Happens in a private setup which is configured using the latest 3.2.1 packs > [1]. > > [1] - http://10.100.1.43/~carbon/releases/carbon/3.2.1/latest/ > > Thanks, > Yumani > > -- > Yumani Ranaweera > WSO2,

Re: [Carbon-dev] Verifying whether the fix for CARBON-10892 needs to be applied to 3.2.1

2011-06-24 Thread Hasini Gunasinghe
On Wed, Jun 22, 2011 at 12:23 PM, Afkham Azeez wrote: > Please follow the proper strategy for adding 3.2.1 components. Please > remember that you cannot change released POMs. Noted and completed adding the above fix to 3.2.1. Following entries were added to patch-releases pom: ../../co

[Carbon-dev] Stratos mashup server - mashup services are not getting deployed

2011-06-24 Thread Yumani Ranaweera
$Subject. Happens in a private setup which is configured using the latest 3.2.1 packs [1]. [1] - http://10.100.1.43/~carbon/releases/carbon/3.2.1/latest/ Thanks, Yumani -- Yumani Ranaweera WSO2, Inc. - http://wso2.org Email : yum...@wso2.com Cell: +94 077 7795242 Blog : http://yumani.blog

[Carbon-dev] Event InMemory implementation (in memory delivery manager)

2011-06-24 Thread Amila Suriarachchi
hi, We have completed the $subject and will update the other products once it is tested with private cloud. However there are some other issue to attend as well. We have made Event Broker component directly depend on Qpid over the time. I think we need to remove this dependency and let other pro

Re: [Carbon-dev] Stratos AppServer start failure

2011-06-24 Thread Ishani Ratnayake
Hi, The same error is thrown both on ESB and GREG and refrain the server's from starting up. Please provide us with a solution to continue testing. - Ishani On Fri, Jun 24, 2011 at 3:34 PM, Supun Malinga wrote: > Hi devs, > > Stratos appserver doesn't start due to the error [1], Anyone got any

[Carbon-dev] Stratos AppServer start failure

2011-06-24 Thread Supun Malinga
Hi devs, Stratos appserver doesn't start due to the error [1], Anyone got any idea for the cause of this error?. Issue reported @ [2]. [1] Stacktrace Exception in thread "[ThreadPool Manager] - Idle Thread" java.lang.UnsatisfiedLinkError: java.lang.Thread.setNativeName(Ljava/lang/String;)V at jav

Re: [Carbon-dev] test failure in dependencies/ode/1.3.5-wso2v3/bpel-test

2011-06-24 Thread Supun Malinga
Hi Denis, Will try again and let you know. On Fri, Jun 24, 2011 at 2:12 PM, Denis Weerasiri wrote: > Hi Supun, > Still do you get this error?, I tried the 3.2.1 branch with tests (ODE) but > couldn't reproduce. > > On Thu, Jun 23, 2011 at 2:14 AM, Supun Malinga wrote: > >> Hi, >> >> Full repor

Re: [Carbon-dev] bps integration test failed 3.2.1 build

2011-06-24 Thread Supun Malinga
Hi Denis, On Fri, Jun 24, 2011 at 2:09 PM, Denis Weerasiri wrote: > > > On Thu, Jun 23, 2011 at 10:43 AM, Supun Malinga wrote: > >> Failed tests: >> testTemplate(org.wso2.bps.test.PubSubTest) >> > Hi SupunM, > Couldn't reproduce this test fail. > Please let me know if you encountered it again

Re: [Carbon-dev] test failure in dependencies/ode/1.3.5-wso2v3/bpel-test

2011-06-24 Thread Denis Weerasiri
Hi Supun, Still do you get this error?, I tried the 3.2.1 branch with tests (ODE) but couldn't reproduce. On Thu, Jun 23, 2011 at 2:14 AM, Supun Malinga wrote: > Hi, > > Full report, > Test set: org.apache.ode.test.MessageRouting20Test > >

Re: [Carbon-dev] bps integration test failed 3.2.1 build

2011-06-24 Thread Denis Weerasiri
On Thu, Jun 23, 2011 at 10:43 AM, Supun Malinga wrote: > Failed tests: > testTemplate(org.wso2.bps.test.PubSubTest) > Hi SupunM, Couldn't reproduce this test fail. Please let me know if you encountered it again. > Tests run: 8, Failures: 1, Errors: 0, Skipped: 0 > > Shutting down server... > S

Re: [Carbon-dev] [Stratos-dev] build triggered for 3.2.1 build in ec2 instance

2011-06-24 Thread Supun Malinga
On Fri, Jun 24, 2011 at 1:33 PM, Amila Maha Arachchi wrote: > > > On Fri, Jun 24, 2011 at 12:28 PM, Supun Malinga wrote: > >> Hi, >> >> On Fri, Jun 24, 2011 at 11:53 AM, Ranga Siriwardena wrote: >> >>> Hi Supun, >>> >>> On Fri, Jun 24, 2011 at 11:39 AM, Supun Malinga wrote: >>> Hi, >>>

Re: [Carbon-dev] build triggered for 3.2.1 build in ec2 instance

2011-06-24 Thread Kalpanie Wanigaratne
Hi, On Fri, Jun 24, 2011 at 11:39 AM, Supun Malinga wrote: > Hi, > > On Fri, Jun 24, 2011 at 11:06 AM, Yumani Ranaweera wrote: > >> >> On Thu, Jun 23, 2011 at 11:11 AM, Supun Malinga wrote: >> >>> Hi All, >>> >>> Some products are having integration test failures. I'll host the packs >>> anyway

Re: [Carbon-dev] [Stratos-dev] build triggered for 3.2.1 build in ec2 instance

2011-06-24 Thread Amila Maha Arachchi
On Fri, Jun 24, 2011 at 12:28 PM, Supun Malinga wrote: > Hi, > > On Fri, Jun 24, 2011 at 11:53 AM, Ranga Siriwardena wrote: > >> Hi Supun, >> >> On Fri, Jun 24, 2011 at 11:39 AM, Supun Malinga wrote: >> >>> Hi, >>> >>> On Fri, Jun 24, 2011 at 11:06 AM, Yumani Ranaweera wrote: >>> On Th

Re: [Carbon-dev] Access Logs to be available with WSO2 Load Balancer / WSO2 ESB [Carbon - 3.2.1]

2011-06-24 Thread Kathiravelu Pradeeban
Updated Synapse version 2.1.0-wso2v3 accordingly with this feature. Will discuss further with Supun and fix any issue found and keep improving. SYNAPSE-781 Thank you. Regards, Pradeeban. On Thu, Jun 23, 2011 at 12:30 AM, Kathiravelu Pradeeban wr

[Carbon-dev] Invitation: Group A: Code Review - ApacheDSUserStoreManager @ Mon Jun 27 2pm - 3pm (carbon-dev@wso2.org)

2011-06-24 Thread Hasini Gunasinghe
BEGIN:VCALENDAR PRODID:-//Google Inc//Google Calendar 70.9054//EN VERSION:2.0 CALSCALE:GREGORIAN METHOD:REQUEST BEGIN:VEVENT DTSTART:20110627T083000Z DTEND:20110627T093000Z DTSTAMP:20110624T071655Z ORGANIZER;CN=has...@wso2.com:mailto:has...@wso2.com UID:q6thnksi554gg3slfbsfd0j...@google.com ATTENDE