You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@geronimo.apache.org by "Tomasz Mazan (JIRA)" <ji...@apache.org> on 2007/09/18 13:15:43 UTC

[jira] Created: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
-----------------------------------------------------------------------------------------

                 Key: GERONIMODEVTOOLS-215
                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
             Project: Geronimo-Devtools
          Issue Type: Bug
          Components: eclipse-plugin
    Affects Versions: 2.0
            Reporter: Tomasz Mazan




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


[jira] Updated: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Tim McConnell (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim McConnell updated GERONIMODEVTOOLS-215:
-------------------------------------------

    Description: 
Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 

1. Deploy your first ejb.jar
2. Deploy your ear, which contains other ejb.jar files
3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??


       Assignee: Tim McConnell

> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0
>            Reporter: Tomasz Mazan
>            Assignee: Tim McConnell
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??

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


[jira] Issue Comment Edited: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Alexei Akimov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12537592 ] 

akimov edited comment on GERONIMODEVTOOLS-215 at 10/25/07 6:23 AM:
--------------------------------------------------------------------------

Hi,
the problem mentioned above is caused by fuzzy contract of modifyModules method in org.eclipse.wst.server.core.IServerWorkingCopy. The first two parameters of it are arrays of IModule and it is not clear if one of the arrays may be null. Anyway, when you remove project from the server, then an instance of org.eclipse.wst.server.ui.internal.view.servers.RemoveModuleAction is invoked:
...
IServerWorkingCopy wc = server.createWorkingCopy();
wc.modifyModules(null, new IModule[] { module }, null);
server = wc.save(true, null);
...
The call is delegated for several times and finally canModyfyModules method of org.apache.geronimo.st.core.GeronimoServerDelegate is invoked

public IStatus canModifyModules(IModule[] add, IModule[] remove) {
	for (int i = 0; i < add.length; i++) {
		IModule module = add[i];
		if (module.getProject() != null) {
			IStatus status = FacetUtil.verifyFacets(module.getProject(), getServer());
			if (status != null && !status.isOK())
				return status;
		}
	}
	return Status.OK_STATUS;
}

It is clear that the first line of implementation will resut in NullPointerException which later will cause CoreException and invalid status of the operation.

      was (Author: akimov):
    Hi,
the problem mentioned above is caused by fuzzy contract of modifyModules method in org.eclipse.wst.server.core.IServerWorkingCopy. The first two parameters of it are arrays of IModule and it is not clear if one of the arrays may be null. Anyway, when you remove project from the server, then an instance of org.eclipse.wst.server.ui.internal.view.servers.RemoveModuleAction is invoked:
...
IServerWorkingCopy wc = server.createWorkingCopy();
wc.modifyModules(null, new IModule[] { module }, null);
server = wc.save(true, null);
...
The call is delegated for several times and finally canModyfyModules method of org.apache.geronimo.st.core;GeronimoServerDelegate is invoked

public IStatus canModifyModules(IModule[] add, IModule[] remove) {
	for (int i = 0; i < add.length; i++) {
		IModule module = add[i];
		if (module.getProject() != null) {
			IStatus status = FacetUtil.verifyFacets(module.getProject(), getServer());
			if (status != null && !status.isOK())
				return status;
		}
	}
	return Status.OK_STATUS;
}

It is clear that the first line of implementation will resut in NullPointerException which later will cause CoreException and invalid status of the operation.
  
> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0.0
>            Reporter: Tomasz Mazan
>            Assignee: Tim McConnell
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??

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


[jira] Commented: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Tomasz Mazan (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12528367 ] 

Tomasz Mazan commented on GERONIMODEVTOOLS-215:
-----------------------------------------------

It concerns running: ear-application (that contains ejb-jars) and ejb.jar module (deployed independently)

> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0
>            Reporter: Tomasz Mazan
>


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


[jira] Commented: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Kan Ogawa (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12528695 ] 

Kan Ogawa commented on GERONIMODEVTOOLS-215:
--------------------------------------------

Tomasz,

In order to reproduce your posted problem, would you attach sample application that can be imported as project on eclipse platform?
I'll try it, too.

> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0
>            Reporter: Tomasz Mazan
>            Assignee: Tim McConnell
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??

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


[jira] Commented: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Tomasz Mazan (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12528679 ] 

Tomasz Mazan commented on GERONIMODEVTOOLS-215:
-----------------------------------------------

Tim, thanks for your reply. Steps are quite simplier:
1. Deploy ejb.jar xor app.ear
2. Try to click on module and remove - no effect
3. Click on server -> Add and remove projects -> and here "Remove" - working

> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0
>            Reporter: Tomasz Mazan
>            Assignee: Tim McConnell
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??

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


[jira] Commented: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Alexei Akimov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12537592 ] 

Alexei Akimov commented on GERONIMODEVTOOLS-215:
------------------------------------------------

Hi,
the problem mentioned above is caused by fuzzy contract of modifyModules method in org.eclipse.wst.server.core.IServerWorkingCopy. The first two parameters of it are arrays of IModule and it is not clear if one of the arrays may be null. Anyway, when you remove project from the server, then an instance of org.eclipse.wst.server.ui.internal.view.servers.RemoveModuleAction is invoked:
...
IServerWorkingCopy wc = server.createWorkingCopy();
wc.modifyModules(null, new IModule[] { module }, null);
server = wc.save(true, null);
...
The call is delegated for several times and finally canModyfyModules method of org.apache.geronimo.st.core;GeronimoServerDelegate is invoked

public IStatus canModifyModules(IModule[] add, IModule[] remove) {
	for (int i = 0; i < add.length; i++) {
		IModule module = add[i];
		if (module.getProject() != null) {
			IStatus status = FacetUtil.verifyFacets(module.getProject(), getServer());
			if (status != null && !status.isOK())
				return status;
		}
	}
	return Status.OK_STATUS;
}

It is clear that the first line of implementation will resut in NullPointerException which later will cause CoreException and invalid status of the operation.

> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0.0
>            Reporter: Tomasz Mazan
>            Assignee: Tim McConnell
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??

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


[jira] Reopened: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Shiva Kumar H R (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shiva Kumar H R reopened GERONIMODEVTOOLS-215:
----------------------------------------------


Oh no! this is a different issue. Undeploy by "Server -> Add and Remove Projects -> Remove" works, but doesn't work when invoked through "Servers view -> right click on module and click Remove". 

> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0.0
>            Reporter: Tomasz Mazan
>            Assignee: Shiva Kumar H R
>             Fix For: 2.1.0
>
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??

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


[jira] Updated: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Tim McConnell (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim McConnell updated GERONIMODEVTOOLS-215:
-------------------------------------------

    Fix Version/s: 2.0.2

Hi Alexei, Thanks very much for this information....

> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0.0
>            Reporter: Tomasz Mazan
>            Assignee: Tim McConnell
>             Fix For: 2.0.2
>
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??

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


[jira] Resolved: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Shiva Kumar H R (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shiva Kumar H R resolved GERONIMODEVTOOLS-215.
----------------------------------------------

    Resolution: Fixed

Completed: At revision: 650839  

> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0.0
>            Reporter: Tomasz Mazan
>            Assignee: Shiva Kumar H R
>             Fix For: 2.1.0
>
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??

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


[jira] Commented: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Kan Ogawa (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12528363 ] 

Kan Ogawa commented on GERONIMODEVTOOLS-215:
--------------------------------------------

Tomasz,

What kind of J2EE application did you try to remove on the Server view?
Also, what kind of state is this application in? (running? or stopped?)

Would you explain more detail information?

> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0
>            Reporter: Tomasz Mazan
>


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


[jira] Updated: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Tim McConnell (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Tim McConnell updated GERONIMODEVTOOLS-215:
-------------------------------------------

    Fix Version/s:     (was: 2.0.2)
                   2.1.0

> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0.0
>            Reporter: Tomasz Mazan
>            Assignee: Tim McConnell
>             Fix For: 2.1.0
>
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??

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


[jira] Issue Comment Edited: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Alexei Akimov (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12537592 ] 

akimov edited comment on GERONIMODEVTOOLS-215 at 10/25/07 6:24 AM:
--------------------------------------------------------------------------

Hi,
the problem mentioned above is caused by fuzzy contract of modifyModules method in org.eclipse.wst.server.core.IServerWorkingCopy. The first two parameters of it are arrays of IModule and it is not clear if one of the arrays may be null. Anyway, when you remove project from the server, then an instance of org.eclipse.wst.server.ui.internal.view.servers.RemoveModuleAction is invoked:
...
IServerWorkingCopy wc = server.createWorkingCopy();
wc.modifyModules(null, new IModule[] { module }, null);
server = wc.save(true, null);
...
The call is delegated for several times and finally canModyfyModules method of org.apache.geronimo.st.core.GeronimoServerDelegate is invoked

public IStatus canModifyModules(IModule[] add, IModule[] remove) {
	for (int i = 0; i < add.length; i++) {
		IModule module = add[i];
		if (module.getProject() != null) {
			IStatus status = FacetUtil.verifyFacets(module.getProject(), getServer());
			if (status != null && !status.isOK())
				return status;
		}
	}
	return Status.OK_STATUS;
}

It is clear that the first line of implementation will result in NullPointerException which later will cause CoreException and invalid status of the operation.

      was (Author: akimov):
    Hi,
the problem mentioned above is caused by fuzzy contract of modifyModules method in org.eclipse.wst.server.core.IServerWorkingCopy. The first two parameters of it are arrays of IModule and it is not clear if one of the arrays may be null. Anyway, when you remove project from the server, then an instance of org.eclipse.wst.server.ui.internal.view.servers.RemoveModuleAction is invoked:
...
IServerWorkingCopy wc = server.createWorkingCopy();
wc.modifyModules(null, new IModule[] { module }, null);
server = wc.save(true, null);
...
The call is delegated for several times and finally canModyfyModules method of org.apache.geronimo.st.core.GeronimoServerDelegate is invoked

public IStatus canModifyModules(IModule[] add, IModule[] remove) {
	for (int i = 0; i < add.length; i++) {
		IModule module = add[i];
		if (module.getProject() != null) {
			IStatus status = FacetUtil.verifyFacets(module.getProject(), getServer());
			if (status != null && !status.isOK())
				return status;
		}
	}
	return Status.OK_STATUS;
}

It is clear that the first line of implementation will resut in NullPointerException which later will cause CoreException and invalid status of the operation.
  
> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0.0
>            Reporter: Tomasz Mazan
>            Assignee: Tim McConnell
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??

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


[jira] Commented: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Tomasz Mazan (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12528698 ] 

Tomasz Mazan commented on GERONIMODEVTOOLS-215:
-----------------------------------------------

I would have to create the new one. I can't publish our bisness application ;-) I hope you understand

> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0
>            Reporter: Tomasz Mazan
>            Assignee: Tim McConnell
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??

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


[jira] Assigned: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Shiva Kumar H R (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shiva Kumar H R reassigned GERONIMODEVTOOLS-215:
------------------------------------------------

    Assignee: Shiva Kumar H R  (was: Tim McConnell)

> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0.0
>            Reporter: Tomasz Mazan
>            Assignee: Shiva Kumar H R
>             Fix For: 2.1.0
>
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??

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


[jira] Resolved: (GERONIMODEVTOOLS-215) Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)

Posted by "Shiva Kumar H R (JIRA)" <ji...@apache.org>.
     [ https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Shiva Kumar H R resolved GERONIMODEVTOOLS-215.
----------------------------------------------

    Resolution: Fixed

Same as GERONIMODEVTOOLS-322 and is now fixed in trunk.

> Does not work right-clik's option "Remove" to remove project from Server ("Servers" View)
> -----------------------------------------------------------------------------------------
>
>                 Key: GERONIMODEVTOOLS-215
>                 URL: https://issues.apache.org/jira/browse/GERONIMODEVTOOLS-215
>             Project: Geronimo-Devtools
>          Issue Type: Bug
>          Components: eclipse-plugin
>    Affects Versions: 2.0.0
>            Reporter: Tomasz Mazan
>            Assignee: Shiva Kumar H R
>             Fix For: 2.1.0
>
>
> Hi Tomasz, Sorry to be so dense but I'm missing something obvious.  Are you able/willing to provide the artifacts that is causing the failure for you ?? If not, are these the correct steps that is causing the failure (so I can try to reproduce) ?? 
> 1. Deploy your first ejb.jar
> 2. Deploy your ear, which contains other ejb.jar files
> 3. Then I assume you're attempting to undeploy the ear that was deployed in Step 2 ??

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