[Dev] Unable to access jaggeryjs documentation

2015-07-05 Thread Sabra Ossen
Hi All,

I was searching for web sockets implementation using jaggery, but I am
unable to access the jaggeryjs documentation in [1].

Could someone check and resolve this issue.

[1] http://jaggeryjs.org/documentation.jag?api=webSocket

Thanks.

-- 
Sabra Ossen http://lk.linkedin.com/in/sabraossen
Undergraduate | Department of Computer Science and Engineering
University of Moratuwa
Sri Lanka
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Unable to access jaggeryjs documentation

2015-07-05 Thread Mohamed Fawzan
Looks like it's down for everyone.

HTTP Status 500 - org.mozilla.javascript.WrappedException: Wrapped
org.jaggeryjs.scriptengine.exceptions.ScriptException:
java.io.FileNotFoundException:
/home/jaggery/newpack/jaggery-0.9.0-SNAPSHOT/apps/ROOT/config/properties/webSocket.json
(Too many open files) (//modules/loader.js#105)
--

*type* Status report

*message* *org.mozilla.javascript.WrappedException: Wrapped
org.jaggeryjs.scriptengine.exceptions.ScriptException:
java.io.FileNotFoundException:
/home/jaggery/newpack/jaggery-0.9.0-SNAPSHOT/apps/ROOT/config/properties/webSocket.json
(Too many open files) (//modules/loader.js#105)*

*description* *The server encountered an internal error that prevented it
from fulfilling this request.*
--
Apache Tomcat/7.0.34

On Sun, Jul 5, 2015 at 12:52 PM, Sabra Ossen sabra...@gmail.com wrote:

 Hi All,

 I was searching for web sockets implementation using jaggery, but I am
 unable to access the jaggeryjs documentation in [1].

 Could someone check and resolve this issue.

 [1] http://jaggeryjs.org/documentation.jag?api=webSocket

 Thanks.

 --
 Sabra Ossen http://lk.linkedin.com/in/sabraossen
 Undergraduate | Department of Computer Science and Engineering
 University of Moratuwa
 Sri Lanka

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




-- 
Mohammed Fawzan
Faculty of Engineering | UoP
+94771121195
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Jax-rs Web Service and Web Socket integration

2015-07-05 Thread Sabra Ossen
Hi Kasun,

Thanks for the clarification and the samples.

Regards.

On Sat, Jul 4, 2015 at 1:04 AM, KasunG Gajasinghe kas...@wso2.com wrote:

 Hi,

 One thing to understand is that WebSocket does not need a browser to
 function. You can directly invoke a websocket endpoint through your JAX-RS
 service. There are Java WebSocket clients available that can do this.
 Checkout Tyrus [1].

 You can also refer the AS websocket test cases for a sample. [2]

 [1] https://tyrus.java.net/documentation/1.11/user-guide.html#d0e78
 [2]
 https://github.com/wso2/product-as/blob/master/modules/integration/tests-integration/tests/src/test/java/org/wso2/appserver/integration/tests/webapp/websocket/EchoWebSocketTestCase.java#L55

 On Fri, Jul 3, 2015 at 10:15 PM, Sabra Ossen sabra...@gmail.com wrote:

 Hi All,

 I am a newbie but was able to create a basic jax-rs web service and a
 simple chat application based on web sockets.

 My requirement is to create a curl client through which I can push data
 to a browser which has web sockets enabled (the simple chat application [1]
 implemented with a curl client). I am finding it hard to understand how to
 build the connection between the jax-rs web service and the web socket
 implementation.

 I have attached a diagram of the communication process between the jax-rs
 web service and the browser based on my understanding about the domain.
 Initially I make a rest call through the curl client and send a message
 to the jax-rs web service which loads the html file containing the js file
 to connect to the web socket end point. The jax-rs web service and web
 sockets server both are deployed in the same web app in the AS

 So far I have created a jax-rs web service which returns an html file as
 response to the rest call. The code is specified below.











 *@Path(/hello)public class HelloService
 { @GET @Produces({MediaType.TEXT_HTML}) @Path(/{message}) public
 InputStream sayHello(@PathParam(message) String name) throws
 FileNotFoundException {  File file = new File(HTML_FILE_PATH);  return new
 FileInputStream(file); }}*

 But I am unable to pass the parameter (message) to the html file using by
 the above method.

 Could anyone give me any insight on $subject and also clarify my approach
 taken.

 Thanks.

 [1] https://blog.idrsolutions.com/2013/12/websockets-an-introduction/

 --
 Sabra Ossen http://lk.linkedin.com/in/sabraossen
 Undergraduate | Department of Computer Science and Engineering
 University of Moratuwa
 Sri Lanka

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




 --

 *Kasun Gajasinghe*Senior Software Engineer, WSO2 Inc.
 email: kasung AT spamfree wso2.com
 linked-in: http://lk.linkedin.com/in/gajasinghe
 blog: http://kasunbg.org






-- 
Sabra Ossen http://lk.linkedin.com/in/sabraossen
Undergraduate | Department of Computer Science and Engineering
University of Moratuwa
Sri Lanka
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Please review and merge the PR for IDENTITY-2900

2015-07-05 Thread Indunil Upeksha Rathnayake
Hi,
Please $subject. The PR[1] as the fix for Google, Yahoo and Windows Live
authenticators in the public JIRA [2].

[1] https://github.com/wso2/carbon-identity/pull/556
[2] https://wso2.org/jira/browse/IDENTITY-2900

Thanks and Regards
-- 
Indunil Upeksha Rathnayake
Software Engineer | WSO2 Inc
Emailindu...@wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Unable to access jaggeryjs documentation

2015-07-05 Thread Thusitha Thilina Dayaratne
Hi Sabra,

AFAIK jaggery still doesn't support JSR-356 based websocket implementation.
It uses tomcat specific websocket implementation.
Thanks

On Sun, Jul 5, 2015 at 1:07 PM, Mohamed Fawzan fawz...@gmail.com wrote:

 Looks like it's down for everyone.

 HTTP Status 500 - org.mozilla.javascript.WrappedException: Wrapped
 org.jaggeryjs.scriptengine.exceptions.ScriptException:
 java.io.FileNotFoundException:
 /home/jaggery/newpack/jaggery-0.9.0-SNAPSHOT/apps/ROOT/config/properties/webSocket.json
 (Too many open files) (//modules/loader.js#105)
 --

 *type* Status report

 *message* *org.mozilla.javascript.WrappedException: Wrapped
 org.jaggeryjs.scriptengine.exceptions.ScriptException:
 java.io.FileNotFoundException:
 /home/jaggery/newpack/jaggery-0.9.0-SNAPSHOT/apps/ROOT/config/properties/webSocket.json
 (Too many open files) (//modules/loader.js#105)*

 *description* *The server encountered an internal error that prevented it
 from fulfilling this request.*
 --
 Apache Tomcat/7.0.34

 On Sun, Jul 5, 2015 at 12:52 PM, Sabra Ossen sabra...@gmail.com wrote:

 Hi All,

 I was searching for web sockets implementation using jaggery, but I am
 unable to access the jaggeryjs documentation in [1].

 Could someone check and resolve this issue.

 [1] http://jaggeryjs.org/documentation.jag?api=webSocket

 Thanks.

 --
 Sabra Ossen http://lk.linkedin.com/in/sabraossen
 Undergraduate | Department of Computer Science and Engineering
 University of Moratuwa
 Sri Lanka

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




 --
 Mohammed Fawzan
 Faculty of Engineering | UoP
 +94771121195


 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




-- 
Thusitha Dayaratne
Software Engineer
WSO2 Inc. - lean . enterprise . middleware |  wso2.com

Mobile  +94712756809
Blog  alokayasoya.blogspot.com
Abouthttp://about.me/thusithathilina
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Please review and merge the PR for IDENTITY-2900

2015-07-05 Thread Indunil Upeksha Rathnayake
Hi Johann,
I'll look into those and resolved the merge conflicts.

Thanks and Regards
-- 
Indunil Upeksha Rathnayake
Software Engineer | WSO2 Inc
Emailindu...@wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Unable to access jaggeryjs documentation

2015-07-05 Thread Sabra Ossen
Hi Thusitha,

I wanted to check the documentation so that I could get an idea on forming
the uri for the web socket server endpoint. But I was able to resolve that
issue by checking the samples in AS 5.3.0 alpha.

Thanks for the clarification though.

Regards.

On Sun, Jul 5, 2015 at 1:15 PM, Thusitha Thilina Dayaratne 
thusit...@wso2.com wrote:

 Hi Sabra,

 AFAIK jaggery still doesn't support JSR-356 based websocket
 implementation. It uses tomcat specific websocket implementation.
 Thanks

 On Sun, Jul 5, 2015 at 1:07 PM, Mohamed Fawzan fawz...@gmail.com wrote:

 Looks like it's down for everyone.

 HTTP Status 500 - org.mozilla.javascript.WrappedException: Wrapped
 org.jaggeryjs.scriptengine.exceptions.ScriptException:
 java.io.FileNotFoundException:
 /home/jaggery/newpack/jaggery-0.9.0-SNAPSHOT/apps/ROOT/config/properties/webSocket.json
 (Too many open files) (//modules/loader.js#105)
 --

 *type* Status report

 *message* *org.mozilla.javascript.WrappedException: Wrapped
 org.jaggeryjs.scriptengine.exceptions.ScriptException:
 java.io.FileNotFoundException:
 /home/jaggery/newpack/jaggery-0.9.0-SNAPSHOT/apps/ROOT/config/properties/webSocket.json
 (Too many open files) (//modules/loader.js#105)*

 *description* *The server encountered an internal error that prevented
 it from fulfilling this request.*
 --
 Apache Tomcat/7.0.34

 On Sun, Jul 5, 2015 at 12:52 PM, Sabra Ossen sabra...@gmail.com wrote:

 Hi All,

 I was searching for web sockets implementation using jaggery, but I am
 unable to access the jaggeryjs documentation in [1].

 Could someone check and resolve this issue.

 [1] http://jaggeryjs.org/documentation.jag?api=webSocket

 Thanks.

 --
 Sabra Ossen http://lk.linkedin.com/in/sabraossen
 Undergraduate | Department of Computer Science and Engineering
 University of Moratuwa
 Sri Lanka

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




 --
 Mohammed Fawzan
 Faculty of Engineering | UoP
 +94771121195


 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




 --
 Thusitha Dayaratne
 Software Engineer
 WSO2 Inc. - lean . enterprise . middleware |  wso2.com

 Mobile  +94712756809
 Blog  alokayasoya.blogspot.com
 Abouthttp://about.me/thusithathilina




-- 
Sabra Ossen http://lk.linkedin.com/in/sabraossen
Undergraduate | Department of Computer Science and Engineering
University of Moratuwa
Sri Lanka
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Please review and merge the PR for IDENTITY-2900

2015-07-05 Thread Johann Nallathamby
The PR cannot be merged automatically. There were some changes pushed
yesterday. Can you look into those and fix the PR ?

On Sun, Jul 5, 2015 at 1:21 PM, Indunil Upeksha Rathnayake indu...@wso2.com
 wrote:

 Hi,
 Please $subject. The PR[1] as the fix for Google, Yahoo and Windows Live
 authenticators in the public JIRA [2].

 [1] https://github.com/wso2/carbon-identity/pull/556
 [2] https://wso2.org/jira/browse/IDENTITY-2900

 Thanks and Regards
 --
 Indunil Upeksha Rathnayake
 Software Engineer | WSO2 Inc
 Emailindu...@wso2.com




-- 
Thanks  Regards,

*Johann Dilantha Nallathamby*
Technical Lead  Product Lead of WSO2 Identity Server
Integration Technologies Team
WSO2, Inc.
lean.enterprise.middleware

Mobile - *+9476950*
Blog - *http://nallaa.wordpress.com http://nallaa.wordpress.com*
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [GSoC-2015] Proposal2 : Siddhi Editor for WSO2 CEP

2015-07-05 Thread Sriskandarajah Suhothayan
The both model you are progressing are not scalable, and error prone. If we
make any change to the grammar then we have to also fix that in several
places.

Isn't there any other alternatives?

Suho

On Tue, Jun 30, 2015 at 4:59 AM, Tharindu Munasinghe 
tharindu...@cse.mrt.ac.lk wrote:

 Hi Mentors,

 I have been working on the context-aware auto completion feature. There is
 a function called getExpectedTokensInCurrentRule() in Antlr4 API which
 returns the possible next tokens based on the current rule context. I have
 tried to use that function to get the possible tokens, but as I can see
 this function will only work with valid input that can be parsed without
 errors. While the query is incomplete (while user is typing the query) it
 will only generate a generic error without returning any parsing
 information.

 I have two alternatives in mind to overcome the issue .
 1. create set of regular expressions to match the last input token and
 present a set of predefined suggestion lists.
 2. create token graph similar to following diagram and suggest the
 children of the current token



 ​
 I would be grateful if you can provide feedback regarding which method to
 implement. Any alternative suggestions are highly appreciated.


 On 15 June 2015 at 09:36, Tharindu Munasinghe tharindu...@cse.mrt.ac.lk
 wrote:

 Hi Mentors,

 I have almost completed the implementation of syntax and semantic error
 highlighting mechanism. Now the errors are listed in appropriate
 lines while user is writing the query . Number of server calls are reduced
 significantly , but still more optimizations can be done on this.

 This week I will be working on the auto completion feature , current
 editor does have all-text auto completion. But I am trying to reduce the
 suggestion list based on the context-awareness.

 Can we have a meeting in this week to verify the work I have already done
 and to discuss the proceedings of this project ?.

 On 11 June 2015 at 08:08, Tharindu Munasinghe tharindu...@cse.mrt.ac.lk
 wrote:

 Hi Suho,


 *Weekly Progress Update*

 I have been working on syntax and semantic error highlighting
 mechanism. Client side syntax checking is almost completed and I managed to
 integrate new editor with CEP 4.0 .Once there are no syntax errors , the
 query will be submitted to the server side Siddhi compiler for semantic
 error checking .

 Since the syntax errors are checked in client side, only the semantic
 error messages will be getting from the server . But there was an issue in
 displaying the error messages since some of the semantic error messages do
 not contain the line numbers.

 To overcome the issue , I divided the query into top level parser rules
 ( define_stream, execution_element, ...) and send the code to the server in
 a constructive manner . So that the line which raise the error message can
 be identified.

 suppose the code is similar to this,

1. define stream foo(a int ,b string); //define_stream : at line
1-- A
2.
3. define stream foo(a int ,b int); //define_stream : at line 3 ---B
4.
5. from foo//execution_element : at line
5 C
6. select a
7. insert into bar;


 If the code has no syntax errors then,it will be submitted to server as
 follows,
 A , A+B , A+B+C

 Since this feature can't be demonstrated in github pages. It would
 be great if we can meet and verify the progress before sending the PR.

 Thanks

 On 3 June 2015 at 16:06, Sriskandarajah Suhothayan s...@wso2.com
 wrote:

 Thanks for the update, yes keep us posted

 Suho

 On Wed, Jun 3, 2015 at 9:26 AM, Tharindu Munasinghe 
 tharindu...@cse.mrt.ac.lk wrote:

 Hi Suho

 I am working on the client side syntax checker (improving the error
 messages) and integrating the new editor with CEP. As soon as I
 complete them I will review the work with you before sending  PRs .
 Sorry for delay in updating the progress. I will update you frequently
 from now onward.

 Thanks,

 On 2 June 2015 at 21:06, Sriskandarajah Suhothayan s...@wso2.com
 wrote:
  Hi Tharindu
 
  Your work looks good, do you have any updates ?
 
  Suho
 
  On Sun, May 24, 2015 at 9:54 AM, Mohanadarshan Vivekanandalingam
  mo...@wso2.com wrote:
 
 
 
  On Wed, May 20, 2015 at 2:27 AM, Tharindu Munasinghe
  tharindu...@cse.mrt.ac.lk wrote:
 
  Hi Mentors,
 
 
  Hi Tharindu,
 
 
 
  I have started the initial implementation of client-side features
 like
  syntax highlighting , code completion and code-snippets. I have
 tried both
  ACE editor as well as Code-mirror libraries but according to my
 observation,
  ACE editor can easily be customized for domain specific languages.
 
  Current implementation [1] is based on ACE library. The progress
 of the
  implementation as follows,
 
  Syntax Highlighting :almost completed
 
  Code completion :
Currently the keywords,annotations, and locally defined
  identifiers can be suggested.But the suggestion list still need to
 be
  optimized based on 

Re: [Dev] Which Git Repository belongs, org.wso2.carbon.transport.mgt.feature

2015-07-05 Thread Lakmali Baminiwatta
Hi Gihan,

On 20 March 2015 at 09:01, Gihan Anuruddha gi...@wso2.com wrote:



 On Fri, Mar 20, 2015 at 8:23 AM, Dhanuka Ranasinghe dhan...@wso2.com
 wrote:

 while building product-apim , I couldn't find Git repos for following
 features. Could you please help me to find these.

 org.wso2.carbon.transport.mgt.feature
 org.wso2.carbon.transport.mail.feature
 org.wso2.carbon.xfer.feature
 org.wso2.carbon.mex.feature
 org.wso2.carbon.mediation.security.server
 org.wso2.carbon.statistics.transport.feature
 org.wso2.carbon.ec2.client.feature
 org.wso2.carbon.registry.extensions.feature
 org.wso2.carbon.caching.server.feature
 org.wso2.carbon.jaxws.webapp.mgt.server.feature
 org.wso2.carbon.jaxws.webapp.mgt.feature
 org.wso2.carbon.bam.
 ​​
 message.tracer.handler.feature

 ​use​
  ​org.wso2.carbon.analytics​.
 ​
 message.tracer.handler.feature in carbon-analytics repo


Don't we have a carbon 4.4.0 based released version of
org.wso2.carbon.analytics​.
​
message.tracer.handler.feature? Latest released version[1], seems to be
carbon 4.3.0 based.

[1] https://github.com/wso2/carbon-analytics/blob/v1.0.2/pom.xml

Thanks,
Lakmali



 org.wso2.carbon.mediator.bam.feature

 *Dhanuka Ranasinghe*

 Senior Software Engineer
 WSO2 Inc. ; http://wso2.com
 lean . enterprise . middleware

 phone : +94 715381915

 On Thu, Mar 19, 2015 at 5:58 PM, Dhanuka Ranasinghe dhan...@wso2.com
 wrote:

 No they have told that it has been removed from carbon-commons. It's not
 in here [1].

 [1]  https://github.com/wso2/carbon-commons/blob/4.3.6/pom.xml

 Cheers,

 *Dhanuka Ranasinghe*

 Senior Software Engineer
 WSO2 Inc. ; http://wso2.com
 lean . enterprise . middleware

 phone : +94 715381915

 On Thu, Mar 19, 2015 at 5:51 PM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Hi Dhanuka,

 Isnt it in carbon-commons ?
 In  [1] I can see org.wso2.carbon.transport.mgt.feature
 If so, I think carbon team manages this.


 [1] -
 https://github.com/wso2/carbon-commons/tree/master/features/transport-mgt

 On Thu, Mar 19, 2015 at 5:43 PM, Dhanuka Ranasinghe dhan...@wso2.com
 wrote:

 Hi,

 When I tried to build product-apim with carbon 4.4.0 I am getting
 following error. So could you please let us know, exactly which Git
 repository has/maintain  org.wso2.carbon.transport.mgt.feature

 [ERROR] Failed to execute goal
 org.wso2.maven:carbon-p2-plugin:1.5.3:p2-repo-gen (2-p2-repo-generation) 
 on
 project am-p2-profile: Error occured when processing the Feature Artifact:
 org.wso2.carbon.commons:org.wso2.carbon.transport.mgt.feature:4.3.6: 
 ERROR:
 Could not find artifact
 org.wso2.carbon.commons:org.wso2.carbon.transport.mgt.feature:zip:4.3.6 in
 wso2-nexus (http://maven.wso2.org/nexus/content/groups/wso2-public/)

 Cheers,
 *Dhanuka Ranasinghe*

 Senior Software Engineer
 WSO2 Inc. ; http://wso2.com
 lean . enterprise . middleware

 phone : +94 715381915

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com




 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




 --
 W.G. Gihan Anuruddha
 Senior Software Engineer | WSO2, Inc.
 M: +94772272595

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




-- 
Lakmali Baminiwatta
 Senior Software Engineer
WSO2, Inc.: http://wso2.com
lean.enterprise.middleware
mobile:  +94 71 2335936
blog : lakmali.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] How Do I Making API Calls from jaggery js

2015-07-05 Thread NIFRAS ISMAIL
Hi thusitha,

for v1.1 authentication required. fine
I have created those stuff and getting the API key API secret .

%
var url  = https://api.twitter.com/1.1/statuses/user_timeline.json;;
var data = { include_entities:true,include_rts:true,screen_name:wso2,count:1
};
var twitterJson = get(url, data ,json);
print(twitterJson);
%

Now how do i include this into data which keywords i used in data.


Regards.
*M. Nifras Ismail*
[image: LinkedIn] http://lk.linkedin.com/pub/nifras-ismail/54/343/94b



On Mon, Jul 6, 2015 at 10:28 AM, Thusitha Thilina Dayaratne 
thusit...@wso2.com wrote:

 Hi Nifras,

 It seems that the REST API v1, that you are trying to call is no longer
 active. Check the error message that you get when you click on the url.

 {errors:[{message:The Twitter REST API v1 is no longer active.
 Please migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview
 .,code:64}]}

 You may have to use API v1.1 as it suggests.

 Thanks

 On Mon, Jul 6, 2015 at 10:19 AM, NIFRAS ISMAIL nifrasism...@gmail.com
 wrote:

 Hi there,

 I need to make an api call to twitter using jeggery js. I have to filter
 out the tweets of a person by #tags to anysis his pattern. I have plan to
 use jaggery js. It's pretty much comfortable for me.

 How do i make an API call from jeggery


1. %
2. var url = https://api.twitter.com/1/statuses/user_timeline.json;;
3. var data = { include_entities:true,include_rts:true,screen_name:
wso2,count:1 };
4. var twitterJson = get(url, data ,json);
5. print(twitterJson);
6. %

 This snapshot is given by the documentation, but there its noot work give
 http 500 error.

 Please redirect me to the correct person or help me!

 Regards.
 *M. Nifras Ismail*
 [image: LinkedIn] http://lk.linkedin.com/pub/nifras-ismail/54/343/94b



 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




 --
 Thusitha Dayaratne
 Software Engineer
 WSO2 Inc. - lean . enterprise . middleware |  wso2.com

 Mobile  +94712756809
 Blog  alokayasoya.blogspot.com
 Abouthttp://about.me/thusithathilina


___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Orbit] Please review the PR for Spark 1.4.0 wso2v2

2015-07-05 Thread Niranda Perera
Thanks Nira! :-)

@Maheshika,
could you please release the following bundles

   - spark-core_2.10/1.4.0.wso2v2
   - typesafe-config/1.2.1.wso2v1

rgds

On Mon, Jul 6, 2015 at 10:31 AM, Niranjan Karunanandham niran...@wso2.com
wrote:

 Hi Niranda,

 I have merge the PR.

 Regards,
 Nira

 On Mon, Jul 6, 2015 at 10:19 AM, Niranjan Karunanandham niran...@wso2.com
  wrote:

 Hi Niranda,

 I will look into this.

 Regards,
 Nira

 On Mon, Jul 6, 2015 at 10:15 AM, Niranda Perera nira...@wso2.com wrote:

 Hi Sameera,

 Could you please review this PR [1] for wso2v2 of the Spark 1.4.0.

 there were some problems in the initial obit bundle with its private
 packages.

 now all the unrelated private packages are removed. additionally, all
 the unnecessary config files and binaries are also removed.

 this upgrades spark-core and spark-sql from 1.3.0 to 1.4.0. this upgrade
 is done, because 1.4.0 has some important bug fixes related to spark
 clustering and we need to include these in the DAS (BAM) 3.0.0 beta

 it also adds also adds com.typesafe.config.wso2v1
 this is already an OSGI bundle. but in runtime it requests for a config
 file, which is not provided in the bundle. so, it had to be included inside
 the bundle.

 cheers

 [1] *https://github.com/wso2/orbit/pull/109
 https://github.com/wso2/orbit/pull/109*

 --
 *Niranda Perera*
 Software Engineer, WSO2 Inc.
 Mobile: +94-71-554-8430
 Twitter: @n1r44 https://twitter.com/N1R44
 https://pythagoreanscript.wordpress.com/




 --

 *Niranjan Karunanandham*
 Senior Software Engineer - WSO2 Inc.
 WSO2 Inc.: http://www.wso2.com




 --

 *Niranjan Karunanandham*
 Senior Software Engineer - WSO2 Inc.
 WSO2 Inc.: http://www.wso2.com




-- 
*Niranda Perera*
Software Engineer, WSO2 Inc.
Mobile: +94-71-554-8430
Twitter: @n1r44 https://twitter.com/N1R44
https://pythagoreanscript.wordpress.com/
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [Orbit] Please review the PR for Spark 1.4.0 wso2v2

2015-07-05 Thread Niranda Perera
Hi Sameera,

Could you please review this PR [1] for wso2v2 of the Spark 1.4.0.

there were some problems in the initial obit bundle with its private
packages.

now all the unrelated private packages are removed. additionally, all the
unnecessary config files and binaries are also removed.

this upgrades spark-core and spark-sql from 1.3.0 to 1.4.0. this upgrade is
done, because 1.4.0 has some important bug fixes related to spark
clustering and we need to include these in the DAS (BAM) 3.0.0 beta

it also adds also adds com.typesafe.config.wso2v1
this is already an OSGI bundle. but in runtime it requests for a config
file, which is not provided in the bundle. so, it had to be included inside
the bundle.

cheers

[1] *https://github.com/wso2/orbit/pull/109
https://github.com/wso2/orbit/pull/109*

-- 
*Niranda Perera*
Software Engineer, WSO2 Inc.
Mobile: +94-71-554-8430
Twitter: @n1r44 https://twitter.com/N1R44
https://pythagoreanscript.wordpress.com/
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] How Do I Making API Calls from jaggery js

2015-07-05 Thread NIFRAS ISMAIL
Hi there,

I need to make an api call to twitter using jeggery js. I have to filter
out the tweets of a person by #tags to anysis his pattern. I have plan to
use jaggery js. It's pretty much comfortable for me.

How do i make an API call from jeggery


   1. %
   2. var url = https://api.twitter.com/1/statuses/user_timeline.json;;
   3. var data = { include_entities:true,include_rts:true,screen_name:wso2
   ,count:1 };
   4. var twitterJson = get(url, data ,json);
   5. print(twitterJson);
   6. %

This snapshot is given by the documentation, but there its noot work give
http 500 error.

Please redirect me to the correct person or help me!

Regards.
*M. Nifras Ismail*
[image: LinkedIn] http://lk.linkedin.com/pub/nifras-ismail/54/343/94b
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Orbit] Please review the PR for Spark 1.4.0 wso2v2

2015-07-05 Thread Niranjan Karunanandham
Hi Niranda,

I will look into this.

Regards,
Nira

On Mon, Jul 6, 2015 at 10:15 AM, Niranda Perera nira...@wso2.com wrote:

 Hi Sameera,

 Could you please review this PR [1] for wso2v2 of the Spark 1.4.0.

 there were some problems in the initial obit bundle with its private
 packages.

 now all the unrelated private packages are removed. additionally, all the
 unnecessary config files and binaries are also removed.

 this upgrades spark-core and spark-sql from 1.3.0 to 1.4.0. this upgrade
 is done, because 1.4.0 has some important bug fixes related to spark
 clustering and we need to include these in the DAS (BAM) 3.0.0 beta

 it also adds also adds com.typesafe.config.wso2v1
 this is already an OSGI bundle. but in runtime it requests for a config
 file, which is not provided in the bundle. so, it had to be included inside
 the bundle.

 cheers

 [1] *https://github.com/wso2/orbit/pull/109
 https://github.com/wso2/orbit/pull/109*

 --
 *Niranda Perera*
 Software Engineer, WSO2 Inc.
 Mobile: +94-71-554-8430
 Twitter: @n1r44 https://twitter.com/N1R44
 https://pythagoreanscript.wordpress.com/




-- 

*Niranjan Karunanandham*
Senior Software Engineer - WSO2 Inc.
WSO2 Inc.: http://www.wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] How Do I Making API Calls from jaggery js

2015-07-05 Thread Thusitha Thilina Dayaratne
Hi Nifras,

It seems that the REST API v1, that you are trying to call is no longer
active. Check the error message that you get when you click on the url.

 {errors:[{message:The Twitter REST API v1 is no longer active. Please
 migrate to API v1.1. https://dev.twitter.com/docs/api/1.1/overview
 .,code:64}]}

You may have to use API v1.1 as it suggests.

Thanks

On Mon, Jul 6, 2015 at 10:19 AM, NIFRAS ISMAIL nifrasism...@gmail.com
wrote:

 Hi there,

 I need to make an api call to twitter using jeggery js. I have to filter
 out the tweets of a person by #tags to anysis his pattern. I have plan to
 use jaggery js. It's pretty much comfortable for me.

 How do i make an API call from jeggery


1. %
2. var url = https://api.twitter.com/1/statuses/user_timeline.json;;
3. var data = { include_entities:true,include_rts:true,screen_name:
wso2,count:1 };
4. var twitterJson = get(url, data ,json);
5. print(twitterJson);
6. %

 This snapshot is given by the documentation, but there its noot work give
 http 500 error.

 Please redirect me to the correct person or help me!

 Regards.
 *M. Nifras Ismail*
 [image: LinkedIn] http://lk.linkedin.com/pub/nifras-ismail/54/343/94b



 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




-- 
Thusitha Dayaratne
Software Engineer
WSO2 Inc. - lean . enterprise . middleware |  wso2.com

Mobile  +94712756809
Blog  alokayasoya.blogspot.com
Abouthttp://about.me/thusithathilina
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Orbit] Please review the PR for Spark 1.4.0 wso2v2

2015-07-05 Thread Niranjan Karunanandham
Hi Niranda,

I have merge the PR.

Regards,
Nira

On Mon, Jul 6, 2015 at 10:19 AM, Niranjan Karunanandham niran...@wso2.com
wrote:

 Hi Niranda,

 I will look into this.

 Regards,
 Nira

 On Mon, Jul 6, 2015 at 10:15 AM, Niranda Perera nira...@wso2.com wrote:

 Hi Sameera,

 Could you please review this PR [1] for wso2v2 of the Spark 1.4.0.

 there were some problems in the initial obit bundle with its private
 packages.

 now all the unrelated private packages are removed. additionally, all the
 unnecessary config files and binaries are also removed.

 this upgrades spark-core and spark-sql from 1.3.0 to 1.4.0. this upgrade
 is done, because 1.4.0 has some important bug fixes related to spark
 clustering and we need to include these in the DAS (BAM) 3.0.0 beta

 it also adds also adds com.typesafe.config.wso2v1
 this is already an OSGI bundle. but in runtime it requests for a config
 file, which is not provided in the bundle. so, it had to be included inside
 the bundle.

 cheers

 [1] *https://github.com/wso2/orbit/pull/109
 https://github.com/wso2/orbit/pull/109*

 --
 *Niranda Perera*
 Software Engineer, WSO2 Inc.
 Mobile: +94-71-554-8430
 Twitter: @n1r44 https://twitter.com/N1R44
 https://pythagoreanscript.wordpress.com/




 --

 *Niranjan Karunanandham*
 Senior Software Engineer - WSO2 Inc.
 WSO2 Inc.: http://www.wso2.com




-- 

*Niranjan Karunanandham*
Senior Software Engineer - WSO2 Inc.
WSO2 Inc.: http://www.wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [GSoC 2015] New SVG Layout for Visual Composer Siddhi Lang.

2015-07-05 Thread Mohamed Fawzan
Hi Srinath,


I have removed the Drawing feature as I have encountered a bug, Looks like
the 'click' event in d3 automatically triggers a 'drag' event as well. I
have tried to set a Flag and resolve the issue. But it seems that only
Opera (Web Browser) has the issue. Chrome and FF works fine. I will update
the draw feature and notify.

-Regards



On Mon, Jul 6, 2015 at 8:25 AM, Srinath Perera srin...@wso2.com wrote:

 I tried to draw, but failed. Can you do a small screencast on how to draw
 and connect.

 On current palette, everything looks same, we need to indicate queries are
 different than other operators.

 --Srinath

 On Fri, Jul 3, 2015 at 8:39 PM, Mohamed Fawzan fawz...@gmail.com wrote:

 Hi Srinath,

 As per our discussion, I have modified the UI[1] http://vc.mutexlk.com.
 here is the list of updated features,

 1. I have added an operator to compose queries. (icon : query).
 2. Other operators can be dropped to query boxes(cannot dropped outside
 the query boxes), Also it can only be dragged inside query boxes.
 3. The query boxes itself can be dragged with operators.
 4  IO Streams were re drawn.


 Please check  comment on it so that I can proceed with making the Graph.
 you can find the repo here [2]
 https://github.com/Fawzanm/Extensible-Visual-Composer-Siddhi-Language


 [1] - http://vc.mutexlk.com
 [2] -
 https://github.com/Fawzanm/Extensible-Visual-Composer-Siddhi-Language

 -Regards



 On Tue, Jun 23, 2015 at 6:51 PM, Mohamed Fawzan fawz...@gmail.com
 wrote:

 Hi Srinath,

 I have found a workaround for connecting elements with click  click. I
 will update the demo soon with the (progress of) improvements we have
 discussed in the meeting on 19th.  .

 -Regards

 On Mon, Jun 15, 2015 at 5:13 AM, Mohamed Fawzan fawz...@gmail.com
 wrote:

 Hi Srinath.

 I have added support for large file names in the streams [1]
 http://vc.mutexlk.com/dashboard.html  by showing the part of the
 stream name in the rectangle element. When you *hover *
 you can see the* full stream name. *Also when the user drag the
 element to the canvas, he get the same behavior their.

 Currently I'm working on connecting the elements. It is bit difficult.
 But I am close enough. I think i can present it by this week.

 -Regards

 [1] - http://vc.mutexlk.com/dashboard.html

 On Fri, Jun 12, 2015 at 4:29 PM, Mohamed Fawzan fawz...@gmail.com
 wrote:

 Thanks.


 On Friday, June 12, 2015, Srinath Perera srin...@wso2.com wrote:

 yes that is OK.

 On Fri, Jun 12, 2015 at 4:25 PM, Mohamed Fawzan fawz...@gmail.com
 wrote:

 Yes. It is a good time. I can take the 6.00AM Train from kandy. Can
 reach colombo by 10.00 i guess. Is it o?


 On Friday, June 12, 2015, Mohamed Fawzan fawz...@gmail.com wrote:

 Understood. Thanks Srinath.

 On Friday, June 12, 2015, Srinath Perera srin...@wso2.com wrote:

 Input and output streams are the same thing. Sometimes, a stream
 can be both inputs and outputs E.g. Stream 2.

 [image: Inline image 1]

 On Thu, Jun 11, 2015 at 1:53 PM, Mohamed Fawzan fawz...@gmail.com
  wrote:

 Hi Srinath,

 Can you please help me to understand the streams? I mean the 
 InputOutputNode
 in.


 InputOutputNode : {

 connectionName : 'StockQuoteStream',

 connectionType :'Stream',

 connectionTypeDetails : 'para1:string, para2:int'

 }


 In the layout[1]  http://vc.mutexlk.com/dashboard.htmlI have 
 considered Input  Output streams as separate things. Is it correct 
 ? or else are they belong to same category?


 -Regards


 [1]-http://vc.mutexlk.com/dashboard.html


 On Thu, Jun 11, 2015 at 10:53 AM, Mohamed Fawzan 
 fawz...@gmail.com wrote:

 Hi,



 On Thu, Jun 11, 2015 at 8:04 AM, Srinath Perera 
 srin...@wso2.com wrote:

 Need names inside canvas as well. ( need to handle large names).

 What are the children of streams? attributes?

 I was planning to categorize streams there. Please see the
 updated names here[1]. http://vc.mutexlk.com/dashboard.html





 I would rather connect streams and operators, then click on
 operator and pick which attribute/ or attributes you use. If so I 
 would not
 show children against streams.

 On Thu, Jun 11, 2015 at 6:52 AM, Mohamed Fawzan 
 fawz...@gmail.com wrote:


 Hi Srinath,

 I have just added the streams names inside the rectangles [1]
 http://vc.mutexlk.com/dashboard.html . Please check and
 comment on it.

 -Regards

 [1] - http://vc.mutexlk.com/dashboard.html

 On Wed, Jun 10, 2015 at 5:55 PM, Mohamed Fawzan 
 fawz...@gmail.com wrote:


 On Wed, Jun 10, 2015 at 5:52 PM, Srinath Perera 
 srin...@wso2.com wrote:

 We can do it several ways

 1. have small connectors showing against each node ( Stream/
 Operator), which you can click and drag to connector in other 
 node.


 +1, I had the same idea on my mind. I will work on that, Feel
 free to suggest other options as well.



 2. Second option drop into other one as you mention.

 I think #2 run into a problem if you want to connect two
 streams to same operator ( e.g. Join). So I prefer #1. But open 
 for 

Re: [Dev] [Architecture] Developer Studio 3.8.0 M5 Released!

2015-07-05 Thread Shafreen Anfar
On Mon, Jul 6, 2015 at 6:19 AM, Shafreen Anfar shafr...@wso2.com wrote:

 Hi Isuru et al,

 On Mon, Jun 22, 2015 at 8:56 AM, Isuru Perera isu...@wso2.com wrote:

 Thanks Harshana!

 When I checked last time, Developer Studio had some dependencies, which
 were not compatible with Java 8. I don't remember the exact issues, but I
 couldn't run Developer Studio 3.7.1 on Eclipse Kepler with Java 8. I used
 Eclipse Kepler for Java 8 [1].

 So, I just want to confirm.


 Previous versions of DevStudio did not support Java 8. Mainly because of
 the changes in the Xpath classes that are introduced with Java 8.
 Therefore, whenever you add a mediator with some Xpath, it did not work.

 Does the new version of DevStudio support Java 8 ?


Actually, what I wanted to know is, with the new version, is this problem
resolved :) ?





 [1] https://wiki.eclipse.org/JDT/Eclipse_Java_8_Support_For_Kepler

 On Mon, Jun 22, 2015 at 11:15 AM, Harshana Eranga Martin 
 harshan...@gmail.com wrote:

 Hi Isuru,

 Luna supports JDK 8. Thus the Dev Studio.

 Thanks and Regards,
 Harshana
 --
 Harshana Eranga Martin

 Committer - Eclipse ECF: http://www.eclipse.org/ecf/
 Blog: http://harshana05.blogspot.com
 Profile: https://www.google.com/profiles/harshana05

 On 22 June 2015 at 13:37, Isuru Perera isu...@wso2.com wrote:

 Thanks Sohani!

 Will DevS 3.8.0 run on Java 8? Since Eclipse Luna is working on Java 8
 [1], I'm hoping DevS 3.8.0 will also run smoothly on Java 8. Or do we still
 need Java 7 to run DevS?

 [1]
 https://www.eclipse.org/community/eclipse_newsletter/2014/june/article1.php

 On Thu, Jun 18, 2015 at 4:43 PM, Sohani Weerasinghe soh...@wso2.com
 wrote:

 Hi Isuru,

 Yes, DevS 3.8.0 runs on top of  Eclipse Luna SR2.

 Thanks,
 Sohani

 Sohani Weerasinghe
 Software Engineer
 WSO2, Inc: http://wso2.com

 Mobile  : +94 716439774
 Blog :http://christinetechtips.blogspot.com/
 Twitter  : https://twitter.com/sohanichristine

 On Thu, Jun 18, 2015 at 4:07 PM, Isuru Perera isu...@wso2.com wrote:

 Does this support Eclipse Luna SR2, which was released on Feb 25,
 2015 [1]?

 When I asked last time [2] in dev@, I was told that Developer Studio
 will support only SR2 releases.

 Thanks!

 [1] http://wiki.eclipse.org/Simultaneous_Release
 [2] [Dev] [Architecture] Developer Studio 3.7.0 RC 1 Released!
 http://markmail.org/message/4rldazvea4muuj4s

 On Thu, Jun 18, 2015 at 1:07 PM, Sohani Weerasinghe soh...@wso2.com
 wrote:

 Hi All,

 We have WSO2 Developer Studio 3.8.0 M5 ready to be downloaded at [1].

 This release includes following features, tasks, sub-tasks and bug
 fixes.
 Features:

- [TOOLS-2848 https://wso2.org/jira/browse/TOOLS-2848] - DevS
support for PublishEvent mediator

 Tasks:

- [TOOLS-2830 https://wso2.org/jira/browse/TOOLS-2830] -
Create dashboard entry for Inbound endpoint
- [TOOLS-2867 https://wso2.org/jira/browse/TOOLS-2867] - Removing
the old ESB Editor
- [TOOLS-2875 https://wso2.org/jira/browse/TOOLS-2875] - Apply
security for BPEL process

 Sub-tasks:

- [TOOLS-2874 https://wso2.org/jira/browse/TOOLS-2874] - XML
comment support - utilizing the support given from ESB side for 
 comments

 Bugs:

- [TOOLS-2750 https://wso2.org/jira/browse/TOOLS-2750] -
Display the selected DSS project in Data Service creation wizard
- [TOOLS-2753 https://wso2.org/jira/browse/TOOLS-2753] -
Project Wizard doesn't get closed when importing an already existing 
 data
service
- [TOOLS-2866 https://wso2.org/jira/browse/TOOLS-2866] -
Rename  WebContent  directory support for exploded webapp projects.


 Your feedback is most welcome. Please report issues at [2] and
 specify the affect version as 3.8.0 M5.

 [1] *https://svn.wso2.org/repos/wso2/scratch/DevS/
 https://svn.wso2.org/repos/wso2/scratch/DevS/*
 [2] https://wso2.org/jira/browse/TOOLS

 Thanks and Regards,
 WSO2 Developer Studio Team
 Sohani Weerasinghe
 Software Engineer
 WSO2, Inc: http://wso2.com

 Mobile  : +94 716439774
 Blog :http://christinetechtips.blogspot.com/
 Twitter  : https://twitter.com/sohanichristine

 ___
 Architecture mailing list
 architect...@wso2.org
 https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture




 --
 Isuru Perera
 Associate Technical Lead | WSO2, Inc. | http://wso2.com/
 Lean . Enterprise . Middleware

 about.me/chrishantha
 Contact: +IsuruPereraWSO2
 https://www.google.com/+IsuruPereraWSO2/about

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev





 --
 Isuru Perera
 Associate Technical Lead | WSO2, Inc. | http://wso2.com/
 Lean . Enterprise . Middleware

 about.me/chrishantha
 Contact: +IsuruPereraWSO2
 https://www.google.com/+IsuruPereraWSO2/about

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev





 --
 Isuru Perera
 Associate Technical Lead | WSO2, Inc. 

Re: [Dev] [GSoC-2015] Proposal 6- AppFactory Command Line Tool

2015-07-05 Thread Fathima Dilhasha
Hi,

*Progress Update*

I have added API calls for listing applications and versions to the CLI
tool. I have also added error handling of responses. I have to complete the
flag extractor and continue to other commands.

You can find the git repository at [1]
https://github.com/Dilhasha/AppFacCLI
Executables can be found at [2]
https://drive.google.com/folderview?id=0B5jf9n7hxy8YfjJ4NnFWY0pXYklIMkFfNnNHSFF5bXB3UjE2eUZjdVJacGM1TDc3Vk4wY1Eusp=sharing

[1] https://github.com/Dilhasha/AppFacCLI
[2]
https://drive.google.com/folderview?id=0B5jf9n7hxy8YfjJ4NnFWY0pXYklIMkFfNnNHSFF5bXB3UjE2eUZjdVJacGM1TDc3Vk4wY1Eusp=sharing

Please check these out and provide your feedback and suggestions on these.

Thanks.
Regards,
Dilhasha

Fathima Dilhasha Nazeer http://lk.linkedin.com/in/dilhasha/
(M.N.F.Dilhasha)
Undergraduate | Department of Computer Science and Engineering
University of Moratuwa
Sri Lanka

On Mon, Jun 29, 2015 at 10:26 PM, Fathima Dilhasha dilhasha@gmail.com
wrote:

 Hi,

 As per the discussion with Dimuthu, following are the suggested commands
 to be implemented as next step.

 1. *Queue a build*

 Let user wait after a triggerBuild command and retrieve  show the build
 logs to from jenkins. Check for the Current build id and compare that to
 see if build successful. If successful, let user know that it is successful.

 2. Show a* list of applications* of user

 3. Show a* list of versions* of an application

 4. Allow user to run *triggerBuild in background *i.e. without
 recieving any success or failure notifications and logs.

 Thanks.
 Regards,
 Dilhasha


 Fathima Dilhasha Nazeer http://lk.linkedin.com/in/dilhasha/
 (M.N.F.Dilhasha)
 Undergraduate | Department of Computer Science and Engineering
 University of Moratuwa
 Sri Lanka

 On Mon, Jun 29, 2015 at 7:47 PM, Fathima Dilhasha dilhasha@gmail.com
 wrote:

 Hi,

 *Notes from Progress Discussion*

 1. Use a flag extractor instead of prompting for parameters for each
 command.

 2. Rather than requesting user for a complete username, request for the
 username and then the organization.

 e.g. Instead of expecting dilhasha.wso2.com@dilhashan prompt for user
 name which is dilha...@wso2.com and then organization dilhashan

 Thanks.
 Regards,
 Dilhasha


 Fathima Dilhasha Nazeer http://lk.linkedin.com/in/dilhasha/
 (M.N.F.Dilhasha)
 Undergraduate | Department of Computer Science and Engineering
 University of Moratuwa
 Sri Lanka

 On Fri, Jun 26, 2015 at 8:28 AM, Fathima Dilhasha dilhasha@gmail.com
  wrote:

 Hi,

 *Progress Update*

 I have added API calls for login and triggering a build to the CLI tool.
 And I'm currently working on setting up the flags for the commands and
 presenting the results in a good format.

 You can find the git repository at [1]
 https://github.com/Dilhasha/AppFacCLI
 The executables can be found at [2]
 https://drive.google.com/folderview?id=0B5jf9n7hxy8YfjJ4NnFWY0pXYklIMkFfNnNHSFF5bXB3UjE2eUZjdVJacGM1TDc3Vk4wY1Eusp=sharing

 [1] https://github.com/Dilhasha/AppFacCLI
 [2]
 https://drive.google.com/folderview?id=0B5jf9n7hxy8YfjJ4NnFWY0pXYklIMkFfNnNHSFF5bXB3UjE2eUZjdVJacGM1TDc3Vk4wY1Eusp=sharing

 Please check these out and provide your feedback and suggestions on
 these. When can we have a discussion on this?

 Thanks.
 Regards,
 Dilhasha


 Fathima Dilhasha Nazeer http://lk.linkedin.com/in/dilhasha/
 (M.N.F.Dilhasha)
 Undergraduate | Department of Computer Science and Engineering
 University of Moratuwa
 Sri Lanka

 On Mon, Jun 22, 2015 at 9:27 AM, Fathima Dilhasha 
 dilhasha@gmail.com wrote:

 Hi Dimuthu  Anuruddha,

 *Notes from Progress Discussion*

- Try out the other curl commands to Appfactory
- Use the JSessionID to list app details in the impelmented REST
call
- Complete implementation of a basic call using the Rule based
Engine

 I am planning to complete these tasks today. Can we have a meeting at
 8.30 am tomorrow to have a demo and discuss on further implementation 
 plans?

 Thanks.
 Regards,
 Dilhasha

 Fathima Dilhasha Nazeer http://lk.linkedin.com/in/dilhasha/
 (M.N.F.Dilhasha)
 Undergraduate | Department of Computer Science and Engineering
 University of Moratuwa
 Sri Lanka

 On Thu, Jun 18, 2015 at 5:04 AM, Dimuthu Leelarathne dimut...@wso2.com
  wrote:

 Hi Fathima,

 Makes sense! Thanks for the explanation.

 thanks,
 dimuthu


 On Wed, Jun 17, 2015 at 7:28 PM, Fathima Dilhasha 
 dilhasha@gmail.com wrote:

 Hi Dimuthu,

 I suggested a rule based engine over a switch case based approach
 taking following things into consideration.

- reduction in the time taken to evaluate a command over a switch
case based approach
- allows for maximum reuse of the code
- easier to extend for any new commands
- have been used by similar CLI tools

 Please find the attached class diagram for the basic design of rule
 based engine. The basic idea is to have several implementations for the
 Command, so that all the available commands can be maintained in the
 

Re: [Dev] [Architecture] Developer Studio 3.8.0 M5 Released!

2015-07-05 Thread Sohani Weerasinghe
Hi Shafreen,

Sohani Weerasinghe
Software Engineer
WSO2, Inc: http://wso2.com

Mobile  : +94 716439774
Blog :http://christinetechtips.blogspot.com/
Twitter  : https://twitter.com/sohanichristine

On Mon, Jul 6, 2015 at 8:55 AM, Shafreen Anfar shafr...@wso2.com wrote:


 On Mon, Jul 6, 2015 at 6:19 AM, Shafreen Anfar shafr...@wso2.com wrote:

 Hi Isuru et al,

 On Mon, Jun 22, 2015 at 8:56 AM, Isuru Perera isu...@wso2.com wrote:

 Thanks Harshana!

 When I checked last time, Developer Studio had some dependencies, which
 were not compatible with Java 8. I don't remember the exact issues, but I
 couldn't run Developer Studio 3.7.1 on Eclipse Kepler with Java 8. I used
 Eclipse Kepler for Java 8 [1].

 So, I just want to confirm.


 Previous versions of DevStudio did not support Java 8. Mainly because of
 the changes in the Xpath classes that are introduced with Java 8.
 Therefore, whenever you add a mediator with some Xpath, it did not work.

 Does the new version of DevStudio support Java 8 ?


 Actually, what I wanted to know is, with the new version, is this problem
 resolved :) ?


We have reported this issue at [1] and this will be fixed in 3.8.0 release

[1] https://wso2.org/jira/browse/TOOLS-2938






 [1] https://wiki.eclipse.org/JDT/Eclipse_Java_8_Support_For_Kepler

 On Mon, Jun 22, 2015 at 11:15 AM, Harshana Eranga Martin 
 harshan...@gmail.com wrote:

 Hi Isuru,

 Luna supports JDK 8. Thus the Dev Studio.

 Thanks and Regards,
 Harshana
 --
 Harshana Eranga Martin

 Committer - Eclipse ECF: http://www.eclipse.org/ecf/
 Blog: http://harshana05.blogspot.com
 Profile: https://www.google.com/profiles/harshana05

 On 22 June 2015 at 13:37, Isuru Perera isu...@wso2.com wrote:

 Thanks Sohani!

 Will DevS 3.8.0 run on Java 8? Since Eclipse Luna is working on Java 8
 [1], I'm hoping DevS 3.8.0 will also run smoothly on Java 8. Or do we 
 still
 need Java 7 to run DevS?

 [1]
 https://www.eclipse.org/community/eclipse_newsletter/2014/june/article1.php

 On Thu, Jun 18, 2015 at 4:43 PM, Sohani Weerasinghe soh...@wso2.com
 wrote:

 Hi Isuru,

 Yes, DevS 3.8.0 runs on top of  Eclipse Luna SR2.

 Thanks,
 Sohani

 Sohani Weerasinghe
 Software Engineer
 WSO2, Inc: http://wso2.com

 Mobile  : +94 716439774
 Blog :http://christinetechtips.blogspot.com/
 Twitter  : https://twitter.com/sohanichristine

 On Thu, Jun 18, 2015 at 4:07 PM, Isuru Perera isu...@wso2.com
 wrote:

 Does this support Eclipse Luna SR2, which was released on Feb 25,
 2015 [1]?

 When I asked last time [2] in dev@, I was told that Developer
 Studio will support only SR2 releases.

 Thanks!

 [1] http://wiki.eclipse.org/Simultaneous_Release
 [2] [Dev] [Architecture] Developer Studio 3.7.0 RC 1 Released!
 http://markmail.org/message/4rldazvea4muuj4s

 On Thu, Jun 18, 2015 at 1:07 PM, Sohani Weerasinghe soh...@wso2.com
  wrote:

 Hi All,

 We have WSO2 Developer Studio 3.8.0 M5 ready to be downloaded at
 [1].

 This release includes following features, tasks, sub-tasks and bug
 fixes.
 Features:

- [TOOLS-2848 https://wso2.org/jira/browse/TOOLS-2848] - DevS
support for PublishEvent mediator

 Tasks:

- [TOOLS-2830 https://wso2.org/jira/browse/TOOLS-2830] -
Create dashboard entry for Inbound endpoint
- [TOOLS-2867 https://wso2.org/jira/browse/TOOLS-2867] - Removing
the old ESB Editor
- [TOOLS-2875 https://wso2.org/jira/browse/TOOLS-2875] -
Apply security for BPEL process

 Sub-tasks:

- [TOOLS-2874 https://wso2.org/jira/browse/TOOLS-2874] - XML
comment support - utilizing the support given from ESB side for 
 comments

 Bugs:

- [TOOLS-2750 https://wso2.org/jira/browse/TOOLS-2750] -
Display the selected DSS project in Data Service creation wizard
- [TOOLS-2753 https://wso2.org/jira/browse/TOOLS-2753] -
Project Wizard doesn't get closed when importing an already 
 existing data
service
- [TOOLS-2866 https://wso2.org/jira/browse/TOOLS-2866] -
Rename  WebContent  directory support for exploded webapp 
 projects.


 Your feedback is most welcome. Please report issues at [2] and
 specify the affect version as 3.8.0 M5.

 [1] *https://svn.wso2.org/repos/wso2/scratch/DevS/
 https://svn.wso2.org/repos/wso2/scratch/DevS/*
 [2] https://wso2.org/jira/browse/TOOLS

 Thanks and Regards,
 WSO2 Developer Studio Team
 Sohani Weerasinghe
 Software Engineer
 WSO2, Inc: http://wso2.com

 Mobile  : +94 716439774
 Blog :http://christinetechtips.blogspot.com/
 Twitter  : https://twitter.com/sohanichristine

 ___
 Architecture mailing list
 architect...@wso2.org
 https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture




 --
 Isuru Perera
 Associate Technical Lead | WSO2, Inc. | http://wso2.com/
 Lean . Enterprise . Middleware

 about.me/chrishantha
 Contact: +IsuruPereraWSO2
 https://www.google.com/+IsuruPereraWSO2/about

 ___
 Dev mailing list
 Dev@wso2.org
 

Re: [Dev] [GSoC-2015] Proposal 11: Recommendation Solution for WSO2 Machine Learner

2015-07-05 Thread Nirmal Fernando
Hi Madawa,

Please check this presentation
https://spark-summit.org/2015/events/a-more-scalable-way-of-making-recommendations-with-mllib/

On Thu, Jul 2, 2015 at 9:22 AM, Nirmal Fernando nir...@wso2.com wrote:

 Thanks Madawa.

 On Wed, Jul 1, 2015 at 11:46 PM, Madawa Soysa madawa...@cse.mrt.ac.lk
 wrote:

 Hi Nirmal,

 I have done following work so far in the project.

- Implemented the recommendation algorithm using java and spark. A
sample source code is hosted at [1]
https://github.com/madawas/spark-recommendation

- Researched on *inferring a rating through implicit feedback data*,
 collaborative filtering with implicit feedback data and using existing
functions on spark to work with implicit data and recommending.
After reading several papers and documents, I decided to use *weighted
average of product page views and purchases* as the inferred
observation as the preference value.

- Started integrating the algorithms to carbon-ml. [2]
https://github.com/madawas/carbon-ml/tree/recommendation

 [1] - https://github.com/madawas/spark-recommendation
 [2] - https://github.com/madawas/carbon-ml/tree/recommendation


 Regards,
 Madawa

 On 1 July 2015 at 22:25, Nirmal Fernando nir...@wso2.com wrote:

 Hi Madawa,

 Please send the current status/work carried out of the project, that
 will help us to set the future goals.

 On Fri, Jun 26, 2015 at 12:09 PM, Madawa Soysa madawa...@cse.mrt.ac.lk
 wrote:

 Sure, let's meet next week.

 On 25 June 2015 at 14:44, Srinath Perera srin...@wso2.com wrote:

 Madawa, sorry for being late to respond. Lets planning to meet on week
 of july 07 ( I am traveling). Meet Nirmal before if needed.

 --Srinath

 On Mon, Jun 22, 2015 at 9:26 AM, Madawa Soysa madawa...@cse.mrt.ac.lk
  wrote:

 I have lectures in Wednesday morning till 12.15. I'll be free after
 that.

 On 22 June 2015 at 09:24, Srinath Perera srin...@wso2.com wrote:

 Can we meet Wednesday 10.30 at WSO2 Trace office?

 On Mon, Jun 22, 2015 at 9:10 AM, Nirmal Fernando nir...@wso2.com
 wrote:



 On Mon, Jun 22, 2015 at 9:07 AM, Madawa Soysa 
 madawa...@cse.mrt.ac.lk wrote:

 Hi,

 In this week I have researched on collaborative filtering with
 implicit feedback data (i.e session data and user behavior). I have
 followed [1, 2] on this. Even though these papers provide a solution 
 we
 cannot use them since we cannot use the current implementation in 
 Spark
 with these.

 Also I researched on the possibility of inferring a rating using
 the session data and create a new data set and push to spark, but 
 almost
 all the solutions are domain specific. Since the preferences are 
 dependent
 on item attributes.

 How should I proceed? Since I have finished implementing the
 generic recommendation algorithm I can integrate this with ML with a 
 slight
 design change. Can we have a discussion on this?


 +1, let's discuss the issue in detail.


 Thanks,
 Madawa

 [1] -
 https://drive.google.com/file/d/0B5EB-AEf-NyPOHBPRWpRM3hvejA/view?usp=sharing
 [2] -
 https://drive.google.com/file/d/0B5EB-AEf-NyPbkVUV2NqZ3R5b0U/view?usp=sharing

 On 16 June 2015 at 12:00, Madawa Soysa madawa...@cse.mrt.ac.lk
 wrote:

 Hi,

 I have developed an sample application to generate
 recommendations using Apache Spark MLlib and Java. Project source 
 code can
 be found in GitHub[1]
 https://github.com/madawas/spark-recommendation. Output can be
 taken in any format and in the current app, I'm printing the output 
 to the
 console. The data set used can be found here[2]
 https://drive.google.com/open?id=0B5EB-AEf-NyPflRteEhzNmxFOGpROEFNbWJRa0VTcU5MeEg5WVcya1JIbGM5LVhrU3VXNTQauthuser=0.
 Please look in to this and provide feedback.

 Next I'm going to modify the application to read data from
 implicit data (page views, likes, time spent on page) and infer a 
 rating.
 I'm referring to [3]
 https://drive.google.com/open?id=0B5EB-AEf-NyPOHBPRWpRM3hvejAauthuser=0
 on this.

 Also is there any idea on how to extract data from websites?


 [1] - https://github.com/madawas/spark-recommendation
 [2] -
 https://drive.google.com/open?id=0B5EB-AEf-NyPflRteEhzNmxFOGpROEFNbWJRa0VTcU5MeEg5WVcya1JIbGM5LVhrU3VXNTQauthuser=0
 [3] -
 https://drive.google.com/open?id=0B5EB-AEf-NyPOHBPRWpRM3hvejAauthuser=0

 Thanks,
 Madawa.

 On 5 June 2015 at 15:27, Madawa Soysa madawa...@cse.mrt.ac.lk
 wrote:

 Hi,

 Had an initial meeting with the mentors about the $subject and
 discussed following matters.

- Data format to be consider in the project
- Re-Modeling implicit data (mouse clicks, page views) that
can be extracted from websites to explicit rating scheme.
- publishing data to DAS and connecting ML with DAS.

 Currently I'm developing a sample personalized recommend system
 to test how Apache Spark uses data and how it generates the output 
 model.

 Thanks,
 Madawa

 On 5 June 2015 at 11:22, Nirmal Fernando nir...@wso2.com
 wrote:

 Please also send an update on the meeting to dev@

 On Fri, Jun 5, 2015 at 

Re: [Dev] [GSoC 2015] New SVG Layout for Visual Composer Siddhi Lang.

2015-07-05 Thread Srinath Perera
I tried to draw, but failed. Can you do a small screencast on how to draw
and connect.

On current palette, everything looks same, we need to indicate queries are
different than other operators.

--Srinath

On Fri, Jul 3, 2015 at 8:39 PM, Mohamed Fawzan fawz...@gmail.com wrote:

 Hi Srinath,

 As per our discussion, I have modified the UI[1] http://vc.mutexlk.com.
 here is the list of updated features,

 1. I have added an operator to compose queries. (icon : query).
 2. Other operators can be dropped to query boxes(cannot dropped outside
 the query boxes), Also it can only be dragged inside query boxes.
 3. The query boxes itself can be dragged with operators.
 4  IO Streams were re drawn.


 Please check  comment on it so that I can proceed with making the Graph.
 you can find the repo here [2]
 https://github.com/Fawzanm/Extensible-Visual-Composer-Siddhi-Language


 [1] - http://vc.mutexlk.com
 [2] -
 https://github.com/Fawzanm/Extensible-Visual-Composer-Siddhi-Language

 -Regards



 On Tue, Jun 23, 2015 at 6:51 PM, Mohamed Fawzan fawz...@gmail.com wrote:

 Hi Srinath,

 I have found a workaround for connecting elements with click  click. I
 will update the demo soon with the (progress of) improvements we have
 discussed in the meeting on 19th.  .

 -Regards

 On Mon, Jun 15, 2015 at 5:13 AM, Mohamed Fawzan fawz...@gmail.com
 wrote:

 Hi Srinath.

 I have added support for large file names in the streams [1]
 http://vc.mutexlk.com/dashboard.html  by showing the part of the
 stream name in the rectangle element. When you *hover *
 you can see the* full stream name. *Also when the user drag the element
 to the canvas, he get the same behavior their.

 Currently I'm working on connecting the elements. It is bit difficult.
 But I am close enough. I think i can present it by this week.

 -Regards

 [1] - http://vc.mutexlk.com/dashboard.html

 On Fri, Jun 12, 2015 at 4:29 PM, Mohamed Fawzan fawz...@gmail.com
 wrote:

 Thanks.


 On Friday, June 12, 2015, Srinath Perera srin...@wso2.com wrote:

 yes that is OK.

 On Fri, Jun 12, 2015 at 4:25 PM, Mohamed Fawzan fawz...@gmail.com
 wrote:

 Yes. It is a good time. I can take the 6.00AM Train from kandy. Can
 reach colombo by 10.00 i guess. Is it o?


 On Friday, June 12, 2015, Mohamed Fawzan fawz...@gmail.com wrote:

 Understood. Thanks Srinath.

 On Friday, June 12, 2015, Srinath Perera srin...@wso2.com wrote:

 Input and output streams are the same thing. Sometimes, a stream
 can be both inputs and outputs E.g. Stream 2.

 [image: Inline image 1]

 On Thu, Jun 11, 2015 at 1:53 PM, Mohamed Fawzan fawz...@gmail.com
 wrote:

 Hi Srinath,

 Can you please help me to understand the streams? I mean the 
 InputOutputNode
 in.


 InputOutputNode : {

 connectionName : 'StockQuoteStream',

 connectionType :'Stream',

 connectionTypeDetails : 'para1:string, para2:int'

 }


 In the layout[1]  http://vc.mutexlk.com/dashboard.htmlI have 
 considered Input  Output streams as separate things. Is it correct ? 
 or else are they belong to same category?


 -Regards


 [1]-http://vc.mutexlk.com/dashboard.html


 On Thu, Jun 11, 2015 at 10:53 AM, Mohamed Fawzan 
 fawz...@gmail.com wrote:

 Hi,



 On Thu, Jun 11, 2015 at 8:04 AM, Srinath Perera srin...@wso2.com
  wrote:

 Need names inside canvas as well. ( need to handle large names).

 What are the children of streams? attributes?

 I was planning to categorize streams there. Please see the
 updated names here[1]. http://vc.mutexlk.com/dashboard.html





 I would rather connect streams and operators, then click on
 operator and pick which attribute/ or attributes you use. If so I 
 would not
 show children against streams.

 On Thu, Jun 11, 2015 at 6:52 AM, Mohamed Fawzan 
 fawz...@gmail.com wrote:


 Hi Srinath,

 I have just added the streams names inside the rectangles [1]
 http://vc.mutexlk.com/dashboard.html . Please check and
 comment on it.

 -Regards

 [1] - http://vc.mutexlk.com/dashboard.html

 On Wed, Jun 10, 2015 at 5:55 PM, Mohamed Fawzan 
 fawz...@gmail.com wrote:


 On Wed, Jun 10, 2015 at 5:52 PM, Srinath Perera 
 srin...@wso2.com wrote:

 We can do it several ways

 1. have small connectors showing against each node ( Stream/
 Operator), which you can click and drag to connector in other 
 node.


 +1, I had the same idea on my mind. I will work on that, Feel
 free to suggest other options as well.



 2. Second option drop into other one as you mention.

 I think #2 run into a problem if you want to connect two
 streams to same operator ( e.g. Join). So I prefer #1. But open 
 for other
 options.

 --Srinath

 On Wed, Jun 10, 2015 at 5:46 PM, Mohamed Fawzan 
 fawz...@gmail.com wrote:

 Are we talking about connecting the streams  operators
 phase? If so what is your preferred method of doing it?

 does the connection made when we drop an operator on another
 operator OR drop an operator on a stream?

 Am I correct ?



 On Wed, Jun 10, 2015 at 5:42 PM, Srinath Perera 
 srin...@wso2.com wrote:

 We need to 

Re: [Dev] Which Git Repository belongs, org.wso2.carbon.transport.mgt.feature

2015-07-05 Thread Gihan Anuruddha
Hi Lakmali,

We do have. But still we are in snapshot version. Can you check with
1.0.3-SNAPSHOT
repo as an analytics  version?

Regards,
Gihan

On Mon, Jul 6, 2015 at 12:06 AM, Lakmali Baminiwatta lakm...@wso2.com
wrote:

 Hi Gihan,

 On 20 March 2015 at 09:01, Gihan Anuruddha gi...@wso2.com wrote:



 On Fri, Mar 20, 2015 at 8:23 AM, Dhanuka Ranasinghe dhan...@wso2.com
 wrote:

 while building product-apim , I couldn't find Git repos for following
 features. Could you please help me to find these.

 org.wso2.carbon.transport.mgt.feature
 org.wso2.carbon.transport.mail.feature
 org.wso2.carbon.xfer.feature
 org.wso2.carbon.mex.feature
 org.wso2.carbon.mediation.security.server
 org.wso2.carbon.statistics.transport.feature
 org.wso2.carbon.ec2.client.feature
 org.wso2.carbon.registry.extensions.feature
 org.wso2.carbon.caching.server.feature
 org.wso2.carbon.jaxws.webapp.mgt.server.feature
 org.wso2.carbon.jaxws.webapp.mgt.feature
 org.wso2.carbon.bam.
 ​​
 message.tracer.handler.feature

 ​use​
  ​org.wso2.carbon.analytics​.
 ​
 message.tracer.handler.feature in carbon-analytics repo


 Don't we have a carbon 4.4.0 based released version of
 org.wso2.carbon.analytics​.
 ​
 message.tracer.handler.feature? Latest released version[1], seems to be
 carbon 4.3.0 based.

 [1] https://github.com/wso2/carbon-analytics/blob/v1.0.2/pom.xml

 Thanks,
 Lakmali



 org.wso2.carbon.mediator.bam.feature

 *Dhanuka Ranasinghe*

 Senior Software Engineer
 WSO2 Inc. ; http://wso2.com
 lean . enterprise . middleware

 phone : +94 715381915

 On Thu, Mar 19, 2015 at 5:58 PM, Dhanuka Ranasinghe dhan...@wso2.com
 wrote:

 No they have told that it has been removed from carbon-commons. It's
 not in here [1].

 [1]  https://github.com/wso2/carbon-commons/blob/4.3.6/pom.xml

 Cheers,

 *Dhanuka Ranasinghe*

 Senior Software Engineer
 WSO2 Inc. ; http://wso2.com
 lean . enterprise . middleware

 phone : +94 715381915

 On Thu, Mar 19, 2015 at 5:51 PM, Mahesh Chinthaka mahe...@wso2.com
 wrote:

 Hi Dhanuka,

 Isnt it in carbon-commons ?
 In  [1] I can see org.wso2.carbon.transport.mgt.feature
 If so, I think carbon team manages this.


 [1] -
 https://github.com/wso2/carbon-commons/tree/master/features/transport-mgt

 On Thu, Mar 19, 2015 at 5:43 PM, Dhanuka Ranasinghe dhan...@wso2.com
 wrote:

 Hi,

 When I tried to build product-apim with carbon 4.4.0 I am getting
 following error. So could you please let us know, exactly which Git
 repository has/maintain  org.wso2.carbon.transport.mgt.feature

 [ERROR] Failed to execute goal
 org.wso2.maven:carbon-p2-plugin:1.5.3:p2-repo-gen (2-p2-repo-generation) 
 on
 project am-p2-profile: Error occured when processing the Feature 
 Artifact:
 org.wso2.carbon.commons:org.wso2.carbon.transport.mgt.feature:4.3.6: 
 ERROR:
 Could not find artifact
 org.wso2.carbon.commons:org.wso2.carbon.transport.mgt.feature:zip:4.3.6 
 in
 wso2-nexus (http://maven.wso2.org/nexus/content/groups/wso2-public/)

 Cheers,
 *Dhanuka Ranasinghe*

 Senior Software Engineer
 WSO2 Inc. ; http://wso2.com
 lean . enterprise . middleware

 phone : +94 715381915

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




 --
 *Mahesh Chinthaka Vidanagama* | Software Engineer
 WSO2, Inc | lean. enterprise. middleware.
 #20, Palm Grove, Colombo 03, Sri Lanka
 Mobile: +94 71 63 63 083 | Work: +94 112 145 345
 Email: mahe...@wso2.com | Web: www.wso2.com




 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




 --
 W.G. Gihan Anuruddha
 Senior Software Engineer | WSO2, Inc.
 M: +94772272595

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev




 --
 Lakmali Baminiwatta
  Senior Software Engineer
 WSO2, Inc.: http://wso2.com
 lean.enterprise.middleware
 mobile:  +94 71 2335936
 blog : lakmali.com




-- 
W.G. Gihan Anuruddha
Senior Software Engineer | WSO2, Inc.
M: +94772272595
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Architecture] Developer Studio 3.8.0 M5 Released!

2015-07-05 Thread Shafreen Anfar
Hi Isuru et al,

On Mon, Jun 22, 2015 at 8:56 AM, Isuru Perera isu...@wso2.com wrote:

 Thanks Harshana!

 When I checked last time, Developer Studio had some dependencies, which
 were not compatible with Java 8. I don't remember the exact issues, but I
 couldn't run Developer Studio 3.7.1 on Eclipse Kepler with Java 8. I used
 Eclipse Kepler for Java 8 [1].

 So, I just want to confirm.


Previous versions of DevStudio did not support Java 8. Mainly because of
the changes in the Xpath classes that are introduced with Java 8.
Therefore, whenever you add a mediator with some Xpath, it did not work.

Does the new version of DevStudio support Java 8 ?



 [1] https://wiki.eclipse.org/JDT/Eclipse_Java_8_Support_For_Kepler

 On Mon, Jun 22, 2015 at 11:15 AM, Harshana Eranga Martin 
 harshan...@gmail.com wrote:

 Hi Isuru,

 Luna supports JDK 8. Thus the Dev Studio.

 Thanks and Regards,
 Harshana
 --
 Harshana Eranga Martin

 Committer - Eclipse ECF: http://www.eclipse.org/ecf/
 Blog: http://harshana05.blogspot.com
 Profile: https://www.google.com/profiles/harshana05

 On 22 June 2015 at 13:37, Isuru Perera isu...@wso2.com wrote:

 Thanks Sohani!

 Will DevS 3.8.0 run on Java 8? Since Eclipse Luna is working on Java 8
 [1], I'm hoping DevS 3.8.0 will also run smoothly on Java 8. Or do we still
 need Java 7 to run DevS?

 [1]
 https://www.eclipse.org/community/eclipse_newsletter/2014/june/article1.php

 On Thu, Jun 18, 2015 at 4:43 PM, Sohani Weerasinghe soh...@wso2.com
 wrote:

 Hi Isuru,

 Yes, DevS 3.8.0 runs on top of  Eclipse Luna SR2.

 Thanks,
 Sohani

 Sohani Weerasinghe
 Software Engineer
 WSO2, Inc: http://wso2.com

 Mobile  : +94 716439774
 Blog :http://christinetechtips.blogspot.com/
 Twitter  : https://twitter.com/sohanichristine

 On Thu, Jun 18, 2015 at 4:07 PM, Isuru Perera isu...@wso2.com wrote:

 Does this support Eclipse Luna SR2, which was released on Feb 25, 2015
 [1]?

 When I asked last time [2] in dev@, I was told that Developer Studio
 will support only SR2 releases.

 Thanks!

 [1] http://wiki.eclipse.org/Simultaneous_Release
 [2] [Dev] [Architecture] Developer Studio 3.7.0 RC 1 Released!
 http://markmail.org/message/4rldazvea4muuj4s

 On Thu, Jun 18, 2015 at 1:07 PM, Sohani Weerasinghe soh...@wso2.com
 wrote:

 Hi All,

 We have WSO2 Developer Studio 3.8.0 M5 ready to be downloaded at [1].

 This release includes following features, tasks, sub-tasks and bug
 fixes.
 Features:

- [TOOLS-2848 https://wso2.org/jira/browse/TOOLS-2848] - DevS
support for PublishEvent mediator

 Tasks:

- [TOOLS-2830 https://wso2.org/jira/browse/TOOLS-2830] - Create
dashboard entry for Inbound endpoint
- [TOOLS-2867 https://wso2.org/jira/browse/TOOLS-2867] - Removing
the old ESB Editor
- [TOOLS-2875 https://wso2.org/jira/browse/TOOLS-2875] - Apply
security for BPEL process

 Sub-tasks:

- [TOOLS-2874 https://wso2.org/jira/browse/TOOLS-2874] - XML
comment support - utilizing the support given from ESB side for 
 comments

 Bugs:

- [TOOLS-2750 https://wso2.org/jira/browse/TOOLS-2750] -
Display the selected DSS project in Data Service creation wizard
- [TOOLS-2753 https://wso2.org/jira/browse/TOOLS-2753] -
Project Wizard doesn't get closed when importing an already existing 
 data
service
- [TOOLS-2866 https://wso2.org/jira/browse/TOOLS-2866] - Rename
 WebContent  directory support for exploded webapp projects.


 Your feedback is most welcome. Please report issues at [2] and
 specify the affect version as 3.8.0 M5.

 [1] *https://svn.wso2.org/repos/wso2/scratch/DevS/
 https://svn.wso2.org/repos/wso2/scratch/DevS/*
 [2] https://wso2.org/jira/browse/TOOLS

 Thanks and Regards,
 WSO2 Developer Studio Team
 Sohani Weerasinghe
 Software Engineer
 WSO2, Inc: http://wso2.com

 Mobile  : +94 716439774
 Blog :http://christinetechtips.blogspot.com/
 Twitter  : https://twitter.com/sohanichristine

 ___
 Architecture mailing list
 architect...@wso2.org
 https://mail.wso2.org/cgi-bin/mailman/listinfo/architecture




 --
 Isuru Perera
 Associate Technical Lead | WSO2, Inc. | http://wso2.com/
 Lean . Enterprise . Middleware

 about.me/chrishantha
 Contact: +IsuruPereraWSO2
 https://www.google.com/+IsuruPereraWSO2/about

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev





 --
 Isuru Perera
 Associate Technical Lead | WSO2, Inc. | http://wso2.com/
 Lean . Enterprise . Middleware

 about.me/chrishantha
 Contact: +IsuruPereraWSO2
 https://www.google.com/+IsuruPereraWSO2/about

 ___
 Dev mailing list
 Dev@wso2.org
 http://wso2.org/cgi-bin/mailman/listinfo/dev





 --
 Isuru Perera
 Associate Technical Lead | WSO2, Inc. | http://wso2.com/
 Lean . Enterprise . Middleware

 about.me/chrishantha
 Contact: +IsuruPereraWSO2 https://www.google.com/+IsuruPereraWSO2/about