[Dev] Documentation visibility feature is not there even though the API Manager documentation contains information about it.

2014-12-08 Thread Sewmini Jayaweera
Hi, API manager 180 documentation[1] explains a feature on documentation visibility. API manager 180 RC1 pack doesn't contain that feature. Is the feature missing or the document should get updated? [1]. https://docs.wso2.com/display/AM180/Key+Concepts Thank You Best Regards, Sewmini

Re: [Dev] Documentation visibility feature is not there even though the API Manager documentation contains information about it.

2014-12-08 Thread Sanjeewa Malalgoda
I think this feature is there in pack. But to enable it you need to set following in api-manager.xml and restart server. Then only it will appear. EnableAPIDocVisibilityLevelstrue/EnableAPIDocVisibilityLevels Thanks, sanjeewa. On Mon, Dec 8, 2014 at 1:34 PM, Sewmini Jayaweera sewm...@wso2.com

Re: [Dev] Documentation visibility feature is not there even though the API Manager documentation contains information about it.

2014-12-08 Thread Sewmini Jayaweera
Thank you Sewmini Jayaweera *Software Engineer - QA Team* Mobile: +94 (0) 773 381 250 sewm...@wso2.com On Mon, Dec 8, 2014 at 1:44 PM, Sanjeewa Malalgoda sanje...@wso2.com wrote: I think this feature is there in pack. But to enable it you need to set following in api-manager.xml and restart

[Dev] Custom serialization in hazelcast is not working

2014-12-08 Thread Sajini De Silva
Hi, I'm using custom serialization in hazelcast for a tree map. I set serialization properties to hazelcast instance in the code like following. this.hazelcastInstance = hazelcastInstance; SerializerConfig sc = new SerializerConfig(); sc.setImplementation(new

Re: [Dev] Documentation visibility feature is not there even though the API Manager documentation contains information about it.

2014-12-08 Thread Udara Liyanage
Hi, It is mentioned in the doc you shared under the section API documentation visibility. On Mon, Dec 8, 2014 at 1:53 PM, Sewmini Jayaweera sewm...@wso2.com wrote: Thank you Sewmini Jayaweera *Software Engineer - QA Team* Mobile: +94 (0) 773 381 250 sewm...@wso2.com On Mon, Dec 8, 2014

Re: [Dev] Custom serialization in hazelcast is not working

2014-12-08 Thread Afkham Azeez
Can you first write a simple standalone class with your serializer and see whether it gets called? Just write a simple class with a main method. On Mon, Dec 8, 2014 at 1:59 PM, Sajini De Silva saj...@wso2.com wrote: Hi, I'm using custom serialization in hazelcast for a tree map. I set

Re: [Dev] Custom serialization in hazelcast is not working

2014-12-08 Thread Sajini De Silva
Hi Azeez, My standalone application is working fine for TreeSetLong. I have the same hazelcast dependency in my standalone application also. Thank you, Sajini. On Mon, Dec 8, 2014 at 2:30 PM, Afkham Azeez az...@wso2.com wrote: Can you first write a simple standalone class with your serializer

Re: [Dev] [Orbit] Cassandra orbit Git repo

2014-12-08 Thread Afkham Azeez
Approved under the condition that extension points will be introduced to Cassandra so that changes will be minimal when we upgrade. On Fri, Dec 5, 2014 at 12:06 PM, Deependra Ariyadewa d...@wso2.com wrote: We need to modify the list of artifacts deployed by the Cassandra orbit [1] to

Re: [Dev] Custom serialization in hazelcast is not working

2014-12-08 Thread Sajini De Silva
Standalone application code is shown below. SerializerConfig sc = new SerializerConfig() .setImplementation(new TreeMapSerializer()) .setTypeClass(new TreeSetLong().getClass()); Config config = new Config();

Re: [Dev] Custom serialization in hazelcast is not working

2014-12-08 Thread Afkham Azeez
On Mon, Dec 8, 2014 at 2:50 PM, Sajini De Silva saj...@wso2.com wrote: SerializerConfig sc = new SerializerConfig() .setImplementation(new TreeMapSerializer()) .setTypeClass(new TreeSetLong().getClass()); Config config = new Config();

Re: [Dev] [Important] wss4j 1.5.11.wso2v7 bundle does not contain Dynamic Imports

2014-12-08 Thread Kishanthan Thangarajah
This has been merged to master branch. @ESB Team, please test your scenarios with wss4j-1.5.11-wso2v8-SNAPSHOT. On Fri, Dec 5, 2014 at 5:35 PM, Pulasthi Mahawithana pulast...@wso2.com wrote: Created a PR [1] to fix this. Please review and merge. [1]

Re: [Dev] Custom serialization in hazelcast is not working

2014-12-08 Thread Sajini De Silva
Still its working. On Mon, Dec 8, 2014 at 2:54 PM, Afkham Azeez az...@wso2.com wrote: On Mon, Dec 8, 2014 at 2:50 PM, Sajini De Silva saj...@wso2.com wrote: SerializerConfig sc = new SerializerConfig() .setImplementation(new TreeMapSerializer())

Re: [Dev] Invitation: RDBMS Output Adapter Code Review @ Mon Dec 8, 2014 2pm - 3pm (Tishan Dahanayakage)

2014-12-08 Thread Tishan Dahanayakage
Please find code review notes below. Participants: Suho, Lasantha, Sachini, Damith, Chanika, Ramindu 1. Make mappings configs configurable to user 2. Remove DB name from general mappings 3. change mapping config as mapping key.../key value.../value /mapping 4. Close xml

Re: [Dev] Request to commit the patch IDENTITY-2915

2014-12-08 Thread Johann Nallathamby
Reviewed. Thanks, Johann. On Thu, Dec 4, 2014 at 4:23 PM, Kishanthan Thangarajah kishant...@wso2.com wrote: IS Team, Can you review this fix? On Thu, Dec 4, 2014 at 2:26 PM, Godwin Amila Shrimal god...@wso2.com wrote: Hi Kishanthan, As per the discussion had with you, I removed

Re: [Dev] iOS device enrolment

2014-12-08 Thread Asok Perera
Hi Dilshan, If I'm correct, there are several APIs exposed for iOS functionality (ca / checkin / enroll / profile / scep / server). Can you tell me what are the APIs (in order) the iOS agent should use for only enrolling the device at the backend ? I need to try this out, initially for enrolment

Re: [Dev] [Orbit] Cassandra orbit Git repo

2014-12-08 Thread Maheshika Goonetilleke
Hi Deep Created the repo in wso2[1] and forked it to wso2-dev[2]. [1] https://github.com/wso2/wso2-cassandra [2] https://github.com/wso2-dev/wso2-cassandra On Mon, Dec 8, 2014 at 2:49 PM, Afkham Azeez az...@wso2.com wrote: Approved under the condition that extension points will be introduced

Re: [Dev] Custom serialization in hazelcast is not working

2014-12-08 Thread Afkham Azeez
Change HazelcastClusteringAgent#init method to include the following and see whether the sysouts are getting printed. primaryHazelcastConfig.addMapConfig(mapConfig); SerializerConfig sc = new SerializerConfig(); sc.setImplementation(new StreamSerializerTreeSetLong() {

Re: [Dev] [Important] wss4j 1.5.11.wso2v7 bundle does not contain Dynamic Imports

2014-12-08 Thread Jeewantha Dharmaparakrama
@IS Team, is the bundle added to security-mgt feature ? Do we have do any changes from ESB side? On Monday, December 8, 2014, Kishanthan Thangarajah kishant...@wso2.com wrote: This has been merged to master branch. @ESB Team, please test your scenarios with wss4j-1.5.11-wso2v8-SNAPSHOT. On

[Dev] Exception while mounting postgresql DB to wso2greg

2014-12-08 Thread Thushara Ranawaka
Hi, While following this[1] doc to setup a simple db mount for postgresql, I got the below error log while starting up the greg server with -Dsetup. However after server started without any further issue and database connection is working properly too. Is there anybody who overcome this issue? if

Re: [Dev] iOS device enrolment

2014-12-08 Thread Inosh Perera
Hi Asok, You can find some of the URLs in in emm-config file under iOSEMMConfigurations. Also some more APIs related to registration can be found in deviceRouter.js. For example, /emm/downloadapp devices/register/ devices/iostokenregister devices/pushtoken Regards, Inosh On Mon, Dec 8, 2014 at

Re: [Dev] Request to commit the patch IDENTITY-2915

2014-12-08 Thread Kishanthan Thangarajah
Applied to patch0010. Pull will be merged. On Mon, Dec 8, 2014 at 3:15 PM, Johann Nallathamby joh...@wso2.com wrote: Reviewed. Thanks, Johann. On Thu, Dec 4, 2014 at 4:23 PM, Kishanthan Thangarajah kishant...@wso2.com wrote: IS Team, Can you review this fix? On Thu, Dec 4, 2014 at

[Dev] API Manager OSGI services unsatisfied on DSS

2014-12-08 Thread Madusanka Premaratne
Hi All, I recently installed APIM 1.7.0 on top of Data Services Server. After the installation I check the apimgt OSGI bundles (using ss apimgt) and those are in ACTIVE state. But when I list the services using *list* command, I can see the services are unsatisfied as below. 19 Unsatisfied

Re: [Dev] Integration Test case 301 moved permanently error

2014-12-08 Thread Vanjikumaran Sivajothy
Hi Elilmatha, I did the quick testing on this with simple REST API[1] and i recivced expected output [2]. So can you please add *POST_TO_URI *and *DISABLE_CHUNKING *properties into the request flow of your synapse configurations? [1] api xmlns=http://ws.apache.org/ns/synapse; name=test

Re: [Dev] Documentation visibility feature is not there even though the API Manager documentation contains information about it.

2014-12-08 Thread Kala Weerawardana
Hi, This is mentioned in the API documentation : https://docs.wso2.com/display/AM180/Add+API+Documentation+In-line%2C+using+a+URL+or+a+File https://docs.wso2.com/display/AM180/Add+API+Documentation+In-line%2C+using+a+URL+or+a+File

[Dev] Integration Test case 301 moved permanently error

2014-12-08 Thread Elilmatha Sivanesan
Hi all, I am getting 301 permanently moved error when I invoked the api endpoint through esb. But I am able to get the response when I directly invoked the same end point via the rest client. The cofig url : https://www.eventbriteapi.com/v3/events/13981437857/discounts/?token=HSX6X635TURH32K5CLMV

Re: [Dev] Integration Test case 301 moved permanently error

2014-12-08 Thread Elilmatha Sivanesan
Hi, Thany you Vanji for your quick response, But for this url i was able to get the response. For the following url i'm getting the error: https://www.eventbriteapi.com/v3/events/13981437857/discounts/?token=HSX6X635TURH32K5CLMV

Re: [Dev] ESB connector folder structure

2014-12-08 Thread Vanjikumaran Sivajothy
Is it a bug? On Mon, Dec 8, 2014 at 5:45 PM, Shakila Sivagnanarajah shak...@wso2.com wrote: Hi all, I created the ESB connector folder structure using the command given below: mvn archetype:generate -DarchetypeGroupId=org.wso2.carbon

[Dev] Please merge ESB Sample Integration test commit#101

2014-12-08 Thread Nuwan Wimalasekara
Hi ESB Team, Please merge the pull request https://github.com/wso2-dev/product-esb/pull/101 Thanks, Nuwanw -- Nuwan Wimalasekara Senior Software Engineer - Test Automation WSO2, Inc.: http://wso2.com lean. enterprise. middleware phone: +94 71 668 4620

[Dev] [Storage Server] Testing database snapshots feature

2014-12-08 Thread Dhanushka Priyasad
Hi, I tested the createSnapshot service using SOAP UI for MySQL. I did some code changes [1], because existing code only creates a snapshot (without any data). Now it works for SYSTEM type databases. But when I enter USER_DEFINED as type, error occurs saying “SSH Information is not available for

[Dev] Teamwork connector- 302 Moved Temporarily error

2014-12-08 Thread Kesavan Yogarajah
Hi all, I am developing ESB connector for Teamwork API.I am getting 302 Moved Temporarily response mostly when I invoke all the POST and PUT methods via ESB.I hardly get the 200 OK response.But I am able to get the response when I directly invoked the same end point via the rest client.What could

Re: [Dev] Documentation visibility feature is not there even though the API Manager documentation contains information about it.

2014-12-08 Thread Sewmini Jayaweera
Yes got it. Thank you Udara and Kala :) my mistake I didn't notice the config. Thank you. Best Regards Sewmini Jayaweera *Software Engineer - QA Team* Mobile: +94 (0) 773 381 250 sewm...@wso2.com On Mon, Dec 8, 2014 at 5:52 PM, Kala Weerawardana k...@wso2.com wrote: Hi, This is mentioned

Re: [Dev] [VOTE] Release WSO2 Carbon Kernel 4.3.0 RC2

2014-12-08 Thread Niranjan Karunanandham
X] Broken - Installing the feature via the UI works fine in java 1.6 as excepted for features with and without licenses, but it fails in java 1.7 when you try to install a feature without license. On Mon, Dec 8, 2014 at 12:08 PM, Kishanthan Thangarajah kishant...@wso2.com wrote: Hi Devs,

Re: [Dev] [Application Server] No tenant-mgt.xml file

2014-12-08 Thread Godwin Amila Shrimal
Hi Sagara, Thanks for the information. On Mon, Dec 8, 2014 at 12:43 PM, Sagara Gunathunga sag...@wso2.com wrote: Please refer this thread[1] [1] - [Dev] Why are we not shipping the tenant-mgt.xml file with Carbon packs? Thanks ! On Mon, Dec 8, 2014 at 12:33 PM, Godwin Amila Shrimal

Re: [Dev] [Storage Server] Testing database snapshots feature

2014-12-08 Thread Bhathiya Jayasekara
Hi Dhanuska, In RSS-Config.xml, we only configure system RSS intances. User defined instances are created in SS UI. So we need to update that UI to configure SSH information as well. Thanks, Bhathiya On Mon, Dec 8, 2014 at 8:33 AM, Dhanushka Priyasad dhanush...@wso2.com wrote: Hi, I tested

Re: [Dev] iOS device enrolment

2014-12-08 Thread Dilshan Edirisuriya
Hi Asok, All the APIs executed at the enrollment time are gone through the iOS js module. If you can log that you can find its sequence. Also the sequence is documented in the Apple documentation as well. You can find it here [1]. I have used the same naming convention for them so it should be

[Dev] Change the username for user

2014-12-08 Thread Dulitha Wijewantha
Hi guys, Is it possible to change the username for user using the user manager API? Cheers~ -- Dulitha Wijewantha (Chan) Software Engineer - Mobile Development WSO2 Inc Lean.Enterprise.Mobileware * ~Email duli...@wso2.com duli...@wso2mobile.com* * ~Mobile +94712112165* * ~Website

Re: [Dev] Change the username for user

2014-12-08 Thread Johann Nallathamby
You can't do it in JDBC user stores. But in LDAP user stores you can. However, we don't support every aspect of such change. E.g. there are several places where we have the fully qualified username as the reference to a user, because we don't have a immutable opaque identifier for a user in our

Re: [Dev] [IDENTITY-2789] Please commit patch

2014-12-08 Thread Johann Nallathamby
Please send pull request to wso2-dev/carbon-identity repo and add it to JIRA. On Mon, Dec 8, 2014 at 12:33 PM, Tharindu Edirisinghe tharin...@wso2.com wrote: Hi, Please commit the patch for [1]. Patch is attached in the JIRA. [1] https://wso2.org/jira/browse/IDENTITY-2789 Thanks --

Re: [Dev] Change the username for user

2014-12-08 Thread Dulitha Wijewantha
Hi Johann, We do keep a user id don't we? There is a method called getUserId in RemoteUserStoreManagerService. Is this an auto increment number for the user table? Cheers~ On Mon, Dec 8, 2014 at 12:20 PM, Johann Nallathamby joh...@wso2.com wrote: You can't do it in JDBC user stores. But in

[Dev] Minimum WKA Memeber Count

2014-12-08 Thread Isuru Haththotuwa
Hi, What is recommended $subject that should be in a carbon 4.2.0 based cluster? Is there a particular reason for this? -- Thanks and Regards, Isuru H. +94 716 358 048* http://wso2.com/* ___ Dev mailing list Dev@wso2.org

Re: [Dev] Minimum WKA Memeber Count

2014-12-08 Thread Isuru Haththotuwa
On Mon, Dec 8, 2014 at 10:56 PM, Isuru Haththotuwa isu...@wso2.com wrote: Hi, What is recommended $subject that should be in a carbon 4.2.0 based cluster? Is there a particular reason for this? Meant to say Well Known Member count. -- Thanks and Regards, Isuru H. +94 716 358 048*

Re: [Dev] Minimum WKA Memeber Count

2014-12-08 Thread Eranda Sooriyabandara
Hi Isuru, In HA setup there should be at least two members. If one well known member and it goes down, all other nodes need to restart in order to join the cluster. thanks Eranda On Mon, Dec 8, 2014 at 4:58 PM, Isuru Haththotuwa isu...@wso2.com wrote: On Mon, Dec 8, 2014 at 10:56 PM, Isuru

Re: [Dev] Change the username for user

2014-12-08 Thread Thanuja Jayasinghe
Hi Dulitha, Yes, it is for get the auto increment id of the UM_USER table. Also link [1] shows how to change the user name value in AD. [1] - http://tanyamadurapperuma.blogspot.com/2013/10/tricky-way-to-modify-username-scim.html Thanks, Thanuja. On Mon, Dec 8, 2014 at 4:16 PM, Dulitha

Re: [Dev] Change the username for user

2014-12-08 Thread Dulitha Wijewantha
I guess this is not possible in a JDBC user store if that's the case. This would be really useful if the username is email where the email of a user changes and we'd have to facilitate that in Identity Provider. Cheers~ On Mon, Dec 8, 2014 at 3:38 PM, Thanuja Jayasinghe than...@wso2.com wrote:

Re: [Dev] Minimum WKA Memeber Count

2014-12-08 Thread Afkham Azeez
For wka membership, hereafter we should always recommend IP address ranges (e.g. 192.168.1.100-110. That way, all members in the cluster become WK members, and you don't have to restart the cluster if all WK members fail. On Tue, Dec 9, 2014 at 3:26 AM, Isuru Haththotuwa isu...@wso2.com wrote:

[Dev] [IS] IS travelocity.com sample is not working

2014-12-08 Thread Dilan Udara Ariyaratne
Hi All, I went through the following documentation to configure the IS sample. https://docs.wso2.com/display/IS500/Configuring+Single+Sign-On+with+SAML+2.0 After configuring the service provider

Re: [Dev] Teamwork connector- 302 Moved Temporarily error

2014-12-08 Thread Malaka Silva
Hi Kesavan, Can you try adding [1] before sending. More info can be found in [2] [1] property name=POST_TO_URI scope=axis2 value=true/ [2] https://docs.wso2.com/display/ESB481/HTTP+Transport+Properties Ref Thread : [Dev] SlideShare connector - HTTP/1.1 301 Moved Permanently On Mon, Dec 8,

Re: [Dev] [IS] IS travelocity.com sample is not working

2014-12-08 Thread Udara Liyanage
Hi Dilan, Did you successfully deploy the travelocity.war web app to tomcat or AS. And could you confirm tomcat/AS running on port 8080. On Tue, Dec 9, 2014 at 7:37 AM, Dilan Udara Ariyaratne dil...@wso2.com wrote: Hi All, I went through the following documentation to configure the IS

Re: [Dev] [IS] IS travelocity.com sample is not working

2014-12-08 Thread Darshana Gunawardana
Hi Dilan, So are you getting 404 on tomcat when try to access http://localhost:8080/travelocity.com? Seems like the webapp did not get deployed successfully. Can you please check tomcat logs and see any errors on deploying the webapp. If the webapp is successfully deployed, any configuration on

Re: [Dev] [IS] IS travelocity.com sample is not working

2014-12-08 Thread Darshana Gunawardana
Sorry.. Small typo On Tue, Dec 9, 2014 at 9:25 AM, Darshana Gunawardana darsh...@wso2.com wrote: Hi Dilan, So are you getting 404 on tomcat when try to access http://localhost:8080/travelocity.com? Seems like the webapp did not get deployed successfully. Can you please check tomcat logs

Re: [Dev] Teamwork connector- 302 Moved Temporarily error

2014-12-08 Thread Kesavan Yogarajah
Hi Malaka, I added the property and still getting the same error. Best Regards, Kesavan Yogarajah Associate Software Engineer WSO2 Inc. Mob: +94 779758021 On Tue, Dec 9, 2014 at 7:45 AM, Malaka Silva mal...@wso2.com wrote: Hi Kesavan, Can you try adding [1] before sending. More info can

Re: [Dev] [IS] IS travelocity.com sample is not working

2014-12-08 Thread Malithi Edirisinghe
Hi Dilan, I think it's cause of the url that you try to access. Could you please try http://localhost:8080/travelocity.com/index.jsp instead of http://localhost:8080/travelocity.com Thanks, Malithi. On Tue, Dec 9, 2014 at 9:27 AM, Darshana Gunawardana darsh...@wso2.com wrote: Sorry.. Small

Re: [Dev] Integration Test case 301 moved permanently error

2014-12-08 Thread Vanjikumaran Sivajothy
Based on the wire log call from ESB is rerouted in the thire load balancer and the host name is rewritten by the negix Overbalancer. Hence, I have added *REQUEST_HOST_HEADER *property to enforce the host. api xmlns=http://ws.apache.org/ns/synapse; name=test context=/test resource methods=POST

Re: [Dev] Custom serialization in hazelcast is not working

2014-12-08 Thread Sajini De Silva
Hi Azeez, I tested the above scenario and when the above code segment is added to HazelcastClusteringAgent, the sysout are printed. Thank you, Sajini On Mon, Dec 8, 2014 at 3:39 PM, Afkham Azeez az...@wso2.com wrote: Change HazelcastClusteringAgent#init method to include the following and

Re: [Dev] [IS] IS travelocity.com sample is not working

2014-12-08 Thread Dilan Udara Ariyaratne
Hi Folks, Thanks for the feedback. @udara - Yes, Tomcat is running perfectly on http://localhost:8080 @darshana @malithi - I tried to access http://localhost:8080/travelocity.com/index.jsp without starting IS server, still I get issues. For the first time when I tried to

Re: [Dev] iOS device enrolment

2014-12-08 Thread Asok Perera
Hi Dilshan, Thank you for the answer. I will check the link and the js file. Just to make sure, by iOS js module, did you mean iosemm.js ? BR *Asok Aravinda Perera* Software Engineer WSO2, Inc.;http://wso2.com/

Re: [Dev] iOS device enrolment

2014-12-08 Thread Dilshan Edirisuriya
Yes it is. On Mon, Dec 8, 2014 at 8:48 PM, Asok Perera as...@wso2.com wrote: Hi Dilshan, Thank you for the answer. I will check the link and the js file. Just to make sure, by iOS js module, did you mean iosemm.js ? BR *Asok Aravinda Perera* Software Engineer WSO2,

Re: [Dev] [IS] IS travelocity.com sample is not working

2014-12-08 Thread Dilan Udara Ariyaratne
Hi Folks, Found the problem. It was a permission with the tomcat program folder I had. After executing a chmod -R 755 on the tomcat folder, everything worked fine. Thanks. *Dilan U. Ariyaratne* Software Engineer WSO2 Inc. http://wso2.com/ Mobile: +94775149066 lean . enterprise . middleware

Re: [Dev] [IS] IS travelocity.com sample is not working

2014-12-08 Thread Prabath Ariyarathna
Hi Dilan. Before deploy new war file, please check any other service run on the port 8080 using the following command. lsof -I: 8080 Then kill all process which is attached with the port 8080. Now you can start the new tomcat instance and deploy your new war file and check Catalina.out to check

Re: [Dev] [IS] IS travelocity.com sample is not working

2014-12-08 Thread Dilan Udara Ariyaratne
Hi Prabath, The problem was just a permission issue that I had with my tomcat program folder. After executing a chmod -R 755 on the entire tomcat folder, everything worked fine. Thanks. *Dilan U. Ariyaratne* Software Engineer WSO2 Inc. http://wso2.com/ Mobile: +94775149066 lean . enterprise .

Re: [Dev] Custom serialization in hazelcast is not working

2014-12-08 Thread Ramith Jayasinghe
could we have this in next kernel release? will make our life easy (with the MB time line) :) On Tue, Dec 9, 2014 at 10:07 AM, Sajini De Silva saj...@wso2.com wrote: Hi Azeez, I tested the above scenario and when the above code segment is added to HazelcastClusteringAgent, the sysout are

[Dev] Delete an optional parameter from a JSON payload

2014-12-08 Thread Naasheer Ali
Hi All, I'm doing YouTube connector for ESB. Below I've written a JSON payload to send a request to ESB, Most of them are optional parameters. I need to selectively delete a parameter from the payload when the value of the parameter is not assigned to it. Say, If I didn't give any value to

Re: [Dev] EMM product build failure

2014-12-08 Thread Dulitha Wijewantha
Hi guys, I am getting below error - [INFO] Reactor Summary: [INFO] [INFO] WSO2 Enterprise Mobility Manager (EMM) - Parent SUCCESS [ 0.111 s] [INFO] WSO2 Enterprise Mobility Manager (EMM) - UI styles . SUCCESS [ 1.949 s] [INFO] WSO2 Enterprise Mobility Manager (EMM) - EMM-Task .. SUCCESS [

Re: [Dev] Please merge ESB Sample Integration test commit#101

2014-12-08 Thread Jeewantha Dharmaparakrama
Merged On Mon, Dec 8, 2014 at 6:40 PM, Nuwan Wimalasekara nuw...@wso2.com wrote: Hi ESB Team, Please merge the pull request https://github.com/wso2-dev/product-esb/pull/101 Thanks, Nuwanw -- Nuwan Wimalasekara Senior Software Engineer - Test Automation WSO2, Inc.: http://wso2.com

Re: [Dev] EMM product build failure

2014-12-08 Thread Harshan Liyanage
Hi Dulitha, I've tried building the product-emm just now. It build without an issue. Regards, Lakshitha Harshan Software Engineer Mobile: *+94724423048* Email: hars...@wso2.com Blog : http://harshanliyanage.blogspot.com/ *WSO2, Inc. :** wso2.com http://wso2.com/* lean.enterprise.middleware. On

[Dev] Exceptions on BPS cluster with load test

2014-12-08 Thread Shavantha Weerasinghe
Hi Nandika After updates to bps.xml and datasource.properties I still get same errors on the BPS cluster. My TPS is 2.5 Are there any additional changes for performance improvements Worker 1 TID: [0] [BPS] [2014-12-09 06:07:45,210] ERROR

Re: [Dev] Teamwork connector- 302 Moved Temporarily error

2014-12-08 Thread Vanjikumaran Sivajothy
What was the out come after introducing the *REQUEST_HOST_HEADER* ? On Tue, Dec 9, 2014 at 9:30 AM, Kesavan Yogarajah kesav...@wso2.com wrote: Hi Malaka, I added the property and still getting the same error. Best Regards, Kesavan Yogarajah Associate Software Engineer WSO2 Inc. Mob:

[Dev] Request to commit the patch APPM-254

2014-12-08 Thread Lahiru Cooray
Hi, Please review and commit the diff attached with [1] [1] - https://wso2.org/jira/browse/APPM-254 Thanks. -- *Lahiru Cooray* Software Engineer WSO2, Inc.;http://wso2.com/ lean.enterprise.middleware Mobile: +94 715 654154 ___ Dev mailing list

Re: [Dev] Request to commit the patch APPM-254

2014-12-08 Thread Ruwan Yatawara
Hi Lahiru, Seems you have included a diff for changes that need to go in to git, in the archive attached to the jira. Please do a pull request to the wso2 repo from yours and include the reference to said pull request in the Jira instead. Would be easier to merge that way. Attaching the svn

Re: [Dev] Teamwork connector- 302 Moved Temporarily error

2014-12-08 Thread Kesavan Yogarajah
Hi Vanji, As you suggested I added the following properties. property name=FORCE_HTTP_1.0 value=true scope=axis2/property property name=DISABLE_CHUNKING value=true scope=axis2/property property name=REQUEST_HOST_HEADER value=kesan.teamwork.com scope=axis2/property Now

Re: [Dev] EMM product build failure

2014-12-08 Thread Afkham Azeez
Yes, it is fine now. On Tue, Dec 9, 2014 at 11:50 AM, Harshan Liyanage hars...@wso2.com wrote: Hi Dulitha, I've tried building the product-emm just now. It build without an issue. Regards, Lakshitha Harshan Software Engineer Mobile: *+94724423048* Email: hars...@wso2.com Blog :

Re: [Dev] Fixing of ESB - Samples failure test cases

2014-12-08 Thread Nuwan Wimalasekara
Please fine the JIRA[1] and [2] for the test failures. [1] https://wso2.org/jira/browse/ESBJAVA-3451 [2] https://wso2.org/jira/browse/ESBJAVA-3456 Thanks, Nuwanw On Tue, Dec 9, 2014 at 12:25 PM, Nuwan Wimalasekara nuw...@wso2.com wrote: Hi We have completed fixing ESB sample automated test

Re: [Dev] Custom serialization in hazelcast is not working

2014-12-08 Thread Afkham Azeez
I can provide an extension point to the kernel. On Tue, Dec 9, 2014 at 10:38 AM, Ramith Jayasinghe ram...@wso2.com wrote: could we have this in next kernel release? will make our life easy (with the MB time line) :) On Tue, Dec 9, 2014 at 10:07 AM, Sajini De Silva saj...@wso2.com wrote: Hi

[Dev] Disabled Test Packages in ESB 4.9.0-SNAPSHOT Integration

2014-12-08 Thread Krishantha Samaraweera
Hi ESB Team, Following test packages are disabled in ESB integration tests. What is the reason for disabling tests ? Don't we need to introduce set of new security tests due to QoS changes. *tests-mediator-1 * package name=org.wso2.carbon.esb.mediator.test.aggregate/ package

Re: [Dev] Fixing of ESB - Samples failure test cases

2014-12-08 Thread Krishantha Samaraweera
Thanks Nuwan for your continuous effort on stabilising ESB tests! Thanks, Krishantha. On Tue, Dec 9, 2014 at 12:25 PM, Nuwan Wimalasekara nuw...@wso2.com wrote: Hi We have completed fixing ESB sample automated test cases and Currently there are three test failures. ESB JIRAs have been

Re: [Dev] Disabled Test Packages in ESB 4.9.0-SNAPSHOT Integration

2014-12-08 Thread Jeewantha Dharmaparakrama
On Tue, Dec 9, 2014 at 12:46 PM, Krishantha Samaraweera krishan...@wso2.com wrote: Hi ESB Team, Following test packages are disabled in ESB integration tests. What is the reason for disabling tests ? This was because of the test failures due to carbon changes. We are working on to fix them

Re: [Dev] Sending POST request to ESB with optional parameters

2014-12-08 Thread Elilmatha Sivanesan
In the wire log I noted that content type is added additionally. so I removed that header by using header name=Content-Type scope=transport action=remove / Now it works fine. thank you On Sun, Sep 7, 2014 at 7:28 AM, Elilmatha Sivanesan elilma...@wso2.com wrote: I'm trying to create a

Re: [Dev] [Important] wss4j 1.5.11.wso2v7 bundle does not contain Dynamic Imports

2014-12-08 Thread Jeewantha Dharmaparakrama
Folks, Doesn't look like wss4j new bundle is included in security-mgt feature [1]. @IS Team, can you guys check on this ASAP ? [1] https://github.com/wso2-dev/carbon-identity/blob/master/features/security-mgt/org.wso2.carbon.security.mgt.server.feature/pom.xml On Mon, Dec 8, 2014 at 3:42 PM,