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 47335 Details for
Bug 152701
wsdl validation done on local file even when turned off
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]
Patch fix.
152701.org.eclipse.jst.ws.consumption.ui.patch.txt (text/plain), 2.24 KB, created by
Chris Brealey
on 2006-08-03 11:47:30 EDT
(
hide
)
Description:
Patch fix.
Filename:
MIME Type:
Creator:
Chris Brealey
Created:
2006-08-03 11:47:30 EDT
Size:
2.24 KB
patch
obsolete
>### Eclipse Workspace Patch 1.0 >#P org.eclipse.jst.ws.consumption.ui >Index: src/org/eclipse/jst/ws/internal/consumption/ui/widgets/object/WSDLSelectionWidget.java >=================================================================== >RCS file: /cvsroot/webtools/jst/components/ws/plugins/org.eclipse.jst.ws.consumption.ui/src/org/eclipse/jst/ws/internal/consumption/ui/widgets/object/WSDLSelectionWidget.java,v >retrieving revision 1.29 >diff -u -r1.29 WSDLSelectionWidget.java >--- src/org/eclipse/jst/ws/internal/consumption/ui/widgets/object/WSDLSelectionWidget.java 20 Jul 2006 03:01:19 -0000 1.29 >+++ src/org/eclipse/jst/ws/internal/consumption/ui/widgets/object/WSDLSelectionWidget.java 3 Aug 2006 15:50:02 -0000 >@@ -17,6 +17,7 @@ > * 20060607 144932 kathy@ca.ibm.com - Kathy Chan > * 20060612 145081 pmoogk@ca.ibm.com - Peter Moogk > * 20060719 139977 kathy@ca.ibm.com - Kathy Chan >+ * 20060803 152701 cbrealey@ca.ibm.com - Chris Brealey > *******************************************************************************/ > package org.eclipse.jst.ws.internal.consumption.ui.widgets.object; > >@@ -192,7 +193,7 @@ > > validationSummaryText_ = new Text( parent, SWT.WRAP); > validationSummaryText_.setEditable(false); >- GridData gd1 = new GridData(GridData.FILL_BOTH); >+ GridData gd1 = new GridData(SWT.FILL, SWT.FILL, false, false); > validationSummaryText_.setLayoutData(gd1); > validationSummaryText_.setToolTipText( ConsumptionUIMessages.TOOLTIP_VALIDATE_TEXT_MESSAGE_SUMMARY ); > >@@ -385,16 +386,20 @@ > boolean isRemote = true; > if (tree.isEnabled()) { // is wsil > wsdlURI1 = tree.getWsdlURI(); >- if (wsdlURI1.startsWith("file:")) { >+ if (wsdlURI1.startsWith("file:") || wsdlURI1.startsWith("platform:")) >+ { > isRemote = false; > } >- } else { // is wsil >- >- if( wsPath.indexOf(':') < 0 ) >- { // not remote >+ } else { >+ if (wsPath.indexOf(':') < 0) >+ { > isRemote = false; > wsdlURI1 = iFile2URI((IFile)ResourceUtils.findResource(wsPath)); > } >+ else if (wsPath.startsWith("file:") || wsPath.startsWith("platform:")) >+ { >+ isRemote = false; >+ } > } > > setMessageSummary();
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 152701
:
47316
| 47335