[ 
https://issues.apache.org/jira/browse/AXIS2-3850?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12606430#action_12606430
 ] 

Eranga Jayasundera commented on AXIS2-3850:
-------------------------------------------

The latest build does not throw NullPointerExceptions for the given IDL. 
Instead, it throws 

"org.apache.axis2.corba.exceptions.SchemaGeneratorException: No interfaces 
defined"

since no interface is defined in the IDL.

I have tested the following IDL in latest build of Axis2. It worked correctly.

module A {
    struct S {  string value;  };
};

module B {
    struct S {  A::S  value;  };
};

module corba2ws {
    interface MyCorbaService 
    { 
        A::S test(in B::S t); 
    };
};


> Corba module should support scoped names in IDL
> -----------------------------------------------
>
>                 Key: AXIS2-3850
>                 URL: https://issues.apache.org/jira/browse/AXIS2-3850
>             Project: Axis 2.0 (Axis2)
>          Issue Type: Improvement
>          Components: modules
>            Reporter: Jürgen Weber
>
> The Corba module should support scoped names i.e. references to definitions 
> in other modules. 
> Right now definitions like the one below result in NullPointerExceptions.
> module A {
>      struct S {  string value;  }; 
>  };
> module B {
>      struct S {  A::S  value;  }; 
>  };

-- 
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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to