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 34193 Details for
Bug 126529
wsdl_content.jsp only wants platform:/resource URLs from finders
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 to org.eclipse.wst.ws.explorer
126529.org.eclipse.wst.ws.explorer.patch.txt (text/plain), 1.66 KB, created by
Chris Brealey
on 2006-02-06 10:31:34 EST
(
hide
)
Description:
Patch fix to org.eclipse.wst.ws.explorer
Filename:
MIME Type:
Creator:
Chris Brealey
Created:
2006-02-06 10:31:34 EST
Size:
1.66 KB
patch
obsolete
>Index: wsexplorer/wsdl_content.jsp >=================================================================== >RCS file: /cvsroot/webtools/wst/components/ws/plugins/org.eclipse.wst.ws.explorer/wsexplorer/wsdl_content.jsp,v >retrieving revision 1.6 >diff -u -r1.6 wsdl_content.jsp >--- wsexplorer/wsdl_content.jsp 26 Oct 2005 23:04:26 -0000 1.6 >+++ wsexplorer/wsdl_content.jsp 6 Feb 2006 15:31:32 -0000 >@@ -94,6 +94,8 @@ > var x=0; > <% > String platformProtocol = "platform:/resource"; >+ String httpProtocol = "http://"; >+ String httpsProtocol = "https://"; > wsdlURLs_.removeAllElements(); > > Iterator ws = WebServiceFinder.instance().getWebServices(); >@@ -103,8 +105,8 @@ > WebServiceInfo wsInfo = (WebServiceInfo)ws.next(); > String url = wsInfo.getWsdlURL(); > >- // filter wsdl URLs with same project name as selected project >- // only look at workspace URLs returned from the web service finder >+ // filter wsdl URLs with same project name as selected project >+ // only look at workspace URLs returned from the web service finder > if (url.startsWith(platformProtocol)) > { > //strip off platformProtocol to look at the workspace path >@@ -116,6 +118,11 @@ > wsdlURLs_.add(url); > } > } >+ // also add any http or https URLs returned >+ else if (url.startsWith(httpProtocol) || url.startsWith(httpsProtocol)) >+ { >+ wsdlURLs_.add(url); >+ } > } > if (wsdlType == ActionInputs.WSDL_TYPE_SERVICE_INTERFACE) > {
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 126529
: 34193 |
34194
|
34205