[jira] Created: (MEVENIDE-648) Unable to open EJB-project due to NPE

View: New views
7 Messages — Rating Filter:   Alert me  

[jira] Created: (MEVENIDE-648) Unable to open EJB-project due to NPE

by JIRA jira@codehaus.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message

Unable to open EJB-project due to NPE
-------------------------------------

                 Key: MEVENIDE-648
                 URL: http://jira.codehaus.org/browse/MEVENIDE-648
             Project: mevenide
          Issue Type: Bug
          Components: mevenide-netbeans
    Affects Versions: NB_3.1
            Reporter: Kurt Huwig
            Assignee: Milos Kleint
            Priority: Critical


NetBeans issue 132328 shows the problem:

http://www.netbeans.org/issues/show_bug.cgi?id=132328

"It looks like the module provider is returning a FileObject[] that has embedded null values in it. That seems kind of wrong, but I can protect against that."

Unfortunately the protection has not been released as an update to NetBeans, therefore I cannot open my project any more.


--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



[jira] Commented: (MEVENIDE-648) Unable to open EJB-project due to NPE

by JIRA jira@codehaus.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


    [ http://jira.codehaus.org/browse/MEVENIDE-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=139952#action_139952 ]

Kurt Huwig commented on MEVENIDE-648:
-------------------------------------

This error happens when you add the a directory as a resource:

        <resources>
            <resource>
                <directory>${basedir}/src/main/java</directory>
            </resource>
            <resource>
                <directory>${basedir}/src/main/resources</directory>
            </resource>
        </resources>

as recommended for GWT projects (the GWT compiler needs source code). This happens with any directory.

> Unable to open EJB-project due to NPE
> -------------------------------------
>
>                 Key: MEVENIDE-648
>                 URL: http://jira.codehaus.org/browse/MEVENIDE-648
>             Project: mevenide
>          Issue Type: Bug
>          Components: mevenide-netbeans
>    Affects Versions: NB_3.1
>            Reporter: Kurt Huwig
>            Assignee: Milos Kleint
>            Priority: Critical
>
> NetBeans issue 132328 shows the problem:
> http://www.netbeans.org/issues/show_bug.cgi?id=132328
> "It looks like the module provider is returning a FileObject[] that has embedded null values in it. That seems kind of wrong, but I can protect against that."
> Unfortunately the protection has not been released as an update to NetBeans, therefore I cannot open my project any more.

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



[jira] Updated: (MEVENIDE-648) Unable to open EJB-project due to NPE

by JIRA jira@codehaus.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


     [ http://jira.codehaus.org/browse/MEVENIDE-648?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Milos Kleint updated MEVENIDE-648:
----------------------------------

    Fix Version/s: NB_FUTURE
      Component/s:     (was: mevenide-netbeans)
                   mevenide2-netbeans

not really sure how maven support can influence an issue primarily in the j2ee/glassfish integration. The fix shall be part of 6.5 as I understand it. You can try the 6.5 dev build or an upcoming (few weeks time) 6.5 beta

> Unable to open EJB-project due to NPE
> -------------------------------------
>
>                 Key: MEVENIDE-648
>                 URL: http://jira.codehaus.org/browse/MEVENIDE-648
>             Project: mevenide
>          Issue Type: Bug
>          Components: mevenide2-netbeans
>    Affects Versions: NB_3.1
>            Reporter: Kurt Huwig
>            Assignee: Milos Kleint
>            Priority: Critical
>             Fix For: NB_FUTURE
>
>
> NetBeans issue 132328 shows the problem:
> http://www.netbeans.org/issues/show_bug.cgi?id=132328
> "It looks like the module provider is returning a FileObject[] that has embedded null values in it. That seems kind of wrong, but I can protect against that."
> Unfortunately the protection has not been released as an update to NetBeans, therefore I cannot open my project any more.

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



[jira] Commented: (MEVENIDE-648) Unable to open EJB-project due to NPE

by JIRA jira@codehaus.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


    [ http://jira.codehaus.org/browse/MEVENIDE-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=139959#action_139959 ]

Kurt Huwig commented on MEVENIDE-648:
-------------------------------------

Milos,

when I open a project containing a "<resources>" element, then mevenide returns a File[] containing null-pointers. The "fix" for NetBeans is to ignore null-pointers but I guess they should not be returned in the first place, so it's a mevenide-issue.

Right now my workaround is comment the resources-section, open the project and then remove the comment. Still a NPE, but the project is open.

> Unable to open EJB-project due to NPE
> -------------------------------------
>
>                 Key: MEVENIDE-648
>                 URL: http://jira.codehaus.org/browse/MEVENIDE-648
>             Project: mevenide
>          Issue Type: Bug
>          Components: mevenide2-netbeans
>    Affects Versions: NB_3.1
>            Reporter: Kurt Huwig
>            Assignee: Milos Kleint
>            Priority: Critical
>             Fix For: NB_FUTURE
>
>
> NetBeans issue 132328 shows the problem:
> http://www.netbeans.org/issues/show_bug.cgi?id=132328
> "It looks like the module provider is returning a FileObject[] that has embedded null values in it. That seems kind of wrong, but I can protect against that."
> Unfortunately the protection has not been released as an update to NetBeans, therefore I cannot open my project any more.

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



[jira] Commented: (MEVENIDE-648) Unable to open EJB-project due to NPE

by JIRA jira@codehaus.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


    [ http://jira.codehaus.org/browse/MEVENIDE-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=139960#action_139960 ]

Milos Kleint commented on MEVENIDE-648:
---------------------------------------

yes, I've read that claim of passing null somewhere, but never really figured what shall be returning null value on our side.

> Unable to open EJB-project due to NPE
> -------------------------------------
>
>                 Key: MEVENIDE-648
>                 URL: http://jira.codehaus.org/browse/MEVENIDE-648
>             Project: mevenide
>          Issue Type: Bug
>          Components: mevenide2-netbeans
>    Affects Versions: NB_3.1
>            Reporter: Kurt Huwig
>            Assignee: Milos Kleint
>            Priority: Critical
>             Fix For: NB_FUTURE
>
>
> NetBeans issue 132328 shows the problem:
> http://www.netbeans.org/issues/show_bug.cgi?id=132328
> "It looks like the module provider is returning a FileObject[] that has embedded null values in it. That seems kind of wrong, but I can protect against that."
> Unfortunately the protection has not been released as an update to NetBeans, therefore I cannot open my project any more.

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



[jira] Commented: (MEVENIDE-648) Unable to open EJB-project due to NPE

by JIRA jira@codehaus.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


    [ http://jira.codehaus.org/browse/MEVENIDE-648?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=156496#action_156496 ]

Jaromir Uhrik commented on MEVENIDE-648:
----------------------------------------

This bug was transferred to the NetBeans Issuezilla bug tracking system as http://www.netbeans.org/issues/show_bug.cgi?id=154456

> Unable to open EJB-project due to NPE
> -------------------------------------
>
>                 Key: MEVENIDE-648
>                 URL: http://jira.codehaus.org/browse/MEVENIDE-648
>             Project: mevenide
>          Issue Type: Bug
>          Components: mevenide2-netbeans
>    Affects Versions: NB_3.1
>            Reporter: Kurt Huwig
>            Assignee: Milos Kleint
>            Priority: Critical
>             Fix For: NB_FUTURE
>
>
> NetBeans issue 132328 shows the problem:
> http://www.netbeans.org/issues/show_bug.cgi?id=132328
> "It looks like the module provider is returning a FileObject[] that has embedded null values in it. That seems kind of wrong, but I can protect against that."
> Unfortunately the protection has not been released as an update to NetBeans, therefore I cannot open my project any more.

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email



[jira] Closed: (MEVENIDE-648) Unable to open EJB-project due to NPE

by JIRA jira@codehaus.org :: Rate this Message:

Reply to Author | View Threaded | Show Only this Message


     [ http://jira.codehaus.org/browse/MEVENIDE-648?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Milos Kleint closed MEVENIDE-648.
---------------------------------

    Resolution: Duplicate

closing the issue as duplicate of the newly created one in netbeans.org issuezilla.
Please post your additional comments to the new issue.

> Unable to open EJB-project due to NPE
> -------------------------------------
>
>                 Key: MEVENIDE-648
>                 URL: http://jira.codehaus.org/browse/MEVENIDE-648
>             Project: mevenide
>          Issue Type: Bug
>          Components: mevenide2-netbeans
>    Affects Versions: NB_3.1
>            Reporter: Kurt Huwig
>            Assignee: Milos Kleint
>            Priority: Critical
>             Fix For: NB_FUTURE
>
>
> NetBeans issue 132328 shows the problem:
> http://www.netbeans.org/issues/show_bug.cgi?id=132328
> "It looks like the module provider is returning a FileObject[] that has embedded null values in it. That seems kind of wrong, but I can protect against that."
> Unfortunately the protection has not been released as an update to NetBeans, therefore I cannot open my project any more.

--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.codehaus.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

       

---------------------------------------------------------------------
To unsubscribe from this list, please visit:

    http://xircles.codehaus.org/manage_email