RE: another compilation error

"Laszlo Schaffer personal" <laszlo.schaffer-HYXu6/[email protected]>
Newsgroups gmane.comp.java.openjms.user
Message-ID <000501c54fae$0124f430$7201a8c0@safhome>
I tried with cleanup also but the result is the same
For example

D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms
\authentication\UserManager.java:226: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.SecurityConfiguration
            ConfigurationManager.getConfig().getSecurityConfiguration();

See the attached out and err files

(Note:However I could compile the project after these errors had been
corrected)

Regards
saf

-----Original Message-----
From: openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
[mailto:openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf Of Tim Anderson
Sent: 2005. május 3. 5:54
To: [email protected]
Subject: RE: [openjms-user] another compilation error

Did you do a clean build?
> maven o:clean
> maven -Dmaven.test.skip -Dmaven.castor.fork o:build

> -----Original Message-----
> From: openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org 
> [mailto:openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf 
> Of Laszlo Schaffer personal
> Sent: Tuesday, 3 May 2005 3:23 AM
> To: [email protected]
> Subject: [openjms-user] another compilation error
> 
> 
> Hello,
> 
> Another things, I have checked out the latest jms version with maven
> 
>  
> 
> maven scm:checkout-project -Dmaven.scm.method=cvs 
> -Dmaven.scm.cvs.module=openjms 
> -Dmaven.scm.cvs.root=:pserver:[email protected]:/c
> vsroot/openjms
> -Dmaven.scm.checkout.dir=.
> 
>  
> 
> then I started to compile the full project
> 
>  
> 
> maven -Dmaven.test.skip -Dmaven.castor.fork o:build
> 
>  
> 
> There were many errors (>20!)  like this
> 
> D:\OtherJava\openjms-dev\openjms\modules\jms\src\main\java\org
> \exolab\jms\au
> thentication\UserManager.java:226: incompatible types
> 
> found   : java.lang.Object
> 
> required: org.exolab.jms.config.SecurityConfiguration
> 
>             
> ConfigurationManager.getConfig().getSecurityConfiguration();
> 
>                                                                      ^
> 
> D:\OtherJava\openjms-dev\openjms\modules\jms\src\main\java\org
> \exolab\jms\au
> thentication\UserManager.java:298: cannot resolve symbol
> 
> symbol  : method getUser ()
> 
> location: class java.lang.Object
> 
>             org.exolab.jms.config.User[] users = 
> config.getUsers().getUser();
> 
>  
> 
> Finally I have to recheck and repair some class (now it is 
> working) but the question is could anybody compile the jms 
> code without any modification?
> 
> Thanks
> 
> saf
> 
>  
> 
> -----Original Message-----
> From: openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> [mailto:openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf 
> Of Tim Anderson
> Sent: 2005. április 30. 15:37
> To: [email protected]
> Subject: RE: [openjms-user] httptunneling/callback
> 
>  
> 
> You also need to specify the tunnel in the JNDI provider URL:
> 
>  
> 
> String url = "https://safhome:8443/openjms-tunnel/tunnel";
> 
> props.put(Context.PROVIDER_URL, url);
> 
>  
> 
> -----Original Message-----
> From: openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> [mailto:openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf 
> Of Tim Anderson
> Sent: Saturday, 30 April 2005 11:25 PM
> To: [email protected]
> Subject: RE: [openjms-user] httptunneling/callback
> 
> How have you deployed the tunnel?
> 
>  
> 
> Given your configuration, the WAR needs to be copied to: 
> 
>   <TOMCAT_HOME>/webapps/openjms-tunnel.war
> 
>  
> 
>  
> 
>  -----Original Message-----
> From: openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> [mailto:openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf 
> Of Laszlo Schaffer personal
> Sent: Friday, 29 April 2005 5:43 PM
> To: [email protected]
> Subject: RE: [openjms-user] httptunneling/callback
> 
> Hello!
> 
>  
> 
> I have tried the https/tunneling feature.
> 
> The Tomcat5 and JMS Server have been configured as you have 
> suggested. 
> 
> They are working fine (with jms admin I can connect to the server)
> 
> But from my test app I could not connect to the server
> 
> Here is the code 
> 
>  
> 
> props.put(Context.INITIAL_CONTEXT_FACTORY,
> "org.exolab.jms.jndi.InitialContextFactory");
> 
> //URL=https://safhome:8443
> 
> props.put(Context.PROVIDER_URL, url);
> 
>  
> 
> context = new InitialContext(props); // drop exception
> 
>  
> 
> factory = (QueueConnectionFactory) 
> context.lookup("QueueConnectionFactory");
> 
>  
> 
> connection = factory.createQueueConnection();
> 
> connection.start();
> 
> …
> 
>  
> 
> EXCEPTION
> 
> 2005-04-29 09:24:56,921 ERROR TestViewController - connect:
> 
> javax.naming.CommunicationException: Failed to get registry 
> service for URL: https://safhome:8443 [Root exception is 
> java.rmi.ConnectIOException: Failed to create connection; 
> nested exception is: 
> 
>             org.exolab.jms.net.connector.ConnectException: 
> Failed to connect to URI=https://safhome:8443/]
> 
>             at 
> org.exolab.jms.jndi.InitialContextFactory.getInitialContext(In
> itialContextFa
> ctory.java:109)
> 
>             at
> javax.naming.spi.NamingManager.getInitialContext(NamingManager
> .java:667)
> 
>             at
> javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:247)
> 
>             at 
> javax.naming.InitialContext.init(InitialContext.java:223)
> 
>  
> 
> And here is my jmsconfig
> 
>  
> 
> <HttpsConfiguration webServerHost="safhome"
> 
>             webServerPort="8443"
> 
>             port="3030"
> 
>             servlet="/openjms-tunnel/tunnel"  />
> 
>  
> 
>  
> 
>    <Connectors>
> 
>       <Connector scheme="https">
> 
>          <ConnectionFactories>
> 
>              <TopicConnectionFactory name="TopicConnectionFactory" />
> 
>              <QueueConnectionFactory name="QueueConnectionFactory" />
> 
>         </ConnectionFactories>
> 
>      </Connector>
> 
>    </Connectors>
> 
>  
> 
> Any suggestion?
> 
>  
> 
> Thanks
> 
> Laszlo Schaffer
> 
>  
> 
> -----Original Message-----
> From: openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> [mailto:openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf 
> Of Daniel Otero
> Sent: 2005. április 8. 0:04
> To: [email protected]
> Subject: Re: [openjms-user] httptunneling/callback
> 
>  
> 
> Hi saf, what you need to do (if you are using the 0.7.7-dev 
> version) is (if you can wait a few days things will be 
> simplified a bit):
> 
> On the server side:
> 
> 1) place the .war in the webapps/ directory.
> 
> 2) define the https connector and it's configuration like this (in the
> openjms.xml):
> 
> <Connectors>
> <Connector scheme="https">
> <ConnectionFactories>
> <TopicConnectionFactory name="TopicConnectionFactory" /> 
> <QueueConnectionFactory name="QueueConnectionFactory" /> 
> </ConnectionFactories> </Connector> </Connectors>
> 
> <HttpsConfiguration webServerHost="your.webserver.com"
> webServerPort="9999"
> port="3030"
> servlet="/openjms-tunnel/tunnel"
> />
> 
> Note: in the next few days the TopicConnectionFactory and 
> QueueConnectionFactory will be replaced by a single entry 
> like so - and the examples should be modified accordingly:
> 
> <ConnectionFactory name="ConnectionFactory" />
> 
> On the cliet side...
> 
> 1) You need to set up your keystore and run your java client 
> with the usual parameters (-Djavax.net.ssl.trustStore="$TSTORE"
> -Djavax.net.ssl.keyStore="$KSTORE" -Djavax.net.ssl.keyStoreType="jks"
> -Djavax.net.ssl.keyStorePassword="$KPASS" )
> 
> I believe the plan is to make these part of the 
> jndi.properties file (i.e. look in examples/basic and see 2) 
> below). But that won't happen for a few days...
> 
> 2) The good news is that if you need to use a proxy-server to 
> get through the corporate firewall the properties to do this 
> can already be specified in the jndi.properties file like so 
> (much like the ssl ones will probably end
> up):
> 
> org.exolab.jms.net.https.proxyHost=local.proxy.com
> org.exolab.jms.net.https.proxyPort=3128
> 
> if user authentication is required you can also use the following:
> 
> org.exolab.jms.net.https.proxyUser=user
> org.exolab.jms.net.https.proxyPassword=password
> 
> On Apr 7, 2005, at 11:07 AM, Laszlo Schaffer personal wrote:
> 
> Hello!
> 
>  
> 
> It is possible to use MessageListener…onMessage() behind a 
> client firewall?
> 
> I have read something about this TunnelServlet but I do not 
> know how can I use this?
> 
> What I need a configuration where a client there is behind a 
> firewall (the jms server server also) and the connection is 
> being made using https
> 
> Recently have download and compiled the 0.7.7-dev version but 
> how can I use this Tunneling feature?
> 
>  
> 
> Thanks
> 
> saf
> 
> -----Original Message-----
> From: openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org
> [mailto:openjms-user-admin-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f@public.gmane.org] On Behalf 
> Of Marco Lettere
> Sent: 2005. április 12. 13:03
> To: Marco Lettere
> Cc: [email protected]
> Subject: [openjms-user] Re: Strange error in compilation of 0.7.7-dev
> 
> I found the problem by myself. Googling for some terms I've 
> found that 
> the problem resides in the relation between jdk 1.4 and ant. 
> The solution was to include a "-Dmaven.castor.fork=true" 
> switch on the 
> maven command line.
> Hope this could help out anyone having similar problems.
> M.
> 
> Marco Lettere wrote:
> 
> > Hello to everyone,
> > I'm trying to build the openjms-0.7.7-dev version. I made 
> it to build
> > everything until the maven "tools" goal.
> > Here I get the following problem:
> >
> --------------------------------------------------------------
> --------------
> ------------------------------------------------------ 
> >
> > BUILD FAILED
> > File......
> >
> /home/synapsis/m.lettere/.maven/cache/maven-multiproject-plugi
> n-1.3.1/plugin
> .jelly 
> >
> > Element... maven:reactor
> > Line...... 217
> > Column.... 9
> > Unable to obtain goal [multiproject:install-callback] --
> >
> /home/synapsis/m.lettere/.maven/cache/maven-castor-plugin-1.2/
> plugin.jelly:9
> 2:38: 
> > <ant:java> java.lang.NoClassDefFoundError:
> > sun/reflect/ConstructorAccessorImpl
> > Total time: 16 seconds
> > Finished at: Tue Apr 12 09:39:27 CEST 2005
> >
> --------------------------------------------------------------
> --------------
> -------------------------------------------------------- 
> >
> >
> > I read that this could be related to ant and jdk versions 
> but I really
> > can't figure out where the problem resides. Can any of you 
> tell me any 
> > solution?
> > Thank you,
> > M.
> >
> 
> 
> 
> -------------------------------------------------------
> SF email is sponsored by - The IT Product Guide
> Read honest & candid reviews on hundreds of IT Products from 
> real users.
> Discover which products truly live up to the hype. Start reading now.
> http://ads.osdn.com/?ad_id=6595&alloc_id=14396&op=click
> _______________________________________________
> openjms-user mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/openjms-user
> 
> 
> 
> -------------------------------------------------------
> This SF.Net email is sponsored by: NEC IT Guy Games.
> Get your fingers limbered up and give it your best shot. 4 
> great events, 4
> opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
> win an NEC 61 plasma display. Visit http://www.necitguy.com/?r 
> _______________________________________________
> openjms-user mailing list
> [email protected]
> https://lists.sourceforge.net/lists/listinfo/openjms-user
> 



-------------------------------------------------------
This SF.Net email is sponsored by: NEC IT Guy Games.
Get your fingers limbered up and give it your best shot. 4 great events, 4
opportunities to win big! Highest score wins.NEC IT Guy Games. Play to
win an NEC 61 plasma display. Visit http://www.necitguy.com/?r 
_______________________________________________
openjms-user mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/openjms-user
err.txt (text/plain, 22.1 KB)
ANTLR Parser Generator   Version 2.7.2   1989-2003 jGuru.com
ANTLR Parser Generator   Version 2.7.2   1989-2003 jGuru.com
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:55: warning: org.xml.sax.AttributeList in org.xml.sax has been deprecated
import org.xml.sax.AttributeList;
                   ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:56: warning: org.xml.sax.DocumentHandler in org.xml.sax has been deprecated
import org.xml.sax.DocumentHandler;
                   ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:60: warning: org.xml.sax.Parser in org.xml.sax has been deprecated
import org.xml.sax.Parser;
                   ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:62: warning: org.xml.sax.helpers.AttributeListImpl in org.xml.sax.helpers has been deprecated
import org.xml.sax.helpers.AttributeListImpl;
                           ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:82: warning: org.xml.sax.DocumentHandler in org.xml.sax has been deprecated
    private DocumentHandler _handler = null;
            ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:104: warning: org.xml.sax.DocumentHandler in org.xml.sax has been deprecated
    public void setDocumentHandler(DocumentHandler handler) {
                                   ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:130: warning: org.xml.sax.DocumentHandler in org.xml.sax has been deprecated
    private class AttributeInterceptor implements DocumentHandler {
                                                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:144: warning: org.xml.sax.AttributeList in org.xml.sax has been deprecated
        public void startElement(String name, AttributeList list)
                                              ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\authentication\UserManager.java:226: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.SecurityConfiguration
            ConfigurationManager.getConfig().getSecurityConfiguration();
                                                                     ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\authentication\UserManager.java:298: cannot resolve symbol
symbol  : method getUser ()
location: class java.lang.Object
            org.exolab.jms.config.User[] users = config.getUsers().getUser();
                                                                ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:104: warning: org.xml.sax.DocumentHandler in org.xml.sax has been deprecated
    public void setDocumentHandler(DocumentHandler handler) {
                                   ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:112: warning: org.xml.sax.Parser in org.xml.sax has been deprecated
        Parser parser = Configuration.getDefaultParser();
        ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:117: warning: org.xml.sax.DocumentHandler in org.xml.sax has been deprecated
        DocumentHandler handler = new AttributeInterceptor();
        ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:144: warning: org.xml.sax.AttributeList in org.xml.sax has been deprecated
        public void startElement(String name, AttributeList list)
                                              ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:147: warning: org.xml.sax.helpers.AttributeListImpl in org.xml.sax.helpers has been deprecated
            AttributeListImpl replaced = new AttributeListImpl();
            ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\AttributeExpander.java:147: warning: org.xml.sax.helpers.AttributeListImpl in org.xml.sax.helpers has been deprecated
            AttributeListImpl replaced = new AttributeListImpl();
                                             ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:75: cannot resolve symbol
symbol  : method getConnector ()
location: class java.lang.Object
        Connector[] connectors = config.getConnectors().getConnector();
                                                     ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:96: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.ServerConfiguration
        ServerConfiguration server = config.getServerConfiguration();
                                                                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:98: cannot resolve symbol
symbol  : method getServerAcceptURL (org.exolab.jms.config.types.SchemeType,java.lang.String,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getServerAcceptURL(scheme, server.getHost(),
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:101: cannot resolve symbol
symbol  : method getServerAcceptURL (org.exolab.jms.config.types.SchemeType,java.lang.String,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getServerAcceptURL(scheme, server.getHost(),
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:119: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.ServerConfiguration
        ServerConfiguration server = config.getServerConfiguration();
                                                                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:122: cannot resolve symbol
symbol  : method getServerURL (org.exolab.jms.config.types.SchemeType,java.lang.String,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getServerURL(scheme, server.getHost(),
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:125: cannot resolve symbol
symbol  : method getServerURL (org.exolab.jms.config.types.SchemeType,java.lang.String,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getServerURL(scheme, server.getHost(),
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:128: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.RmiConfiguration
            RmiConfiguration rmi = config.getRmiConfiguration();
                                                             ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:137: cannot resolve symbol
symbol  : method getServerURL (org.exolab.jms.config.types.SchemeType,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getServerURL(scheme, config.getHttpConfiguration());
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:139: cannot resolve symbol
symbol  : method getServerURL (org.exolab.jms.config.types.SchemeType,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getServerURL(scheme, config.getHttpsConfiguration());
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:155: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.ServerConfiguration
        ServerConfiguration server = config.getServerConfiguration();
                                                                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:158: cannot resolve symbol
symbol  : method getJndiURL (org.exolab.jms.config.types.SchemeType,java.lang.String,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getJndiURL(scheme, server.getHost(),
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:161: cannot resolve symbol
symbol  : method getJndiURL (org.exolab.jms.config.types.SchemeType,java.lang.String,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getJndiURL(scheme, server.getHost(),
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:164: cannot resolve symbol
symbol  : method getJndiURL (org.exolab.jms.config.types.SchemeType,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getJndiURL(scheme, config.getHttpConfiguration());
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:166: cannot resolve symbol
symbol  : method getJndiURL (org.exolab.jms.config.types.SchemeType,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getJndiURL(scheme, config.getHttpsConfiguration());
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:168: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.RmiConfiguration
            RmiConfiguration rmi = config.getRmiConfiguration();
                                                             ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:191: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.ServerConfiguration
        ServerConfiguration server = config.getServerConfiguration();
                                                                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:194: cannot resolve symbol
symbol  : method getAdminURL (org.exolab.jms.config.types.SchemeType,java.lang.String,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getAdminURL(scheme, server.getHost(),
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:197: cannot resolve symbol
symbol  : method getAdminURL (org.exolab.jms.config.types.SchemeType,java.lang.String,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getAdminURL(scheme, server.getHost(),
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:200: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.RmiConfiguration
            RmiConfiguration rmi = config.getRmiConfiguration();
                                                             ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:209: cannot resolve symbol
symbol  : method getAdminURL (org.exolab.jms.config.types.SchemeType,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getAdminURL(scheme, config.getHttpConfiguration());
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:211: cannot resolve symbol
symbol  : method getAdminURL (org.exolab.jms.config.types.SchemeType,java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            url = getAdminURL(scheme, config.getHttpsConfiguration());
                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:229: cannot resolve symbol
symbol  : method getAcceptorProperties (java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            result = getAcceptorProperties(config.getTcpConfiguration());
                     ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:231: cannot resolve symbol
symbol  : method getAcceptorProperties (java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            result = getAcceptorProperties(config.getTcpsConfiguration());
                     ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:233: cannot resolve symbol
symbol  : method getAcceptorProperties (java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            result = getAcceptorProperties(config.getHttpConfiguration());
                     ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:235: cannot resolve symbol
symbol  : method getAcceptorProperties (java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            result = getAcceptorProperties(config.getHttpsConfiguration());
                     ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigHelper.java:237: cannot resolve symbol
symbol  : method getAcceptorProperties (java.lang.Object)
location: class org.exolab.jms.config.ConfigHelper
            result = getAcceptorProperties(config.getRmiConfiguration());
                     ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigurationLoader.java:159: cannot resolve symbol
symbol  : method getEmbeddedJNDI ()
location: class java.lang.Object
        if (config.getServerConfiguration().getEmbeddedJNDI()) {
                                         ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigurationManager.java:139: cannot resolve symbol
symbol  : method getConnector ()
location: class java.lang.Object
        Connector[] connectors = config.getConnectors().getConnector();
                                                     ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConfigurationManager.java:161: cannot resolve symbol
symbol  : method getConnector (int)
location: class java.lang.Object
        return config.getConnectors().getConnector(0);
                                   ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConnectorHelper.java:119: cannot resolve symbol
symbol  : method getConnectorResource ()
location: class java.lang.Object
            connectors = config.getConnectorResources().getConnectorResource();
                                                     ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConnectorHelper.java:139: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.ConnectorResources
            connectors = ConnectorResources.unmarshal(
                                                     ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\ConnectorHelper.java:141: incompatible types
found   : java.lang.Object[]
required: org.exolab.jms.config.ConnectorResource[]
            _connectors = connectors.getConnectorResource();
                                                         ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\JndiConfigurationFactory.java:77: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.Connectors
        Connectors connectors = config.getConnectors();
                                                    ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\JndiConfigurationFactory.java:78: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.Connector
        Connector connector = connectors.getConnector(0);
                                                     ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\JndiConfigurationFactory.java:101: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.ServerConfiguration
        ServerConfiguration server = config.getServerConfiguration();
                                                                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\config\JndiConfigurationFactory.java:108: cannot resolve symbol
symbol  : method getInitialContextClass ()
location: class java.lang.Object
        context.setValue(resource.getJndi().getInitialContextClass());
                                         ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\gc\GarbageCollectionService.java:207: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.GarbageCollectionConfiguration
            config.getGarbageCollectionConfiguration();
                                                    ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\scheduler\Scheduler.java:161: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.SchedulerConfiguration
            config.getSchedulerConfiguration();
                                            ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\messagemgr\DestinationManager.java:532: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.AdministeredDestinations
                ConfigurationManager.getConfig().getAdministeredDestinations();
                                                                            ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\persistence\RDBMSAdapter.java:153: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.DatabaseConfiguration
            ConfigurationManager.getConfig().getDatabaseConfiguration();
                                                                     ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\persistence\RDBMSAdapter.java:155: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.RdbmsDatabaseConfiguration
            dbConfig.getRdbmsDatabaseConfiguration();
                                                  ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\persistence\DatabaseService.java:154: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.DatabaseConfiguration
        DatabaseConfiguration dbconfig = config.getDatabaseConfiguration();
                                                                        ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\persistence\DatabaseService.java:156: createRdbmsAdapter(org.exolab.jms.config.RdbmsDatabaseConfiguration) in org.exolab.jms.persistence.DatabaseService cannot be applied to (java.lang.Object)
        _adapter = createRdbmsAdapter(
                   ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\server\JmsServer.java:152: incompatible types
found   : java.lang.Object
required: org.exolab.jms.config.LoggerConfiguration
        LoggerConfiguration log = _config.getLoggerConfiguration();
                                                                ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\server\JmsServer.java:162: cannot resolve symbol
symbol  : method getEmbeddedJNDI ()
location: class java.lang.Object
        if (_config.getServerConfiguration().getEmbeddedJNDI()) {
                                          ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\server\JmsServer.java:295: cannot resolve symbol
symbol  : method getConnector ()
location: class java.lang.Object
        Connector[] connectors = _config.getConnectors().getConnector();
                                                      ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\server\JmsServer.java:323: cannot resolve symbol
symbol  : method getImplementationClass ()
location: class java.lang.Object
        String className = resource.getServer().getImplementationClass();
                                             ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\server\NamingHelper.java:82: cannot resolve symbol
symbol  : method getEmbeddedJNDI ()
location: class java.lang.Object
        if (config.getServerConfiguration().getEmbeddedJNDI()) {
                                         ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\server\NamingHelper.java:87: cannot resolve symbol
symbol  : method getProperty ()
location: class java.lang.Object
                config.getJndiConfiguration().getProperty();
                                           ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\server\net\RemoteServerConnector.java:164: cannot resolve symbol
symbol  : method getEmbeddedJNDI ()
location: class java.lang.Object
            if (_config.getServerConfiguration().getEmbeddedJNDI()) {
                                              ^
D:\OtherJava\opensource_dev\openjms\modules\jms\src\main\java\org\exolab\jms\server\net\RemoteServerConnector.java:200: cannot resolve symbol
symbol  : method bind (javax.naming.Context,java.lang.Object,java.lang.Class,java.util.Hashtable)
location: class org.exolab.jms.server.net.ConnectionFactoryHelper
        ConnectionFactoryHelper.bind(context,
                               ^
54 errors
14 warnings

BUILD FAILED
File...... C:\Documents and Settings\saf\.maven\cache\maven-multiproject-plugin-1.3.1\plugin.jelly
Element... maven:reactor
Line...... 217
Column.... 9
Unable to obtain goal [multiproject:install-callback] -- C:\Documents and Settings\saf\.maven\cache\maven-java-plugin-1.5\plugin.jelly:63:48: <ant:javac> Compile failed; see the compiler error output for details.
out.txt (text/plain, 9.8 KB)
 __  __
|  \/  |__ _Apache__ ___
| |\/| / _` \ V / -_) ' \  ~ intelligent projects ~
|_|  |_\__,_|\_/\___|_||_|  v. 1.0.2

Starting the reactor...
Our processing order:
OpenJMS: Proxy Generator plugin
+----------------------------------------
| Installing proxygen plugin OpenJMS: Proxy Generator plugin
| Memory: 3M/4M
+----------------------------------------
build:start:

o:build:
multiproject:install:
build:start:

plugin:plugin:
java:prepare-filesystem:
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\proxygen-plugin\target\classes

java:compile:
    [echo] Compiling to D:\OtherJava\opensource_dev\openjms\modules\proxygen-plugin/target/classes
    [javac] Compiling 6 source files to D:\OtherJava\opensource_dev\openjms\modules\proxygen-plugin\target\classes

java:jar-resources:
Copying 3 files to D:\OtherJava\opensource_dev\openjms\modules\proxygen-plugin\target\classes

test:prepare-filesystem:
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\proxygen-plugin\target\test-classes
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\proxygen-plugin\target\test-reports

test:test-resources:

test:compile:
    [echo] No test source files to compile.

test:test:
    [echo] No tests to run.

jar:jar:
    [jar] Building jar: D:\OtherJava\opensource_dev\openjms\modules\proxygen-plugin\target\openjms-proxygen-plugin-0.7.7-dev.jar


plugin:install-now:
    [delete] Deleting 1 files from C:\Documents and Settings\saf\.maven\plugins
    [delete] Deleting 15 files from C:\Documents and Settings\saf\.maven\cache
    [delete] Deleted 7 directories from C:\Documents and Settings\saf\.maven\cache

build:end:

multiproject:projects-init:
    [echo] Gathering project list
Starting the reactor...
Our processing order:
OpenJMS: Common
OpenJMS: HTTP tunnel
OpenJMS: Network
OpenJMS: JMS
OpenJMS: Examples
OpenJMS: Tools
+----------------------------------------
| Gathering project list OpenJMS: Common
| Memory: 9M/11M
+----------------------------------------
+----------------------------------------
| Gathering project list OpenJMS: HTTP tunnel
| Memory: 9M/11M
+----------------------------------------
+----------------------------------------
| Gathering project list OpenJMS: Network
| Memory: 9M/11M
+----------------------------------------
+----------------------------------------
| Gathering project list OpenJMS: JMS
| Memory: 9M/11M
+----------------------------------------
+----------------------------------------
| Gathering project list OpenJMS: Examples
| Memory: 9M/11M
+----------------------------------------
+----------------------------------------
| Gathering project list OpenJMS: Tools
| Memory: 9M/11M
+----------------------------------------
Starting the reactor...
Our processing order:
OpenJMS: Common
OpenJMS: HTTP tunnel
OpenJMS: Network
OpenJMS: JMS
OpenJMS: Examples
OpenJMS: Tools
+----------------------------------------
| Executing multiproject:install-callback OpenJMS: Common
| Memory: 10M/11M
+----------------------------------------

multiproject:goal:
build:start:

multiproject:install-callback:
    [echo] Running jar:install for OpenJMS: Common
java:prepare-filesystem:
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\common\target\classes

java:compile:
    [echo] Compiling to D:\OtherJava\opensource_dev\openjms\modules\common/target/classes
    [javac] Compiling 10 source files to D:\OtherJava\opensource_dev\openjms\modules\common\target\classes

java:jar-resources:

test:prepare-filesystem:
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\common\target\test-classes
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\common\target\test-reports

test:test-resources:

test:compile:

test:test:

jar:jar:
    [jar] Building jar: D:\OtherJava\opensource_dev\openjms\modules\common\target\openjms-common-0.7.7-dev.jar
Copying: from 'D:\OtherJava\opensource_dev\openjms\modules\common\target\openjms-common-0.7.7-dev.jar' to: 'C:\Documents and Settings\saf\.maven\repository\openjms\jars\openjms-common-0.7.7-dev.jar'
Copying: from 'D:\OtherJava\opensource_dev\openjms\modules\common\project.xml' to: 'C:\Documents and Settings\saf\.maven\repository\openjms\poms\openjms-common-0.7.7-dev.pom'
+----------------------------------------
| Executing multiproject:install-callback OpenJMS: HTTP tunnel
| Memory: 9M/12M
+----------------------------------------

jar:install:


build:end:

build:start:

multiproject:install-callback:
    [echo] Running war:install for OpenJMS: HTTP tunnel
war:init:

war:war-resources:
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\openjms-tunnel
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\openjms-tunnel\WEB-INF
    [copy] Copying 1 file to D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\openjms-tunnel
    [copy] Copying 1 file to D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\openjms-tunnel\WEB-INF

java:prepare-filesystem:
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\classes

java:compile:
    [echo] Compiling to D:\OtherJava\opensource_dev\openjms\modules\tunnel/target/classes
    [javac] Compiling 3 source files to D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\classes

java:jar-resources:

test:prepare-filesystem:
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\test-classes
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\test-reports

test:test-resources:

test:compile:
    [echo] No test source files to compile.

test:test:
    [echo] No tests to run.

war:webapp:
    [echo] Assembling webapp openjms-tunnel
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\openjms-tunnel\WEB-INF\lib
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\openjms-tunnel\WEB-INF\tld
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\openjms-tunnel\WEB-INF\classes
    [copy] Copying 1 file to D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\openjms-tunnel\WEB-INF\lib
    [copy] Copying 3 files to D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\openjms-tunnel\WEB-INF\classes

war:war:
    [echo] Building WAR openjms-tunnel
    [jar] Building jar: D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\openjms-tunnel.war
Copying: from 'D:\OtherJava\opensource_dev\openjms\modules\tunnel\target\openjms-tunnel.war' to: 'C:\Documents and Settings\saf\.maven\repository\openjms\wars\openjms-tunnel-0.7.7-dev.war'
Copying: from 'D:\OtherJava\opensource_dev\openjms\modules\tunnel\project.xml' to: 'C:\Documents and Settings\saf\.maven\repository\openjms\poms\openjms-tunnel-0.7.7-dev.pom'
+----------------------------------------
| Executing multiproject:install-callback OpenJMS: Network
| Memory: 9M/15M
+----------------------------------------

war:install:


build:end:

build:start:

multiproject:install-callback:
    [echo] Running jar:install for OpenJMS: Network
java:prepare-filesystem:
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\net\target\classes

java:compile:
    [echo] Compiling to D:\OtherJava\opensource_dev\openjms\modules\net/target/classes
    [javac] Compiling 120 source files to D:\OtherJava\opensource_dev\openjms\modules\net\target\classes
proxies:
    [proxygen] Generating 1 proxy to D:\OtherJava\opensource_dev\openjms\modules\net\target\classes
    [proxygen] Compiling 1 source file to D:\OtherJava\opensource_dev\openjms\modules\net\target\classes
    [rmic] RMI Compiling 2 classes to D:\OtherJava\opensource_dev\openjms\modules\net\target\classes


java:jar-resources:

test:prepare-filesystem:
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\net\target\test-classes
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\net\target\test-reports

test:test-resources:

test:compile:

test:test:

jar:jar:
    [jar] Building jar: D:\OtherJava\opensource_dev\openjms\modules\net\target\openjms-net-0.7.7-dev.jar
Copying: from 'D:\OtherJava\opensource_dev\openjms\modules\net\target\openjms-net-0.7.7-dev.jar' to: 'C:\Documents and Settings\saf\.maven\repository\openjms\jars\openjms-net-0.7.7-dev.jar'
Copying: from 'D:\OtherJava\opensource_dev\openjms\modules\net\project.xml' to: 'C:\Documents and Settings\saf\.maven\repository\openjms\poms\openjms-net-0.7.7-dev.pom'
+----------------------------------------
| Executing multiproject:install-callback OpenJMS: JMS
| Memory: 7M/21M
+----------------------------------------

jar:install:


build:end:

build:start:

multiproject:install-callback:
    [echo] Running jar:install for OpenJMS: JMS
java:prepare-filesystem:
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\jms\target\classes

java:compile:
generate-castor-srcs:
castor:prepare-filesystem:
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\jms\target\castor\src
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\jms\target\castor\tstamp

    [echo] Generating sources for D:\OtherJava\opensource_dev\openjms\modules\jms/src/main/schemas/connector.xsd
    [java] -- Suppressing non fatal warnings.
    [touch] Creating D:\OtherJava\opensource_dev\openjms\modules\jms\target\castor\tstamp\connector.xsd
\    [echo] Generating sources for D:\OtherJava\opensource_dev\openjms\modules\jms/src/main/schemas/openjms.xsd
    [java] -- Suppressing non fatal warnings.
    [touch] Creating D:\OtherJava\opensource_dev\openjms\modules\jms\target\castor\tstamp\openjms.xsd

antlr:prepare-filesystem:
    [mkdir] Created dir: D:\OtherJava\opensource_dev\openjms\modules\jms\target\antlr

antlr:generate:

    [echo] Compiling to D:\OtherJava\opensource_dev\openjms\modules\jms/target/classes
    [javac] Compiling 342 source files to D:\OtherJava\opensource_dev\openjms\modules\jms\target\classes
Total time: 19 seconds
Finished at: Tue May 03 08:41:43 CEST 2005
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.