[DISCUSSION] REST/SOAP API break, version bumping

2015-10-27 Thread Maxim Solodovnik
Hello All, I would like to propose 1) create new branch 3.1.x based on 3.0.x 2) change version of the trunk to 4.0.0-SNAPSHOT 3) merge all API changes made in trunk to branch 3.1.x Why I think it is good: 1) The code in trunk and branch 3.1.x will be closer (this will simplify the development) 2)

Re: Need help for SOAP/REST API

2015-10-27 Thread Maxim Solodovnik
It is by design You need to use same externalType/externalId for same user then user count will not grow that fast On Wed, Oct 28, 2015 at 12:59 AM, Jibon L. Costa wrote: > allow_frontend_register, allow.soap.register both are disable. But > when I am trying to generate room hash using user obj

Re: Need help for SOAP/REST API

2015-10-27 Thread Jibon L. Costa
allow_frontend_register, allow.soap.register both are disable. But when I am trying to generate room hash using user object openmeetings creating one user as external type. But it's not deleting automatically after ending meeting. This making huge user list. Can I disable that so that it will gener

Re: Need help for SOAP/REST API

2015-10-27 Thread Maxim Solodovnik
do you mean "self registration from login srceen"? http://openmeetings.apache.org/GeneralConfiguration.html disable allow_frontend_register enable allow.soap.register On Wed, Oct 28, 2015 at 12:47 AM, Jibon L. Costa wrote: > aha... But can you tell me, how I can disable user registration wh

Re: Need help for SOAP/REST API

2015-10-27 Thread Jibon L. Costa
aha... But can you tell me, how I can disable user registration when I will generate hash for room using setUserObjectAndGenerateRoomHash ? On 10/28/15, Maxim Solodovnik wrote: > yes, documentation on the site is for the future version, it would be HUGE > API break :( > Documentation for version

Re: Need help for SOAP/REST API

2015-10-27 Thread Maxim Solodovnik
Will update the main site with 3.0.x documentation, later On Wed, Oct 28, 2015 at 12:44 AM, Maxim Solodovnik wrote: > yes, documentation on the site is for the future version, it would be HUGE > API break :( > Documentation for version 3.0.x is available here: > http://om.alteametasoft.com/

Re: Need help for SOAP/REST API

2015-10-27 Thread Maxim Solodovnik
yes, documentation on the site is for the future version, it would be HUGE API break :( Documentation for version 3.0.x is available here: http://om.alteametasoft.com/openmeetings/docs/SoapRestAPI.html On Tue, Oct 27, 2015 at 11:56 PM, Jibon L. Costa wrote: > I am talking about this: > > http://

Re: Java 7 and 8 features

2015-10-27 Thread Andrew Gaul
Related to Java versions, Apache jclouds uses modernizer-maven-plugin to encourage use of modern Java APIs such as ArrayList, String.getBytes(Charset), etc.: https://github.com/andrewgaul/modernizer-maven-plugin On Tue, Oct 27, 2015 at 01:49:41PM -0200, Vinicius CorrĂȘa de Almeida wrote: > I anali

Re: Need help for SOAP/REST API

2015-10-27 Thread Jibon L. Costa
I am talking about this: http://web.archive.org/web/20150620081749/https://openmeetings.apache.org/openmeetings-webservice/apidocs/index.html but in new documentation those are missing :( On 10/27/15, Jibon L. Costa wrote: > Currently I am using setUserObjectAndGenerateRoomHash() method & last >

Re: Need help for SOAP/REST API

2015-10-27 Thread Jibon L. Costa
Currently I am using setUserObjectAndGenerateRoomHash() method & last in document there was information about that method but now I can't find anything there. Also in 3.0.6 version it wasn't create any user but in current version if I generate has using API it's creating users. Can I disable not to

Re: Need help for SOAP/REST API

2015-10-27 Thread Jibon L. Costa
Yes, I did same. I authorized that with admin info. I was following your PHP API but I can't find those methods in http://openmeetings.apache.org/openmeetings-webservice/apidocs/index.html But I think those methods were present last time & I had build one module for Joomla. On 10/27/15, Maxim Solo

Re: Need help for SOAP/REST API

2015-10-27 Thread Maxim Solodovnik
first you need to authorize your SID please check example and docs for 3.0.x API here: http://om.alteametasoft.com:5080/openmeetings/docs/RestAPISample.html On Tue, Oct 27, 2015 at 11:07 PM, Jibon L. Costa wrote: > Hello, > > I can see SOAP/REST API documentation has been changed. Can you > expl

Re: Java 7 and 8 features

2015-10-27 Thread Maxim Solodovnik
We are just moved to java7 and start using new features I personally don't like the idea of moving all code to new java, I move the areas I currently work on On Tue, Oct 27, 2015 at 10:57 PM, Gary Gregory wrote: > Hi, > > What I see, is that most projects are struggling to move to Java 7, Java 8

Need help for SOAP/REST API

2015-10-27 Thread Jibon L. Costa
Hello, I can see SOAP/REST API documentation has been changed. Can you explain little more how I will use that? For example: I want to generate has for entering a room. I tried like this: http://HOST:5080/openmeetings/services/UserService/getRoomHash?sid=f2a7b28ace077fb8d6d5e79e601cb9df But got

Re: Java 7 and 8 features

2015-10-27 Thread Gary Gregory
Hi, What I see, is that most projects are struggling to move to Java 7, Java 8 seems out of range. There are a lot of opinions and both sides of each Java version for and against. At the end of the day, it's about user feedback and committer community involvement. The projects I help on also lack

Re: Java 7 and 8 features

2015-10-27 Thread Oliver B. Fischer
Hi Vinicius, it is mostly to allow people which are bound (for any reason) to older JDK versions to use our software. There is a plenty number of projects which are not able to use newer JDK versions. I know that this is a controversial topic I think that the majority of us would like to u

Java 7 and 8 features

2015-10-27 Thread Vinicius CorrĂȘa de Almeida
I analized some releases and i noticed that not using java 7 features like multi catch and in java 8 do not use lambda expressions and others features, so i came by this email to know why the developers not using this features?