Re: [Dev] [Siddhi] "Over Query Limit" error in geocode(stream function) in Siddhi

2018-10-17 Thread Gangani Ariyarathne
I've obtained a billing account through Infra team. I've used the
constructor of the Geocoder which uses the client id and the client key.
But I'm not sure what the geocoder constructer expects for the client key.
I generated the client key by following the guide[1].  The changed code can
be found here [2].

[1]
https://developers.google.com/maps/documentation/geocoding/get-api-key#digital-signature-premium
[2]
https://github.com/GANGANI/Siddhi-geo/blob/master/src/main/java/org/wso2/extension/siddhi/execution/geo/GeocodeStreamFunctionProcessor.java

On Wed, Oct 17, 2018 at 9:40 PM Ramindu De Silva  wrote:

> [+] Anusha
>
> On Wed, Oct 17, 2018 at 9:38 PM Ramindu De Silva 
> wrote:
>
>> Hi Gagani,
>>
>> Did you go through the steps mentioned in created a billing account for
>> the cloud platform?
>> Could you please send the changed code? Did you do the code change to the
>> constructor of the Geocoder[2]?
>>
>> 1.
>> https://cloud.google.com/maps-platform/?__utma=102347093.1933502197.1539791031.1539792263.1539792263.1&__utmb=102347093.0.10.1539792263&__utmc=102347093&__utmx=-&__utmz=102347093.1539792263.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)&__utmv=-&__utmk=132343310&_ga=2.9930102.252852657.1539791031-1933502197.1539791031#get-started
>> 2.
>> https://github.com/wso2-extensions/siddhi-execution-geo/blob/46408097bdf421e15765b339f7dba5d6fe5323b8/component/src/main/java/org/wso2/extension/siddhi/execution/geo/ReverseGeocodeStreamFunctionProcessor.java#L90
>>
>> Best regards,
>> Ramindu.
>>
>>
>> On Tue, Oct 16, 2018 at 1:40 PM Gangani Ariyarathne 
>> wrote:
>>
>>> Hi all,
>>>
>>> I've used geocode(stream function) of Geo-extension of Siddhi to find
>>> the latitude and longitude values by giving the location. That stream
>>> function doesn't work as expected and gives "OVER QUERY LIMIT" error after
>>> running my siddhi application a few times. I did a background search on
>>> this error and below are the results:
>>>
>>>- As I found Siddhi uses Google Map API for this and they use this
>>>without a developer's account.
>>>- This error normally happens due to exceeding the Google Maps
>>>Platform web services usage limits by sending too many requests per day,
>>>sending requests too fast, sending requests too fast for too long or
>>>otherwise abusing the web service [2]. But without these reasons also I'm
>>>receiving the same error message.
>>>- That Google's geocode provides another way to use that by
>>>configuring a paid developer's account for the Google Map API[3]. I tried
>>>that one also by fixing the siddhi function at the code level. But the
>>>error still remains the same.
>>>
>>> Below is the error that I encountered while executing the siddhi
>>> application which uses geocode function.
>>> [image: Screenshot from 2018-10-16 09-46-03.png]
>>>  I've posted a Git Issue[1] related to this error.
>>>
>>> Any help would be highly appreciated.
>>>
>>> [1] https://github.com/wso2-extensions/siddhi-execution-geo/issues/47
>>> [2]
>>> https://developers.google.com/maps/premium/previous-licenses/articles/usage-limits
>>> [3]
>>> https://developers.google.com/maps/documentation/maps-static/get-api-key
>>>
>>> Best regards,
>>> --
>>>
>>> *Gangani Chamika*
>>>
>>> *Intern - Software Engineering*
>>> *WSO2*
>>> 
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>
>>
>> --
>> *Ramindu De Silva*
>> Senior Software Engineer
>> WSO2 Inc.: http://wso2.com
>> lean.enterprise.middleware
>>
>> email: ramin...@wso2.com 
>> mob: +94 719678895
>>
>
>
> --
> *Ramindu De Silva*
> Senior Software Engineer
> WSO2 Inc.: http://wso2.com
> lean.enterprise.middleware
>
> email: ramin...@wso2.com 
> mob: +94 719678895
>


-- 

*Gangani Chamika*

*Intern - Software Engineering*
*WSO2*

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


Re: [Dev] [Siddhi] Incorrect results when having two window joins with sums

2018-10-17 Thread Tishan Dahanayakage
Hi Ramindu,

Each time a join happens s.amount is populated as 100 and it is a current
event. When that current event reach the sum attribute aggregator it will
keep on adding. In other words sum(s.amount) represent the sum of amounts
that joined with consumptions stream not sum of amount came within last
hour.

If we are to accurately achieve this requirement we should take below
approach.
1) Window query to calculate running sum of last hour of supply stream
2)  Window query to calculate running sum of last hour of consumption stream
3) Pattern query to compare each supply with proceeding consumptions which
fulfills the conditions.

Thanks,
/Tishan

On Wed, Oct 17, 2018 at 10:46 PM Ramindu De Silva  wrote:

> Hi all,
>
> In tutorial[1] which we are using for our labkit as well has the siddhi
> app as follows.
>
> @App:name('MaterialThresholdAlertApp')
>
> @source(type = 'http', @map(type = 'json'))
> define stream MaterialConsumptionStream(name string, user string, amount 
> double);
>
> @source(type = 'http', @map(type = 'json'))
> define stream MaterialSupplyStream(name string, supplier string, amount 
> double);
>
> @sink(type='log', prefix='Materials that go beyond sustainability threshold:')
> define stream MaterialThresholdAlertStream(name string, supplyAmount double, 
> consumptionAmount double, user string, supplier string);
>
> from MaterialConsumptionStream#window.time(1 hour) as c
>   join MaterialSupplyStream#window.time(1 hour) as s
>   on c.name == s.name
> select s.name, s.amount as supplyAmount, c.amount as consumptionAmount, user, 
> supplier
> group by s.name
> having s.amount * 0.95 < c.amount
> insert into MaterialThresholdAlertStream;
>
>
> But in-order to check the total consumed amount is greater than 95% of
> supplied amount, we should have the query as follows.
>
> select s.name, sum(s.amount) as supplyAmount, sum(c.amount) as 
> consumptionAmount, user, supplier
>
>
> But the results gets printed as follows when we simulate using the
> following steps,
>
>1. Simulate "*MaterialSupplyStream*" with "sugar, yyy, 100"
>2. Simulate "*MaterialConsumptionStream*" with "sugar, xxx, 97"
>   1. Materials that go beyond sustainability threshold: :
>   Event{timestamp=1539794935863, data=[sugar, *100.0*, 97.0, yyy,
>   xxx], isExpired=false}
>   3. Simulate "*MaterialConsumptionStream*" with "sugar, xxx, 97"
>   1. Materials that go beyond sustainability threshold: :
>   Event{timestamp=1539794936733, data=[sugar, *200.0*, 194.0, yyy,
>   xxx], isExpired=false}
>   4. Simulate "*MaterialConsumptionStream*" with "sugar, xxx, 97"
>   1. Materials that go beyond sustainability threshold: :
>   Event{timestamp=1539794937643, data=[sugar, *300.0*, 291.0, yyy,
>   xxx], isExpired=false}
>
> Even though we dont send event to the *MaterialSupplyStream,* the
> summation adds 100 each at each join. It should be resulted with the
> initial 100 that we sent. Is it? Please correct me if I'm wrong.
>
> Best Regards,
> Ramindu.
>
> 1. https://docs.wso2.com/display/SP430/Correlating+Simple+Events
>
>
> --
> *Ramindu De Silva*
> Senior Software Engineer
> WSO2 Inc.: http://wso2.com
> lean.enterprise.middleware
>
> email: ramin...@wso2.com 
> mob: +94 719678895
>


-- 
*Tishan Dahanayakage* | Associate Technical Lead | WSO2 Inc.
(m) +94716481328 | (w) +94112145345 | (e) tis...@wso2.com
GET INTEGRATION AGILE
Integration Agility for Digitally Driven Business

Disclaimer: This communication may contain privileged or other confidential
information and is intended exclusively for the addressee/s. If you are not
the intended recipient/s, or believe that you may have received this
communication in error, please reply to the sender indicating that fact and
delete the copy you received and in addition, you should not print, copy,
re-transmit, disseminate, or otherwise use the information contained in
this communication. Internet communications cannot be guaranteed to be
timely, secure, error or virus-free. The sender does not accept liability
for any errors or omissions.
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] [Siddhi] Incorrect results when having two window joins with sums

2018-10-17 Thread Ramindu De Silva
Hi all,

In tutorial[1] which we are using for our labkit as well has the siddhi app
as follows.

@App:name('MaterialThresholdAlertApp')

@source(type = 'http', @map(type = 'json'))
define stream MaterialConsumptionStream(name string, user string,
amount double);

@source(type = 'http', @map(type = 'json'))
define stream MaterialSupplyStream(name string, supplier string, amount double);

@sink(type='log', prefix='Materials that go beyond sustainability threshold:')
define stream MaterialThresholdAlertStream(name string, supplyAmount
double, consumptionAmount double, user string, supplier string);

from MaterialConsumptionStream#window.time(1 hour) as c
join MaterialSupplyStream#window.time(1 hour) as s
on c.name == s.name
select s.name, s.amount as supplyAmount, c.amount as
consumptionAmount, user, supplier
group by s.name
having s.amount * 0.95 < c.amount
insert into MaterialThresholdAlertStream;


But in-order to check the total consumed amount is greater than 95% of
supplied amount, we should have the query as follows.

select s.name, sum(s.amount) as supplyAmount, sum(c.amount) as
consumptionAmount, user, supplier


But the results gets printed as follows when we simulate using the
following steps,

   1. Simulate "*MaterialSupplyStream*" with "sugar, yyy, 100"
   2. Simulate "*MaterialConsumptionStream*" with "sugar, xxx, 97"
  1. Materials that go beyond sustainability threshold: :
  Event{timestamp=1539794935863, data=[sugar, *100.0*, 97.0, yyy, xxx],
  isExpired=false}
  3. Simulate "*MaterialConsumptionStream*" with "sugar, xxx, 97"
  1. Materials that go beyond sustainability threshold: :
  Event{timestamp=1539794936733, data=[sugar, *200.0*, 194.0, yyy,
  xxx], isExpired=false}
  4. Simulate "*MaterialConsumptionStream*" with "sugar, xxx, 97"
  1. Materials that go beyond sustainability threshold: :
  Event{timestamp=1539794937643, data=[sugar, *300.0*, 291.0, yyy,
  xxx], isExpired=false}

Even though we dont send event to the *MaterialSupplyStream,* the summation
adds 100 each at each join. It should be resulted with the initial 100 that
we sent. Is it? Please correct me if I'm wrong.

Best Regards,
Ramindu.

1. https://docs.wso2.com/display/SP430/Correlating+Simple+Events


-- 
*Ramindu De Silva*
Senior Software Engineer
WSO2 Inc.: http://wso2.com
lean.enterprise.middleware

email: ramin...@wso2.com 
mob: +94 719678895
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Siddhi] "Over Query Limit" error in geocode(stream function) in Siddhi

2018-10-17 Thread Ramindu De Silva
[+] Anusha

On Wed, Oct 17, 2018 at 9:38 PM Ramindu De Silva  wrote:

> Hi Gagani,
>
> Did you go through the steps mentioned in created a billing account for
> the cloud platform?
> Could you please send the changed code? Did you do the code change to the
> constructor of the Geocoder[2]?
>
> 1.
> https://cloud.google.com/maps-platform/?__utma=102347093.1933502197.1539791031.1539792263.1539792263.1&__utmb=102347093.0.10.1539792263&__utmc=102347093&__utmx=-&__utmz=102347093.1539792263.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)&__utmv=-&__utmk=132343310&_ga=2.9930102.252852657.1539791031-1933502197.1539791031#get-started
> 2.
> https://github.com/wso2-extensions/siddhi-execution-geo/blob/46408097bdf421e15765b339f7dba5d6fe5323b8/component/src/main/java/org/wso2/extension/siddhi/execution/geo/ReverseGeocodeStreamFunctionProcessor.java#L90
>
> Best regards,
> Ramindu.
>
>
> On Tue, Oct 16, 2018 at 1:40 PM Gangani Ariyarathne 
> wrote:
>
>> Hi all,
>>
>> I've used geocode(stream function) of Geo-extension of Siddhi to find the
>> latitude and longitude values by giving the location. That stream function
>> doesn't work as expected and gives "OVER QUERY LIMIT" error after running
>> my siddhi application a few times. I did a background search on this error
>> and below are the results:
>>
>>- As I found Siddhi uses Google Map API for this and they use this
>>without a developer's account.
>>- This error normally happens due to exceeding the Google Maps
>>Platform web services usage limits by sending too many requests per day,
>>sending requests too fast, sending requests too fast for too long or
>>otherwise abusing the web service [2]. But without these reasons also I'm
>>receiving the same error message.
>>- That Google's geocode provides another way to use that by
>>configuring a paid developer's account for the Google Map API[3]. I tried
>>that one also by fixing the siddhi function at the code level. But the
>>error still remains the same.
>>
>> Below is the error that I encountered while executing the siddhi
>> application which uses geocode function.
>> [image: Screenshot from 2018-10-16 09-46-03.png]
>>  I've posted a Git Issue[1] related to this error.
>>
>> Any help would be highly appreciated.
>>
>> [1] https://github.com/wso2-extensions/siddhi-execution-geo/issues/47
>> [2]
>> https://developers.google.com/maps/premium/previous-licenses/articles/usage-limits
>> [3]
>> https://developers.google.com/maps/documentation/maps-static/get-api-key
>>
>> Best regards,
>> --
>>
>> *Gangani Chamika*
>>
>> *Intern - Software Engineering*
>> *WSO2*
>> 
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>
>
> --
> *Ramindu De Silva*
> Senior Software Engineer
> WSO2 Inc.: http://wso2.com
> lean.enterprise.middleware
>
> email: ramin...@wso2.com 
> mob: +94 719678895
>


-- 
*Ramindu De Silva*
Senior Software Engineer
WSO2 Inc.: http://wso2.com
lean.enterprise.middleware

email: ramin...@wso2.com 
mob: +94 719678895
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] [Siddhi] "Over Query Limit" error in geocode(stream function) in Siddhi

2018-10-17 Thread Ramindu De Silva
Hi Gagani,

Did you go through the steps mentioned in created a billing account for the
cloud platform?
Could you please send the changed code? Did you do the code change to the
constructor of the Geocoder[2]?

1.
https://cloud.google.com/maps-platform/?__utma=102347093.1933502197.1539791031.1539792263.1539792263.1&__utmb=102347093.0.10.1539792263&__utmc=102347093&__utmx=-&__utmz=102347093.1539792263.1.1.utmcsr=(direct)|utmccn=(direct)|utmcmd=(none)&__utmv=-&__utmk=132343310&_ga=2.9930102.252852657.1539791031-1933502197.1539791031#get-started
2.
https://github.com/wso2-extensions/siddhi-execution-geo/blob/46408097bdf421e15765b339f7dba5d6fe5323b8/component/src/main/java/org/wso2/extension/siddhi/execution/geo/ReverseGeocodeStreamFunctionProcessor.java#L90

Best regards,
Ramindu.


On Tue, Oct 16, 2018 at 1:40 PM Gangani Ariyarathne 
wrote:

> Hi all,
>
> I've used geocode(stream function) of Geo-extension of Siddhi to find the
> latitude and longitude values by giving the location. That stream function
> doesn't work as expected and gives "OVER QUERY LIMIT" error after running
> my siddhi application a few times. I did a background search on this error
> and below are the results:
>
>- As I found Siddhi uses Google Map API for this and they use this
>without a developer's account.
>- This error normally happens due to exceeding the Google Maps
>Platform web services usage limits by sending too many requests per day,
>sending requests too fast, sending requests too fast for too long or
>otherwise abusing the web service [2]. But without these reasons also I'm
>receiving the same error message.
>- That Google's geocode provides another way to use that by
>configuring a paid developer's account for the Google Map API[3]. I tried
>that one also by fixing the siddhi function at the code level. But the
>error still remains the same.
>
> Below is the error that I encountered while executing the siddhi
> application which uses geocode function.
> [image: Screenshot from 2018-10-16 09-46-03.png]
>  I've posted a Git Issue[1] related to this error.
>
> Any help would be highly appreciated.
>
> [1] https://github.com/wso2-extensions/siddhi-execution-geo/issues/47
> [2]
> https://developers.google.com/maps/premium/previous-licenses/articles/usage-limits
> [3]
> https://developers.google.com/maps/documentation/maps-static/get-api-key
>
> Best regards,
> --
>
> *Gangani Chamika*
>
> *Intern - Software Engineering*
> *WSO2*
> 
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>


-- 
*Ramindu De Silva*
Senior Software Engineer
WSO2 Inc.: http://wso2.com
lean.enterprise.middleware

email: ramin...@wso2.com 
mob: +94 719678895
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] WSO2 Identity Server 5.8.0-M4 Released!

2018-10-17 Thread Isura Karunaratne
WSO2 Identity and Access Management team is pleased to announce the release
of Identity Server 5.8.0 M4!
Download

You can download WSO2 Identity Server 5.8.0 M4 from here

.

You can download WSO2 Identity Server Analytics 5.8.0 M4 from here

.
How to run

   1.

   Extract the downloaded zip file.
   2.

   Go to the bin directory in the extracted folder.
   3.

   Run the wso2server.sh file if you are on a Linux/Mac OS or run the
   wso2server.bat file if you are on a Windows OS.
   4.

   Optionally, if you need to start the OSGi console with the server, use
   the -DosgiConsole property when starting the server.

What's new in WSO2 Identity Server 5.8.0 M4

A list of all the new features and bug fixes shipped with this release can
be found here 

Known Issues

All the open issues pertaining to WSO2 Identity Server are reported at the
following location:

   -

   IS Runtime 
   -

   IS Analytics 

Contribute to WSO2 Identity ServerMailing Lists

Join our mailing lists and correspond with the developers directly. We also
encourage you to take part in discussions related to the product in the
architecture mailing list. If you have any questions regarding the product
you can use our StackOverflow forum to raise them as well.

   -

   Developer List: dev@wso2.org
   -

   Architecture List: architect...@wso2.org
   -

   User Forum: StackOverflow
   

Reporting Issues

We encourage you to report issues, improvements, and feature requests
regarding WSO2 Identity Server through our public WSO2 Identity Server GIT
Issues .

For more information about WSO2 Identity Server, please see https://wso2
.com/identity-and-access-management or visit the WSO2 Oxygen Tank
 developer portal for additional resources.

~ The WSO2 Identity and Access Management Team ~



-- 

*Isura Dilhara Karunaratne*
Associate Technical Lead | WSO2 
*lean.enterprise.middleware*
Email: is...@wso2.com
Mob : +94 772 254 810
Blog : http://isurad.blogspot.com/
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


Re: [Dev] Problems in the web console after upgrade WSO2EI 6.3.0 to 6.4.0

2018-10-17 Thread Cyril Rognon
Hi Bernard,

since the databases are the exect same between 6.3.0 and 6.4.0 I believe
your issue is related to userstore and registry mounting configuration as
stadted in point 5 of the documentaiton of this migration :
https://docs.wso2.com/display/EI640/Upgrading+from+WSO2+EI+6.3.0#UpgradingfromWSO2EI6.3.0-MigratingconfigurationsoftheESBprofile


5 : Check for any other configurations that were done for WSO2 EI 6.3.0
based on your solution and update the configurations in WSO2 EI 6.4.0
accordingly. For example, configurations related to external user stores,
caching, mounting, transports, etc

I reckon you might already have checked this one. But since roles and
permissions are the issue here.. I only see the userstore and reg mounting.

Thanks
Cyril

Le mer. 17 oct. 2018 à 15:41, Bernard Paris  a
écrit :

> Hi,
>
> after upgrading from WSO2EI 6.3.0 to 6.4.0 re-using all same databases,
> starting the server 6.4.0 is ok,  the only error in the logs at startup is
> DefaultCryptoProviderComponent} -  'CryptoService.Secret' property has not
> been set. ...
>
> Calling services (APIs)  from remote clients works ok.  I have troubles
> when I go into the carbon web console :
>
> I can list all the users, but when I try to view their roles
>
> *Error while loading roles of archibus. Error: Error occurred while
> getting hybrid roles from filter : %*
> or
> Error while loading roles. Error: Error occurred while getting hybrid
> roles from filter : %
>
>
> When I try to list roles
>
> *Error while listing roles. Error: Cannot change transaction isolation
> level in the middle of a transac*tion.
>
>
> By the way,  I can browse the registry governance  tree but when I try to
> display the content an  element, let's say an endpoint ;
>
> *Unable to determine resource permissions.*
>
>
> I have same issue on two separated wso2ei-6.4.0 instances  which are only
> sharing commonly the users DB, all others DBs are completely separated.
> From one of the 2 servers the user DB is readonly.
>
> What are to do to recover whole web console features ?
>
> Thanks for your help,
> Bernard
>
>
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev


[Dev] Problems in the web console after upgrade WSO2EI 6.3.0 to 6.4.0

2018-10-17 Thread Bernard Paris
Hi,

after upgrading from WSO2EI 6.3.0 to 6.4.0 re-using all same databases, 
starting the server 6.4.0 is ok,  the only error in the logs at startup is
DefaultCryptoProviderComponent} -  'CryptoService.Secret' property has not been 
set. ...

Calling services (APIs)  from remote clients works ok.  I have troubles when I 
go into the carbon web console :

I can list all the users, but when I try to view their roles

Error while loading roles of archibus. Error: Error occurred while getting 
hybrid roles from filter : %
or
Error while loading roles. Error: Error occurred while getting hybrid roles 
from filter : %


When I try to list roles

Error while listing roles. Error: Cannot change transaction isolation level in 
the middle of a transaction.


By the way,  I can browse the registry governance  tree but when I try to 
display the content an  element, let's say an endpoint ;

Unable to determine resource permissions.


I have same issue on two separated wso2ei-6.4.0 instances  which are only 
sharing commonly the users DB, all others DBs are completely separated.  From 
one of the 2 servers the user DB is readonly.

What are to do to recover whole web console features ?

Thanks for your help,
Bernard


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


[Dev] [IS][5.7.0] - Register Oauth Application with Audience Restrictions.

2018-10-17 Thread Tharindu Dharmarathna
Hi All,

Do We have a way to register Oauth Application from DCR Rest API with
Audience Restrictions,

As per the code in [1], I'm not able to see there was an attribute
available to give audiences.


[1] -
https://github.com/wso2-extensions/identity-inbound-auth-oauth/blob/master/components/org.wso2.carbon.identity.oauth.dcr/src/main/java/org/wso2/carbon/identity/oauth/dcr/service/DCRMService.java#L304-L363


Thanks

*Tharindu Dharmarathna*Associate Technical Lead
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

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


Re: [Dev] EI tooling - Adding collection and resource properties

2018-10-17 Thread Nilmini Perera
Ack for docs.

On Wed, Oct 17, 2018 at 12:10 PM Godwin Shrimal  wrote:

> Thanks for the response Prabushi. I created [1] to track issue which is
> not allowing to add resource properties.
>
> [1] https://github.com/wso2/product-ei/issues/2752
>
> Thanks
> Godwin
>
> On Wed, Oct 17, 2018 at 8:21 AM Prabushi Samarakoon 
> wrote:
>
>> Hi Godwin,
>>
>> Please find the related documentation below.
>>
>>- Collection creation - [1]
>>
>>- Adding properties - [2]
>>
>> 
>>
>>
>> Thanks & Best Regards,
>> Prabushi
>>
>> [1] - https://docs.wso2.com/display/EI6xx/Working+with+Registry+Artifacts
>> [2] -
>> https://docs.wso2.com/display/DVS380/Managing+the+Registry#ManagingtheRegistry-Addingproperties,associations,dependencies,commentsandtagsforaresourceorcollection
>>
>> On Tue, Oct 16, 2018 at 6:45 PM Godwin Shrimal  wrote:
>>
>>> Hi EI Folks,
>>>
>>> I can't find an option to create collection and adding resource
>>> properties in EI tooling (In the Registry resource project). Is it a
>>> limitation or if not can someone point me that ?
>>>
>>> Thanks
>>> Godwin
>>> --
>>> *Godwin Amila Shrimal*
>>> Associate Technical Lead
>>> WSO2 Inc.; http://wso2.com
>>> lean.enterprise.middleware
>>>
>>> mobile: *+94761124419*
>>> linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
>>> *
>>> twitter: https://twitter.com/godwinamila
>>> 
>>> ___
>>> Dev mailing list
>>> Dev@wso2.org
>>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>>
>>
>>
>> --
>> *Prabushi Samarakoon*
>> Mobile: +94715434580
>> Email: prabus...@wso2.com
>>
>>
>>
>
> --
> *Godwin Amila Shrimal*
> Associate Technical Lead
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: *+94761124419*
> linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
> *
> twitter: https://twitter.com/godwinamila
> 
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>


-- 
Nilmini Perera

Associate Lead Technical Writer
WSO2 Inc.

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


Re: [Dev] EI tooling - Adding collection and resource properties

2018-10-17 Thread Godwin Shrimal
Thanks for the response Prabushi. I created [1] to track issue which is not
allowing to add resource properties.

[1] https://github.com/wso2/product-ei/issues/2752

Thanks
Godwin

On Wed, Oct 17, 2018 at 8:21 AM Prabushi Samarakoon 
wrote:

> Hi Godwin,
>
> Please find the related documentation below.
>
>- Collection creation - [1]
>
>- Adding properties - [2]
>
> 
>
>
> Thanks & Best Regards,
> Prabushi
>
> [1] - https://docs.wso2.com/display/EI6xx/Working+with+Registry+Artifacts
> [2] -
> https://docs.wso2.com/display/DVS380/Managing+the+Registry#ManagingtheRegistry-Addingproperties,associations,dependencies,commentsandtagsforaresourceorcollection
>
> On Tue, Oct 16, 2018 at 6:45 PM Godwin Shrimal  wrote:
>
>> Hi EI Folks,
>>
>> I can't find an option to create collection and adding resource
>> properties in EI tooling (In the Registry resource project). Is it a
>> limitation or if not can someone point me that ?
>>
>> Thanks
>> Godwin
>> --
>> *Godwin Amila Shrimal*
>> Associate Technical Lead
>> WSO2 Inc.; http://wso2.com
>> lean.enterprise.middleware
>>
>> mobile: *+94761124419*
>> linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
>> *
>> twitter: https://twitter.com/godwinamila
>> 
>> ___
>> Dev mailing list
>> Dev@wso2.org
>> http://wso2.org/cgi-bin/mailman/listinfo/dev
>>
>
>
> --
> *Prabushi Samarakoon*
> Mobile: +94715434580
> Email: prabus...@wso2.com
>
>
>

-- 
*Godwin Amila Shrimal*
Associate Technical Lead
WSO2 Inc.; http://wso2.com
lean.enterprise.middleware

mobile: *+94761124419*
linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
*
twitter: https://twitter.com/godwinamila

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


Re: [Dev] EI tooling - Adding collection and resource properties

2018-10-17 Thread Prabushi Samarakoon
Hi Godwin,

Please find the related documentation below.

   - Collection creation - [1]
   
   - Adding properties - [2]
   



Thanks & Best Regards,
Prabushi

[1] - https://docs.wso2.com/display/EI6xx/Working+with+Registry+Artifacts
[2] -
https://docs.wso2.com/display/DVS380/Managing+the+Registry#ManagingtheRegistry-Addingproperties,associations,dependencies,commentsandtagsforaresourceorcollection

On Tue, Oct 16, 2018 at 6:45 PM Godwin Shrimal  wrote:

> Hi EI Folks,
>
> I can't find an option to create collection and adding resource properties
> in EI tooling (In the Registry resource project). Is it a limitation or if
> not can someone point me that ?
>
> Thanks
> Godwin
> --
> *Godwin Amila Shrimal*
> Associate Technical Lead
> WSO2 Inc.; http://wso2.com
> lean.enterprise.middleware
>
> mobile: *+94761124419*
> linkedin: *https://www.linkedin.com/in/godwin-amila-2ba26844/
> *
> twitter: https://twitter.com/godwinamila
> 
> ___
> Dev mailing list
> Dev@wso2.org
> http://wso2.org/cgi-bin/mailman/listinfo/dev
>


-- 
*Prabushi Samarakoon*
Mobile: +94715434580
Email: prabus...@wso2.com
___
Dev mailing list
Dev@wso2.org
http://wso2.org/cgi-bin/mailman/listinfo/dev