Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.
Produto:Framework                         Versão: 11.XX                                                                        
Processo:Host
Subprocesso:Tag Tracefile
Data da publicação:1921/01/2015


Com a finalidade de gerenciarmos o processo de execução do RM Host necessitamos habilitar a tag "TraceFiletracefile" nos arquivos do RM Host.

Para  habilitar o Tracefile tracefile nos Servidores que executam processos, siga as orientações abaixo:

...

 1. Acesse o diretório "C:\totvs\CorporeRM\RM.Net".
2. Edite os arquivos "RM.Host.exe.config" e "RM.Host.Service.exe.config" utilizando o bloco de notas.
3. Inclua no contexto do arquivo a tag "<add key="TraceFiletracefile" value="true" />".Abaixo segue exemplo do contexto original e alterado.

4. Reinicie o serviço do RM Host para que esta alteração seja computada.

...

ANTES (Contexto Original)

DEPOIS (Depois da alteração)

<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="JobServer3Camadas" value="false" />
<add key="Port" value="8050" />
<add key="ActionsPath" value="C:\totvs\CorporeRM\RM.Net;C:\totvs\CorporeRM\Corpore.Net\B in"
/>
<add key="EnableCompression" value="true" />
</appSettings>
<runtime>
<NetFx40_LegacySecurityPolicy enabled="true" />
</runtime>
<system.runtime.remoting>
<customErrors mode="Off" />
</system.runtime.remoting>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
</configuration>

<?xml version="1.0"?>
<configuration>
<appSettings>
<add key="JobServer3Camadas" value="false" />
<add key="Port" value="8050" />
<add key="ActionsPath" value="C:\totvs\CorporeRM\RM.Net;C:\totvs\CorporeRM\Corpore.Net\B in"
/>
<add key="EnableCompression" value="true" />
<add key="TraceFiletracefile" value="true" />
</appSettings>
<runtime>
<NetFx40_LegacySecurityPolicy enabled="true" />
</runtime>
<system.runtime.remoting>
<customErrors mode="Off" />
</system.runtime.remoting>
<startup>
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.0" />
</startup>
</configuration>

...