In TM1 web getting error 'operatin failed'

Post Reply
chowdary5
Posts: 8
Joined: Tue Oct 05, 2010 4:30 am
OLAP Product: Cognos TM1
Version: TM1 9.4
Excel Version: Exel 2007

In TM1 web getting error 'operatin failed'

Post by chowdary5 »

Hi All,
i have done workflow process and user enter data through Dataspread and submited to next level.
when i select Choose process and choose Task in TM1 web i am getting error operation failed and Actions is showing is Disabled.
TM1 9.5 and OS is Windows XP

Please advice.....
laenen
Posts: 47
Joined: Tue Mar 09, 2010 6:40 pm
OLAP Product: TM1
Version: 9.5
Excel Version: 2003

Re: In TM1 web getting error 'operatin failed'

Post by laenen »

update you web.config file in your c:\inetpub\wwwroot\tm1web directory by changing your <log4net> settings with this. Then pull up your web log with the error and post it.


<log4net>
<root>
<level value="DEBUG" />
<appender-ref ref="LogFileAppender" />
</root>
<logger name="Applix.TM1.API">
<level value="DEBUG"/>
<appender-ref ref="LogFileAppender" />
</logger>
<appender name="LogFileAppender" type="log4net.Appender.RollingFileAppender">

<file value="log\tm1web.log" />
<appendToFile value="true" />
<datePattern value="yyyyMMdd" />
<rollingStyle value="Date" />

<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger - %message%newline" />
</layout>
</appender>
</log4net>
chowdary5
Posts: 8
Joined: Tue Oct 05, 2010 4:30 am
OLAP Product: Cognos TM1
Version: TM1 9.4
Excel Version: Exel 2007

Re: In TM1 web getting error 'operatin failed'

Post by chowdary5 »

I change in TM1 web config file ..i am getting this error.


Server Error in '/TM1Web' Application.
Configuration Error
Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately.

Parser Error Message: The 'configuration' start tag on line 2 does not match the end tag of 'system.web'. Line 248, position 5.

Source Error:

Line 246: <add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35" />
Line 247: </httpModules>
Line 248: </system.web>
Line 249: <system.webServer>
Line 250: <validation validateIntegratedModeConfiguration="false" />


Source File: C:\Inetpub\wwwroot\TM1Web\web.config Line: 248

Version Information: Microsoft .NET Framework Version:2.0.50727.3615; ASP.NET Version:2.0.50727.3618

Thanks,
Srinivas
laenen
Posts: 47
Joined: Tue Mar 09, 2010 6:40 pm
OLAP Product: TM1
Version: 9.5
Excel Version: 2003

Re: In TM1 web getting error 'operatin failed'

Post by laenen »

web.config is an xml file

One of your tags are not matching in the config file. Try rendering it in IE or FF to see where the tags are out of alignment.

Feel free to PM me
chowdary5
Posts: 8
Joined: Tue Oct 05, 2010 4:30 am
OLAP Product: Cognos TM1
Version: TM1 9.4
Excel Version: Exel 2007

Re: In TM1 web getting error 'operatin failed'

Post by chowdary5 »

Hi ..
I opened web.config file in FF getting the error ...like..

XML Parsing Error: mismatched tag. Expected: </configuration>.
Location: file:///D:/Inetpub/wwwroot/TM1Web/Web.config
Line Number 218, Column 5: </system.web>
----^
in IE ------
<log4net>
<root>
<level value="DEBUG" />
<appender-ref ref="LogFileAppender" />
</root>
<logger name="Applix.TM1.API">
<level value="DEBUG"/>
<appender-ref ref="LogFileAppender" />
</logger>
<appender name="LogFileAppender" type="log4net.Appender.RollingFileAppender">

<file value="log\tm1web.log" />
<appendToFile value="true" />
<datePattern value="yyyyMMdd" />
<rollingStyle value="Date" />

<layout type="log4net.Layout.PatternLayout">
<conversionPattern value="%date [%thread] %-5level %logger - %message%newline" />
</layout>
</appender>
</log4net>

Thanks,
Srinivas
laenen
Posts: 47
Joined: Tue Mar 09, 2010 6:40 pm
OLAP Product: TM1
Version: 9.5
Excel Version: 2003

Re: In TM1 web getting error 'operatin failed'

Post by laenen »

In XML you have to have a beginning and ending tag

<configuration>
</configuration>

OR

a combined beginning and ending tag

<assemblyIdentity name="Applix.TM1.API" publicKeyToken="e038ed181efa7188" />

So somewhere in your config file a tag or a combined tag ending is missing. If this is not familiar you to you then you should try to find someone in your IT group that can edit XML.
Post Reply