[openmeetings-user] Adding files externally problem

2011-06-28 Thread Daniel Jao
Hi Sebastian,

Im trying to use your new SOAP APIs, namely the 
*addFolderByExternalUserIdAndType 
and importFile*.

This is my scenario, we have an application that would connect to the 
OpenMeeting, but before that, we want to upload all the user resources so he 
does not need to upload it 1 by 1 in openmeeting.

So base on the API, i think i needed to call the 
*addFolderByExternalUserIdAndType, 
and importFile (multiple times depending on the number of files)*.

My Issue is the ff:

1.  I tried calling addFolderByExternalUserIdAndType, here's a snippet of my 
code:

$params = array(
'SID' = $session_id,
'externalUserId' = $user_id, 
'parentFileExplorerItemId'=0,
'filename'=$folderName,
'room_id' = $roomId, 
'isOwner ' = true, 
'externalType'=$user_type,
'externalFilesid' = 1   
);
$resp = $file_client-addFolderByExternalUserIdAndType($params);

The response is a blank object, i tried looking at the fileexploreritem 
table, but it didnt add anything.

2.  I tried adding a file using the importFile, with the code snippet below:

$params = array(
'SID' = $session_id,
'externalUserId' = $user_id, 
'externalType'=$user_type,
'externalFileId' = 1,  //fix this one
'room_id' = $roomId, 
'isOwner ' = true, 
'parentFolderId' = -2,
'path'='http://TEST 
SERVER/media/assets/knowledgebase/22/1308832914_3_uploadfile_03.jpg',
'fileSystemName'='1308832914_3_uploadfile_03.jpg',

);

$resp = $file_client-importFile($params);

But the result i got was 

*Fatal error*:  Uncaught SoapFault exception: [soapenv:Server] For input 
string: 1308832914_3_uploadfile_03.jpg in D:\openmeetingTest.php:119
Stack trace:
#0 [internal function]: SoapClient-__call('importFile', Array)

3.  Do i need to add a user in the system first?

Please let me know if im doing something wrong.


Thanks,
Daniel

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/l2AYZ3ihvk0J.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
you should either create an account first with the new *add* method,
so that the user with this externalUserId does really exist or you use
the other SOAP call that has no externalUserId. (or you just make sure
that this particular externalUserId does already exist by using it one
time. But I think in your case you should use the addUserxyz method
first)

Sebastian

2011/6/28 Daniel Jao daniel...@gmail.com:
 Hi Sebastian,

 Im trying to use your new SOAP APIs, namely the
 addFolderByExternalUserIdAndType and importFile.

 This is my scenario, we have an application that would connect to the
 OpenMeeting, but before that, we want to upload all the user resources so he
 does not need to upload it 1 by 1 in openmeeting.

 So base on the API, i think i needed to call the
 addFolderByExternalUserIdAndType, and importFile (multiple times depending
 on the number of files).

 My Issue is the ff:

 1.  I tried calling addFolderByExternalUserIdAndType, here's a snippet of my
 code:

 $params = array(
     'SID' = $session_id,
     'externalUserId' = $user_id,
                         'parentFileExplorerItemId'=0,
                         'filename'=$folderName,
                         'room_id' = $roomId,
                         'isOwner ' = true,
                         'externalType'=$user_type,
     'externalFilesid' = 1
                 );
 $resp = $file_client-addFolderByExternalUserIdAndType($params);

 The response is a blank object, i tried looking at the fileexploreritem
 table, but it didnt add anything.

 2.  I tried adding a file using the importFile, with the code snippet below:

 $params = array(
     'SID' = $session_id,
     'externalUserId' = $user_id,
                         'externalType'=$user_type,
     'externalFileId' = 1,  //fix this one
     'room_id' = $roomId,
                         'isOwner ' = true,
     'parentFolderId' = -2,
                         'path'='http://TEST
 SERVER/media/assets/knowledgebase/22/1308832914_3_uploadfile_03.jpg',
                         'fileSystemName'='1308832914_3_uploadfile_03.jpg',

     );

 $resp = $file_client-importFile($params);

 But the result i got was

 Fatal error:  Uncaught SoapFault exception: [soapenv:Server] For input
 string: 1308832914_3_uploadfile_03.jpg in D:\openmeetingTest.php:119
 Stack trace:
 #0 [internal function]: SoapClient-__call('importFile', Array)

 3.  Do i need to add a user in the system first?

 Please let me know if im doing something wrong.


 Thanks,
 Daniel

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/l2AYZ3ihvk0J.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
addNewUserWithExternalType

2011/6/28 seba.wag...@gmail.com seba.wag...@gmail.com:
 you should either create an account first with the new *add* method,
 so that the user with this externalUserId does really exist or you use
 the other SOAP call that has no externalUserId. (or you just make sure
 that this particular externalUserId does already exist by using it one
 time. But I think in your case you should use the addUserxyz method
 first)

 Sebastian

 2011/6/28 Daniel Jao daniel...@gmail.com:
 Hi Sebastian,

 Im trying to use your new SOAP APIs, namely the
 addFolderByExternalUserIdAndType and importFile.

 This is my scenario, we have an application that would connect to the
 OpenMeeting, but before that, we want to upload all the user resources so he
 does not need to upload it 1 by 1 in openmeeting.

 So base on the API, i think i needed to call the
 addFolderByExternalUserIdAndType, and importFile (multiple times depending
 on the number of files).

 My Issue is the ff:

 1.  I tried calling addFolderByExternalUserIdAndType, here's a snippet of my
 code:

 $params = array(
     'SID' = $session_id,
     'externalUserId' = $user_id,
                         'parentFileExplorerItemId'=0,
                         'filename'=$folderName,
                         'room_id' = $roomId,
                         'isOwner ' = true,
                         'externalType'=$user_type,
     'externalFilesid' = 1
                 );
 $resp = $file_client-addFolderByExternalUserIdAndType($params);

 The response is a blank object, i tried looking at the fileexploreritem
 table, but it didnt add anything.

 2.  I tried adding a file using the importFile, with the code snippet below:

 $params = array(
     'SID' = $session_id,
     'externalUserId' = $user_id,
                         'externalType'=$user_type,
     'externalFileId' = 1,  //fix this one
     'room_id' = $roomId,
                         'isOwner ' = true,
     'parentFolderId' = -2,
                         'path'='http://TEST
 SERVER/media/assets/knowledgebase/22/1308832914_3_uploadfile_03.jpg',
                         'fileSystemName'='1308832914_3_uploadfile_03.jpg',

     );

 $resp = $file_client-importFile($params);

 But the result i got was

 Fatal error:  Uncaught SoapFault exception: [soapenv:Server] For input
 string: 1308832914_3_uploadfile_03.jpg in D:\openmeetingTest.php:119
 Stack trace:
 #0 [internal function]: SoapClient-__call('importFile', Array)

 3.  Do i need to add a user in the system first?

 Please let me know if im doing something wrong.


 Thanks,
 Daniel

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/l2AYZ3ihvk0J.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




 --
 Sebastian Wagner
 http://www.webbase-design.de
 http://openmeetings.googlecode.com
 http://www.wagner-sebastian.com
 seba.wag...@gmail.com




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



[openmeetings-user] OpenMeetings Moodle Mod 1.1

2011-06-28 Thread seba.wag...@gmail.com
I guess the majority has seen it already,

we have released a new version of the Moodle Mod a week ago or so.
This is the official announcement on the Moodle forums:
http://moodle.org/mod/forum/discuss.php?d=177698


Sebastian

-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread Daniel Jao
hi seba,

i tried calling the addNewUserWithExternalType, heres a snippet of the code:

addNewUserWithExternalType($sessionId, 'Test user name', 'testpass', 'jao', 
'daniel', 'daniel_...@yahoo.com', '', '', '', '', '', '', '', '', '', 3, 
Testing Server);

function addNewUserWithExternalType($sessionId, $username, $userpass, 
$lastname, $firstname, $email, $additionalname, $street, $zip, $fax, 
$states_id, $town, $language_id, $baseURL, $jNameTimeZone, $externalUserId, 
$externalUserType){
$user_client = new SoapClient(OPEN_MEETING_USER_URL);
$params = array(
'SID' = $session_id,
'username' = $username,
'userpass' = $userpass,
'lastname' = $lastname,
'firstname' = $firstname,
'email' = $email,
'additionalname' = $additionalname,
'street' =$street,
'zip' = $zip,
'fax' = $fax,
'states_id' = $states_id,
'town' = $town,
'language_id' = $language_id,
'jNameTimeZone' = $jNameTimeZone,
'externalUserId' = $externalUserId,
'externalUserType' = $externalUserType
);


$resp = $user_client-addNewUserWithExternalType($params);
print_r($resp);
}

im getting this:

stdClass Object
(
[return] = -26
)

What seems to be the problem here?


-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/fpnZXrKa2MwJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



[openmeetings-user] Sending invitation immediately

2011-06-28 Thread HyperGate
Greetings!

Does anyone know, when I create a new scheduled conference using the 
calendar, how can I make that the invitation e-mails are sent immediately, 
and not 5 minutes before the conference should start. Any advice would be 
welcome!


Thank you for all in advance for the answers!

Regards

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/6Y1OW70xpfwJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
the SOAP Calls that are manipulating the Users need an Admin Account
for the manipulation,
that only a User with Web-Service User-Level. Die you use an Admin
Account when you did
authentificate via SOAP?

Sebastian

2011/6/28 Daniel Jao daniel...@gmail.com:
 hi seba,

 i tried calling the addNewUserWithExternalType, heres a snippet of the code:

 addNewUserWithExternalType($sessionId, 'Test user name', 'testpass', 'jao',
 'daniel', 'daniel_...@yahoo.com', '', '', '', '', '', '', '', '', '', 3,
 Testing Server);

 function addNewUserWithExternalType($sessionId, $username, $userpass,
 $lastname, $firstname, $email, $additionalname, $street, $zip, $fax,
 $states_id, $town, $language_id, $baseURL, $jNameTimeZone, $externalUserId,
 $externalUserType){
 $user_client = new SoapClient(OPEN_MEETING_USER_URL);
 $params = array(
     'SID' = $session_id,
     'username' = $username,
     'userpass' = $userpass,
                                 'lastname' = $lastname,
                                 'firstname' = $firstname,
                                 'email' = $email,
                                 'additionalname' = $additionalname,
                                 'street' =$street,
                                 'zip' = $zip,
                                 'fax' = $fax,
                                 'states_id' = $states_id,
                                 'town' = $town,
                                 'language_id' = $language_id,
                                 'jNameTimeZone' = $jNameTimeZone,
                                 'externalUserId' = $externalUserId,
                                 'externalUserType' = $externalUserType
     );


 $resp = $user_client-addNewUserWithExternalType($params);
 print_r($resp);
 }

 im getting this:

 stdClass Object
 (
 [return] = -26
 )

 What seems to be the problem here?

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/fpnZXrKa2MwJ.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Sending invitation immediately

2011-06-28 Thread seba.wag...@gmail.com
There are no configurations available to change that,
you need a developer that changes the code and re-compiles it or who
implements a configuration value, so that you can change it without
changing code.

Sebastian

2011/6/28 HyperGate rudol...@gmail.com:
 Greetings!
 Does anyone know, when I create a new scheduled conference using the
 calendar, how can I make that the invitation e-mails are sent immediately,
 and not 5 minutes before the conference should start. Any advice would be
 welcome!

 Thank you for all in advance for the answers!
 Regards

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/6Y1OW70xpfwJ.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread Daniel Jao
hi seba, 

i was able to make the addNewUserWithExternalType work, so next is how to 
add a folder and a file?

1.  How can i add folder? - addFolderByExternalUserIdAndType ? - i tried 
this an im getting 

my parameters in my case are:

Array
(
[SID] = d3fe708a00797c170a18045fa5ebafc1
[externalUserId] = 1
[parentFileExplorerItemId] = 0
[filename] = Test folder
[room_id] = 43
[isOwner ] = 1
[externalType] = Test Server
[externalFilesid] = 0
)


stdClass Object
(
[return] = 

)


2.  How can i add file? - importFileByInternalUserId, - i tried this an im 
getting this error: 

*Fatal error*:  Uncaught SoapFault exception: [soapenv:Server] For input 
string: 1308832914_3_uploadfile_03.jpg 


Let me know where i am doing wrong,

thanks,
daniel

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/ABDpMvc2UK0J.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
please check the actual list of params, I have changed some yesterday.

The error number 2) means that you call the function with the wrong params.

The error 1) does not say so much, you need to check the
red5.log/console output and maybe also it was just successful.

Sebastian

2011/6/28 Daniel Jao daniel...@gmail.com:
 hi seba,

 i was able to make the addNewUserWithExternalType work, so next is how to
 add a folder and a file?

 1.  How can i add folder? - addFolderByExternalUserIdAndType ? - i tried
 this an im getting

 my parameters in my case are:

 Array
 (
 [SID] = d3fe708a00797c170a18045fa5ebafc1
 [externalUserId] = 1
 [parentFileExplorerItemId] = 0
 [filename] = Test folder
 [room_id] = 43
 [isOwner ] = 1
 [externalType] = Test Server
 [externalFilesid] = 0
 )

 stdClass Object
 (
 [return] =

 )

 2.  How can i add file? - importFileByInternalUserId, - i tried this an im
 getting this error:

 Fatal error:  Uncaught SoapFault exception: [soapenv:Server] For input
 string: 1308832914_3_uploadfile_03.jpg

 Let me know where i am doing wrong,

 thanks,
 daniel

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/ABDpMvc2UK0J.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread Daniel Jao
hi seba,

for #2, im passing this parameters: which i checked is correct base on the 
doc now:

$params = array(
'SID' = $session_id,
'internalUserId' = $internalUserId,
'externalType'=$user_type,
'externalFileId' = 1, 
'room_id' = $roomId, 
'isOwner ' = true, 
'parentFolderId' = -2,

'path'='http://tempserver/media/assets/knowledgebase/22/1308832914_3_uploadfile_03.jpg',
'fileSystemName'='1308832914_3_uploadfile_03.jpg',

);

but im getting that error, are my params correct?

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/mSiQY1kGVucJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
at least you are using the params in the wrong order:
http://code.google.com/p/openmeetings/source/browse/trunk/singlewebapp/src/fileservice/org/openmeetings/axis/services/FileService.java#73

http://code.google.com/p/openmeetings/wiki/SoapMethods#importFile

Sebastian

2011/6/28 Daniel Jao daniel...@gmail.com:
 hi seba,

 for #2, im passing this parameters: which i checked is correct base on the
 doc now:

 $params = array(
     'SID' = $session_id,
                         'internalUserId' = $internalUserId,
                         'externalType'=$user_type,
     'externalFileId' = 1,
     'room_id' = $roomId,
                         'isOwner ' = true,
     'parentFolderId' = -2,

 'path'='http://tempserver/media/assets/knowledgebase/22/1308832914_3_uploadfile_03.jpg',
                         'fileSystemName'='1308832914_3_uploadfile_03.jpg',

     );

 but im getting that error, are my params correct?

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/mSiQY1kGVucJ.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread Daniel Jao
i tried changing my code to follow the correctformat:

Array
(
[SID] = 9b7e2662b4eedb3796520216b42be573
[externalUserId] = 7
[externalFileId] = 1
[externalType] = Testing Server
[room_id] = 54
[isOwner ] = 1
[path] = 
http://testserver/media/assets/knowledgebase/22/1308832914_3_uploadfile_03.jpg
[parentFolderId] = -2
[fileSystemName] = 1308832914_3_uploadfile_03.jpg
)

but im having the same error, any insights?

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/bXLdTns6-40J.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



[openmeetings-user] How to change the default icon/avatar?

2011-06-28 Thread Juanan
Hi,

   I've been searching for an option to change the default icon/avatar
that is linked by default to any new user in a conference that hasn't
uploaded a customized one with his/her picture. In my case that icon
is the image of a donkey that some users don't like at all  :-)  I've
suggested to them to upload a personal one, without success. Well,
anyway, I'd like to know how to change that default icon. Thanks for
your help and keep up the good work!

  Juanan

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
What is the output error?
If it remains the same, I am quite sure its still sth with the list of params.
Otherwise you would find some exception in the log, but I guess it
never reaches that point, the Gateway does not even accept your
params.

Sebastian

2011/6/28 Daniel Jao daniel...@gmail.com:
 i tried changing my code to follow the correctformat:

 Array
 (
 [SID] = 9b7e2662b4eedb3796520216b42be573
 [externalUserId] = 7
 [externalFileId] = 1
 [externalType] = Testing Server
 [room_id] = 54
 [isOwner ] = 1
 [path] =
 http://testserver/media/assets/knowledgebase/22/1308832914_3_uploadfile_03.jpg
 [parentFolderId] = -2
 [fileSystemName] = 1308832914_3_uploadfile_03.jpg
 )

 but im having the same error, any insights?

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/bXLdTns6-40J.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] How to change the default icon/avatar?

2011-06-28 Thread seba.wag...@gmail.com
the default icons are in:
red5/webapps/openmeeting/default/

you need to replace the file with a one with similar name (and prefered size).

Sebastian

2011/6/28 Juanan jua...@gmail.com:
 Hi,

   I've been searching for an option to change the default icon/avatar
 that is linked by default to any new user in a conference that hasn't
 uploaded a customized one with his/her picture. In my case that icon
 is the image of a donkey that some users don't like at all  :-)  I've
 suggested to them to upload a personal one, without success. Well,
 anyway, I'd like to know how to change that default icon. Thanks for
 your help and keep up the good work!

  Juanan

 --
 You received this message because you are subscribed to the Google Groups 
 OpenMeetings User group.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to 
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/openmeetings-user?hl=en.





-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



[openmeetings-user] Re: help about installing Open-meeting

2011-06-28 Thread hassane essalek
Hello Sebastian,

Yes, I have already read it.
but I want to install it on my server with a database and all
application, to have an application in my server. is that possible?

On 25 juin, 10:00, seba.wag...@gmail.com seba.wag...@gmail.com
wrote:
 Did you read the documentation in the wiki about integration?

 Sebastian

 2011/6/22 hassane essalek hassan...@gmail.com



  Hello,

  I would like to create a website that allows chat with audio and
  webcam, and I want to integrate the application open-meeting in my
  website, I am in need of your help to integrate this tool using
  Windows OS.

  thank you

  --
  You received this message because you are subscribed to the Google Groups
  OpenMeetings User group.
  To post to this group, send email to openmeetings-user@googlegroups.com.
  To unsubscribe from this group, send email to
  openmeetings-user+unsubscr...@googlegroups.com.
  For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.

 --
 Sebastian 
 Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://www.wagner-sebastian.com
 seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Re: help about installing Open-meeting

2011-06-28 Thread seba.wag...@gmail.com
Hassane,

of course it's possible. You might get in touch with your Sys-Admin to
get help with the installation.

Sebastian

2011/6/28 hassane essalek hassan...@gmail.com:
 Hello Sebastian,

 Yes, I have already read it.
 but I want to install it on my server with a database and all
 application, to have an application in my server. is that possible?

 On 25 juin, 10:00, seba.wag...@gmail.com seba.wag...@gmail.com
 wrote:
 Did you read the documentation in the wiki about integration?

 Sebastian

 2011/6/22 hassane essalek hassan...@gmail.com



  Hello,

  I would like to create a website that allows chat with audio and
  webcam, and I want to integrate the application open-meeting in my
  website, I am in need of your help to integrate this tool using
  Windows OS.

  thank you

  --
  You received this message because you are subscribed to the Google Groups
  OpenMeetings User group.
  To post to this group, send email to openmeetings-user@googlegroups.com.
  To unsubscribe from this group, send email to
  openmeetings-user+unsubscr...@googlegroups.com.
  For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.

 --
 Sebastian 
 Wagnerhttp://www.webbase-design.dehttp://openmeetings.googlecode.comhttp://www.wagner-sebastian.com
 seba.wag...@gmail.com

 --
 You received this message because you are subscribed to the Google Groups 
 OpenMeetings User group.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to 
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/openmeetings-user?hl=en.





-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread Daniel Jao
Hi Sebastian,

here's an update.

1.  I was able to make the addNewUserWithExternalType work.  so im good with 
this.

2.  for the *addFolderByUserId *- its slightly working, i said this because 
given the correct parameters, im able to retrieve a fileexploreritem_id, but 
when i checked the db, i saw some issue:

Please verify if im correct:

when i check the row record, the room_id that i passed when i called the api 
call, is being used as the filename column in fileexploreritem, i would say 
this is wrong, and the room_id column in the same table is being set to 0, 
im 100% sure that the way i call the api is correct: here's the param i use:

userId is the openmeeting user id, i hard coded it for now

Array
(
[SID] = 049c86afc17f9e785db934265c9a5adf
[userId] = 8
[parentFileExplorerItemId] = 0
[filename] = Test Folder
[room_id] = 63
[isOwner ] = 1
[externalFilesid] = 0
[externalType] = Testing
)

3.  For the *addFolderByUserId*, its not working because i keep on getting 

*Fatal error*:  Uncaught SoapFault exception: [soapenv:Server] For input 
string: 1308832914_3_uploadfile_03.jpg 

let me know what you think.

Do you have any php script that you used to test this one, maybe i can play 
with that one as well if you have.

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/_2fyzI0FKMoJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
Hi Daniel,

I think for 2. / 3. you are mixing things up,
the API Method in 2. should be called
*addFolderByExternalUserIdAndType* and it has different params then
*addFolderByUserId*

plese review it, I have removed one argument yesterday, there was a
duplicated param externalUserType in the previous approch from me:
http://code.google.com/p/openmeetings/source/browse/trunk/singlewebapp/src/fileservice/org/openmeetings/axis/services/FileService.java#244

http://code.google.com/p/openmeetings/wiki/SoapMethods#addFolderByExternalUserIdAndType

So make sure you are using the latest code with that API.

For the 3. Issue you have the same problem like initially = Your
params just do not meet the method's signature.


Sebastian


2011/6/28 Daniel Jao daniel...@gmail.com:
 Hi Sebastian,

 here's an update.

 1.  I was able to make the addNewUserWithExternalType work.  so im good with
 this.

 2.  for the addFolderByUserId - its slightly working, i said this because
 given the correct parameters, im able to retrieve a fileexploreritem_id, but
 when i checked the db, i saw some issue:

 Please verify if im correct:

 when i check the row record, the room_id that i passed when i called the api
 call, is being used as the filename column in fileexploreritem, i would say
 this is wrong, and the room_id column in the same table is being set to 0,
 im 100% sure that the way i call the api is correct: here's the param i use:

 userId is the openmeeting user id, i hard coded it for now

 Array
 (
 [SID] = 049c86afc17f9e785db934265c9a5adf
 [userId] = 8
 [parentFileExplorerItemId] = 0
 [filename] = Test Folder
 [room_id] = 63
 [isOwner ] = 1
 [externalFilesid] = 0
 [externalType] = Testing
 )

 3.  For the addFolderByUserId, its not working because i keep on getting

 Fatal error:  Uncaught SoapFault exception: [soapenv:Server] For input
 string: 1308832914_3_uploadfile_03.jpg

 let me know what you think.

 Do you have any php script that you used to test this one, maybe i can play
 with that one as well if you have.

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/_2fyzI0FKMoJ.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread Daniel Jao
hi sebastian,

sorry for the mistype.

i meant for #2 is addFolderByUserId,

im using the ff params: 

Array
(
[SID] = 103b1812e3a98369306a16eb63c51a61
[userId] = 8
[parentFileExplorerItemId] = 0
[filename] = Test Folder
[room_id] = 65
[isOwner ] = 1
[externalFilesid] = 0
[externalType] = Testing
)



and for #3 is importFileByInternalUserId

im using the ff params:

Array
(
[SID] = 103b1812e3a98369306a16eb63c51a61
[internalUserId] = 8
[externalType] = Testing Server
[externalFileId] = 1
[room_id] = 65
[isOwner ] = 1
[parentFolderId] = -2
[path] = 
http://devserver/media/assets/folder/29/1308894254_3_uploadfile_table.xls
[fileSystemName] = 1308894254_3_uploadfile_table.xls
)

im sure im using the correct params and its in the proper order

thanks,
daniel

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/0qhwuaCWUjIJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
Hi Daniel,

it is that simple:
If the error value is *fail for input string xyz* the Gateway has
rejected your params, so there is sth wrong with it.

Sebastian

2011/6/28 Daniel Jao daniel...@gmail.com:
 hi sebastian,

 sorry for the mistype.

 i meant for #2 is addFolderByUserId,

 im using the ff params:

 Array
 (
 [SID] = 103b1812e3a98369306a16eb63c51a61
 [userId] = 8
 [parentFileExplorerItemId] = 0
 [filename] = Test Folder
 [room_id] = 65
 [isOwner ] = 1
 [externalFilesid] = 0
 [externalType] = Testing
 )


 and for #3 is importFileByInternalUserId

 im using the ff params:

 Array
 (
 [SID] = 103b1812e3a98369306a16eb63c51a61
 [internalUserId] = 8
 [externalType] = Testing Server
 [externalFileId] = 1
 [room_id] = 65
 [isOwner ] = 1
 [parentFolderId] = -2
 [path] =
 http://devserver/media/assets/folder/29/1308894254_3_uploadfile_table.xls
 [fileSystemName] = 1308894254_3_uploadfile_table.xls
 )

 im sure im using the correct params and its in the proper order

 thanks,
 daniel

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/0qhwuaCWUjIJ.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Tungkol: Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
can you please make a select filename from fileexploreritem ^^

the param *filename* is written *fileName*

I don't know for the other params but I am 100% sure that you just
mixed up some values.

Which of the functions are you using now in the end?
*importFileByInternalUserId* or *importFile* ?



Sebastian

2011/6/28 Daniel Jao daniel...@gmail.com:
 hi sebastian,
 my question is when i use the addFolderByUserId, why is it that the room_id
 is the one being use as the filename in the fileexploreritem table? is this
 correct?  as i said, i used this parameters:

 Array
 (
 [SID] = 103b1812e3a98369306a16eb63c51a61
 [userId] = 8
 [parentFileExplorerItemId] = 0
 [filename] = Test Folder
 [room_id] = 65
 [isOwner ] = 1
 [externalFilesid] = 0
 [externalType] = Testing
 )
 im attaching a screenshot of the db, please confirm if my question is valid.

 For the
 If the error value is *fail for input string xyz* the Gateway has

 rejected your params, so there is sth wrong with it.

 What would you say is wrong with the ff params:

 Array
 (
 [SID] = 103b1812e3a98369306a16eb63c51a61
 [internalUserId] = 8
 [externalType] = Testing Server
 [externalFileId] = 1
 [room_id] = 65
 [isOwner ] = 1
 [parentFolderId] = -2
 [path] =
 http://devserver/media/assets/folder/29/1308894254_3_uploadfile_table.xls
 [fileSystemName] = 1308894254_3_uploadfile_table.xls
 )

 Specifically the fileSystemName? base on the doc, i needed to set the
 filename with extension, which i did.

 I really appreciate your help sebastian.

 thanks,

 daniel

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/3TEhOJSc8lEJ.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Tungkol: Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread Daniel Jao
hi sebastiam,

heres the result:

mysql select filename from fileexploreritem;
+-+
| filename|
+-+
| Testing |
| 51  |
| 52  |
| 53  |
| 54  |
| acadmiacs table.png |
| 61  |
| 62  |
| 63  |
| 64  |
| 65  |
+-+
11 rows in set (0.00 sec)

for #2 (adding of folder), im using addFolderByUserId

as i said, i have the sample params as this one: 

*Array
(
[SID] = 103b1812e3a98369306a16eb63c51a61
[userId] = 8
[parentFileExplorerItemId] = 0
[filename] = Test Folder
[room_id] = 65
[isOwner ] = 1
[externalFilesid] = 0
[externalType] = Testing
)*



while for adding of file, im using importFileByInternalUserId.

id like to figure out adding of folder first so i can move on to adding of 
files.

thanks,
daniel

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/HGKl0H7V26QJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Tungkol: Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
as I said before the param is not called *filename* its called *fileName*
review:
http://code.google.com/p/openmeetings/source/browse/trunk/singlewebapp/src/fileservice/org/openmeetings/axis/services/FileService.java#310

public Long addFolderByUserId(String SID, Long userId,
   Long parentFileExplorerItemId, String fileName, Long
room_id, Boolean isOwner,
   Long externalFilesid, String externalType)

Sebastian

2011/6/28 Daniel Jao daniel...@gmail.com:
 hi sebastiam,

 heres the result:

 mysql select filename from fileexploreritem;
 +-+
 | filename|
 +-+
 | Testing |
 | 51  |
 | 52  |
 | 53  |
 | 54  |
 | acadmiacs table.png |
 | 61  |
 | 62  |
 | 63  |
 | 64  |
 | 65  |
 +-+
 11 rows in set (0.00 sec)

 for #2 (adding of folder), im using addFolderByUserId

 as i said, i have the sample params as this one:

 Array
 (
 [SID] = 103b1812e3a98369306a16eb63c51a61
 [userId] = 8
 [parentFileExplorerItemId] = 0
 [filename] = Test Folder
 [room_id] = 65
 [isOwner ] = 1
 [externalFilesid] = 0
 [externalType] = Testing
 )


 while for adding of file, im using importFileByInternalUserId.

 id like to figure out adding of folder first so i can move on to adding of
 files.

 thanks,
 daniel

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/HGKl0H7V26QJ.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Tungkol: Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread Daniel Jao
hi sebastian,

i was able to make the addFolderByUserId work, but i have some questions for 
you:

1.  Im seeing it in public drive, i want it to be seen in the my home drive, 
what parameters should i pass?  currently im using this parameters

array(
'SID' = $sessionId,
'userId' = $openmeetingUserId, 
*'parentFileExplorerItemId'=0,*
'fileName'=$folderName,
'room_id' = $roomId, 
   * 'isOwner ' = true, *
'externalFilesid' = 0,  //fix this one 
'externalType'=$user_type

);

2.  Is this a per room, meaning if the same user goes in to another room, 
would it still show the old folders?

thanks,
daniel

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/ULsEbQuAJ0kJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Tungkol: Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
The params to specifiy to make it go into the private folder are ...
http://code.google.com/p/openmeetings/wiki/SoapMethods#importFile

..
Quote:

Description: Import file from external source to upload a file to a
room-drive you specify:

   - externalUserId, user if of openmeetings user for which we upload the
   file
   - room_id = openmeetings room id
   - isOwner = 0
   - parentFolderId = 0

to upload a file to a private-drive you specify:

   - externalUserId, user if of openmeetings user for which we upload the
   file
   - room_id = openmeetings room id
   - isOwner = 1
   - parentFolderId = -2

For Boolean Values 0 and false or 1 and true have the same meaning.

*Is this a per room, meaning if the same user goes in to another room, would
it still show the old folders?*
=The files in the private folder are bound to the user, so they stay the
same in all conference rooms and are only visible to the user.
Files in the public folder are bound to the conference room, they are
accessible by everybody, but if you change the conference room, you have a
new public drive.

Sebastian


2011/6/28 Daniel Jao daniel...@gmail.com

 hi sebastian,

 i was able to make the addFolderByUserId work, but i have some questions
 for you:

 1.  Im seeing it in public drive, i want it to be seen in the my home
 drive, what parameters should i pass?  currently im using this parameters

 array(
 'SID' = $sessionId,
 'userId' = $openmeetingUserId,
 *'parentFileExplorerItemId'=0,*
 'fileName'=$folderName,
 'room_id' = $roomId,
* 'isOwner ' = true, *
 'externalFilesid' = 0,  //fix this one
 'externalType'=$user_type

 );

 2.  Is this a per room, meaning if the same user goes in to another room,
 would it still show the old folders?


 thanks,
 daniel

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/ULsEbQuAJ0kJ.

 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



[openmeetings-user] Aw: installation directory and bandwidth usage

2011-06-28 Thread Sebastian Wagner
you can find plenty of information regarding that topic if you search the 
mailing list or at the wiki @ googlecode

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/QGZGks3sJvgJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Tungkol: Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
 public FileImportError[] importFileByInternalUserId(
String SID,'SID' = $session_id,
Long internalUserId,   'internalUserId' =
$internalUserId,
Long externalFileId,MISSING
String externalType,   'externalType'=$user_type,
Long room_id,   'room_id' = $roomId,
boolean isOwner,   'isOwner ' = true,
String path,   'parentFolderId' = -2,
 Long parentFolderId,
'path'='http:/temp/media/assets/folder/29/1308894254_3_uploadfile__table.xls',
String fileSystemName
'fileSystemName'='1308894254_3_uploadfile__table.xls'

)


See the things in red that are wrong.

Sebastian


2011/6/28 Daniel Jao daniel...@gmail.com

 hmm.. so if  i want my files to be use bounded, then i think i dont need
to call the addFolderByUserId anymore, let me focus then on
importFileByInternalUserId.

 question:

 array(
 'SID' = $session_id,
 'internalUserId' = $internalUserId,
 'externalType'=$user_type,
 'externalFileId' = $fileId,  //fix this one
 'room_id' = $roomId,
 'isOwner ' = true,
 'parentFolderId' = -2,

'path'='http:/temp/media/assets/folder/29/1308894254_3_uploadfile__table.xls',

'fileSystemName'='1308894254_3_uploadfile__table.xls'

 );

 1.  What should be the path? should it point to the file itself?
 2.  Any restriction on the fileSystemName?

 --
 You received this message because you are subscribed to the Google Groups
OpenMeetings User group.
 To view this discussion on the web visit
https://groups.google.com/d/msg/openmeetings-user/-/1wbIXKWvd_YJ.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
http://groups.google.com/group/openmeetings-user?hl=en.



--
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Tungkol: Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
okay maybe I did oversee your filesId but the params are still in the wrong
order.

Sebastian

2011/6/28 seba.wag...@gmail.com seba.wag...@gmail.com

 public FileImportError[] importFileByInternalUserId(
 String SID,'SID' = $session_id,
 Long internalUserId,   'internalUserId' =
 $internalUserId,
 Long externalFileId,MISSING
 String externalType,   'externalType'=$user_type,
 Long room_id,   'room_id' = $roomId,
 boolean isOwner,   'isOwner ' = true,
 String path,   'parentFolderId' = -2,
  Long parentFolderId,
 'path'='http:/temp/media/assets/folder/29/1308894254_3_uploadfile__table.xls',
 String fileSystemName
 'fileSystemName'='1308894254_3_uploadfile__table.xls'

 )


 See the things in red that are wrong.


 Sebastian


 2011/6/28 Daniel Jao daniel...@gmail.com
 
  hmm.. so if  i want my files to be use bounded, then i think i dont need
 to call the addFolderByUserId anymore, let me focus then on
 importFileByInternalUserId.
 
  question:
 
  array(
  'SID' = $session_id,
  'internalUserId' = $internalUserId,
  'externalType'=$user_type,
  'externalFileId' = $fileId,  //fix this one
  'room_id' = $roomId,
  'isOwner ' = true,
  'parentFolderId' = -2,
 
 'path'='http:/temp/media/assets/folder/29/1308894254_3_uploadfile__table.xls',
 
 'fileSystemName'='1308894254_3_uploadfile__table.xls'
 
  );
 
  1.  What should be the path? should it point to the file itself?
  2.  Any restriction on the fileSystemName?
 
  --
  You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
  To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/1wbIXKWvd_YJ.
  To post to this group, send email to openmeetings-user@googlegroups.com.
  To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
  For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.



 --

 Sebastian Wagner
 http://www.webbase-design.de
 http://openmeetings.googlecode.com
 http://www.wagner-sebastian.com
 seba.wag...@gmail.com




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Tungkol: Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread Daniel Jao
ok, sorry,  i already fixed the ordering but having still the same error:

  String SID, Long internalUserId, Long externalFileId, 
String externalType, Long room_id, 
boolean isOwner, String path, 
Long parentFolderId, String 
fileSystemName

  Array
(
[SID] = 42402a128cbac7b737d79aa4446688aa
[internalUserId] = 14
[externalFileId] = 1
[externalType] = 12345
[room_id] = 98
[isOwner ] = 1
[path] = 
http://server/media/assets/folder/29/1308894254_3_uploadfile_table.xls
[parentFolderId] = -2
[fileSystemName] = 1308894254_3_uploadfile_table.xls
)

do you see any issue here?

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/QSc3L1WY5_MJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Tungkol: Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
Actually those values look fine to me.
However as long as the method returns something is wrong with your
string there is still any issue somewhere in your code.

Sebastian

2011/6/28 Daniel Jao daniel...@gmail.com

 ok, sorry,  i already fixed the ordering but having still the same error:

   String SID, Long internalUserId, Long externalFileId,
     String externalType, Long room_id, 
 boolean isOwner, String path,
     Long parentFolderId, String 
 fileSystemName

   Array
 (
     [SID] = 42402a128cbac7b737d79aa4446688aa
     [internalUserId] = 14
     [externalFileId] = 1
     [externalType] = 12345
     [room_id] = 98
     [isOwner ] = 1
     [path] = 
 http://server/media/assets/folder/29/1308894254_3_uploadfile_table.xls
     [parentFolderId] = -2
     [fileSystemName] = 1308894254_3_uploadfile_table.xls
 )

 do you see any issue here?

 --
 You received this message because you are subscribed to the Google Groups 
 OpenMeetings User group.
 To view this discussion on the web visit 
 https://groups.google.com/d/msg/openmeetings-user/-/QSc3L1WY5_MJ.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to 
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at 
 http://groups.google.com/group/openmeetings-user?hl=en.



--
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Tungkol: Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
what is the error it does return?

Sebastian

2011/6/28 Daniel Jao daniel...@gmail.com:
 this is really weird, what i do is just create this parameters

 Array
 (
 [SID] = 0e4348655ca6e5e7d5f7128889a2de0e
 [internalUserId] = 14
 [externalFileId] = 1
 [externalType] = 12345
 [room_id] = 107
 [isOwner ] = 1
 [path] = http://www.uscis.gov/files/form/i-9.pdf
 [parentFolderId] = -2
 [fileSystemName] = i-9.pdf

 )

 then call the importFileByInternalUserId soap call, i made sure the sid is
 logged in. :(

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/xxh3ILExJzcJ.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Tungkol: Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread seba.wag...@gmail.com
there is a blank behind *isOwner * is that normal or just a formatting issue?

Sebastian

2011/6/28 seba.wag...@gmail.com seba.wag...@gmail.com:
 what is the error it does return?

 Sebastian

 2011/6/28 Daniel Jao daniel...@gmail.com:
 this is really weird, what i do is just create this parameters

 Array
 (
     [SID] = 0e4348655ca6e5e7d5f7128889a2de0e
     [internalUserId] = 14
     [externalFileId] = 1
     [externalType] = 12345
     [room_id] = 107
     [isOwner ] = 1
     [path] = http://www.uscis.gov/files/form/i-9.pdf
     [parentFolderId] = -2
     [fileSystemName] = i-9.pdf

 )

 then call the importFileByInternalUserId soap call, i made sure the sid is
 logged in. :(

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/xxh3ILExJzcJ.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




 --
 Sebastian Wagner
 http://www.webbase-design.de
 http://openmeetings.googlecode.com
 http://www.wagner-sebastian.com
 seba.wag...@gmail.com




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: Tungkol: Re: [openmeetings-user] Adding files externally problem

2011-06-28 Thread Daniel Jao
that was it, you're the man sebastian, apologies for that one, let me play 
with this one.

thanks,
daniel

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/ng854ZgSq68J.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



[openmeetings-user] new wiki pages

2011-06-28 Thread shouldbeq931
Hi, 

Having spent a few days installing and configuring OpenMeetings on Ubuntu 
10.04 with LDAP authentication against Active Directory, I'd be very happy 
to add some wiki pages, but I haven't been able to work out how I can do 
this...

Cheers

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/openmeetings-user/-/e9eos5V-fXMJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Sending invitation immediately

2011-06-28 Thread Ábrahám Rudolf

Sorry to hear that :(
Ty for the answer btw..

Rudolf

On 2011.06.28. 11:46, seba.wag...@gmail.com wrote:

There are no configurations available to change that,
you need a developer that changes the code and re-compiles it or who
implements a configuration value, so that you can change it without
changing code.

Sebastian

2011/6/28 HyperGaterudol...@gmail.com:
   

Greetings!
Does anyone know, when I create a new scheduled conference using the
calendar, how can I make that the invitation e-mails are sent immediately,
and not 5 minutes before the conference should start. Any advice would be
welcome!

Thank you for all in advance for the answers!
Regards

--
You received this message because you are subscribed to the Google Groups
OpenMeetings User group.
To view this discussion on the web visit
https://groups.google.com/d/msg/openmeetings-user/-/6Y1OW70xpfwJ.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at
http://groups.google.com/group/openmeetings-user?hl=en.

 



   


--
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] Sending invitation immediately

2011-06-28 Thread Ábrahám Rudolf

Another question:

Can I add groups when sending invitations, or that's another thing i 
have to implement in the code?


--
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.



Re: [openmeetings-user] new wiki pages

2011-06-28 Thread seba.wag...@gmail.com
I need to set up your account as project contributor.
If you wish so you can send me your account name offlist.

Sebastian

2011/6/28 shouldbeq931 shouldbeq...@gmail.com:
 Hi,
 Having spent a few days installing and configuring OpenMeetings on Ubuntu
 10.04 with LDAP authentication against Active Directory, I'd be very happy
 to add some wiki pages, but I haven't been able to work out how I can do
 this...
 Cheers

 --
 You received this message because you are subscribed to the Google Groups
 OpenMeetings User group.
 To view this discussion on the web visit
 https://groups.google.com/d/msg/openmeetings-user/-/e9eos5V-fXMJ.
 To post to this group, send email to openmeetings-user@googlegroups.com.
 To unsubscribe from this group, send email to
 openmeetings-user+unsubscr...@googlegroups.com.
 For more options, visit this group at
 http://groups.google.com/group/openmeetings-user?hl=en.




-- 
Sebastian Wagner
http://www.webbase-design.de
http://openmeetings.googlecode.com
http://www.wagner-sebastian.com
seba.wag...@gmail.com

-- 
You received this message because you are subscribed to the Google Groups 
OpenMeetings User group.
To post to this group, send email to openmeetings-user@googlegroups.com.
To unsubscribe from this group, send email to 
openmeetings-user+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/openmeetings-user?hl=en.