Some Eclipse Foundation services are deprecated, or will be soon. Please ensure you've read this important communication.
View | Details | Raw Unified | Return to bug 152701 | Differences between
and this patch

Collapse All | Expand All

(-)src/org/eclipse/jst/ws/internal/consumption/ui/widgets/object/WSDLSelectionWidget.java (-6 / +11 lines)
Lines 17-22 Link Here
17
 * 20060607   144932 kathy@ca.ibm.com - Kathy Chan
17
 * 20060607   144932 kathy@ca.ibm.com - Kathy Chan
18
 * 20060612   145081 pmoogk@ca.ibm.com - Peter Moogk
18
 * 20060612   145081 pmoogk@ca.ibm.com - Peter Moogk
19
 * 20060719   139977 kathy@ca.ibm.com - Kathy Chan
19
 * 20060719   139977 kathy@ca.ibm.com - Kathy Chan
20
 * 20060803   152701 cbrealey@ca.ibm.com - Chris Brealey
20
 *******************************************************************************/
21
 *******************************************************************************/
21
package org.eclipse.jst.ws.internal.consumption.ui.widgets.object;
22
package org.eclipse.jst.ws.internal.consumption.ui.widgets.object;
22
23
Lines 192-198 Link Here
192
    
193
    
193
    validationSummaryText_ = new Text( parent, SWT.WRAP);
194
    validationSummaryText_ = new Text( parent, SWT.WRAP);
194
    validationSummaryText_.setEditable(false);
195
    validationSummaryText_.setEditable(false);
195
    GridData gd1 = new GridData(GridData.FILL_BOTH);
196
    GridData gd1 = new GridData(SWT.FILL, SWT.FILL, false, false);
196
    validationSummaryText_.setLayoutData(gd1);
197
    validationSummaryText_.setLayoutData(gd1);
197
    validationSummaryText_.setToolTipText( ConsumptionUIMessages.TOOLTIP_VALIDATE_TEXT_MESSAGE_SUMMARY );
198
    validationSummaryText_.setToolTipText( ConsumptionUIMessages.TOOLTIP_VALIDATE_TEXT_MESSAGE_SUMMARY );
198
    
199
    
Lines 385-400 Link Here
385
    	 boolean isRemote = true;
386
    	 boolean isRemote = true;
386
    	if (tree.isEnabled()) { // is wsil
387
    	if (tree.isEnabled()) { // is wsil
387
    		wsdlURI1 = tree.getWsdlURI();
388
    		wsdlURI1 = tree.getWsdlURI();
388
    		if (wsdlURI1.startsWith("file:")) {
389
    		if (wsdlURI1.startsWith("file:") || wsdlURI1.startsWith("platform:"))
390
    		{
389
    			isRemote = false;
391
    			isRemote = false;
390
    		}
392
    		}
391
    	} else { // is wsil
393
    	} else {
392
    	
394
    		if (wsPath.indexOf(':') < 0)
393
    		if( wsPath.indexOf(':') < 0 )
395
    		{
394
    		{      	// not remote
395
    			isRemote = false;
396
    			isRemote = false;
396
    			wsdlURI1 = iFile2URI((IFile)ResourceUtils.findResource(wsPath));
397
    			wsdlURI1 = iFile2URI((IFile)ResourceUtils.findResource(wsPath));
397
    		}
398
    		}
399
    		else if (wsPath.startsWith("file:") || wsPath.startsWith("platform:"))
400
    		{
401
    			isRemote = false;
402
    		}
398
    	}
403
    	}
399
  	  
404
  	  
400
      setMessageSummary();
405
      setMessageSummary();

Return to bug 152701