I'm trying to deploy apps (in this case the BasicSelfHostedApp). sharepoint hosted on my local instance. Sharepoint 2013, Visual Studio 2012. Deployment fails, with error "the remote hosting service is not configured". Initially this was due to "Target application not found (application id: __RemoteAppManagementInfo__)."
Following that path I created a target application in the secure store. Error then became it wanted 4 fields instead of the default 2 (windows username and password). Through more work, figured out the fields that the deployment wants (UserName,Password, ManagementEndPoint, IsEnabled). Problem is, I can't figure out the ManagementEndPoint, which is of type url. Anything I try I get the error "ServiceAddress should be of the format ApiName.qualifier.admin.subdomain"
From the ULS logs I can see that what's being called is Microsoft.SharePoint.Packaging.RemoteWebHost.Client.AntaresConfiguration.ExtractSubDomain(Uri serviceAddress).
Can anyone point me to documentation as to how to setup the target application for __RemoteAppManagementInfo__? Note that I don't need instructions on how to create a target application in the secure store, I've done that. What I need are the parameters necessary for __RemoteAppManagementInfo__
thanks