public void IncomingCapsRequest (UUID agentID, GridRegion region, ISimulationBase simbase, ref OSDMap capURLs) { m_syncMessage = simbase.ApplicationRegistry.RequestModuleInterface<ISyncMessagePosterService> (); m_appearanceService = simbase.ApplicationRegistry.RequestModuleInterface<IAgentAppearanceService> (); m_region = region; m_agentID = agentID; if (m_appearanceService == null) return;//Can't bake! m_uri = "/CAPS/UpdateAvatarAppearance/" + UUID.Random () + "/"; MainServer.Instance.AddStreamHandler (new GenericStreamHandler ("POST", m_uri, UpdateAvatarAppearance)); capURLs ["UpdateAvatarAppearance"] = MainServer.Instance.ServerURI + m_uri; }
public void IncomingCapsRequest(UUID agentID, GridRegion region, ISimulationBase simbase, ref OSDMap capURLs) { m_syncMessage = simbase.ApplicationRegistry.RequestModuleInterface <ISyncMessagePosterService> (); m_appearanceService = simbase.ApplicationRegistry.RequestModuleInterface <IAgentAppearanceService> (); m_region = region; m_agentID = agentID; if (m_appearanceService == null) { return;//Can't bake! } m_uri = "/CAPS/UpdateAvatarAppearance/" + UUID.Random() + "/"; MainServer.Instance.AddStreamHandler(new GenericStreamHandler("POST", m_uri, UpdateAvatarAppearance)); capURLs ["UpdateAvatarAppearance"] = MainServer.Instance.ServerURI + m_uri; }