|
POST
|
Finally we used a Query Table https://community.esri.com/thread/183385-timeslider-and-one-to-many-relationships https://blogs.esri.com/esri/supportcenter/2012/05/10/a-quick-tip-on-performing-a-1m-join/ Thanks
... View more
01-03-2017
11:14 AM
|
0
|
0
|
1419
|
|
POST
|
Thank yo for your answer Joshua, I think this post answer my question: Choose a unique identifier field for a query layer—Help | ArcGIS for Desktop Yes the OUTER JOIN goes from the table to the FC. Selecting the field ObjectID from the table as a the unique ID field. Other solution is to export the SDE view to a FC then the field OBJECTID gets added. Thanks
... View more
12-29-2016
04:07 PM
|
1
|
0
|
1419
|
|
POST
|
Hello everyone, Is there a way to create an SDE view using a FC and a table, where for each record in the FC there are 0 or several records in the table. I tried to create a SDE View i arcCatalog 10.2 with a query similar to this one: select FC.Code, Table.DateEvent from FC, Table where FC.Code = Table.Code and when I add the SDE view in ArcMap it asks for an field that is a unique ID, otherwise the SDe View can not be shown. How can I create a field that is an unique id. Thanks
... View more
12-29-2016
02:43 PM
|
0
|
3
|
2379
|
|
POST
|
The version of Oracle is 11G but we upgraded this week to 12C. ArcGIS Client 10.2.2 ArcSDE 10.2 Using ST_Geometry For testing purposes we created the two views with the same code using the old SDE command line, and ArcCatalog View. Both show the same error message. Thanks
... View more
12-27-2016
11:52 AM
|
0
|
0
|
2668
|
|
POST
|
Hello everyone, When opening a SDE view directly in oracle with Oracle SQL Developer to see the Data we get the following error message: ORA-01445: cannot select ROWID from, or sample, a join view without a key-preserved table The SDE view shows correctly in ArcCatalog but now in SQL Developer we get this error message. It looks like the error is caused by the field "SHAPE", because removing this field allows to Open the view and see the data. SELECT FC.SHAPE, FC.OBJECTID, FC.ProjectID, TableView.STATUS, TableView.PROJECTNAME, TableView.PROJECTLOCATION, TableView.PROJECTDESCRIPTION FROM APP.FC, APP.TableView WHERE FC.ProjectID IS NOT NULL AND FC.ProjectID = TableView.ProjectID;
... View more
12-27-2016
10:08 AM
|
0
|
2
|
5442
|
|
POST
|
Hello everyone, When using Editor tracking in a feature service in AGOL, editors have to log in with two different usernames and passwords to digitize features. Is there a way to avoid the dual (AGOL, AGServer) signup to only one log in once? We are currently using an AGOL sign in option that uses our organization account not a ArcGIS account. What are Active Directory Federated Services? Thanks
... View more
12-22-2016
08:44 AM
|
0
|
0
|
1249
|
|
POST
|
Hello everyone, I am editing a feature class in Web AppBuilder and I declared the fields CRTBY and MODBY in the feature class editor tracking field with ArCatalog Web AppBuilder populates these fields automatically, but I am also testing if I can populate these fields in the program. The issue is that I am not able to see these fields in the source code. When I run the code below it never finds CRTBY and MODBY. They are not in evt.adds[0].attributes Widget.js // // Populate CRTBY and MODBY // if (evt.adds[0].attributes.hasOwnProperty('CRTBY')) { evt.adds[0].attributes.CRTBY = esri.id.credentials[0].userId; } if (evt.adds[0].attributes.hasOwnProperty('MODBY')) { evt.adds[0].attributes.MODBY = esri.id.credentials[0].userId; } this.editor.attributeInspector.refresh();
... View more
12-19-2016
11:57 AM
|
0
|
0
|
803
|
|
POST
|
Hello everyone, I am running an Web AppBuilder using the Edit widget to edit a layer. The feature class has Editor Tracking enabled. I was expecting to see on the Creator Field and Editor field the ID of the user who digitized the feature but instead of that it shows the value "Esri_Anonymous". Is there any configuration I am missing?
... View more
12-15-2016
11:01 AM
|
0
|
2
|
1162
|
|
POST
|
It works now! I just created an empty ASP.Net application, added html file "HtmlPage2.html", and used the "Internal Web Browser" to run the project. Selecting the HtmlPage2.html as "Set as Start Page" I was able to run it in Visual studio. I am using URLs with my machine name instead of "localhost. var requestHandle = esriRequest({ "url": url, handleAs: "json" }, {useProxy: true, usePost: false, disableIdentityLookup: true}); requestHandle.then(requestSucceeded, requestFailed);
... View more
12-12-2016
05:14 AM
|
0
|
1
|
2215
|
|
POST
|
Hi Robert, When do I have tdeclare a content part? content: { ppin: ppin, f: 'json' } This is my code, let me update it to match yours: esriConfig.defaults.io.alwaysUseProxy = true; esriConfig.defaults.io.proxyUrl = "http://jsancn-3/proxy/proxy.ashx"; var url = "http://jsancn-3/FindNextVALUENumber/api/value"; var requestHandle = esriRequest({ "url": url, handleAs: "json" //callbackParamName: "jsoncallback" }); requestHandle.then(requestSucceeded, requestFailed);
... View more
12-09-2016
08:32 AM
|
0
|
1
|
2215
|
|
POST
|
Robert, Typing http://localhost/proxy/proxy.ashx?http://localhost/FindNextVALUENumber/api/value or http://[mymachine]/proxy/proxy.ashx?http://[mymachine]/FindNextVALUENumber/api/value Work fine. It looks like https://js.arcgis.com is trying to open the link but it can't or it does not allowed. The error persists pointing directly to my computer name instead of localhost XMLHttpRequest cannot load http://jsancn-3/proxy/proxy.ashx?http://jsancn-3/FindNextVALUENumber/api/value. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access. Object responseText:"" stack:"Error: Unable to load http://jsancn-3/proxy/proxy.ashx?http://jsancn-3/FindNextVALUENumber/api/value status: 0↵ at new n (https://js.arcgis.com/3.18/init.js:111:353)↵ at XMLHttpRequest.f (https://js.arcgis.com/3.18/init.js:142:454)" status:0
... View more
12-09-2016
08:15 AM
|
0
|
1
|
2215
|
|
POST
|
Hi Robert, I created an "HtmlPage2.html" in my current Visual Studio project to test the code. Now I just copied this page "HtmlPage2.html" to a new folder, and opened it with Google Chrome. When I open the page this is the error I am getting: XMLHttpRequest cannot load http://localhost/proxy/proxy.ashx?http://localhost/FindNextVALUENumber/api/value. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'null' is therefore not allowed access. n _ssl:undefined log:undefined message:"Unable to load http://localhost/proxy/proxy.ashx?http://localhost/FindNextVALUENumber/api/value status: 0" response:Object responseText:"" stack:"Error: Unable to load http://localhost/proxy/proxy.ashx?http://localhost/FindNextVALUENumber/api/value status: 0↵ at new n (https://js.arcgis.com/3.18/init.js:111:353)↵ at XMLHttpRequest.f (https://js.arcgis.com/3.18/init.js:142:454)" status:0 xhr:XMLHttpRequest __proto__:Error HtmlPage2.html:111 Error: Unable to load http://localhost/proxy/proxy.ashx?http://localhost/FindNextVALUENumber/api/value status: 0
... View more
12-09-2016
07:08 AM
|
0
|
1
|
4203
|
|
POST
|
Same error. See below: XMLHttpRequest cannot load http://localhost/proxy/proxy.ashx?http://localhost/FindNextAASISNumber/api/aasis. Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:59297' is therefore not allowed access. init.js:89 n_ssl: undefinedlog: undefinedmessage: "Unable to load http://localhost/proxy/proxy.ashx?http://localhost/FindNextVALUENumber/api/value status: 0"response: ObjectresponseText: ""stack: "Error: Unable to load http://localhost/proxy/proxy.ashx?http://localhost/FindNextVALUENumber/api/aasis status: 0↵ at new n (https://js.arcgis.com/3.18/init.js:111:353)↵ at XMLHttpRequest.f (https://js.arcgis.com/3.18/init.js:142:454)"status: 0xhr: XMLHttpRequest__proto__: Errorw @ init.js:89(anonymous function) @ init.js:88c @ init.js:103d @ init.js:103resolve.callback @ init.js:105c @ init.js:104d @ init.js:103reject.errback @ init.js:105c @ init.js:104d @ init.js:103reject.errback @ init.js:105c @ init.js:104d @ init.js:103reject.errback @ init.js:105(anonymous function) @ init.js:92h @ init.js:107k @ init.js:107w.reject @ init.js:109a @ init.js:108h @ init.js:107k @ init.js:107w.reject @ init.js:109a @ init.js:108h @ init.js:107k @ init.js:107w.reject @ init.js:109a @ init.js:108h @ init.js:107k @ init.js:107w.reject @ init.js:109a @ init.js:108h @ init.js:107k @ init.js:107w.reject @ init.js:109n @ init.js:138f @ init.js:143 n _ssl:undefined log:undefined message:"Unable to load http://localhost/proxy/proxy.ashx?http://localhost/FindNextVALUENumber/api/value status: 0" response:Object responseText:"" stack:"Error: Unable to load http://localhost/proxy/proxy.ashx?http://localhost/FindNextVALUENumber/api/value status: 0↵ at new n (https://js.arcgis.com/3.18/init.js:111:353)↵ at XMLHttpRequest.f (https://js.arcgis.com/3.18/init.js:142:454)" status:0 xhr:XMLHttpRequest __proto__:Error
... View more
12-09-2016
06:23 AM
|
0
|
1
|
4203
|
|
POST
|
Hello Here is a copy of the proxy.config <?xml version="1.0" encoding="utf-8" ?> <ProxyConfig allowedReferers="*" mustMatch="true"> <serverUrls> <serverUrl url="http://services.arcgisonline.com" matchAll="true"/> <serverUrl url="http://gisweb.miamidade.gov" matchAll="true"/> <serverUrl url="http://localhost:59297" matchAll="true"/>--> <serverUrl url="http://localhost/proxy/" matchAll="true"/> <serverUrl url="http://localhost/FindNextvalueNumber/" matchAll="true"/> <serverUrl url="http://localhost/proxy/" matchAll="true"/> <serverUrl url="http://[mycomputername]/FindNextvalueNumber/" matchAll="true"/> </serverUrls> </ProxyConfig> <!-- See https://github.com/Esri/resource-proxy for more information -->
... View more
12-09-2016
05:30 AM
|
0
|
1
|
4203
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 3 weeks ago | |
| 1 | 05-01-2026 12:34 PM | |
| 1 | 12-02-2022 08:17 AM | |
| 1 | 12-26-2025 05:02 AM | |
| 1 | 08-05-2025 04:28 AM |
| Online Status |
Offline
|
| Date Last Visited |
a week ago
|