Download
Getting Started
Members
Projects
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
More
Community
Marketplace
Events
Planet Eclipse
Newsletter
Videos
Participate
Report a Bug
Forums
Mailing Lists
Wiki
IRC
How to Contribute
Working Groups
Automotive
Internet of Things
LocationTech
Long-Term Support
PolarSys
Science
OpenMDM
Toggle navigation
Bugzilla – Attachment 24988 Details for
Bug 100677
Axis deploy problem with Geronimo server
Home
|
New
|
Browse
|
Search
|
[?]
|
Reports
|
Requests
|
Help
|
Log In
[x]
|
Terms of Use
|
Copyright Agent
Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read
this important communication.
[patch]
axis creation ui patch
jst.ws.axis.creation.ui_patch.txt (text/plain), 2.99 KB, created by
Seng Phung Lu
on 2005-07-19 12:57:10 EDT
(
hide
)
Description:
axis creation ui patch
Filename:
MIME Type:
Creator:
Seng Phung Lu
Created:
2005-07-19 12:57:10 EDT
Size:
2.99 KB
patch
obsolete
>Index: src/org/eclipse/jst/ws/internal/axis/creation/ui/wsrt/AxisWebService.java >=================================================================== >RCS file: /home/webtools/jst/components/ws/plugins/org.eclipse.jst.ws.axis.creation.ui/src/org/eclipse/jst/ws/internal/axis/creation/ui/wsrt/AxisWebService.java,v >retrieving revision 1.9 >diff -u -r1.9 AxisWebService.java >--- src/org/eclipse/jst/ws/internal/axis/creation/ui/wsrt/AxisWebService.java 12 Jul 2005 23:21:16 -0000 1.9 >+++ src/org/eclipse/jst/ws/internal/axis/creation/ui/wsrt/AxisWebService.java 19 Jul 2005 16:53:46 -0000 >@@ -3,6 +3,7 @@ > import java.util.Vector; > > import org.eclipse.jst.ws.internal.axis.consumption.core.command.AxisDeployCommand; >+import org.eclipse.jst.ws.internal.axis.consumption.core.command.GeronimoAxisDeployCommand; > import org.eclipse.jst.ws.internal.axis.consumption.core.command.Java2WSDLCommand; > import org.eclipse.jst.ws.internal.axis.consumption.core.command.WSDL2JavaCommand; > import org.eclipse.jst.ws.internal.axis.consumption.ui.task.AddJarsToProjectBuildPathTask; >@@ -147,9 +148,14 @@ > } else {// For BOTTOM_UP and TOP_DOWN > commands.add(new AxisRunInputCommand(this, project, module)); > // commands.add(new StartProjectCommand(module)); >- commands.add(new AxisDeployCommand()); >- commands.add( new CopyDeploymentFileCommand( project, module ) ); >- commands.add(new RefreshProjectCommand()); >+ if (getWebServiceInfo().getServerFactoryId().equals("org.eclipse.jst.server.geronimo.10")) { >+ commands.add(new GeronimoAxisDeployCommand(project, module)); >+ } >+ else { >+ commands.add(new AxisDeployCommand()); >+ } >+ commands.add( new CopyDeploymentFileCommand( project, module ) ); >+ commands.add(new RefreshProjectCommand()); > if (ctx.getScenario().getValue() == WebServiceScenario.TOPDOWN) { > commands.add(new ComputeAxisSkeletonBeanCommand()); > commands.add(new OpenJavaEditorCommand()); >@@ -244,6 +250,9 @@ > > //AxisDeployCommand > registry.addMapping(AxisRunInputCommand.class, "JavaWSDLParam", AxisDeployCommand.class); >+ >+ // GeronimoAxisDeployCommand >+ registry.addMapping(AxisRunInputCommand.class, "JavaWSDLParam", GeronimoAxisDeployCommand.class); > //RefreshProjectCommand > registry.addMapping(AxisRunInputCommand.class, "ServerProject", RefreshProjectCommand.class, "Project", new StringToIProjectTransformer()); > >@@ -314,6 +323,9 @@ > // AxisDeployCommand > dataRegistry.addMapping(WSDL2JavaCommand.class, "JavaWSDLParam", AxisDeployCommand.class); > >+ // GeronimoAxisDeployCommand >+ dataRegistry.addMapping(WSDL2JavaCommand.class, "JavaWSDLParam", GeronimoAxisDeployCommand.class); >+ > // AxisOutputCommand > dataRegistry.addMapping(Skeleton2WSDLCommand.class, "WsdlURI", AxisOutputCommand.class); > dataRegistry.addMapping(WSDL2JavaCommand.class, "JavaWSDLParam", AxisOutputCommand.class);
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 100677
:
24987
|
24988
|
24989
|
24990
|
26662
|
26663
|
26664
|
26665