Hi,

I always get a NoSuchMethod: 
org.geotools.referencing.operation.DefaultCoordinateOperationFactory.<init>(Lorg/geotools/factory/Hints;I)V
Error when trying to read features from a WFSDataStore.

The code I'm using is:

DataStore wfsData = getWFSDatastore( accessor.getURI() );
try
{
   DefaultQuery query = new DefaultQuery( 
props.getProperty(STRASSENTYPE, "kvla:str_geom") );
   FilterFactory ff = FilterFactoryFinder.createFilterFactory();


   LikeFilter f = ff.createLikeFilter();
   f.setValue( ff.createAttributeExpression( "str_name" ));

   f.setPattern( "*" + namePart + "*", "*", "?", "\\" );

   query.setFilter( f );

   FeatureReader ftr = wfsData.getFeatureReader( query, 
Transaction.AUTO_COMMIT );

Anybody can give me a hint what I'm doing wrong? I already tried adding 
all the jar's from the binary distribution.

Andreas

-- 
Andreas Pakulat
Computer Graphics Center (ZGDV e. V.)
Joachim-Jungius-Str. 11
18059 Rostock
GERMANY
mail: [EMAIL PROTECTED]

-------------------------------------------------------------------------
Using Tomcat but need to do more? Need to support web services, security?
Get stuff done quickly with pre-integrated technology to make your job easier
Download IBM WebSphere Application Server v.1.0.1 based on Apache Geronimo
http://sel.as-us.falkag.net/sel?cmd=lnk&kid=120709&bid=263057&dat=121642
_______________________________________________
Geotools-gt2-users mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/geotools-gt2-users

Reply via email to