You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@openmeetings.apache.org by Внуков Роман <sl...@chnpp.gov.ua> on 2013/08/07 12:35:19 UTC

build Jitsi plugin for openmeetings

Hello everyone!
I have a problem when building jitsi+openmeetings.
I've got jitsi and openmeetings sources from SVN. Made changes to 
build.hml and lib/felix.client.run.propertis.
Then execute "ant rebuild" command and got the following error message:
version:
     [javac] Compiling 3 source files to d:\jitsi\classes
      [echo] Jitsi version 2.1.0.build.by.SVN

compile:
     [javac] Compiling 2124 source files to d:\jitsi\classes
     [javac] 
d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Openmeeti
ngsConfigPanel.java:9: package net.java.sip.communicator.util.swing does 
not exi
st
     [javac] import net.java.sip.communicator.util.swing.*;
     [javac] ^
     [javac] 
d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Openmeeti
ngsConfigPanel.java:14: cannot find symbol
     [javac] symbol: class TransparentPanel
     [javac]     extends TransparentPanel
     [javac]             ^
     [javac] 
d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Encryptio
nEngine.java:64: warning: sun.misc.BASE64Encoder is Sun proprietary API 
and may
be removed in a future release
     [javac]             new sun.misc.BASE64Encoder().encode(cipherText);
     [javac]                         ^
     [javac] 
d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Encryptio
nEngine.java:71: warning: sun.misc.BASE64Decoder is Sun proprietary API 
and may
be removed in a future release
     [javac]         byte[] message = new 
sun.misc.BASE64Decoder().decodeBuffer(m
essageStr);
     [javac]                                      ^
     [javac] 
d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Openmeeti
ngsConfigPanel.java:60: cannot find symbol
     [javac] symbol  : class TransparentPanel
     [javac] location: class 
net.java.sip.communicator.plugin.openmeetings.Openme
etingsConfigPanel
     [javac]         JPanel headerPanel = new TransparentPanel();
     [javac]                                  ^
     [javac] 
d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Openmeeti
ngsConfigPanel.java:72: cannot find symbol
     [javac] symbol  : class TransparentPanel
     [javac] location: class 
net.java.sip.communicator.plugin.openmeetings.Openme
etingsConfigPanel
     [javac]         JPanel serverPanel = new TransparentPanel();
     [javac]                                  ^
     [javac] 
d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Openmeeti
ngsConfigPanel.java:83: cannot find symbol
     [javac] symbol  : class TransparentPanel
     [javac] location: class 
net.java.sip.communicator.plugin.openmeetings.Openme
etingsConfigPanel
     [javac]         JPanel loginPanel = new TransparentPanel();
     [javac]                                 ^
     [javac] 
d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Openmeeti
ngsConfigPanel.java:90: cannot find symbol
     [javac] symbol  : variable LEFT_ALIGNMENT
     [javac] location: class 
net.java.sip.communicator.plugin.openmeetings.Openme
etingsConfigPanel
     [javac]         loginPanel.setAlignmentX(LEFT_ALIGNMENT);
.....................
BUILD FAILED
d:\jitsi\build.xml:283: Compile failed; see the compiler error output 
for detail
s.

Question is: where can I find this package and what packages I still needed.

Thank you all!

V.Roman

Re: build Jitsi plugin for openmeetings

Posted by Alexei Fedotov <al...@gmail.com>.
Great!

Check the jar manifest is correct.

--
With best regards / с наилучшими пожеланиями,
Alexei Fedotov / Алексей Федотов,
http://dataved.ru/
+7 916 562 8095

[1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
[2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
[3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings


On Fri, Aug 9, 2013 at 7:19 PM, Roman Vnukov <sl...@chnpp.gov.ua> wrote:

>  Yes! I'm pleased with myself, but now I have NEXT error when execute
> "ant run":
>      [java] ERROR: Bundle [123] Error starting reference:
> file:sc-bundles/openmee
> tings.jar (org.osgi.framework.BundleException: Unresolved constraint in
> bundle [
> 123]: Unable to resolve 123.0: missing requirement [123.0] package;
> (package=net
> .java.sip.communicator.plugin))
>  :-D
> V.Roman
>
> 09.08.2013 15:05, Alexei Fedotov пишет:
>
> Cool.
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Fri, Aug 9, 2013 at 6:59 PM, Roman Vnukov <sl...@chnpp.gov.ua> <sl...@chnpp.gov.ua> wrote:
>
>  To resolve this error i add next convertation:
>         long timeInMillis = System.currentTimeMillis();
>         java.util.Calendar cal = java.util.Calendar.getInstance();
>         cal.setTimeInMillis(timeInMillis);
>         java.util.Date date = cal.getTime();
> above "chat.addMessage(null, date, Chat.SYSTEM_MESSAGE,.."(124 str) of
> OpenmeetingsPluginMenuItem.java
> After that "ant rebuild" was executed without any errors.
>
> V.Roman
>
> 09.08.2013 10:01, Roman Vnukov пишет:
>
> Thank you, Alexei! I'l change the "import
> net.java.sip.communicator.util.swing.*" line to "import
> net.java.sip.communicator.plugin.desktoputil.*" in the
> OpenmeetingsConfigPanel.java file and it's OK!
> But now I have next error and need your help!
> Error message is:
>     [javac]
> d:\jitsi22\src\net\java\sip\communicator\plugin\openmeetings\Openmee
> tingsPluginMenuItem.java:124:
> addMessage(java.lang.String,java.util.Date,java.la
> ng.String,java.lang.String,java.lang.String) in
> net.java.sip.communicator.servic
> e.gui.Chat cannot be applied to
> (<nulltype>,long,java.lang.String,java.lang.Stri
> ng,java.lang.String)
>     [javac]         chat.addMessage(null, System.currentTimeMillis(),
> Chat.SYSTE
> M_MESSAGE,
>     [javac]             ^
>
> V.Roman
>
>
>
>
>
> --
>

Re: build Jitsi plugin for openmeetings

Posted by Roman Vnukov <sl...@chnpp.gov.ua>.
Hi! In fact the problem was in those files. Thank You!

Now I tried to login to openmeetings server via plugin, but nothing 
happens(try to insert http://om.local.net:5080/openmeetings/ user/pwd - 
nothing happens, try to insert blablabla bla/blabla - nothing happens 
too, any errors).
On the OM server side - silence in both cases. My OM ver. is 2.1.0
What I must do next? Where to look?

V.Roman

13.08.2013 9:45, Alexei Fedotov пишет:
> check for localization files
>
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,
> http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Tue, Aug 13, 2013 at 1:20 PM, Roman Vnukov <slip@chnpp.gov.ua 
> <ma...@chnpp.gov.ua>> wrote:
>
>     There is no any errors in the debug log when I try to edit that
>     fields and "apply" the settings with that empty button.
>
>     V.Roman
>
>     13.08.2013 9:16, Roman Vnukov пишет:
>>     Plugin is loaded, but it's "broken"(or empty). Plugin settings
>>     fields and button are empty. You can see this in attached image.
>>
>>     V.Roman
>>
>>     13.08.2013 7:47, Alexei Fedotov пишет:
>>>     AFAIR Jitsi has a list of plug-ins to load somewhere in its configuration.
>>>     --
>>>     With best regards / с наилучшими пожеланиями,
>>>     Alexei Fedotov / Алексей Федотов,
>>>     http://dataved.ru/
>>>     +7 916 562 8095
>>>
>>>     [1] Start using Apache Openmeetings today,http://openmeetings.apache.org/
>>>     [2] Join Alexei Fedotov @linkedin,http://ru.linkedin.com/in/dataved/
>>>     [3] Join Alexei Fedotov @facebook,http://www.facebook.com/openmeetings
>>>
>>>
>>>     On Mon, Aug 12, 2013 at 8:19 PM, Roman Vnukov<sl...@chnpp.gov.ua>  <ma...@chnpp.gov.ua>  wrote:
>>>>     I'm change openmeetingsplugin.manifest.mf by removing
>>>>     "net.java.sip.communicator.util" string. Now it's all ok, I see the
>>>>     activated openmeetings plugin in plugin section of advanced menu. But I
>>>>     didn't see any settings of this plugin. Under the plugin menu I see the
>>>>     blank menu item(think that is OM settings menu), when I select that menu
>>>>     item, in the right side of the window displayed blank window with edit
>>>>     fields and empty small button(may be it's "OK").
>>>>     Any suggestions?
>>>>
>>>>     Thank You!
>>>>
>>>>     V.Roman
>

Re: build Jitsi plugin for openmeetings

Posted by Alexei Fedotov <al...@gmail.com>.
check for localization files

--
With best regards / с наилучшими пожеланиями,
Alexei Fedotov / Алексей Федотов,
http://dataved.ru/
+7 916 562 8095

[1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
[2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
[3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings


On Tue, Aug 13, 2013 at 1:20 PM, Roman Vnukov <sl...@chnpp.gov.ua> wrote:

>  There is no any errors in the debug log when I try to edit that fields
> and "apply" the settings with that empty button.
>
> V.Roman
>
> 13.08.2013 9:16, Roman Vnukov пишет:
>
> Plugin is loaded, but it's "broken"(or empty). Plugin settings fields and
> button are empty. You can see this in attached image.
>
> V.Roman
>
> 13.08.2013 7:47, Alexei Fedotov пишет:
>
> AFAIR Jitsi has a list of plug-ins to load somewhere in its configuration.
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Mon, Aug 12, 2013 at 8:19 PM, Roman Vnukov <sl...@chnpp.gov.ua> <sl...@chnpp.gov.ua> wrote:
>
>  I'm change openmeetingsplugin.manifest.mf by removing
> "net.java.sip.communicator.util" string. Now it's all ok, I see the
> activated openmeetings plugin in plugin section of advanced menu. But I
> didn't see any settings of this plugin. Under the plugin menu I see the
> blank menu item(think that is OM settings menu), when I select that menu
> item, in the right side of the window displayed blank window with edit
> fields and empty small button(may be it's "OK").
> Any suggestions?
>
> Thank You!
>
> V.Roman
>
>
>
> --
>
>
>
> --
>

Re: build Jitsi plugin for openmeetings

Posted by Roman Vnukov <sl...@chnpp.gov.ua>.
There is no any errors in the debug log when I try to edit that fields 
and "apply" the settings with that empty button.

V.Roman

13.08.2013 9:16, Roman Vnukov пишет:
> Plugin is loaded, but it's "broken"(or empty). Plugin settings fields 
> and button are empty. You can see this in attached image.
>
> V.Roman
>
> 13.08.2013 7:47, Alexei Fedotov пишет:
>> AFAIR Jitsi has a list of plug-ins to load somewhere in its configuration.
>> --
>> With best regards / с наилучшими пожеланиями,
>> Alexei Fedotov / Алексей Федотов,
>> http://dataved.ru/
>> +7 916 562 8095
>>
>> [1] Start using Apache Openmeetings today,http://openmeetings.apache.org/
>> [2] Join Alexei Fedotov @linkedin,http://ru.linkedin.com/in/dataved/
>> [3] Join Alexei Fedotov @facebook,http://www.facebook.com/openmeetings
>>
>>
>> On Mon, Aug 12, 2013 at 8:19 PM, Roman Vnukov<sl...@chnpp.gov.ua>  wrote:
>>> I'm change openmeetingsplugin.manifest.mf by removing
>>> "net.java.sip.communicator.util" string. Now it's all ok, I see the
>>> activated openmeetings plugin in plugin section of advanced menu. But I
>>> didn't see any settings of this plugin. Under the plugin menu I see the
>>> blank menu item(think that is OM settings menu), when I select that menu
>>> item, in the right side of the window displayed blank window with edit
>>> fields and empty small button(may be it's "OK").
>>> Any suggestions?
>>>
>>> Thank You!
>>>
>>> V.Roman
>
>
> -- 


-- 

Re: build Jitsi plugin for openmeetings

Posted by Roman Vnukov <sl...@chnpp.gov.ua>.
Plugin is loaded, but it's "broken"(or empty). Plugin settings fields 
and button are empty. You can see this in attached image.

V.Roman

13.08.2013 7:47, Alexei Fedotov пишет:
> AFAIR Jitsi has a list of plug-ins to load somewhere in its configuration.
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,
> http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Mon, Aug 12, 2013 at 8:19 PM, Roman Vnukov <sl...@chnpp.gov.ua> wrote:
>> I'm change openmeetingsplugin.manifest.mf by removing
>> "net.java.sip.communicator.util" string. Now it's all ok, I see the
>> activated openmeetings plugin in plugin section of advanced menu. But I
>> didn't see any settings of this plugin. Under the plugin menu I see the
>> blank menu item(think that is OM settings menu), when I select that menu
>> item, in the right side of the window displayed blank window with edit
>> fields and empty small button(may be it's "OK").
>> Any suggestions?
>>
>> Thank You!
>>
>> V.Roman


-- 

Re: build Jitsi plugin for openmeetings

Posted by Alexei Fedotov <al...@gmail.com>.
AFAIR Jitsi has a list of plug-ins to load somewhere in its configuration.
--
With best regards / с наилучшими пожеланиями,
Alexei Fedotov / Алексей Федотов,
http://dataved.ru/
+7 916 562 8095

[1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
[2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
[3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings


On Mon, Aug 12, 2013 at 8:19 PM, Roman Vnukov <sl...@chnpp.gov.ua> wrote:
> I'm change openmeetingsplugin.manifest.mf by removing
> "net.java.sip.communicator.util" string. Now it's all ok, I see the
> activated openmeetings plugin in plugin section of advanced menu. But I
> didn't see any settings of this plugin. Under the plugin menu I see the
> blank menu item(think that is OM settings menu), when I select that menu
> item, in the right side of the window displayed blank window with edit
> fields and empty small button(may be it's "OK").
> Any suggestions?
>
> Thank You!
>
> V.Roman

Re: build Jitsi plugin for openmeetings

Posted by Roman Vnukov <sl...@chnpp.gov.ua>.
I'm change openmeetingsplugin.manifest.mf by removing 
"net.java.sip.communicator.util" string. Now it's all ok, I see the 
activated openmeetings plugin in plugin section of advanced menu. But I 
didn't see any settings of this plugin. Under the plugin menu I see the 
blank menu item(think that is OM settings menu), when I select that menu 
item, in the right side of the window displayed blank window with edit 
fields and empty small button(may be it's "OK").
Any suggestions?

Thank You!

V.Roman

Re: build Jitsi plugin for openmeetings

Posted by Roman Vnukov <sl...@chnpp.gov.ua>.
Yes! I'm pleased with myself, but now I have NEXT error when execute 
"ant run":
      [java] ERROR: Bundle [123] Error starting 
reference:file:sc-bundles/openmee
tings.jar (org.osgi.framework.BundleException: Unresolved constraint in 
bundle [
123]: Unable to resolve 123.0: missing requirement [123.0] package; 
(package=net
.java.sip.communicator.plugin))
:-D
V.Roman

09.08.2013 15:05, Alexei Fedotov пишет:
> Cool.
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,
> http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Fri, Aug 9, 2013 at 6:59 PM, Roman Vnukov <sl...@chnpp.gov.ua> wrote:
>> To resolve this error i add next convertation:
>>          long timeInMillis = System.currentTimeMillis();
>>          java.util.Calendar cal = java.util.Calendar.getInstance();
>>          cal.setTimeInMillis(timeInMillis);
>>          java.util.Date date = cal.getTime();
>> above "chat.addMessage(null, date, Chat.SYSTEM_MESSAGE,.."(124 str) of
>> OpenmeetingsPluginMenuItem.java
>> After that "ant rebuild" was executed without any errors.
>>
>> V.Roman
>>
>> 09.08.2013 10:01, Roman Vnukov пишет:
>>
>> Thank you, Alexei! I'l change the "import
>> net.java.sip.communicator.util.swing.*" line to "import
>> net.java.sip.communicator.plugin.desktoputil.*" in the
>> OpenmeetingsConfigPanel.java file and it's OK!
>> But now I have next error and need your help!
>> Error message is:
>>      [javac]
>> d:\jitsi22\src\net\java\sip\communicator\plugin\openmeetings\Openmee
>> tingsPluginMenuItem.java:124:
>> addMessage(java.lang.String,java.util.Date,java.la
>> ng.String,java.lang.String,java.lang.String) in
>> net.java.sip.communicator.servic
>> e.gui.Chat cannot be applied to
>> (<nulltype>,long,java.lang.String,java.lang.Stri
>> ng,java.lang.String)
>>      [javac]         chat.addMessage(null, System.currentTimeMillis(),
>> Chat.SYSTE
>> M_MESSAGE,
>>      [javac]             ^
>>
>> V.Roman
>>
>>


-- 

Re: build Jitsi plugin for openmeetings

Posted by Alexei Fedotov <al...@gmail.com>.
Cool.
--
With best regards / с наилучшими пожеланиями,
Alexei Fedotov / Алексей Федотов,
http://dataved.ru/
+7 916 562 8095

[1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
[2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
[3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings


On Fri, Aug 9, 2013 at 6:59 PM, Roman Vnukov <sl...@chnpp.gov.ua> wrote:
> To resolve this error i add next convertation:
>         long timeInMillis = System.currentTimeMillis();
>         java.util.Calendar cal = java.util.Calendar.getInstance();
>         cal.setTimeInMillis(timeInMillis);
>         java.util.Date date = cal.getTime();
> above "chat.addMessage(null, date, Chat.SYSTEM_MESSAGE,.."(124 str) of
> OpenmeetingsPluginMenuItem.java
> After that "ant rebuild" was executed without any errors.
>
> V.Roman
>
> 09.08.2013 10:01, Roman Vnukov пишет:
>
> Thank you, Alexei! I'l change the "import
> net.java.sip.communicator.util.swing.*" line to "import
> net.java.sip.communicator.plugin.desktoputil.*" in the
> OpenmeetingsConfigPanel.java file and it's OK!
> But now I have next error and need your help!
> Error message is:
>     [javac]
> d:\jitsi22\src\net\java\sip\communicator\plugin\openmeetings\Openmee
> tingsPluginMenuItem.java:124:
> addMessage(java.lang.String,java.util.Date,java.la
> ng.String,java.lang.String,java.lang.String) in
> net.java.sip.communicator.servic
> e.gui.Chat cannot be applied to
> (<nulltype>,long,java.lang.String,java.lang.Stri
> ng,java.lang.String)
>     [javac]         chat.addMessage(null, System.currentTimeMillis(),
> Chat.SYSTE
> M_MESSAGE,
>     [javac]             ^
>
> V.Roman
>
>

Re: build Jitsi plugin for openmeetings

Posted by Roman Vnukov <sl...@chnpp.gov.ua>.
To resolve this error i add next convertation:
         long timeInMillis = System.currentTimeMillis();
         java.util.Calendar cal = java.util.Calendar.getInstance();
         cal.setTimeInMillis(timeInMillis);
         java.util.Date date = cal.getTime();
above "chat.addMessage(null, date, Chat.SYSTEM_MESSAGE,.."(124 str) of 
OpenmeetingsPluginMenuItem.java
After that "ant rebuild" was executed without any errors.

V.Roman

09.08.2013 10:01, Roman Vnukov пишет:
> Thank you, Alexei! I'l change the "import 
> net.java.sip.communicator.util.swing.*" line to "import 
> net.java.sip.communicator.plugin.desktoputil.*" in the 
> OpenmeetingsConfigPanel.java file and it's OK!
> But now I have next error and need your help!
> Error message is:
>     [javac] 
> d:\jitsi22\src\net\java\sip\communicator\plugin\openmeetings\Openmee
> tingsPluginMenuItem.java:124: 
> addMessage(java.lang.String,java.util.Date,java.la
> ng.String,java.lang.String,java.lang.String) in 
> net.java.sip.communicator.servic
> e.gui.Chat cannot be applied to 
> (<nulltype>,long,java.lang.String,java.lang.Stri
> ng,java.lang.String)
>     [javac]         chat.addMessage(null, System.currentTimeMillis(), 
> Chat.SYSTE
> M_MESSAGE,
>     [javac]             ^
>
> V.Roman


Re: build Jitsi plugin for openmeetings

Posted by Alexei Fedotov <al...@gmail.com>.
Possibly addMessage method signature was changed, so you need to adapt the
call.

--
With best regards / с наилучшими пожеланиями,
Alexei Fedotov / Алексей Федотов,
http://dataved.ru/
+7 916 562 8095

[1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
[2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
[3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings


On Fri, Aug 9, 2013 at 2:01 PM, Roman Vnukov <sl...@chnpp.gov.ua> wrote:

>  Thank you, Alexei! I'l change the "import
> net.java.sip.communicator.util.swing.*" line to "import
> net.java.sip.communicator.plugin.desktoputil.*" in the
> OpenmeetingsConfigPanel.java file and it's OK!
> But now I have next error and need your help!
> Error message is:
>     [javac]
> d:\jitsi22\src\net\java\sip\communicator\plugin\openmeetings\Openmee
> tingsPluginMenuItem.java:124: addMessage(java.lang.String,java.util.Date,
> java.la
> ng.String,java.lang.String,java.lang.String) in
> net.java.sip.communicator.servic
> e.gui.Chat cannot be applied to
> (<nulltype>,long,java.lang.String,java.lang.Stri
> ng,java.lang.String)
>     [javac]         chat.addMessage(null, System.currentTimeMillis(),
> Chat.SYSTE
> M_MESSAGE,
>     [javac]             ^
>
> V.Roman
>
> 08.08.2013 16:08, Alexei Fedotov пишет:
>
> Roman, TransparentPanel moved here:
> https://github.com/jitsi/jitsi/tree/master/src/net/java/sip/communicator/plugin/desktoputil
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Thu, Aug 8, 2013 at 7:03 PM, Внуков Роман <sl...@chnpp.gov.ua> <sl...@chnpp.gov.ua> wrote:
>
>  I tried different versions of jitsi(download sources of ver.1.0, 2.0, 2.2),
> found only one version of openmeetings plugin.
> Neither version does not contain a package
> swing(net.java.sip.communicator.util.swing), although in the
> openmeetingsplugin.manifest.mf this package included and other files of
> plugin uses that package.
> What I must do now?
>
> V.Roman
>
> 08.08.2013 8:54, Внуков Роман пишет:
>
> I'm sorry, for what version of jitsi is writen ths manualhttp://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc?
>
> 07.08.2013 15:25, Alexei Fedotov пишет:
>
> I tihnk you should either update plug-in source or downgrade jitsi version.
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Wed, Aug 7, 2013 at 6:52 PM, Внуков Роман <sl...@chnpp.gov.ua> <sl...@chnpp.gov.ua> wrote:
>
> My jitsi source didn't have net.java.sip.communicator.util.swing
> I try to find this package in the Internet
> (http://massapi.com/package/net/java/sip/communicator/util/swing/package-summary.html).
> May be it's wrong, but I tried to place it to needed place.
> When I try to run "ant rebuild" after that? have next error:
> compile:
>     [javac] Compiling 2176 source files to d:\jitsi\classes
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
> 16: package net.java.sip.communicator.service.configuration does not exist
>     [javac] import net.java.sip.communicator.service.configuration.*;
>     [javac] ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
> 266: cannot find symbol
>     [javac] symbol  : class ConfigPropertyVetoException
>     [javac] location: class
> net.java.sip.communicator.util.swing.SIPCommFrame
>     [javac] throws ConfigPropertyVetoException
>     [javac]        ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommDialog.java
> :14: package net.java.sip.communicator.service.configuration does not exist
>     [javac] import net.java.sip.communicator.service.configuration.*;
>     [javac] ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\MasterPasswordInpu
> tDialog.java:35: cannot find symbol
>     [javac] symbol  : class ResourceManagementService
>     [javac] location: class
> net.java.sip.communicator.util.swing.MasterPasswordI
> nputDialog
>     [javac] private final ResourceManagementService resources
>     [javac]               ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommTabbedPane.
> java:267: cannot access
> net.java.sip.communicator.util.swing.event.DoubleClickLi
> stener
>     [javac] bad class file:
> d:\jitsi\src\net\java\sip\communicator\util\swing\ev
> ent\DoubleClickListener.java
>     [javac] file does not contain class
> net.java.sip.communicator.util.swing.eve
> nt.DoubleClickListener
>     [javac] Please remove or make sure it appears in the correct
> subdirectory of
>  the classpath.
>     [javac] public synchronized void
> addDoubleClickListener(DoubleClickListener
> l)
>     [javac]                                                 ^
>
>
> BUILD FAILED
> d:\jitsi\build.xml:283: Compile failed; see the compiler error output for
> detail
> s.
>
> Total time: 36 seconds
>
> 07.08.2013 14:14, Alexei Fedotov пишет:
>
> Check errors in your log,
>
> package net.java.sip.communicator.util.swing does not exist
>
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Wed, Aug 7, 2013 at 6:12 PM, Внуков Роман <sl...@chnpp.gov.ua> <sl...@chnpp.gov.ua> wrote:
>
> 07.08.2013 14:02, Alexei Fedotov пишет:
>
> Somehow your build configuration does not link required jitsi
> libraries. Please check if jitsi still have the package.
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today,http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Wed, Aug 7, 2013 at 5:55 PM, Внуков Роман <sl...@chnpp.gov.ua> <sl...@chnpp.gov.ua> wrote:
>
> 07.08.2013 13:42, Alexei Fedotov пишет:
>
> package net.java.sip.communicator.util.swing does not exist
>
> Roman, this seems to be a problem
> have you downloaded jitsi sources?
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today,http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook,http://www.facebook.com/openmeetings
>
>
>
> Hi Alexey!
> Yes I have downloaded sources of jitsi. I did everything according to
> the
> instructionshttp://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc
>
> Thank you for reply
>
> V.Roman
>
> What package?
> Openmeetings package in place
>
> V.Roman
>
>
>
>
>
>
> --
>

Re: build Jitsi plugin for openmeetings

Posted by Roman Vnukov <sl...@chnpp.gov.ua>.
Thank you, Alexei! I'l change the "import 
net.java.sip.communicator.util.swing.*" line to "import 
net.java.sip.communicator.plugin.desktoputil.*" in the 
OpenmeetingsConfigPanel.java file and it's OK!
But now I have next error and need your help!
Error message is:
     [javac] 
d:\jitsi22\src\net\java\sip\communicator\plugin\openmeetings\Openmee
tingsPluginMenuItem.java:124: 
addMessage(java.lang.String,java.util.Date,java.la
ng.String,java.lang.String,java.lang.String) in 
net.java.sip.communicator.servic
e.gui.Chat cannot be applied to 
(<nulltype>,long,java.lang.String,java.lang.Stri
ng,java.lang.String)
     [javac]         chat.addMessage(null, System.currentTimeMillis(), 
Chat.SYSTE
M_MESSAGE,
     [javac]             ^

V.Roman

08.08.2013 16:08, Alexei Fedotov пишет:
> Roman, TransparentPanel moved here:
>
> https://github.com/jitsi/jitsi/tree/master/src/net/java/sip/communicator/plugin/desktoputil
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,
> http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Thu, Aug 8, 2013 at 7:03 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>> I tried different versions of jitsi(download sources of ver.1.0, 2.0, 2.2),
>> found only one version of openmeetings plugin.
>> Neither version does not contain a package
>> swing(net.java.sip.communicator.util.swing), although in the
>> openmeetingsplugin.manifest.mf this package included and other files of
>> plugin uses that package.
>> What I must do now?
>>
>> V.Roman
>>
>> 08.08.2013 8:54, Внуков Роман пишет:
>>
>> I'm sorry, for what version of jitsi is writen ths manual
>> http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc?
>>
>> 07.08.2013 15:25, Alexei Fedotov пишет:
>>
>> I tihnk you should either update plug-in source or downgrade jitsi version.
>> --
>> With best regards / с наилучшими пожеланиями,
>> Alexei Fedotov / Алексей Федотов,
>> http://dataved.ru/
>> +7 916 562 8095
>>
>> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>>
>>
>> On Wed, Aug 7, 2013 at 6:52 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>>
>> My jitsi source didn't have net.java.sip.communicator.util.swing
>> I try to find this package in the Internet
>> (http://massapi.com/package/net/java/sip/communicator/util/swing/package-summary.html).
>> May be it's wrong, but I tried to place it to needed place.
>> When I try to run "ant rebuild" after that? have next error:
>> compile:
>>      [javac] Compiling 2176 source files to d:\jitsi\classes
>>      [javac]
>> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
>> 16: package net.java.sip.communicator.service.configuration does not exist
>>      [javac] import net.java.sip.communicator.service.configuration.*;
>>      [javac] ^
>>      [javac]
>> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
>> 266: cannot find symbol
>>      [javac] symbol  : class ConfigPropertyVetoException
>>      [javac] location: class
>> net.java.sip.communicator.util.swing.SIPCommFrame
>>      [javac] throws ConfigPropertyVetoException
>>      [javac]        ^
>>      [javac]
>> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommDialog.java
>> :14: package net.java.sip.communicator.service.configuration does not exist
>>      [javac] import net.java.sip.communicator.service.configuration.*;
>>      [javac] ^
>>      [javac]
>> d:\jitsi\src\net\java\sip\communicator\util\swing\MasterPasswordInpu
>> tDialog.java:35: cannot find symbol
>>      [javac] symbol  : class ResourceManagementService
>>      [javac] location: class
>> net.java.sip.communicator.util.swing.MasterPasswordI
>> nputDialog
>>      [javac] private final ResourceManagementService resources
>>      [javac]               ^
>>      [javac]
>> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommTabbedPane.
>> java:267: cannot access
>> net.java.sip.communicator.util.swing.event.DoubleClickLi
>> stener
>>      [javac] bad class file:
>> d:\jitsi\src\net\java\sip\communicator\util\swing\ev
>> ent\DoubleClickListener.java
>>      [javac] file does not contain class
>> net.java.sip.communicator.util.swing.eve
>> nt.DoubleClickListener
>>      [javac] Please remove or make sure it appears in the correct
>> subdirectory of
>>   the classpath.
>>      [javac] public synchronized void
>> addDoubleClickListener(DoubleClickListener
>> l)
>>      [javac]                                                 ^
>>
>>
>> BUILD FAILED
>> d:\jitsi\build.xml:283: Compile failed; see the compiler error output for
>> detail
>> s.
>>
>> Total time: 36 seconds
>>
>> 07.08.2013 14:14, Alexei Fedotov пишет:
>>
>> Check errors in your log,
>>
>> package net.java.sip.communicator.util.swing does not exist
>>
>> --
>> With best regards / с наилучшими пожеланиями,
>> Alexei Fedotov / Алексей Федотов,
>> http://dataved.ru/
>> +7 916 562 8095
>>
>> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>>
>>
>> On Wed, Aug 7, 2013 at 6:12 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>>
>> 07.08.2013 14:02, Alexei Fedotov пишет:
>>
>> Somehow your build configuration does not link required jitsi
>> libraries. Please check if jitsi still have the package.
>> --
>> With best regards / с наилучшими пожеланиями,
>> Alexei Fedotov / Алексей Федотов,
>> http://dataved.ru/
>> +7 916 562 8095
>>
>> [1] Start using Apache Openmeetings today,
>> http://openmeetings.apache.org/
>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>>
>>
>> On Wed, Aug 7, 2013 at 5:55 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>>
>> 07.08.2013 13:42, Alexei Fedotov пишет:
>>
>> package net.java.sip.communicator.util.swing does not exist
>>
>> Roman, this seems to be a problem
>> have you downloaded jitsi sources?
>> --
>> With best regards / с наилучшими пожеланиями,
>> Alexei Fedotov / Алексей Федотов,
>> http://dataved.ru/
>> +7 916 562 8095
>>
>> [1] Start using Apache Openmeetings today,
>> http://openmeetings.apache.org/
>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>> [3] Join Alexei Fedotov @facebook,
>> http://www.facebook.com/openmeetings
>>
>>
>>
>> Hi Alexey!
>> Yes I have downloaded sources of jitsi. I did everything according to
>> the
>> instructions
>> http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc
>>
>> Thank you for reply
>>
>> V.Roman
>>
>> What package?
>> Openmeetings package in place
>>
>> V.Roman
>>
>>
>>


-- 

Re: build Jitsi plugin for openmeetings

Posted by Alexei Fedotov <al...@gmail.com>.
Roman, TransparentPanel moved here:

https://github.com/jitsi/jitsi/tree/master/src/net/java/sip/communicator/plugin/desktoputil
--
With best regards / с наилучшими пожеланиями,
Alexei Fedotov / Алексей Федотов,
http://dataved.ru/
+7 916 562 8095

[1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
[2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
[3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings


On Thu, Aug 8, 2013 at 7:03 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
> I tried different versions of jitsi(download sources of ver.1.0, 2.0, 2.2),
> found only one version of openmeetings plugin.
> Neither version does not contain a package
> swing(net.java.sip.communicator.util.swing), although in the
> openmeetingsplugin.manifest.mf this package included and other files of
> plugin uses that package.
> What I must do now?
>
> V.Roman
>
> 08.08.2013 8:54, Внуков Роман пишет:
>
> I'm sorry, for what version of jitsi is writen ths manual
> http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc?
>
> 07.08.2013 15:25, Alexei Fedotov пишет:
>
> I tihnk you should either update plug-in source or downgrade jitsi version.
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,
> http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Wed, Aug 7, 2013 at 6:52 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>
> My jitsi source didn't have net.java.sip.communicator.util.swing
> I try to find this package in the Internet
> (http://massapi.com/package/net/java/sip/communicator/util/swing/package-summary.html).
> May be it's wrong, but I tried to place it to needed place.
> When I try to run "ant rebuild" after that? have next error:
> compile:
>     [javac] Compiling 2176 source files to d:\jitsi\classes
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
> 16: package net.java.sip.communicator.service.configuration does not exist
>     [javac] import net.java.sip.communicator.service.configuration.*;
>     [javac] ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
> 266: cannot find symbol
>     [javac] symbol  : class ConfigPropertyVetoException
>     [javac] location: class
> net.java.sip.communicator.util.swing.SIPCommFrame
>     [javac] throws ConfigPropertyVetoException
>     [javac]        ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommDialog.java
> :14: package net.java.sip.communicator.service.configuration does not exist
>     [javac] import net.java.sip.communicator.service.configuration.*;
>     [javac] ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\MasterPasswordInpu
> tDialog.java:35: cannot find symbol
>     [javac] symbol  : class ResourceManagementService
>     [javac] location: class
> net.java.sip.communicator.util.swing.MasterPasswordI
> nputDialog
>     [javac] private final ResourceManagementService resources
>     [javac]               ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommTabbedPane.
> java:267: cannot access
> net.java.sip.communicator.util.swing.event.DoubleClickLi
> stener
>     [javac] bad class file:
> d:\jitsi\src\net\java\sip\communicator\util\swing\ev
> ent\DoubleClickListener.java
>     [javac] file does not contain class
> net.java.sip.communicator.util.swing.eve
> nt.DoubleClickListener
>     [javac] Please remove or make sure it appears in the correct
> subdirectory of
>  the classpath.
>     [javac] public synchronized void
> addDoubleClickListener(DoubleClickListener
> l)
>     [javac]                                                 ^
>
>
> BUILD FAILED
> d:\jitsi\build.xml:283: Compile failed; see the compiler error output for
> detail
> s.
>
> Total time: 36 seconds
>
> 07.08.2013 14:14, Alexei Fedotov пишет:
>
> Check errors in your log,
>
> package net.java.sip.communicator.util.swing does not exist
>
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,
> http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Wed, Aug 7, 2013 at 6:12 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>
> 07.08.2013 14:02, Alexei Fedotov пишет:
>
> Somehow your build configuration does not link required jitsi
> libraries. Please check if jitsi still have the package.
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,
> http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today,
> http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Wed, Aug 7, 2013 at 5:55 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>
> 07.08.2013 13:42, Alexei Fedotov пишет:
>
> package net.java.sip.communicator.util.swing does not exist
>
> Roman, this seems to be a problem
> have you downloaded jitsi sources?
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,
> http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today,
> http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook,
> http://www.facebook.com/openmeetings
>
>
>
> Hi Alexey!
> Yes I have downloaded sources of jitsi. I did everything according to
> the
> instructions
> http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc
>
> Thank you for reply
>
> V.Roman
>
> What package?
> Openmeetings package in place
>
> V.Roman
>
>
>

Re: build Jitsi plugin for openmeetings

Posted by Внуков Роман <sl...@chnpp.gov.ua>.
I tried different versions of jitsi(download sources of ver.1.0, 2.0, 
2.2), found only one version of openmeetings plugin.
Neither version does not contain a package 
swing(net.java.sip.communicator.util.swing), although in the 
openmeetingsplugin.manifest.mf this package included and other files of 
plugin uses that package.
What I must do now?

V.Roman

08.08.2013 8:54, Внуков Роман пишет:
> I'm sorry, for what version of jitsi is writen ths manual 
> http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc?
>
> 07.08.2013 15:25, Alexei Fedotov пишет:
>> I tihnk you should either update plug-in source or downgrade jitsi version.
>> --
>> With best regards / с наилучшими пожеланиями,
>> Alexei Fedotov / Алексей Федотов,
>> http://dataved.ru/
>> +7 916 562 8095
>>
>> [1] Start using Apache Openmeetings today,http://openmeetings.apache.org/
>> [2] Join Alexei Fedotov @linkedin,http://ru.linkedin.com/in/dataved/
>> [3] Join Alexei Fedotov @facebook,http://www.facebook.com/openmeetings
>>
>>
>> On Wed, Aug 7, 2013 at 6:52 PM, Внуков Роман<sl...@chnpp.gov.ua>  wrote:
>>> My jitsi source didn't have net.java.sip.communicator.util.swing
>>> I try to find this package in the Internet
>>> (http://massapi.com/package/net/java/sip/communicator/util/swing/package-summary.html).
>>> May be it's wrong, but I tried to place it to needed place.
>>> When I try to run "ant rebuild" after that? have next error:
>>> compile:
>>>      [javac] Compiling 2176 source files to d:\jitsi\classes
>>>      [javac]
>>> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
>>> 16: package net.java.sip.communicator.service.configuration does not exist
>>>      [javac] import net.java.sip.communicator.service.configuration.*;
>>>      [javac] ^
>>>      [javac]
>>> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
>>> 266: cannot find symbol
>>>      [javac] symbol  : class ConfigPropertyVetoException
>>>      [javac] location: class
>>> net.java.sip.communicator.util.swing.SIPCommFrame
>>>      [javac] throws ConfigPropertyVetoException
>>>      [javac]        ^
>>>      [javac]
>>> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommDialog.java
>>> :14: package net.java.sip.communicator.service.configuration does not exist
>>>      [javac] import net.java.sip.communicator.service.configuration.*;
>>>      [javac] ^
>>>      [javac]
>>> d:\jitsi\src\net\java\sip\communicator\util\swing\MasterPasswordInpu
>>> tDialog.java:35: cannot find symbol
>>>      [javac] symbol  : class ResourceManagementService
>>>      [javac] location: class
>>> net.java.sip.communicator.util.swing.MasterPasswordI
>>> nputDialog
>>>      [javac] private final ResourceManagementService resources
>>>      [javac]               ^
>>>      [javac]
>>> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommTabbedPane.
>>> java:267: cannot access
>>> net.java.sip.communicator.util.swing.event.DoubleClickLi
>>> stener
>>>      [javac] bad class file:
>>> d:\jitsi\src\net\java\sip\communicator\util\swing\ev
>>> ent\DoubleClickListener.java
>>>      [javac] file does not contain class
>>> net.java.sip.communicator.util.swing.eve
>>> nt.DoubleClickListener
>>>      [javac] Please remove or make sure it appears in the correct
>>> subdirectory of
>>>   the classpath.
>>>      [javac] public synchronized void
>>> addDoubleClickListener(DoubleClickListener
>>> l)
>>>      [javac]                                                 ^
>>>
>>>
>>> BUILD FAILED
>>> d:\jitsi\build.xml:283: Compile failed; see the compiler error output for
>>> detail
>>> s.
>>>
>>> Total time: 36 seconds
>>>
>>> 07.08.2013 14:14, Alexei Fedotov пишет:
>>>
>>>> Check errors in your log,
>>>>
>>>>> package net.java.sip.communicator.util.swing does not exist
>>>> --
>>>> With best regards / с наилучшими пожеланиями,
>>>> Alexei Fedotov / Алексей Федотов,
>>>> http://dataved.ru/
>>>> +7 916 562 8095
>>>>
>>>> [1] Start using Apache Openmeetings today,http://openmeetings.apache.org/
>>>> [2] Join Alexei Fedotov @linkedin,http://ru.linkedin.com/in/dataved/
>>>> [3] Join Alexei Fedotov @facebook,http://www.facebook.com/openmeetings
>>>>
>>>>
>>>> On Wed, Aug 7, 2013 at 6:12 PM, Внуков Роман<sl...@chnpp.gov.ua>  wrote:
>>>>> 07.08.2013 14:02, Alexei Fedotov пишет:
>>>>>
>>>>>> Somehow your build configuration does not link required jitsi
>>>>>> libraries. Please check if jitsi still have the package.
>>>>>> --
>>>>>> With best regards / с наилучшими пожеланиями,
>>>>>> Alexei Fedotov / Алексей Федотов,
>>>>>> http://dataved.ru/
>>>>>> +7 916 562 8095
>>>>>>
>>>>>> [1] Start using Apache Openmeetings today,
>>>>>> http://openmeetings.apache.org/
>>>>>> [2] Join Alexei Fedotov @linkedin,http://ru.linkedin.com/in/dataved/
>>>>>> [3] Join Alexei Fedotov @facebook,http://www.facebook.com/openmeetings
>>>>>>
>>>>>>
>>>>>> On Wed, Aug 7, 2013 at 5:55 PM, Внуков Роман<sl...@chnpp.gov.ua>  wrote:
>>>>>>> 07.08.2013 13:42, Alexei Fedotov пишет:
>>>>>>>
>>>>>>>>> package net.java.sip.communicator.util.swing does not exist
>>>>>>>> Roman, this seems to be a problem
>>>>>>>> have you downloaded jitsi sources?
>>>>>>>> --
>>>>>>>> With best regards / с наилучшими пожеланиями,
>>>>>>>> Alexei Fedotov / Алексей Федотов,
>>>>>>>> http://dataved.ru/
>>>>>>>> +7 916 562 8095
>>>>>>>>
>>>>>>>> [1] Start using Apache Openmeetings today,
>>>>>>>> http://openmeetings.apache.org/
>>>>>>>> [2] Join Alexei Fedotov @linkedin,http://ru.linkedin.com/in/dataved/
>>>>>>>> [3] Join Alexei Fedotov @facebook,
>>>>>>>> http://www.facebook.com/openmeetings
>>>>>>>>
>>>>>>>>
>>>>>>>>
>>>>>>> Hi Alexey!
>>>>>>> Yes I have downloaded sources of jitsi. I did everything according to
>>>>>>> the
>>>>>>> instructions
>>>>>>> http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc
>>>>>>>
>>>>>>> Thank you for reply
>>>>>>>
>>>>>>> V.Roman
>>>>> What package?
>>>>> Openmeetings package in place
>>>>>
>>>>> V.Roman
>


Re: build Jitsi plugin for openmeetings

Posted by Внуков Роман <sl...@chnpp.gov.ua>.
I'm sorry, for what version of jitsi is writen ths manual 
http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc?

07.08.2013 15:25, Alexei Fedotov пишет:
> I tihnk you should either update plug-in source or downgrade jitsi version.
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,
> http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Wed, Aug 7, 2013 at 6:52 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>> My jitsi source didn't have net.java.sip.communicator.util.swing
>> I try to find this package in the Internet
>> (http://massapi.com/package/net/java/sip/communicator/util/swing/package-summary.html).
>> May be it's wrong, but I tried to place it to needed place.
>> When I try to run "ant rebuild" after that? have next error:
>> compile:
>>      [javac] Compiling 2176 source files to d:\jitsi\classes
>>      [javac]
>> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
>> 16: package net.java.sip.communicator.service.configuration does not exist
>>      [javac] import net.java.sip.communicator.service.configuration.*;
>>      [javac] ^
>>      [javac]
>> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
>> 266: cannot find symbol
>>      [javac] symbol  : class ConfigPropertyVetoException
>>      [javac] location: class
>> net.java.sip.communicator.util.swing.SIPCommFrame
>>      [javac] throws ConfigPropertyVetoException
>>      [javac]        ^
>>      [javac]
>> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommDialog.java
>> :14: package net.java.sip.communicator.service.configuration does not exist
>>      [javac] import net.java.sip.communicator.service.configuration.*;
>>      [javac] ^
>>      [javac]
>> d:\jitsi\src\net\java\sip\communicator\util\swing\MasterPasswordInpu
>> tDialog.java:35: cannot find symbol
>>      [javac] symbol  : class ResourceManagementService
>>      [javac] location: class
>> net.java.sip.communicator.util.swing.MasterPasswordI
>> nputDialog
>>      [javac] private final ResourceManagementService resources
>>      [javac]               ^
>>      [javac]
>> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommTabbedPane.
>> java:267: cannot access
>> net.java.sip.communicator.util.swing.event.DoubleClickLi
>> stener
>>      [javac] bad class file:
>> d:\jitsi\src\net\java\sip\communicator\util\swing\ev
>> ent\DoubleClickListener.java
>>      [javac] file does not contain class
>> net.java.sip.communicator.util.swing.eve
>> nt.DoubleClickListener
>>      [javac] Please remove or make sure it appears in the correct
>> subdirectory of
>>   the classpath.
>>      [javac] public synchronized void
>> addDoubleClickListener(DoubleClickListener
>> l)
>>      [javac]                                                 ^
>>
>>
>> BUILD FAILED
>> d:\jitsi\build.xml:283: Compile failed; see the compiler error output for
>> detail
>> s.
>>
>> Total time: 36 seconds
>>
>> 07.08.2013 14:14, Alexei Fedotov пишет:
>>
>>> Check errors in your log,
>>>
>>>> package net.java.sip.communicator.util.swing does not exist
>>> --
>>> With best regards / с наилучшими пожеланиями,
>>> Alexei Fedotov / Алексей Федотов,
>>> http://dataved.ru/
>>> +7 916 562 8095
>>>
>>> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
>>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>>> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>>>
>>>
>>> On Wed, Aug 7, 2013 at 6:12 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>>>> 07.08.2013 14:02, Alexei Fedotov пишет:
>>>>
>>>>> Somehow your build configuration does not link required jitsi
>>>>> libraries. Please check if jitsi still have the package.
>>>>> --
>>>>> With best regards / с наилучшими пожеланиями,
>>>>> Alexei Fedotov / Алексей Федотов,
>>>>> http://dataved.ru/
>>>>> +7 916 562 8095
>>>>>
>>>>> [1] Start using Apache Openmeetings today,
>>>>> http://openmeetings.apache.org/
>>>>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>>>>> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>>>>>
>>>>>
>>>>> On Wed, Aug 7, 2013 at 5:55 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>>>>>> 07.08.2013 13:42, Alexei Fedotov пишет:
>>>>>>
>>>>>>>> package net.java.sip.communicator.util.swing does not exist
>>>>>>> Roman, this seems to be a problem
>>>>>>> have you downloaded jitsi sources?
>>>>>>> --
>>>>>>> With best regards / с наилучшими пожеланиями,
>>>>>>> Alexei Fedotov / Алексей Федотов,
>>>>>>> http://dataved.ru/
>>>>>>> +7 916 562 8095
>>>>>>>
>>>>>>> [1] Start using Apache Openmeetings today,
>>>>>>> http://openmeetings.apache.org/
>>>>>>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>>>>>>> [3] Join Alexei Fedotov @facebook,
>>>>>>> http://www.facebook.com/openmeetings
>>>>>>>
>>>>>>>
>>>>>>>
>>>>>> Hi Alexey!
>>>>>> Yes I have downloaded sources of jitsi. I did everything according to
>>>>>> the
>>>>>> instructions
>>>>>> http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc
>>>>>>
>>>>>> Thank you for reply
>>>>>>
>>>>>> V.Roman
>>>>
>>>> What package?
>>>> Openmeetings package in place
>>>>
>>>> V.Roman


-- 

Re: build Jitsi plugin for openmeetings

Posted by Alexei Fedotov <al...@gmail.com>.
I tihnk you should either update plug-in source or downgrade jitsi version.
--
With best regards / с наилучшими пожеланиями,
Alexei Fedotov / Алексей Федотов,
http://dataved.ru/
+7 916 562 8095

[1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
[2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
[3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings


On Wed, Aug 7, 2013 at 6:52 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
> My jitsi source didn't have net.java.sip.communicator.util.swing
> I try to find this package in the Internet
> (http://massapi.com/package/net/java/sip/communicator/util/swing/package-summary.html).
> May be it's wrong, but I tried to place it to needed place.
> When I try to run "ant rebuild" after that? have next error:
> compile:
>     [javac] Compiling 2176 source files to d:\jitsi\classes
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
> 16: package net.java.sip.communicator.service.configuration does not exist
>     [javac] import net.java.sip.communicator.service.configuration.*;
>     [javac] ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
> 266: cannot find symbol
>     [javac] symbol  : class ConfigPropertyVetoException
>     [javac] location: class
> net.java.sip.communicator.util.swing.SIPCommFrame
>     [javac] throws ConfigPropertyVetoException
>     [javac]        ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommDialog.java
> :14: package net.java.sip.communicator.service.configuration does not exist
>     [javac] import net.java.sip.communicator.service.configuration.*;
>     [javac] ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\MasterPasswordInpu
> tDialog.java:35: cannot find symbol
>     [javac] symbol  : class ResourceManagementService
>     [javac] location: class
> net.java.sip.communicator.util.swing.MasterPasswordI
> nputDialog
>     [javac] private final ResourceManagementService resources
>     [javac]               ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommTabbedPane.
> java:267: cannot access
> net.java.sip.communicator.util.swing.event.DoubleClickLi
> stener
>     [javac] bad class file:
> d:\jitsi\src\net\java\sip\communicator\util\swing\ev
> ent\DoubleClickListener.java
>     [javac] file does not contain class
> net.java.sip.communicator.util.swing.eve
> nt.DoubleClickListener
>     [javac] Please remove or make sure it appears in the correct
> subdirectory of
>  the classpath.
>     [javac] public synchronized void
> addDoubleClickListener(DoubleClickListener
> l)
>     [javac]                                                 ^
>
>
> BUILD FAILED
> d:\jitsi\build.xml:283: Compile failed; see the compiler error output for
> detail
> s.
>
> Total time: 36 seconds
>
> 07.08.2013 14:14, Alexei Fedotov пишет:
>
>> Check errors in your log,
>>
>>> package net.java.sip.communicator.util.swing does not exist
>>
>> --
>> With best regards / с наилучшими пожеланиями,
>> Alexei Fedotov / Алексей Федотов,
>> http://dataved.ru/
>> +7 916 562 8095
>>
>> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>>
>>
>> On Wed, Aug 7, 2013 at 6:12 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>>>
>>> 07.08.2013 14:02, Alexei Fedotov пишет:
>>>
>>>> Somehow your build configuration does not link required jitsi
>>>> libraries. Please check if jitsi still have the package.
>>>> --
>>>> With best regards / с наилучшими пожеланиями,
>>>> Alexei Fedotov / Алексей Федотов,
>>>> http://dataved.ru/
>>>> +7 916 562 8095
>>>>
>>>> [1] Start using Apache Openmeetings today,
>>>> http://openmeetings.apache.org/
>>>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>>>> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>>>>
>>>>
>>>> On Wed, Aug 7, 2013 at 5:55 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>>>>>
>>>>> 07.08.2013 13:42, Alexei Fedotov пишет:
>>>>>
>>>>>>> package net.java.sip.communicator.util.swing does not exist
>>>>>>
>>>>>> Roman, this seems to be a problem
>>>>>> have you downloaded jitsi sources?
>>>>>> --
>>>>>> With best regards / с наилучшими пожеланиями,
>>>>>> Alexei Fedotov / Алексей Федотов,
>>>>>> http://dataved.ru/
>>>>>> +7 916 562 8095
>>>>>>
>>>>>> [1] Start using Apache Openmeetings today,
>>>>>> http://openmeetings.apache.org/
>>>>>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>>>>>> [3] Join Alexei Fedotov @facebook,
>>>>>> http://www.facebook.com/openmeetings
>>>>>>
>>>>>>
>>>>>>
>>>>> Hi Alexey!
>>>>> Yes I have downloaded sources of jitsi. I did everything according to
>>>>> the
>>>>> instructions
>>>>> http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc
>>>>>
>>>>> Thank you for reply
>>>>>
>>>>> V.Roman
>>>
>>>
>>> What package?
>>> Openmeetings package in place
>>>
>>> V.Roman

Re: build Jitsi plugin for openmeetings

Posted by Внуков Роман <sl...@chnpp.gov.ua>.
My jitsi source didn't have net.java.sip.communicator.util.swing
I try to find this package in the Internet 
(http://massapi.com/package/net/java/sip/communicator/util/swing/package-summary.html). 
May be it's wrong, but I tried to place it to needed place.
When I try to run "ant rebuild" after that? have next error:
compile:
     [javac] Compiling 2176 source files to d:\jitsi\classes
     [javac] 
d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
16: package net.java.sip.communicator.service.configuration does not exist
     [javac] import net.java.sip.communicator.service.configuration.*;
     [javac] ^
     [javac] 
d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommFrame.java:
266: cannot find symbol
     [javac] symbol  : class ConfigPropertyVetoException
     [javac] location: class 
net.java.sip.communicator.util.swing.SIPCommFrame
     [javac] throws ConfigPropertyVetoException
     [javac]        ^
     [javac] 
d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommDialog.java
:14: package net.java.sip.communicator.service.configuration does not exist
     [javac] import net.java.sip.communicator.service.configuration.*;
     [javac] ^
     [javac] 
d:\jitsi\src\net\java\sip\communicator\util\swing\MasterPasswordInpu
tDialog.java:35: cannot find symbol
     [javac] symbol  : class ResourceManagementService
     [javac] location: class 
net.java.sip.communicator.util.swing.MasterPasswordI
nputDialog
     [javac] private final ResourceManagementService resources
     [javac]               ^
     [javac] 
d:\jitsi\src\net\java\sip\communicator\util\swing\SIPCommTabbedPane.
java:267: cannot access 
net.java.sip.communicator.util.swing.event.DoubleClickLi
stener
     [javac] bad class file: 
d:\jitsi\src\net\java\sip\communicator\util\swing\ev
ent\DoubleClickListener.java
     [javac] file does not contain class 
net.java.sip.communicator.util.swing.eve
nt.DoubleClickListener
     [javac] Please remove or make sure it appears in the correct 
subdirectory of
  the classpath.
     [javac] public synchronized void 
addDoubleClickListener(DoubleClickListener
l)
     [javac]                                                 ^

BUILD FAILED
d:\jitsi\build.xml:283: Compile failed; see the compiler error output 
for detail
s.

Total time: 36 seconds

07.08.2013 14:14, Alexei Fedotov пишет:
> Check errors in your log,
>
>> package net.java.sip.communicator.util.swing does not exist
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,
> http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Wed, Aug 7, 2013 at 6:12 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>> 07.08.2013 14:02, Alexei Fedotov пишет:
>>
>>> Somehow your build configuration does not link required jitsi
>>> libraries. Please check if jitsi still have the package.
>>> --
>>> With best regards / с наилучшими пожеланиями,
>>> Alexei Fedotov / Алексей Федотов,
>>> http://dataved.ru/
>>> +7 916 562 8095
>>>
>>> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
>>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>>> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>>>
>>>
>>> On Wed, Aug 7, 2013 at 5:55 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>>>> 07.08.2013 13:42, Alexei Fedotov пишет:
>>>>
>>>>>> package net.java.sip.communicator.util.swing does not exist
>>>>> Roman, this seems to be a problem
>>>>> have you downloaded jitsi sources?
>>>>> --
>>>>> With best regards / с наилучшими пожеланиями,
>>>>> Alexei Fedotov / Алексей Федотов,
>>>>> http://dataved.ru/
>>>>> +7 916 562 8095
>>>>>
>>>>> [1] Start using Apache Openmeetings today,
>>>>> http://openmeetings.apache.org/
>>>>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>>>>> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>>>>>
>>>>>
>>>>>
>>>> Hi Alexey!
>>>> Yes I have downloaded sources of jitsi. I did everything according to the
>>>> instructions
>>>> http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc
>>>>
>>>> Thank you for reply
>>>>
>>>> V.Roman
>>
>> What package?
>> Openmeetings package in place
>>
>> V.Roman

Re: build Jitsi plugin for openmeetings

Posted by Alexei Fedotov <al...@gmail.com>.
Check errors in your log,

> package net.java.sip.communicator.util.swing does not exist
--
With best regards / с наилучшими пожеланиями,
Alexei Fedotov / Алексей Федотов,
http://dataved.ru/
+7 916 562 8095

[1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
[2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
[3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings


On Wed, Aug 7, 2013 at 6:12 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
> 07.08.2013 14:02, Alexei Fedotov пишет:
>
>> Somehow your build configuration does not link required jitsi
>> libraries. Please check if jitsi still have the package.
>> --
>> With best regards / с наилучшими пожеланиями,
>> Alexei Fedotov / Алексей Федотов,
>> http://dataved.ru/
>> +7 916 562 8095
>>
>> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>>
>>
>> On Wed, Aug 7, 2013 at 5:55 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>>>
>>> 07.08.2013 13:42, Alexei Fedotov пишет:
>>>
>>>>> package net.java.sip.communicator.util.swing does not exist
>>>>
>>>> Roman, this seems to be a problem
>>>> have you downloaded jitsi sources?
>>>> --
>>>> With best regards / с наилучшими пожеланиями,
>>>> Alexei Fedotov / Алексей Федотов,
>>>> http://dataved.ru/
>>>> +7 916 562 8095
>>>>
>>>> [1] Start using Apache Openmeetings today,
>>>> http://openmeetings.apache.org/
>>>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>>>> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>>>>
>>>>
>>>>
>>> Hi Alexey!
>>> Yes I have downloaded sources of jitsi. I did everything according to the
>>> instructions
>>> http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc
>>>
>>> Thank you for reply
>>>
>>> V.Roman
>
>
> What package?
> Openmeetings package in place
>
> V.Roman

Re: build Jitsi plugin for openmeetings

Posted by Внуков Роман <sl...@chnpp.gov.ua>.
07.08.2013 14:02, Alexei Fedotov пишет:
> Somehow your build configuration does not link required jitsi
> libraries. Please check if jitsi still have the package.
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,
> http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
> On Wed, Aug 7, 2013 at 5:55 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
>> 07.08.2013 13:42, Alexei Fedotov пишет:
>>
>>>> package net.java.sip.communicator.util.swing does not exist
>>> Roman, this seems to be a problem
>>> have you downloaded jitsi sources?
>>> --
>>> With best regards / с наилучшими пожеланиями,
>>> Alexei Fedotov / Алексей Федотов,
>>> http://dataved.ru/
>>> +7 916 562 8095
>>>
>>> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
>>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>>> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>>>
>>>
>>>
>> Hi Alexey!
>> Yes I have downloaded sources of jitsi. I did everything according to the
>> instructions
>> http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc
>>
>> Thank you for reply
>>
>> V.Roman

What package?
Openmeetings package in place

V.Roman

Re: build Jitsi plugin for openmeetings

Posted by Alexei Fedotov <al...@gmail.com>.
Somehow your build configuration does not link required jitsi
libraries. Please check if jitsi still have the package.
--
With best regards / с наилучшими пожеланиями,
Alexei Fedotov / Алексей Федотов,
http://dataved.ru/
+7 916 562 8095

[1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
[2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
[3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings


On Wed, Aug 7, 2013 at 5:55 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
> 07.08.2013 13:42, Alexei Fedotov пишет:
>
>>> package net.java.sip.communicator.util.swing does not exist
>>
>> Roman, this seems to be a problem
>> have you downloaded jitsi sources?
>> --
>> With best regards / с наилучшими пожеланиями,
>> Alexei Fedotov / Алексей Федотов,
>> http://dataved.ru/
>> +7 916 562 8095
>>
>> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
>> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
>> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>>
>>
>>
> Hi Alexey!
> Yes I have downloaded sources of jitsi. I did everything according to the
> instructions
> http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc
>
> Thank you for reply
>
> V.Roman

Re: build Jitsi plugin for openmeetings

Posted by Внуков Роман <sl...@chnpp.gov.ua>.
07.08.2013 13:42, Alexei Fedotov пишет:
>> package net.java.sip.communicator.util.swing does not exist
> Roman, this seems to be a problem
> have you downloaded jitsi sources?
> --
> With best regards / с наилучшими пожеланиями,
> Alexei Fedotov / Алексей Федотов,
> http://dataved.ru/
> +7 916 562 8095
>
> [1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
> [2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
> [3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings
>
>
>
Hi Alexey!
Yes I have downloaded sources of jitsi. I did everything according to 
the instructions 
http://dataved.googlecode.com/svn-history/r519/trunk/doc/build_ru.doc

Thank you for reply

V.Roman

Re: build Jitsi plugin for openmeetings

Posted by Alexei Fedotov <al...@gmail.com>.
> package net.java.sip.communicator.util.swing does not exist

Roman, this seems to be a problem
have you downloaded jitsi sources?
--
With best regards / с наилучшими пожеланиями,
Alexei Fedotov / Алексей Федотов,
http://dataved.ru/
+7 916 562 8095

[1] Start using Apache Openmeetings today, http://openmeetings.apache.org/
[2] Join Alexei Fedotov @linkedin, http://ru.linkedin.com/in/dataved/
[3] Join Alexei Fedotov @facebook, http://www.facebook.com/openmeetings


On Wed, Aug 7, 2013 at 5:35 PM, Внуков Роман <sl...@chnpp.gov.ua> wrote:
> Hello everyone!
> I have a problem when building jitsi+openmeetings.
> I've got jitsi and openmeetings sources from SVN. Made changes to build.hml
> and lib/felix.client.run.propertis.
> Then execute "ant rebuild" command and got the following error message:
> version:
>     [javac] Compiling 3 source files to d:\jitsi\classes
>      [echo] Jitsi version 2.1.0.build.by.SVN
>
> compile:
>     [javac] Compiling 2124 source files to d:\jitsi\classes
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Openmeeti
> ngsConfigPanel.java:9: package net.java.sip.communicator.util.swing does not
> exi
> st
>     [javac] import net.java.sip.communicator.util.swing.*;
>     [javac] ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Openmeeti
> ngsConfigPanel.java:14: cannot find symbol
>     [javac] symbol: class TransparentPanel
>     [javac]     extends TransparentPanel
>     [javac]             ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Encryptio
> nEngine.java:64: warning: sun.misc.BASE64Encoder is Sun proprietary API and
> may
> be removed in a future release
>     [javac]             new sun.misc.BASE64Encoder().encode(cipherText);
>     [javac]                         ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Encryptio
> nEngine.java:71: warning: sun.misc.BASE64Decoder is Sun proprietary API and
> may
> be removed in a future release
>     [javac]         byte[] message = new
> sun.misc.BASE64Decoder().decodeBuffer(m
> essageStr);
>     [javac]                                      ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Openmeeti
> ngsConfigPanel.java:60: cannot find symbol
>     [javac] symbol  : class TransparentPanel
>     [javac] location: class
> net.java.sip.communicator.plugin.openmeetings.Openme
> etingsConfigPanel
>     [javac]         JPanel headerPanel = new TransparentPanel();
>     [javac]                                  ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Openmeeti
> ngsConfigPanel.java:72: cannot find symbol
>     [javac] symbol  : class TransparentPanel
>     [javac] location: class
> net.java.sip.communicator.plugin.openmeetings.Openme
> etingsConfigPanel
>     [javac]         JPanel serverPanel = new TransparentPanel();
>     [javac]                                  ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Openmeeti
> ngsConfigPanel.java:83: cannot find symbol
>     [javac] symbol  : class TransparentPanel
>     [javac] location: class
> net.java.sip.communicator.plugin.openmeetings.Openme
> etingsConfigPanel
>     [javac]         JPanel loginPanel = new TransparentPanel();
>     [javac]                                 ^
>     [javac]
> d:\jitsi\src\net\java\sip\communicator\plugin\openmeetings\Openmeeti
> ngsConfigPanel.java:90: cannot find symbol
>     [javac] symbol  : variable LEFT_ALIGNMENT
>     [javac] location: class
> net.java.sip.communicator.plugin.openmeetings.Openme
> etingsConfigPanel
>     [javac]         loginPanel.setAlignmentX(LEFT_ALIGNMENT);
> .....................
> BUILD FAILED
> d:\jitsi\build.xml:283: Compile failed; see the compiler error output for
> detail
> s.
>
> Question is: where can I find this package and what packages I still needed.
>
> Thank you all!
>
> V.Roman