You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tuscany.apache.org by "Manu T George (JIRA)" <tu...@ws.apache.org> on 2007/08/20 18:05:30 UTC

[jira] Created: (TUSCANY-1555) ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)

ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)
----------------------------------------------------------------------------------------------------------------------------------------------

                 Key: TUSCANY-1555
                 URL: https://issues.apache.org/jira/browse/TUSCANY-1555
             Project: Tuscany
          Issue Type: Bug
          Components: Java SCA Axis Binding Extension
    Affects Versions: Java-SCA-Next
         Environment: All 
            Reporter: Manu T George
             Fix For: Java-SCA-Next


ClassCastException Occurring on using the 
<interface.wsdl interface="http://helloworld#wsdl.interface(HelloWorld)" /> in the Axis2Binding

Stack trace

Caused by: java.lang.ClassCastException: org.apache.tuscany.sca.interfacedef.wsd
l.impl.WSDLInterfaceImpl
       at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaA
xisService(Axis2ServiceProvider.java:205)
       at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createAxisS
ervice(Axis2ServiceProvider.java:190)
       at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.start(Axis2
ServiceProvider.java:106)
       at org.apache.tuscany.sca.binding.axis2.Axis2ServiceBindingProvider.star
t(Axis2ServiceBindingProvider.java:62)
       at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
ositeActivatorImpl.java:535)
       at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
ositeActivatorImpl.java:512)
       at org.apache.geronimo.tuscany.EmbeddedRuntimeGBean.doStart(EmbeddedRunt
imeGBean.java:97)
       ... 21 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


[jira] Closed: (TUSCANY-1555) ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-1555?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ant elder closed TUSCANY-1555.
------------------------------

    Resolution: Fixed

Closing as this was a problem with using EmbeddedSCADomain but that class has now been supersedded by the new SCADomain/SCANode support. Moving the geronimo-tuscany integration code over to that new way should fix the problem. You can see an example of using this at: https://svn.apache.org/repos/asf/incubator/tuscany/java/sca/distribution/webapp/src/main/java/org/apache/tuscany/sca/webapp/WarContextListener.java


> ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-1555
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1555
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Core Runtime
>    Affects Versions: Java-SCA-Next
>         Environment: All 
>            Reporter: Manu T George
>            Assignee: ant elder
>             Fix For: Java-SCA-1.0
>
>
> ClassCastException Occurring on using the 
> <interface.wsdl interface="http://helloworld#wsdl.interface(HelloWorld)" /> in the Axis2Binding
> Stack trace
> Caused by: java.lang.ClassCastException: org.apache.tuscany.sca.interfacedef.wsd
> l.impl.WSDLInterfaceImpl
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaA
> xisService(Axis2ServiceProvider.java:205)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createAxisS
> ervice(Axis2ServiceProvider.java:190)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.start(Axis2
> ServiceProvider.java:106)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceBindingProvider.star
> t(Axis2ServiceBindingProvider.java:62)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:535)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:512)
>        at org.apache.geronimo.tuscany.EmbeddedRuntimeGBean.doStart(EmbeddedRunt
> imeGBean.java:97)
>        ... 21 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


[jira] Commented: (TUSCANY-1555) ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)

Posted by "gengshaoguang (JIRA)" <tu...@ws.apache.org>.
    [ https://issues.apache.org/jira/browse/TUSCANY-1555?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12522915 ] 

gengshaoguang commented on TUSCANY-1555:
----------------------------------------

Hi, 
There is a :
org.apache.tuscany.sca.interfacedef.wsdl.xml.WSDLInterfaceProcessor;qname=http://www.osoa.org/xmlns/sca/1.0#interface.wsdl,model=org.apache.tuscany.sca.interfacedef.wsdl.WSDLInterfaceContract
in META-INF/services/org.apache.tuscany.sca.contribution.processor.StAXArtifactProcessor
check if you have this, add it if not.

There are seval StAXArtifactProcessor meta in Tuscany's classpath, the above one is responsible for <interface.wsdl.../>

> ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-1555
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1555
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Core Runtime
>    Affects Versions: Java-SCA-Next
>         Environment: All 
>            Reporter: Manu T George
>             Fix For: Java-SCA-1.0
>
>
> ClassCastException Occurring on using the 
> <interface.wsdl interface="http://helloworld#wsdl.interface(HelloWorld)" /> in the Axis2Binding
> Stack trace
> Caused by: java.lang.ClassCastException: org.apache.tuscany.sca.interfacedef.wsd
> l.impl.WSDLInterfaceImpl
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaA
> xisService(Axis2ServiceProvider.java:205)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createAxisS
> ervice(Axis2ServiceProvider.java:190)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.start(Axis2
> ServiceProvider.java:106)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceBindingProvider.star
> t(Axis2ServiceBindingProvider.java:62)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:535)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:512)
>        at org.apache.geronimo.tuscany.EmbeddedRuntimeGBean.doStart(EmbeddedRunt
> imeGBean.java:97)
>        ... 21 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


[jira] Assigned: (TUSCANY-1555) ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-1555?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ant elder reassigned TUSCANY-1555:
----------------------------------

    Assignee:     (was: ant elder)

> ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-1555
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1555
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Axis Binding Extension
>    Affects Versions: Java-SCA-Next
>         Environment: All 
>            Reporter: Manu T George
>             Fix For: Java-SCA-0.99
>
>
> ClassCastException Occurring on using the 
> <interface.wsdl interface="http://helloworld#wsdl.interface(HelloWorld)" /> in the Axis2Binding
> Stack trace
> Caused by: java.lang.ClassCastException: org.apache.tuscany.sca.interfacedef.wsd
> l.impl.WSDLInterfaceImpl
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaA
> xisService(Axis2ServiceProvider.java:205)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createAxisS
> ervice(Axis2ServiceProvider.java:190)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.start(Axis2
> ServiceProvider.java:106)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceBindingProvider.star
> t(Axis2ServiceBindingProvider.java:62)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:535)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:512)
>        at org.apache.geronimo.tuscany.EmbeddedRuntimeGBean.doStart(EmbeddedRunt
> imeGBean.java:97)
>        ... 21 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


[jira] Resolved: (TUSCANY-1555) ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)

Posted by "Jean-Sebastien Delfino (JIRA)" <tu...@ws.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-1555?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Jean-Sebastien Delfino resolved TUSCANY-1555.
---------------------------------------------

    Resolution: Cannot Reproduce

We cannot reproduce this error. Could you please reopen with the precise steps to reproduce it? Thanks!

> ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-1555
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1555
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Axis Binding Extension
>    Affects Versions: Java-SCA-Next
>         Environment: All 
>            Reporter: Manu T George
>             Fix For: Java-SCA-Next
>
>
> ClassCastException Occurring on using the 
> <interface.wsdl interface="http://helloworld#wsdl.interface(HelloWorld)" /> in the Axis2Binding
> Stack trace
> Caused by: java.lang.ClassCastException: org.apache.tuscany.sca.interfacedef.wsd
> l.impl.WSDLInterfaceImpl
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaA
> xisService(Axis2ServiceProvider.java:205)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createAxisS
> ervice(Axis2ServiceProvider.java:190)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.start(Axis2
> ServiceProvider.java:106)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceBindingProvider.star
> t(Axis2ServiceBindingProvider.java:62)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:535)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:512)
>        at org.apache.geronimo.tuscany.EmbeddedRuntimeGBean.doStart(EmbeddedRunt
> imeGBean.java:97)
>        ... 21 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


[jira] Commented: (TUSCANY-1555) ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)

Posted by "gengshaoguang (JIRA)" <tu...@ws.apache.org>.
    [ https://issues.apache.org/jira/browse/TUSCANY-1555?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12522720 ] 

gengshaoguang commented on TUSCANY-1555:
----------------------------------------

You missed a meta file (META-INF/service/*) which contains "interface.wsdl" search it over Tuscany source, you will find it.

I'm not working on my own desktop. Sorry, I couldn't tell you the exact pattern.

Good luck.

> ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-1555
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1555
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Axis Binding Extension
>    Affects Versions: Java-SCA-Next
>         Environment: All 
>            Reporter: Manu T George
>             Fix For: Java-SCA-Next
>
>
> ClassCastException Occurring on using the 
> <interface.wsdl interface="http://helloworld#wsdl.interface(HelloWorld)" /> in the Axis2Binding
> Stack trace
> Caused by: java.lang.ClassCastException: org.apache.tuscany.sca.interfacedef.wsd
> l.impl.WSDLInterfaceImpl
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaA
> xisService(Axis2ServiceProvider.java:205)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createAxisS
> ervice(Axis2ServiceProvider.java:190)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.start(Axis2
> ServiceProvider.java:106)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceBindingProvider.star
> t(Axis2ServiceBindingProvider.java:62)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:535)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:512)
>        at org.apache.geronimo.tuscany.EmbeddedRuntimeGBean.doStart(EmbeddedRunt
> imeGBean.java:97)
>        ... 21 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


[jira] Updated: (TUSCANY-1555) ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-1555?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ant elder updated TUSCANY-1555:
-------------------------------

    Fix Version/s:     (was: Java-SCA-0.99)
                   Java-SCA-Next

Didn't make 0.99 so moving  to SCA-next

> ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-1555
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1555
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Axis Binding Extension
>    Affects Versions: Java-SCA-Next
>         Environment: All 
>            Reporter: Manu T George
>             Fix For: Java-SCA-Next
>
>
> ClassCastException Occurring on using the 
> <interface.wsdl interface="http://helloworld#wsdl.interface(HelloWorld)" /> in the Axis2Binding
> Stack trace
> Caused by: java.lang.ClassCastException: org.apache.tuscany.sca.interfacedef.wsd
> l.impl.WSDLInterfaceImpl
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaA
> xisService(Axis2ServiceProvider.java:205)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createAxisS
> ervice(Axis2ServiceProvider.java:190)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.start(Axis2
> ServiceProvider.java:106)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceBindingProvider.star
> t(Axis2ServiceBindingProvider.java:62)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:535)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:512)
>        at org.apache.geronimo.tuscany.EmbeddedRuntimeGBean.doStart(EmbeddedRunt
> imeGBean.java:97)
>        ... 21 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


[jira] Assigned: (TUSCANY-1555) ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-1555?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ant elder reassigned TUSCANY-1555:
----------------------------------

    Assignee: ant elder

> ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-1555
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1555
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Axis Binding Extension
>    Affects Versions: Java-SCA-Next
>         Environment: All 
>            Reporter: Manu T George
>            Assignee: ant elder
>             Fix For: Java-SCA-0.99
>
>
> ClassCastException Occurring on using the 
> <interface.wsdl interface="http://helloworld#wsdl.interface(HelloWorld)" /> in the Axis2Binding
> Stack trace
> Caused by: java.lang.ClassCastException: org.apache.tuscany.sca.interfacedef.wsd
> l.impl.WSDLInterfaceImpl
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaA
> xisService(Axis2ServiceProvider.java:205)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createAxisS
> ervice(Axis2ServiceProvider.java:190)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.start(Axis2
> ServiceProvider.java:106)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceBindingProvider.star
> t(Axis2ServiceBindingProvider.java:62)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:535)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:512)
>        at org.apache.geronimo.tuscany.EmbeddedRuntimeGBean.doStart(EmbeddedRunt
> imeGBean.java:97)
>        ... 21 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


[jira] Updated: (TUSCANY-1555) ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-1555?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ant elder updated TUSCANY-1555:
-------------------------------

      Component/s:     (was: Java SCA Axis Binding Extension)
                   Java SCA Core Runtime
    Fix Version/s:     (was: Java-SCA-Next)
                   Java-SCA-1.0

> ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-1555
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1555
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Core Runtime
>    Affects Versions: Java-SCA-Next
>         Environment: All 
>            Reporter: Manu T George
>             Fix For: Java-SCA-1.0
>
>
> ClassCastException Occurring on using the 
> <interface.wsdl interface="http://helloworld#wsdl.interface(HelloWorld)" /> in the Axis2Binding
> Stack trace
> Caused by: java.lang.ClassCastException: org.apache.tuscany.sca.interfacedef.wsd
> l.impl.WSDLInterfaceImpl
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaA
> xisService(Axis2ServiceProvider.java:205)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createAxisS
> ervice(Axis2ServiceProvider.java:190)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.start(Axis2
> ServiceProvider.java:106)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceBindingProvider.star
> t(Axis2ServiceBindingProvider.java:62)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:535)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:512)
>        at org.apache.geronimo.tuscany.EmbeddedRuntimeGBean.doStart(EmbeddedRunt
> imeGBean.java:97)
>        ... 21 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


[jira] Updated: (TUSCANY-1555) ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-1555?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ant elder updated TUSCANY-1555:
-------------------------------

    Fix Version/s:     (was: Java-SCA-Next)
                   Java-SCA-0.99

> ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-1555
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1555
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Axis Binding Extension
>    Affects Versions: Java-SCA-Next
>         Environment: All 
>            Reporter: Manu T George
>             Fix For: Java-SCA-0.99
>
>
> ClassCastException Occurring on using the 
> <interface.wsdl interface="http://helloworld#wsdl.interface(HelloWorld)" /> in the Axis2Binding
> Stack trace
> Caused by: java.lang.ClassCastException: org.apache.tuscany.sca.interfacedef.wsd
> l.impl.WSDLInterfaceImpl
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaA
> xisService(Axis2ServiceProvider.java:205)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createAxisS
> ervice(Axis2ServiceProvider.java:190)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.start(Axis2
> ServiceProvider.java:106)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceBindingProvider.star
> t(Axis2ServiceBindingProvider.java:62)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:535)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:512)
>        at org.apache.geronimo.tuscany.EmbeddedRuntimeGBean.doStart(EmbeddedRunt
> imeGBean.java:97)
>        ... 21 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


[jira] Assigned: (TUSCANY-1555) ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-1555?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ant elder reassigned TUSCANY-1555:
----------------------------------

    Assignee: ant elder

> ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-1555
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1555
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Core Runtime
>    Affects Versions: Java-SCA-Next
>         Environment: All 
>            Reporter: Manu T George
>            Assignee: ant elder
>             Fix For: Java-SCA-1.0
>
>
> ClassCastException Occurring on using the 
> <interface.wsdl interface="http://helloworld#wsdl.interface(HelloWorld)" /> in the Axis2Binding
> Stack trace
> Caused by: java.lang.ClassCastException: org.apache.tuscany.sca.interfacedef.wsd
> l.impl.WSDLInterfaceImpl
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaA
> xisService(Axis2ServiceProvider.java:205)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createAxisS
> ervice(Axis2ServiceProvider.java:190)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.start(Axis2
> ServiceProvider.java:106)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceBindingProvider.star
> t(Axis2ServiceBindingProvider.java:62)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:535)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:512)
>        at org.apache.geronimo.tuscany.EmbeddedRuntimeGBean.doStart(EmbeddedRunt
> imeGBean.java:97)
>        ... 21 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


[jira] Reopened: (TUSCANY-1555) ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
     [ https://issues.apache.org/jira/browse/TUSCANY-1555?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

ant elder reopened TUSCANY-1555:
--------------------------------


I've been able to reproduce this now by using the tuscany war distribution. The problem is  that the way to bootstrap an sca domain has been completely changed by the looks of things, so the initContributions method in HotUpdatableSCADomain doesn't work any more and looking at the Geronimo code it looks like it has the same problem. The result is the WSDL definition doesn't get resolved when using interface.wsdl which ends up resulting in the ClassCaseException.

I've not been able to figure it out yet, hopefully someone will be able to explain how you do things the new way.





> ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-1555
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1555
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Axis Binding Extension
>    Affects Versions: Java-SCA-Next
>         Environment: All 
>            Reporter: Manu T George
>             Fix For: Java-SCA-Next
>
>
> ClassCastException Occurring on using the 
> <interface.wsdl interface="http://helloworld#wsdl.interface(HelloWorld)" /> in the Axis2Binding
> Stack trace
> Caused by: java.lang.ClassCastException: org.apache.tuscany.sca.interfacedef.wsd
> l.impl.WSDLInterfaceImpl
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaA
> xisService(Axis2ServiceProvider.java:205)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createAxisS
> ervice(Axis2ServiceProvider.java:190)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.start(Axis2
> ServiceProvider.java:106)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceBindingProvider.star
> t(Axis2ServiceBindingProvider.java:62)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:535)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:512)
>        at org.apache.geronimo.tuscany.EmbeddedRuntimeGBean.doStart(EmbeddedRunt
> imeGBean.java:97)
>        ... 21 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org


[jira] Commented: (TUSCANY-1555) ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)

Posted by "ant elder (JIRA)" <tu...@ws.apache.org>.
    [ https://issues.apache.org/jira/browse/TUSCANY-1555?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12522265 ] 

ant elder commented on TUSCANY-1555:
------------------------------------

For scdl example see http://mail-archives.apache.org/mod_mbox/ws-tuscany-dev/200708.mbox/%3c466797bd0708180915r797467c8rbf9aa32935efb8d0@mail.gmail.com%3e

I still can't recreate the class cast exception

> ClassCastException occurring on org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaAxisService(Axis2ServiceProvider.java:205)
> ----------------------------------------------------------------------------------------------------------------------------------------------
>
>                 Key: TUSCANY-1555
>                 URL: https://issues.apache.org/jira/browse/TUSCANY-1555
>             Project: Tuscany
>          Issue Type: Bug
>          Components: Java SCA Axis Binding Extension
>    Affects Versions: Java-SCA-Next
>         Environment: All 
>            Reporter: Manu T George
>            Assignee: ant elder
>             Fix For: Java-SCA-0.99
>
>
> ClassCastException Occurring on using the 
> <interface.wsdl interface="http://helloworld#wsdl.interface(HelloWorld)" /> in the Axis2Binding
> Stack trace
> Caused by: java.lang.ClassCastException: org.apache.tuscany.sca.interfacedef.wsd
> l.impl.WSDLInterfaceImpl
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createJavaA
> xisService(Axis2ServiceProvider.java:205)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.createAxisS
> ervice(Axis2ServiceProvider.java:190)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceProvider.start(Axis2
> ServiceProvider.java:106)
>        at org.apache.tuscany.sca.binding.axis2.Axis2ServiceBindingProvider.star
> t(Axis2ServiceBindingProvider.java:62)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:535)
>        at org.apache.tuscany.sca.core.runtime.CompositeActivatorImpl.start(Comp
> ositeActivatorImpl.java:512)
>        at org.apache.geronimo.tuscany.EmbeddedRuntimeGBean.doStart(EmbeddedRunt
> imeGBean.java:97)
>        ... 21 more

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: tuscany-dev-unsubscribe@ws.apache.org
For additional commands, e-mail: tuscany-dev-help@ws.apache.org