Statistics
| Revision:

root / trunk / libraries / libRemoteServices / src / org / gvsig / remoteClient / Tests / Test.java @ 3323

History | View | Annotate | Download (415 Bytes)

1
package org.gvsig.remoteClient.Tests;
2

    
3
import org.gvsig.remoteClient.wms.WMSClient;
4

    
5
import junit.framework.TestCase;
6

    
7
public class Test extends TestCase
8
{
9
        
10
        public static void main(String[] args)
11
        {
12
                WMSClient wmsclient = new WMSClient("http://orto.cth.gva.es/wmsconnector/com.esri.wms.Esrimap/wms_urbanismo_tematicos");
13
                
14
                try
15
                {
16
                        wmsclient.connect();                        
17
                        
18
                }
19
                catch(Exception e)
20
                {
21
                        
22
                }                                
23
        }
24

    
25
}