Revision 47828 trunk/org.gvsig.desktop/org.gvsig.desktop.plugin/org.gvsig.downloader/org.gvsig.downloader.swing/org.gvsig.downloader.swing.impl/src/main/java/org/gvsig/downloader/swing/impl/config/DownloaderConfigServicePanel.java

View differences:

DownloaderConfigServicePanel.java
129 129
    
130 130
    public void put(DownloaderAuthenticationConfig config) {        
131 131
        this.config = (DownloaderAuthenticationConfig) CloneableUtils.cloneQuietly(config);        
132
        this.txtServiceURL.setText(this.config.getBaseUrl());
132
        this.txtServiceURL.setText(this.config.getServiceUrl());
133 133
        ListElement.setSelected(cboAuthenticationType, this.config.getFactory());
134 134
        this.doUpdateComponents();
135 135
    }
......
154 154
        if( this.config==null || !StringUtils.equalsIgnoreCase(authenticationType.getProviderName(), this.config.getProviderName())) {
155 155
            this.config = authenticationType.create(url);
156 156
        }
157
        if( !StringUtils.equals(this.config.getBaseUrl(),url) ) {
157
        if( !StringUtils.equals(this.config.getServiceUrl(),url) ) {
158 158
            this.config = authenticationType.create(url);
159 159
        }
160 160
        setDirty(false);

Also available in: Unified diff