How to disable TRACE on Web Application Server v 7.0?

Hello Professional Sun Users,
According to:
http://blogs.sun.com/meena/entry/disabling_trace_in_sun_java
I can disable HTTP TRACE by either through:
1. Adding the following code into obj.conf
<Client method="TRACE">
AuthTrans fn="set-variable"
remove-headers="transfer-encoding"
set-headers="content-length: -1"
error="501"
</Client>
which I get 413 Request Entity Too Large
here is my obj.conf file:
# Sun Microsystems, Inc. - obj.conf
# You can edit this file, but comments and formatting changes
# might be lost when the admin server makes changes.
# Use only forward slashes in pathnames--backslashes can cause
# problems. See the documentation for more information.
<Object name="default">
<Client method="TRACE">
AuthTrans fn="set-variable" remove-headers="transfer-encoding" set-headers="content-length: -1" error="501"
</Client>
AuthTrans fn="match-browser" browser="*MSIE*" ssl-unclean-shutdown="true"
NameTrans fn="ntrans-j2ee" name="j2ee"
NameTrans fn="pfx2dir" from="/mc-icons" dir="D:/Sun/AppServer7U10/lib/icons" name="es-internal"
NameTrans fn="document-root" root="$docroot"
PathCheck fn="nt-uri-clean"
PathCheck fn="find-pathinfo"
PathCheck fn="find-index" index-names="index.html,home.html"
PathCheck fn="check-acl" acl="default"
ObjectType fn="type-by-extension"
ObjectType fn="force-type" type="text/plain"
Service method="(GET|HEAD)" type="magnus-internal/imagemap" fn="imagemap"
Service method="(GET|HEAD)" type="magnus-internal/directory" fn="index-common"
Service method="(GET|HEAD|POST)" type="*~magnus-internal/*" fn="send-file"
Error fn="error-j2ee"
AddLog fn="flex-log" name="access"
</Object>
<Object name="j2ee">
ObjectType fn="force-type" type="text/html"
Service fn="service-j2ee" method="*"
</Object>
<Object name="cgi">
ObjectType fn="force-type" type="magnus-internal/cgi"
Service fn="send-cgi"
</Object>
<Object name="es-internal">
PathCheck fn="check-acl" acl="es-internal"
</Object>
or
2. adding the following code into generated.server1.acl and genwork.server1.acl
deny absolute (http_trace, http_put, http_delete, http_move, http_mkdir, http_rmdir) user="anyone";
which I get 200 OK
My generated.server1.acl file:
version 3.0;
acl "default";
authenticate (user, group) {
prompt = "Sun ONE Application Server";
deny absolute (http_trace, http_put, http_delete, http_move, http_mkdir, http_rmdir) user="anyone";
acl "es-internal";
deny absolute (http_trace, http_put, http_delete, http_move, http_mkdir, http_rmdir) user="anyone";
and genwork.server1.acl file:
version 3.0;
acl "default";
authenticate (user, group) {
prompt = "Sun ONE Application Server";
deny absolute (http_trace, http_put, http_delete, http_move, http_mkdir, http_rmdir) user="anyone";
acl "es-internal";
deny absolute (http_trace, http_put, http_delete, http_move, http_mkdir, http_rmdir) user="anyone";
Both methods of disabling HTTP TRACE seems not working......... Could anyone point where had went wrong?
Thank you
Edited by: draggy on Jan 5, 2009 8:28 AM

Hello Joe,
Thank you for replying.
However I did recheck everything
here my /server1/config/obj.conf:
# Use only forward slashes in pathnames--backslashes can cause
# problems. See the documentation for more information.
<Object name="default">
<Client method="TRACE">
AuthTrans fn="set-variable" remove-headers="transfer-encoding" set-headers="content-length: -1" error="501"
</Client>
AuthTrans fn="match-browser" browser="*MSIE*" ssl-unclean-shutdown="true"
NameTrans fn="ntrans-j2ee" name="j2ee"
NameTrans fn=pfx2dir from=/mc-icons dir="D:/Sun/AppServer7/lib/icons" name="es-internal"
NameTrans fn=document-root root="$docroot"
PathCheck fn=nt-uri-clean
PathCheck fn="check-acl" acl="default"
PathCheck fn=find-pathinfo
PathCheck fn=find-index index-names="index.html,home.html"
ObjectType fn=type-by-extension
ObjectType fn=force-type type=text/plain
Service method=(GET|HEAD) type=magnus-internal/imagemap fn=imagemap
Service method=(GET|HEAD) type=magnus-internal/directory fn=index-common
Service method=(GET|HEAD|POST) type=*~magnus-internal/* fn=send-file
Error fn="error-j2ee"
AddLog fn=flex-log name="access"
</Object>
<Object name="j2ee">
ObjectType fn=force-type type=text/html
Service fn="service-j2ee" method="*"
</Object>
<Object name="cgi">
ObjectType fn=force-type type=magnus-internal/cgi
Service fn=send-cgi
</Object>
<Object name="es-internal">
PathCheck fn="check-acl" acl="es-internal"
</Object>and my /server1/config/server1-obj.conf:
# Use only forward slashes in pathnames--backslashes can cause
# problems. See the documentation for more information.
<Object name="default">
<Client method="TRACE">
AuthTrans fn="set-variable" remove-headers="transfer-encoding" set-headers="content-length: -1" error="501"
</Client>
AuthTrans fn="match-browser" browser="*MSIE*" ssl-unclean-shutdown="true"
NameTrans fn="ntrans-j2ee" name="j2ee"
NameTrans fn=pfx2dir from=/mc-icons dir="D:/Sun/AppServer7/lib/icons" name="es-internal"
NameTrans fn=document-root root="$docroot"
PathCheck fn=nt-uri-clean
PathCheck fn="check-acl" acl="default"
PathCheck fn=find-pathinfo
PathCheck fn=find-index index-names="index.html,home.html"
ObjectType fn=type-by-extension
ObjectType fn=force-type type=text/plain
Service method=(GET|HEAD) type=magnus-internal/imagemap fn=imagemap
Service method=(GET|HEAD) type=magnus-internal/directory fn=index-common
Service method=(GET|HEAD|POST) type=*~magnus-internal/* fn=send-file
Error fn="error-j2ee"
AddLog fn=flex-log name="access"
</Object>
<Object name="j2ee">
ObjectType fn=force-type type=text/html
Service fn="service-j2ee" method="*"
</Object>
<Object name="cgi">
ObjectType fn=force-type type=magnus-internal/cgi
Service fn=send-cgi
</Object>
<Object name="es-internal">
PathCheck fn="check-acl" acl="es-internal"
</Object>I still getting the same 413...
$ telnet localhost 81
Trying 127.0.0.1...
Connected to localhost.
Escape character is '^]'.
TRACE / HTTP/1.1
HOST: foo
HTTP/1.1 413 Request Entity Too Large
Server: Sun-ONE-Application-Server/7.0.0_01
Date: Tue, 06 Jan 2009 06:32:29 GMT
Content-length: 168
Content-type: text/html
Connection: close
<HTML><HEAD><TITLE>Request Entity Too Large</TITLE></HEAD>
<BODY><H1>Request Entity Too Large</H1>
A request entity is longer than the server can handle.
</BODY></HTML>Connection closed by foreign host.Thank you

Similar Messages

  • How to redeploy Calculation Manager Web Application Server

    Hi All,
    I am installing a patch(13925741) for Calculation Manager, i stuck at the following point:
    6. Perform the standard Calculation Manager Web application server deployment task using Hyperion Enterprise Performance Management System Configurator (EPM System Configurator). See the Oracle Hyperion Enterprise Performance Management System Installation and Configuration Guide for instructions.
    I don't know how to redeploy Calculation Manager Web Application Server, plz help me in deploying this.
    The readme for the patch can be found at:
    https://updates.oracle.com/Orion/Services/download?type=readme&aru=15356919#_Toc330987031

    909062 wrote:
    Hi All,
    I am installing a patch(13925741) for Calculation Manager, i stuck at the following point:
    6. Perform the standard Calculation Manager Web application server deployment task using Hyperion Enterprise Performance Management System Configurator (EPM System Configurator). See the Oracle Hyperion Enterprise Performance Management System Installation and Configuration Guide for instructions.
    I don't know how to redeploy Calculation Manager Web Application Server, plz help me in deploying this.
    The readme for the patch can be found at:
    https://updates.oracle.com/Orion/Services/download?type=readme&aru=15356919#_Toc330987031
    Hi,
    Did you actually try to look at the Oracle Hyperion Enterprise Performance Management System Installation and Configuration Guide for instructions as suggested ?
    To redeploy a component, run the configurator that can be found in the start menu under Foundation Services. Then select "modify an existing instance". Then for Calculation manager, check the box "Deploy to application server".
    Thanks,
    JM

  • How to disable Jar cache on Application Server

    Hello,
    I am now developing a Webdynpro Project in the following enviroment:
    Windows 2003 Server 64Bit SP2
    JDK 5.0 Update 12
    Windows x64 Platform
    info at sun Installation Notes , Supported System Configurations
    C:\Program Files\Java\jdk1.5.0_12
    NetWeaver Composition Environment 7.1 (Application Server Java)
    Since I need always change my code wiin a jar file and upload it as a library.
    The default behavior of Application Server is to support java cache locally in JVM. That brings me many problems  (Like can't find new implemented class by dynamical class loader,  ref. http://www.szegedi.org/articles/remotejars.html )
    It there any way to disable JAVA cache on the Application Server?
    Besides, someone told spawning a new JVM for loading the jar may also work. Does our AS support spawning JVM explicitly?
    Message was edited by:
            Zenghuan Shan

    I also want to know if it is possible to disable the cache on server. In my situation, we are deploying the par file (portlet archive) to development server. Could anybody please help?

  • Web Application Server on SAP R/3 4.7 * 200

    Hi All,
    How do i know if Web Application Server is running on SAP R/3 4.7 * 200 system. i checked and
    found that IGS Watch dog service is running under sap mmc, and i see this parameter active in
    Instance profile ms/http_port = 8000 . Which user do we need to use to login and the url would be
    http://hostname:portname ??  Any inputs would be appreciated
    Regards,
    Ershad Ahmed

    Hello Eric,
    Thanks for correcting me, but
    J2EE_ADMIN is used only with ABAP stack.
    but i think you are tring to say JAVA stack or it is really ABAP stack.
    Regards,
    Subhash

  • Sneak Preview SAP NetWeaver 2004s  SAP Web Application Server 7.00 on MaxD

    Dear all
    I tried to install
    "Sneak Preview SAP NetWeaver 2004s
    SAP Web Application Server 7.00 on MaxDB (ABAP Edition) "
    <b>on Windows Server 2003 Korean Edition.</b>
    but i got the error.
    ~
    INFO 2005-12-18 20:33:12
    Execution of preprocess block of |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_CreateDB|ind|ind|ind|ind|9|0|NW_ADA_DB|ind|ind|ind|ind|6|0|Sdb_ServerSoftware_Dialogs|ind|ind|ind|ind|0|0 Step CheckExistingServerSoftware returns TRUE.
    ERROR 2005-12-18 20:33:14
    MDB-07004  File not found: undefined.
    ERROR 2005-12-18 20:33:14
    The dbmcli call for action SDB_DBMVERSION failed. Check the logfile XCMDOUT.LOG.
    ERROR 2005-12-18 20:33:14
    MUT-03025  Caught ESAPinstException in Modulecall: ESAPinstException: error text undefined.
    ERROR 2005-12-18 20:33:14
    FCO-00011  The step CheckExistingServerSoftware with step key |NW_ABAP_OneHost|ind|ind|ind|ind|0|0|NW_CreateDB|ind|ind|ind|ind|9|0|NW_ADA_DB|ind|ind|ind|ind|6|0|Sdb_ServerSoftware_Dialogs|ind|ind|ind|ind|0|0|CheckExistingServerSoftware was executed with status ERROR .
    ~
    could you let me know how to do?
    with kind regards
    David

    Dear all
    i tried to install "Sneak Preview SAP NetWeaver 2004s  SAP Web Application Server 7.00 on MaxDB" on <b>Windows XP SP2 , korean edition.</b>
    at the beginning it was okay.
    however on the "importing ABAP" stage, it shows the error.
    I linked the screenshot and attached "test_MIGKEY.log".
    According to "Sneak Preview SAP NetWeaver 2004s System Requirements",
    Operating System:
    Windows XP Professional (Service Pack 1) or Windows Server 2003 
    is this because of " XP SP 2"?
    ( I could manage it on Windows Server 2003 korean standard edition)
    Do i need to activate (or run ) MaxDB manually ?
    Thanks in advance.
    With kind regards
    David
    [Screenshot]
    http://static.flickr.com/9/75374137_5b70c5bfc6_o.png
    test_MIGKEY.log----
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: START OF LOG: 20051220103506
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#4 $ SAP
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: version R7.00/V1.4
    Compiled Sep 14 2005 23:24:01
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe -dbcodepage 1100 -i test_MIGKEY.cmd -l test_MIGKEY.log -K
    DbSl Trace:   prepare() of C_0000, rc=1, rcSQL=-942 (POS(28) Unknown table name:SVERS)
    DbSl Trace: SQL PREPARE on connection 0, rc=-942 (POS(28) Unknown table name:SVERS)
    (DB) INFO: connected to DB
    (TFH) ERROR: Unable to open
    desktop-win2k\j$\SAPNW2004sSneakPreviewABAP\NSPExport\ABAP\DATA\SAPAPPL0.TOC
    (TFH) ERROR: OS error message: Invalid argument
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: job finished with 1 error(s)
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: END OF LOG: 20051220103506
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: START OF LOG: 20051220103630
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#4 $ SAP
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: version R7.00/V1.4
    Compiled Sep 14 2005 23:24:01
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe -dbcodepage 1100 -i test_MIGKEY.cmd -l test_MIGKEY.log -K
    DbSl Trace:   prepare() of C_0000, rc=1, rcSQL=-942 (POS(28) Unknown table name:SVERS)
    DbSl Trace: SQL PREPARE on connection 0, rc=-942 (POS(28) Unknown table name:SVERS)
    (DB) INFO: connected to DB
    (TFH) ERROR: Unable to open
    desktop-win2k\j$\SAPNW2004sSneakPreviewABAP\NSPExport\ABAP\DATA\SAPAPPL0.TOC
    (TFH) ERROR: OS error message: Invalid argument
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: job finished with 1 error(s)
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: END OF LOG: 20051220103630
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: START OF LOG: 20051220104846
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: sccsid @(#) $Id: //bas/700_REL/src/R3ld/R3load/R3ldmain.c#4 $ SAP
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: version R7.00/V1.4
    Compiled Sep 14 2005 23:24:01
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe -dbcodepage 1100 -i test_MIGKEY.cmd -l test_MIGKEY.log -K
    DbSl Trace: Connect to database failed, rc = -10709 (Connection failed (RTE:database not running))
    (DB) ERROR: db_connect rc = 256
    DbSl Trace: Connect to database failed, rc = -10709 (Connection failed (RTE:database not running))
    (DB) ERROR: DbSlErrorMsg rc = 99
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: job finished with 1 error(s)
    C:\usr\sap\NSP\SYS\exe\nuc\NTI386\R3load.exe: END OF LOG: 20051220104846

  • Can you install the Office Web Application Server on one of the App Servers for SharePoint 2013?

    Hi,
    Is it possible to run Office Web Application Server (shows preview images for docs and allows Notepad, Word, Excel to work etc) on one of the SharePoint 2013 App Servers. I don't want to have to create a new server. It talks about setting
    up a farm. 
    Better still how the feck do you switch this functionlity off - I always remember it being a pain in the arse. We accidentally ran the first part of the configuration on one of the SharePoint App Servers only to find out our subscription does not
    have this download (bar stewards changed this Nov 2014 - just after started contract).    
    Help would be much appreciated as close to go live
    Thanks.
    John.

    Hi John,
    Please reboot the server at the very beginning and test the issue again.
    Quote from you:
    Problem is I get Internet Web Page cannot display the webpage everytime I click in a excel document, powerpoint document, notebook link or the preview
    Please post the url in browser address here.
    If you just executed the command below:
    Add-WindowsFeature Web-Server,Web-Mgmt-Tools,Web-Mgmt-Console,Web-WebServer,Web-Common-Http,Web-Default-Doc,Web-Static-Content,Web-Performance,Web-Stat-Compression,Web-Dyn-Compression,Web-Security,Web-Filtering,Web-Windows-Auth,Web-App-Dev,Web-Net-Ext45,Web-Asp-Net45,Web-ISAPI-Ext,Web-ISAPI-Filter,Web-Includes,InkandHandwritingServices
    It just install some windows feature to the current server, we can find it should be done before installing several server products.
    Could you please verify if the command you executed is the same as the one above?
    You could also go to local disk and check if there is OfficeWebApps folder under C:\ProgramData\Microsoft\?
    If you check in Control Panel > Programs, is there any feature related to Office Web Apps?
    If you have confirmed there is no Office Web Apps feature installed, please go to SharePoint document library settings, and make the document to open in client, does it work?
    Regards,
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact
    [email protected] .
    Rebecca Tu
    TechNet Community Support

  • How to find out the web/app server used by OBIEE and OBIEE HomePath (Urgent

    Hi All ,
    I have two questions
    1) I wanted to know the OBIEE home path if it is installed on the some other machine (Client's Machine).
    I wanted to update the .css files present on the machine, but before updating the file i should know the home path, to reach the desired .css file and update accordingly. I dont know where they have installed OBIEE.By default OBIEE home is (c:\) but if the user has selected some other drive then, how we can find the OBIEE Home path?
    I have the access to the machine.
    2) The path of the CSS files depends on the web server used by OBIEE.
    When IIS web server is used, the CSS files in OracleBI_HOME\web\app\res directory
    when OC4J is used, the CSS files in OracleBI_HOME\oc4j_bi\j2ee\home\applications\analytics\analytics\res
    so inorder to update i must know which server is being used.
    Is there any way to find out which web application server is installed on the clients machine?
    Thanks in advance.!!!!!

    Please see responses to your first posting here: OBI EE Home Path

  • The ITS could not connect to the Web Application Server or the R/3 System

    Hi Gurus
    we are in the process of insalling ITS 6.20 (ITS version is 620010318381 ( itsWindowsX64_31-200001681, R/3 4.7 200)
    Actually we installed it for dev/qas server with connectin mode property as "Connect to SAP system Using Applicatin Server"  these are working fine for webgui!
    and the same thing i installed for Production as connection mode property as " Connect to SAP System Using message Server" (hostname/IP, port as 3600 (as instance number is 00) here in the production evnironment we have 2 app servers. The installation got successful but i am not getting the log on screen through the link: http://10.3.3.175:81/scripts/wgate/webgui!
    the error message is :
    Connect Error
    The ITS could not connect to the Web Application Server or the R/3 System
    any help please
    Thanks in advance

    Hello Balaji,
    Check the global.srvc file for errors in the R/3 system information.  The ITS uses the following to connect to your system:
    ~appserver     
    ~routestring     
    ~systemname
    ~systemnumber     
    ~logingroup     
    ~messageserver     
    Which parameters are used depend on how you are connecting (logon group, route string, etc.)
    Edgar

  • ITS could not connect to the Web Application Server or the R/3 System

    ITS 6.20 on a single host on a WinXP test machine, connecting to R3 4.6C.
    The webgui <u>was</u> working, but a test application created in the WebStudio would not work.
    Now it's the other way around, the test application works fine, but the webgui fails with a "The ITS could not connect to the Web Application Server or the R/3 System."
    I have not managed to get ../scripts/wgate/admin/! to work either.
    Is it possible to have both the webgui and WebStudio created applications, working on the same ITS installation?
    If yes, any ideas how?
    Many thanks
    Tim

    Hi Tim,
    You have to check the connection data in the relevant service file e.g.
    ~systemname   
    ~messageserver
    ~logingroup   
    ~appserver    
    ~systemnumber 
    ~routestring  
    ~connectstring
    If the Agate doesn't run you would see an ITS 500 error in the browser.
    Thanks and regards,
    Dieter

  • Content repository FD does not exist :user agent sap web application server

    Hi All
    i am using 3rd party software(dms SERVER) and connecting it using archive link interface SAP HTTP 4.5 AL
    i have created a new repository with name FD using tcode OAC0.when i give inputs in OACO and click on test connection it gives me information Content repository FD does not exist
    here is my HTTP trace at receiver content server side
    TRACE:(5) - GET /Default.aspx?serverInfo&pVersion=0045&contRep=FD HTTP/1.0
    TRACE:(5) - user-agent: SAP Web Application Server (1.0;700)
    TRACE:(5) - host: SERVERIP:PORT
    TRACE:(5) - accept-encoding: gzip
    TRACE:(5) -
    --> C05 --> S06 ==== (15.583) Request <GET /Default.aspx?serverInfo&pVersion=0045&contRep=FD HTTP/1.0>
    --> C05 --> S06 GET /Default.aspx?serverInfo&pVersion=0045&contRep=FD HTTP/1.0
    --> C05 --> S06 user-agent: SAP Web Application Server (1.0;700)
    --> C05 --> S06 host: SERVERIP:PORT
    --> C05 --> S06 accept-encoding: gzip
    --> C05 --> S06 ==== Body 0 bytes
    --> C05 --> S06 Body =>
    Sockets 6 of 4,5,6 need checking ####
    TRACE:(6) - HTTP/1.1 200 OK
    TRACE:(6) - Cache-Control: private
    TRACE:(6) - Content-Length: 189
    TRACE:(6) - Content-Type: text/plain; charset=utf-8
    TRACE:(6) - Server: Microsoft-IIS/7.5
    TRACE:(6) - X-AspNet-Version: 2.0.50727
    TRACE:(6) - boundary:
    TRACE:(6) - X-dateC: 2010-10-22
    TRACE:(6) - X-timeC: 07:07:23
    TRACE:(6) - X-dateM: 2010-10-22
    TRACE:(6) - X-timeM: 07:07:23
    TRACE:(6) - X-contentRep: FD
    TRACE:(6) - X-numberComps: 1
    TRACE:(6) - X-docId: 0
    TRACE:(6) - X-docStatus: online
    TRACE:(6) - X-pVersion: 0045
    TRACE:(6) - X-ContentServer: contentServer=Server ip;contentServerPort='9025;pVersion='0045';id='DMSSRV1'
    TRACE:(6) - X-Powered-By: ASP.NET
    TRACE:(6) - Date: Fri, 22 Oct 2010 13:37:23 GMT
    TRACE:(6) - Connection: close
    TRACE:(6) -
    TRACE:(6) - serverType='DMSSRV1';1;serverVersion=12;serverPatch=0;serverBuild=180;pVersion='0045';serverStatus=running;serverStatusDescription=;serverDate='2010-10-22';serverTime='07:07:23';startUpDate='2010-10-22';startUpTime='07:07:23';lastAccessDate='2010-10-22';lastAccessTime='07:07:23';contRep='FD';contRepStatus=defined;contRepStatusDescription=;contRepDescription=Content-Repository Test;contentStorageHost=localhost;contentStorageName=FD;secKeyVerification=y;defaultDocProt=rucd;
    one change which i have observed in this trace is .. this trace is showing trace agent as SAP Web application server ... ideally it should show user agent :SAP HTTP
    Please suggest me some solution.
    Thanks
    sandeep

    Dear all,
    my issue is resolved.I solved my issue myself
    solution: SAP sends HTTP request in the form of URL like
    http://serverip:port/GET /Default.aspx?serverInfo&pVersion=0045&contRep=FD HTTP/1.0
    Now your response should contain string  contRep="FD"
    dont forget double quotes on repository name coz SAP program matches string with double quotes. if you will return value like this contRep=FD
    this will through error.
    Thanks
    sandeep sharma

  • How to start and stop Oracle Application Server from ANT

    How to start and stop Oracle Application Server and Web application from ANT
    Thanks in Advance.
    Mani

    Hi,
    You can use: startManagedWebLogic.sh, it is in your domain directory and you have to execute it in this way
    ./startManagedWebLogic.sh managedServerName http://adminServerHost:adminServerPort
    For instance, in my case I use:
    unixserv01:/webportal/domains/appServerWeb/bin>startManagedWebLogic.sh managedServ01 http://pelma3w3per01.mesaperu.next:7001
    You have to run it on the machine where the managed server was installed.
    Best regards,
    Raúl

  • Configure Web Application Server

    Hi How I can configure web application server
    I'm geeting the pop up which require web application credential pls advice.
    I'm installing on my client desktop
    what should be the following information:
    port:
    username:
    passowrd:
    Server Instance:
    Virtual host:
    Service name:
    App server installation directory:
    I am installing the SAP Trial version and in that I am installing everything from the Custom option
    I have installed SAP BO Edge Trial and Crystal Reports 2008
    Can anyone please advise me what would be the parameters i need to insert as I have gone through the webblogs
    /people/ingo.hilgefort/blog/2008/11/19/businessobjects-integration-with-sap-netweaver-bi--technical-material
    but the details are not mentioned
    Regards
    JM

    thanks alot
    but for the trial version which SAP has provided there is no TOMCAT server in that
    and when i check my Central Configuration Manager there is just one service (Server Intelligence Agent) running and if I see the details like manage server then no service of TOMCAT is listed there
    Do i need to install TOMCAT separately bcoz my BusinessObject Edge Series server is working fine
    Please advise
    Regards
    JM

  • Update Planning table but need to restart Web application server

    Hi All,
    We want to update the process state externally. After updating table, Windows services (Web application server) need to be restarted.
    However, the updating operation could be done frequently so that we can get real-time result. How to notify Planning application to refresh its data without restarting services ?
    Any ideas or suggestions will be appreciated.
    Edited by: kyhsu on 2009/11/24 下午 10:59

    Hi,
    Planning uses a caching system where it caches the current state of the relational tables. If changes are made in planning then the cache is updated and the tables.
    If you update the tables directly the cache will not be updated so planning will still hold its previous state. I don't think there is an easy way round this and there is no simple update cache procedure.
    If you do need to update tables directly then the only sure way of clearing the cache is to restart the web app.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Installation of SAP Web Application Server Java 6.40 SP9 (SAP Press)

    I wanted to install the Net WeaverDeveloper Studio and Development Infrastructureprovided on the CD (SAP PRESS) SAP Web Application Server. After starting the installtaion prcedure from the CD I get following message:
    An Error occured during the installation of MaxDB > CentralSystem > Migration - Target System Installation. After pressing TheLogViewButton I get the LogBrowserInformation:
    1.
    WARNING 2006-08-15 12:47:25
    Error 5 (Zugriff verweigert
    ) in execution of a 'RegOpenKeyEx' function, line (67), with parameter (SYSTEM\CurrentControlSet\Services\EraserUtilDrv10620).
    2.
    WARNING 2006-08-15 12:47:25
    The subkey 'HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\EraserUtilDrv10620' does not exist on the 'localhost' host.
    3.
    WARNING 2006-08-15 12:47:25
    The step setDefaults with step key Development_Workplace_SAPPress|ind|ind|ind|WebAS|640|0|J2EE_SystemCopy|ind|ind|ind|ind|ind|0|J2EE_EngineEnterpriseDialogs|ind|ind|ind|WebAS|630|0|setDefaults was executed with status ERROR.
    It's impossible for me to install this release. Could anyone help me to get the Product installed?????????
    Thanks

    Halo Mikael,
    I haven't installed anti-virus functionality. In the meantime I could install the DB as well the NetWeaver seperately which doesn't help me further because I don't get any conection to the WebAs fro deployment. I get following message while trying to deploy:
    Deployment exception : Cannot determine sdm host (is empty). Please configure your engine/sdm correctly !
    I don't know where the engine has been installed and how to configure it. 
    If Itry to configure the eingine via WIndow>Preferences> SAP J2EE engine : engine installed on localhost ; then I get the following message:
    No local engine could be found.
    No systemcould be found under
    Pal-Singh
    sapmnt.
    It's realy very frustrating. Could you please help me to get further?????????
    Thanks with best regards.

  • License Keys for J2EE-Engine_ORA SAP Web Application Server.

    Hi Experts
    I have installed SAP Net Weaver 04 support release 1 > oracle JAVA System. I don’t have ABAP system on same Hardware so I cant used SLICENSE GUI transaction code, how I generate hardware key, I am performing installation on Windows 2003 server.
    Now I want to add License Keys for J2EE-Engine_ORA SAP Web Application Server. So please give me producer for how to add license key.
    Regards,
    Rahul

    Hi
    Go to  Visual Administrator in the following path:
    <Your Server> -->  Services --> Licensing  Adapter to get the Hardware key , SID etc . Ten apply license in
    https://service.sap.com/licensekeys
    Once you get the license from SAP, do the following
    ->Download the license  file to a local disk
    --> Start the Visual Administrator  Server --> Services --> Licensing Adapter
    --> Use the Install License From File button to upload the file
    --> Select the file with the downloaded license key
    --> Choose Open to continue
    After installation restart J2EE engine
    Thanks
    Prince Jose

Maybe you are looking for

  • Issue with Automatic Purchase Order creation.

    Hello I am creating Automatic Purchase Order via transaction ME59N. I have  1 Purchase Requistion for 2 line items having 2 materials .When I create PO the system is creating 2 different PO's instead of one PO even though the Vendor is same.I am not

  • Can you route documents in Adobe Reader?

    I need help in routing a document in Adobe Reader if thats possible?

  • Purchased ringtones disappeared after Transferring to computer

    I just purchased 4 ringtones from my iphone4. Afterwhich, I hooked it up with iTunes and clicked 'Transfer purchases'. Of the 4 ringtones, only 1 is listed in my iTunes Ringtone and Puchased folders. The 3 are also gone from my iphone. I've never had

  • Schema binding versus XML data binding

    I have been able to create a fillable XFA form using XML data and employing the xfa.host.importData(""); script. This has worked well. I now find that I must do a similar thing - only using a schema to bind the data to the PDF form fields ... Can you

  • When is the next iPod update (5G)

    Are they ever going to plan on a new OS update for this iPod?