Select to view content in your preferred language

The �??Query layer�?� tool has a problem,

4630
5
05-26-2013 11:53 AM
JamalNUMAN
Legendary Contributor
The �??Query layer�?� tool has a problem,

I tried to add the �??Query layer�?� that works based on 3 fields. It works fine. I saved the application and quiet.

[ATTACH=CONFIG]24692[/ATTACH], [ATTACH=CONFIG]24693[/ATTACH], [ATTACH=CONFIG]24694[/ATTACH]

As I wanted to further edit the application, the �??query layer�?� tool is no longer in the application

[ATTACH=CONFIG]24695[/ATTACH], [ATTACH=CONFIG]24696[/ATTACH]

What might be the issue here? Where it has gone after being tried and saved?


Thank you

Best

Jamal
----------------------------------------
Jamal Numan
Geomolg Geoportal for Spatial Information
Ramallah, West Bank, Palestine
0 Kudos
5 Replies
by Anonymous User
Not applicable
Original User: JonathanMeyer

If you go to settings on the top right and go to Add-Inns, do you still see the query tool there?
0 Kudos
JamalNUMAN
Legendary Contributor
If you go to settings on the top right and go to Add-Inns, do you still see the query tool there?



Many thanks Jonathan for the answer,

Silverlight is really unstable and continues to have weird behaviours.

�?� Sure the �??Query tool�?� is there in the package (screenshot below)

[ATTACH=CONFIG]24829[/ATTACH]


�?� I tried to have drop down list using the �??Query tool�?� but sounds not to work. I tried it in the ADF and it worked perfectly. Please, have a look on the screenshots below (data is attached)

[ATTACH=CONFIG]24830[/ATTACH], [ATTACH=CONFIG]24831[/ATTACH], [ATTACH=CONFIG]24832[/ATTACH], [ATTACH=CONFIG]24833[/ATTACH]

What might be the issue here? (the data is in the next post)
----------------------------------------
Jamal Numan
Geomolg Geoportal for Spatial Information
Ramallah, West Bank, Palestine
0 Kudos
by Anonymous User
Not applicable
Original User: Jamal432@gmail.com

If you go to settings on the top right and go to Add-Inns, do you still see the query tool there?


Data is attached
0 Kudos
GlennNixon
Deactivated User
I just started to experience this same problem. Was there an answer for this posted somewhere?
0 Kudos
by Anonymous User
Not applicable
Original User: PietaS175

The problem lies with the query tool that saves all the values for the field(s) being queried in the configuration file (tools.xml). This bloats the config file to enormous proportions. The default settings in web.config file can't deal with this large request.
I have modified my code to not save the values in the config file. You can also delete the values afterwords but that also breaks the configuration of the tool in future

Also, make the following changes to the web.config file in inetpub/wwwroot/Builder folder
bits in bold are important

<configuration>
  <system.web>
    <compilation debug="true" />
<httpRuntime maxRequestLength="2097151" />

...

<security>
   <requestFiltering>
   <requestLimits maxAllowedContentLength="1048576000" />
   </requestFiltering>
</security>

  </system.webServer>
</configuration>
0 Kudos