Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Webservices handbook #78

Merged
merged 1 commit into from Apr 2, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -269,12 +269,12 @@ The basic structure of a manual configuration looks like this:

As you can see, the first thing to do is to bind the configuration to a feature store. After that, you can define one or more feature layers.

A feature layer configuration has three optional elements besides the common elements. The ``FeatureTypeName`` can be used to restrict a layer to a specific feature type (use a qualified name). The ``Filter`` element can be used to specify a filter that applies to the layer globally (use standard OGC filter encoding 1.1.0 ``ogc:Filter`` element within):
A feature layer configuration has three optional elements besides the common elements. The ``FeatureType`` can be used to restrict a layer to a specific feature type (use a qualified name). The ``Filter`` element can be used to specify a filter that applies to the layer globally (use standard OGC filter encoding 1.1.0 ``ogc:Filter`` element within):

.. code-block:: xml

<FeatureLayer>
<FeatureTypeName xmlns:app='http://www.deegree.org/app'>app:Roads</FeatureTypeName>
<FeatureType xmlns:app='http://www.deegree.org/app'>app:Roads</FeatureType>
<Filter>
<Filter xmlns='http://www.opengis.net/ogc'>
<PropertyIsEqualTo>
Expand Down