Solved! Go to Solution.
John,
If you have access to Server then you don't need to use ArcGIS.com but you need a basic understanding of how to publish services.
http://help.arcgis.com/en/arcgisserver/10.0/help/arcgis_server_dotnet_help/0093/00930000000p000000.h...
http://help.arcgis.com/en/arcgisserver/10.0/help/arcgis_server_dotnet_help/0000/00000003pv59000000.h...
Once you have a service published you can view them on your server
See your Services Directory page at http://<server name>/rest/services
After all this you can then choose any API (JavaScript, Silverlight, Flex) and start working.
Jay
John,
Jay's first link will show you how to get your datasets published via ArcGIS Server. Once you've done that you'll want to make a map which uses that data.
Since you're in the JavaScript API section of the forum, you probably want to use the JavaScript API. If so, take a look at the Samples page to get started.
A suggestion is to get a sample working, then switch out the Esri sample data with your own data. Eg, take this sample and add your own layers on top of the basemap.
Good luck,
Steve
I should be able to find my REST services with a path that follows: http://<host>/<root>/services But, I do not see a services folder when I drill down into the actual files
but the documentation I am finding suggest that I should be able to find my REST services with a path that follows: http://<host>/<root>/services But, I do not see a services folder when I drill down into the actual files (i.e. click ArcGIS => rest). Is there something I am missing? To my understanding everything has already been installed.
Once you have a service published you can view them on your server
See your Services Directory page at http://<server name>/ArcGIS/rest/services
John,
There is no actually physical folder or "actual fiels."
As I stated in my first post
Can you hit your Manager page? http://<Your server name>/ArcGIS/Manager ???
If you can get to Manager login page than just take off the Manager and add rest/services so your Address should be http://<server name>/ArcGIS/rest/services
Jay