| bio | website | none,sorry. |
|---|---|---|
| location | Maine | |
| age | 43 | |
| visits | member for | 2 years, 8 months |
| seen | Aug 11 '11 at 17:58 | |
| stats | profile views | 58 |
I'm extroverted enough to look at other people's shoes.
|
Oct 7 |
revised |
How do I deserialize GP Result Json? added 324 characters in body |
|
Oct 7 |
answered | How do I deserialize GP Result Json? |
|
Oct 6 |
revised |
Pass execution control from Context Menu BaseCommand to custom app added 728 characters in body |
|
Oct 6 |
answered | Add a polygon to PostGis from Google Maps |
|
Oct 5 |
answered | Pass execution control from Context Menu BaseCommand to custom app |
|
Oct 5 |
revised |
Running ArcGIS 10 Python script on a unix server - is it possible? added 137 characters in body |
|
Oct 5 |
comment |
Running ArcGIS 10 Python script on a unix server - is it possible? Um, no; not remotely "properly" licensed. In order for this to work on the "fast unix server", it's going to need its own license. |
|
Oct 5 |
answered | Running ArcGIS 10 Python script on a unix server - is it possible? |
|
Oct 5 |
comment |
How do I serialize/deserialize .NET dictionary without key value elements? So you're going to be getting broken json data? Ick. With respect to the null values, have you played with the JsonSerializerSettings to see if those would help you out? It seems as though you could set NullValueHandling to Ignore, and it would leave the dictionaries alone (assuming you'd created them in the class constructor). |
|
Oct 5 |
comment |
How do I serialize/deserialize .NET dictionary without key value elements? Huh. In some respects, I'd be tempted to say that Json.NET is right - you can't deserialize an array into a dictionary. Does the bit below work better: string json = "{\"jobId\":\"jeabfba358b69412abeafd63e415957bf\",\"jobStatus\":\"esriJobWaiting\"," + "\"results\":{},\"inputs\":{},\"messages\":[]}"; Here, we're saying that both results and inputs are null objects, not empty arrays. |
|
Oct 5 |
comment |
How do I serialize/deserialize .NET dictionary without key value elements? I've only been playing with it for ... oh, a day, and yeah, it's pretty nice. Wouldn't have found it were it not for your question. |
|
Oct 5 |
awarded | Enthusiast |
|
Oct 4 |
answered | How do I serialize/deserialize .NET dictionary without key value elements? |
|
Oct 4 |
answered | How do I generate code from ESRI GPServer wsdl? |
|
Oct 1 |
comment |
Restrict pan and zoom in ArcGIS Javascript API? Nice find; bookmarked for when I'll eventually need it too. |
|
Oct 1 |
answered | Restrict pan and zoom in ArcGIS Javascript API? |
|
Sep 28 |
comment |
Can custom map tiles be consumed via ArcObjects within my ArcGIS 10 Desktop AddIn? @Josh - Glad to help - the ArcBruTile project was a fun find for me as well. Would you care to mark the question "answered"? |
|
Sep 28 |
comment |
Can custom map tiles be consumed via ArcObjects within my ArcGIS 10 Desktop AddIn? @petr_k - Right on the money with caching being critical - the network traffic will kill your performance otherwise. The guys in the referenced codeplex site (claim to) have dealt with this. I haven't looked through their code to see how they're deciding how long to hang on to a tile. |
|
Sep 27 |
comment |
Can custom map tiles be consumed via ArcObjects within my ArcGIS 10 Desktop AddIn? He said "no ArcGIS server" - straight Apache only, otherwise, it's dead simple, as you say. |
|
Sep 27 |
answered | Can custom map tiles be consumed via ArcObjects within my ArcGIS 10 Desktop AddIn? |