I understand your frustration, but hopefully we have a workable solution.First, I'll ask the obvious question. Why are you embedding a WMS service inside a KML network link when you can add the WMS directly to ArcGIS Online? I was able to use the URL to the WMS and display it over the map. Adding a service avoids the need for the client (browser) to draw the features. In this particular case, the number of features is small, but this will probably be a better solution if you have a lot of data.The reason your KML is not displaying is because we're not setting a default value for ViewFormat. According to the spec:http://code.google.com/apis/kml/documentation/kmlreference.html#linkIf you specify a <viewRefreshMode> of onStop and do not include the <viewFormat> tag in the file, the following information is automatically appended to the query string:
BBOX=[bboxWest],[bboxSouth],[bboxEast],[bboxNorth]
ArcGIS Online is not automatically doing this. The workaround is straightforward. Add this parameter to your KML.<?xml version="1.0" encoding="UTF-8"?>
<kml>
<Folder>
<NetworkLink>
<name>PSDP_CONSTRAINTS:Protected_Areas</name>
<open>1</open>
<visibility>1</visibility>
<Url>
<href><![CDATA[http://geoserver.ecsecc.org:80/geoserver/wms?height=1024&width=1024&layers=PSDP_CONSTRAINTS:Protected_Areas&request=GetMap&service=wms&styles=Protected_Areas&format_options=SUPEROVERLAY:false;KMPLACEMARK:false;KMSCORE:40;KMATTR:true;&srs=EPSG:4326&format=application/vnd.google-earth.kmz&transparent=false&version=1.1.1]]></href>
<viewRefreshMode>onStop</viewRefreshMode>
<viewRefreshTime>1</viewRefreshTime>
<viewFormat>BBOX=[bboxWest],[bboxSouth],[bboxEast],[bboxNorth]</viewFormat>
</Url>
</NetworkLink>
<LookAt>
<longitude>26.57877455914865</longitude>
<latitude>-32.27249827641428</latitude>
<altitude>0</altitude>
<range>799671.4729535136</range>
<tilt>0</tilt>
<heading>0</heading>
<altitudeMode>clampToGround</altitudeMode>
</LookAt>
</Folder>
</kml>
We'll try to address this in a subsequent release.Hope this helps,Mike