Single file custom logging for portal service in 7.31

Hello Experts,
I have a portal service.
The service writes sensitive data to the DB and therefore I need tracing mechanism.
Until now I've used a custom txt file but now I want to use the SAP J2EE logging infrastructure (for performance, identifying user sessions etc...)
Since the severity of the messages will be set to 'info' I don't want to write the log entries to 'defaultTrace.trc', I want to write it to a custom file.
I'm aware of 'ForceSingleTraceFile' parameter but where can I set the logging properties? (in older portals I could use logger.xml in my portal component project and set a custom log file but as far as I understand 'logger.xml' is not supported anymore and its parameters are ignored).
Where can I find the documentation for setting logging properties for portal service in 7.31?
J2EE/Portal version is 7.31 SP7.
Regards,
Omri

hi omri,
please have a look at this documentation (SpecificDestinationLogControllers - http://help.sap.com/saphelp_nw73ehp1/helpdata/de/2b/09343e32ff1033e10000000a114084/frameset.htm)
regards,
christian

Similar Messages

  • (261936172) Q general Are there seperate logs for web services?

    Q<general> Are there seperate logs for web services?
    A<general> It does not appear that there are any separate logs for web services.
    There is knex.log file that records the errors that occur during deployment of
    your .jws files. There is also the standard server log that provides information
    about server status - you can write to this programmatically if you wish. There
    is also the access.log file which record all the HTTP requests so this might cover
    some of your web service requests that are transmitted over HTTP.

    Maybe the user has deniad Access to the Runbook, check in Runbook Designer.
    Seidl Michael | http://www.techguy.at |
    twitter.com/techguyat | facebook.com/techguyat

  • Change log for CRM service order

    Dear Experts,
      I've created log profile in CRM under IMG path Customer Relationship Management->Basic Functions-> Change log with protocolo " Changed document "  & segment " PRICING_I ". This log profile is attached to transaction type service order.
    Basic idea is to capture the changes made on the pricing in service order. Now with this setup where can i see the trace of changes done in service order. Is there any table that fills with the log  ? 
    Basically i'm trying to find log DB table for pricing with this setup.Can anyone pls suggest me to resolve the issue.
    Regards
    Devika.S

    Hi,
    there are no change logs for CUMULAT_H object because this is only a temporary object in CRM Order buffer. Check for example the function module CRM_CUMULAT_H_READ_OB. You will find out the this module does not read the CUMULATE_H from the DB cumulates the values by reading the item values.  Because of that you will also see that in view CRMV_OBJECTS the change document relevance is not maintained for this object.
    So you will not a change entry for CUMULAT_H in CDHDR/CDPOS. As a workaround for your requirement you can read the changes of CRMD_PRICING_I-NET_VALUE from the change document tables or write a change entry on save into a customer field and/or table.
    Regards
    Nicolai

  • Custom Token For web services security

    How can I implement a token based security for web services? I will return a
    custom token which contains a session-id among others after a JAAS
    authnetication. I want to pass this token for every web service invokation.
    I want the serverside EJB methods to be authorized based the roles in token.
    Any ideas or pointers on the possible solutions?
    Thanks,
    Vish

    How can I implement a token based security for web services? I will return a
    custom token which contains a session-id among others after a JAAS
    authnetication. I want to pass this token for every web service invokation.
    I want the serverside EJB methods to be authorized based the roles in token.
    Any ideas or pointers on the possible solutions?
    Thanks,
    Vish

  • Is there any file transfer log for Blutooth?

    Hi All,
    Is there anyway to know which all files were transferred via Blutooth in N72.
    I think some of my personal files were transferred, is there anyway to know that?????
    Is there some kind of log for blutooth????
    Thanks in Advance,
    Sathya

    HI,
    there isnt this kind of log in your phone.
    NOKIA means:Night Of King In Alone

  • ESB:  Is it possible to create custom WSDL for routing service?

    Hello all!
    I have an unchangeable requirement in my project - ESB routing services must confom to WSDL specifications that are already used before we started this integration project.
    For example, we have to implement not only the same logical part of WSDL description:
    <message name="AuthorisationRequestSoapIn">
    <part name="AuthorisationRequest" element="tns:AuthorisationRequest"/>
    </message>
    <message name="AuthorisationRequestResponseSoapOut">
    <part name="AuthorisationRequestResponse" element="tns:AuthorisationRequestResponse"/>
    </message>
    <portType name="OnlineServicesSoap">
    <operation name="AuthorisationRequest">
    <input message="tns:AuthorisationRequestSoapIn"/>
    <output message="tns:AuthorisationRequestResponseSoapOut"/>
    </operation>
    </portType>
    but the binding and service sections must conform to WSDL document too:
    <binding name="OnlineServicesSoapBinding" type="tns:OnlineServicesSoap">
    <soap:binding transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="AuthorisationRequest">
    <soap:operation style="document" soapAction="AuthorisationRequest"/>
    <input>
    <soap:body use="literal" namespace="http://..../OnlineServices"/>
    </input>
    <output>
    <soap:body use="literal" namespace="http://..../OnlineServices"/>
    </output>
    </operation>
    </binding>
    <service name="OnlineServicesSoapService">
    <port name="OnlineServicesSoapPort" binding="tns:OnlineServicesSoapBinding">
    <soap:address location="....."/>
    </port>
    </service>
    And after registration of ESB routing service I've got the following service description (I ommit esb bindings and logical part here, it's ok with messages and portTypes):
    <binding name="__soap_OnlineServicesSoapService_OnlineServicesSoap" type="import:OnlineServicesSoap">
    <soap:binding xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="AuthorisationRequest">
    <soap:operation xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" style="document" soapAction="AuthorisationRequest"/>
    <input>
    <soap:body xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" use="literal"/>
    </input>
    <output>
    <soap:body xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="ESB_OnlineServicesSoapService_Service">
    <port name="__soap_OnlineServicesSoapService_OnlineServicesSoap" binding="tns:__soap_OnlineServicesSoapService_OnlineServicesSoap">
    <soap:address xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" location="http://..../event/DefaultSystem/OnlineServicesSoapService"/>
    </port>
    </service>
    How can I change WSDL that is generated for routing services? Is it possible to change the names of port and binding element?
    Thanks in advance,
    Oleg Olenin

    So, no docs, no answers, no life :) - I have only one way to get the answers:
    oracle.tip.esb.configuration.util.WSDLGenerator.addSOAPBindings():
    binding.setQName(new QName(targetNamespace, WSDLConstants.generateSOAPPortName(service.getName(),portType.getQName().getLocalPart())));
    oracle.tip.esb.configuration.util.WSDLConstants:
    public static final String generateSOAPPortName(String service, String operation)
    return "__soap_" + service + "_" + operation;
    So it is not possible to change the names of SOAP binding and port.
    And I guess there is no way to change WSDL that is generated for routing services.

  • Deactivate logs for determinate services (interfaces)

    Hi,
    It´s possible to deactivate the logs for some interfaces and to have the rest active?
    Regards.

    Hi,
    I find this http://help.sap.com/saphelp_nw04/helpdata/en/41/b715015ffc11d5b3ea0050da403d6a/content.htm
    It possible to configure in Integration Engine menu the persistence of message.
    This solution is geneal for all interfaces, no for determinated messages :*(
    Anyone knows any way to do this?
    Message was edited by:
            Iñaki Vila

  • ADF custom binding for given service data model

    hi
    I have this business service that has a given data model. I would like to bind ADF Faces components to this data model.
    two examples:
    (1) The data model has a date attribute somewhere that holds the date of when something has been "checked"/"approved". The user interface should present this information as a regular checkbox.
    (2) The data model has some attribute as "multilingual text". It is like a regular text attribute, but the text (data) has been translated. The user interface should present this information as a regular text input field, but depending on some "selected"/"current" language.
    I looked at this example from Steve Muench about custom binding:
    http://otn.oracle.com/products/jdev/tips/muench/custombinding/CustomAttrBindingClass.zip
    I have found some "solution" to implement the kinds of custom binding I need:
    http://verveja.footsteps.be/~verveja/files/oracle/CustomBindingStuff-v0.08.zip
    (Check the README.txt file.)
    I extend JUCtrlAttrsDef and JUCtrlAttrsBinding, introduce a ConversionProxyRule interface and added meta-data to the <x>PageDef.xml files.
    JDeveloper shows warnings like these in the "Compiler - Log", but it all seems to work fine:
    Warning(55,62): <Line 55, Column 62>: XML-24534: (Error) Element 'NamedData' not expected.- questions:
    (1) Do I really need all this, have I missed some typical approach for this?
    (2) How do I now that "extending" the binding this way, doesn't break in the next JDeveloper release?
    (3) What alternatives are there to approach this kind of "binding requirements"?
    many thanks
    Jan Vervecken

    (1) Is the simplest overall and the solution I myself would do, but given your comments....
    (2) This would be the second easiest, but would involve some delegation, sure.
    (3) Involves creating custom binding objects, which while possible, we don't have much documentation on that
    JDeveloper shows warnings like these in the "Compiler - Log", but it all seems to work fine: Warning(55,62): <Line 55, Column 62>: XML-24534: (Error) Element 'NamedData' not expected.
    This is an XMLSchema validation failure since the schema for the <attributeValues> element in that namespace does not allow <NamedData> children, only the <action> element does. You can extract all the schemas from the adfdt_common.jar file in the ./adfdt/lib directory to have a closer look at that.
    - questions:
    (1) Do I really need all this, have I missed some typical approach for this?
    I mentioned a straightforward approach that in my opinion doesn't qualify as radically altering your data model, but I respect your opinion to see that differently of course. :-)
    The approach I mentioned would be the typical approach for this case.
    (2) How do I now that "extending" the binding this way, doesn't break in the next JDeveloper release?
    There is no 100% guarantee other than the fact that we try our best not to perform breaking changes since keeping upward compatibility is something we've tried to do since the beginning.
    (3) What alternatives are there to approach this kind of "binding requirements"?
    We've discussed the three alternatives above that I can think of. This doesn't preclude others, but those are the first three we both thought of... I hope others chime in with some insights based on there experiences, too.

  • Custom report for SLA - service desk

    Hello,
    Untill now we are using solar_eval as our report tool for the SLA functionality in service desk management. But this report does not give all the information we want to have. So do we also like te have the average response times. Does anybody have a custom ABAP-report which we can use ??
    Regards,
    Gert-Jan van Holland

    Thankyou for your reply, but i cannot see any differences in CRM_DNO_MONITOR transaction and that should be shown the product right and i still got my "first respons time and date , completion time and date blank. ? i already activate the action. Please guide me what should i do next, after i activate the action.
    Many thanks
    dinie.

  • Using a single HeaderHandler of JaxWS for multiple services

    Hi,
    In our application,we are using 3 different services.The authentication credentials are different for each one of them.So,we have created 3 different Headerhandlers for each one of them.
    I wish to know if it is possible to have a single HeaderHandler for all 3 services.Please let me know if we can set the username/password in Headerhandler at runtime.
    I am not able to pass the parameters in handleMessage(SOAPMessageContext smc).
    Please suggest.

    Hi Phillip,
    both scenarios will work. One CSS can certainly manage more than 3 services! You can even use just one VIP for all traffic, then just create the proper rules to send specific traffic to the corresponding service(s). No need for 3 VIPs.
    Regards
    -juerg

  • Web Dynpro file save dialog - for portal

    Hi everyone,
    I am currently building a Web Dynpro application in which I need to display a File Save Dialog popup on the Netweaver Portal.
    Now, I used the standard file_save_dialog method from the class CL_GUI_FRONTEND_SERVICES, but this gives me a dump on the Portal saying: Exception condition "NOT_SUPPORTED_BY_GUI" raised.
    I believe that this is because the method file_save_dialog displays the popup in the backend but cannot render the functionality on the front-end portal.
    Please advice if there is any suitable method / function module which does the same functionality and is compatible with the front-end.
    Thanks in advance for your help....
    Kind Regards,
    Shailesh.

    hello friend,
    you can use two different approach to achieve your requirement:
    1. using filedownload control in Webdynpro ( CL_WD_FILE_DOWNLOAD )
    2.
    CALL METHOD cl_wd_runtime_services=>attach_file_to_response
          EXPORTING
              i_filename      = 'Sales.xls'
              i_content       = xstr
              i_mime_type     = 'EXCEL'
              i_in_new_window = ABAP_FALSE
              i_inplace       = ABAP_FALSE
    Hope it helps.
    Best Regards,
    Jerry

  • I want to file a complaint for store service

    I recently had a very bad store service at Verizon Tysons Corner in Mclean, VA.
    Address for the store is:
    8078 Tysons Corner Ctr
    Mc Lean, Virginia 22102
    It was the worst service I've ever been thourgh, the sales person and the store manager were very rude and not professional about product/service/plan at all, I wonder how can I file a complaint? I can provide the names of those 2 persons and the detailed experience in later conversations. Thanks!

        This is definitely not the experience we want our long time and loyal customers to have. It's truly saddening to hear of your recent interaction. Please provide the associates name(s) so I may assist with submitting feedback. Thank you for your time.
    YosefT_VZW
    Follow us on Twitter @VZWSupport

  • Set a custom path for the service endpoint associated to a BPEL process

    Hello,
    I have a BPEL process and I would like to change the endpoint address of the corresponding web service that corresponds to the BPEL process.
    To be more specific, by default, the web service corresponding to a BPEL process "MyProcess" has an endpoint like: http://MyMachine:9700/orabpel/default/MyProcess , supposing that the process is deployed in the default domain.
    What should I do to have an endpoint like
    http://MyMachine:9700/orabpel/default/MyPath/MyProcess ?
    Is it possible?
    Thanks in advance!
    Regards,
    Marinel

    Figured out that the configuration property 'location' for the PartnerLinkBinding Deployment Descriptor can be used for this purpose. Tried it and it is working out perfectly fine.
    Thanks,
    Vijay.

  • How do I clear the downloads list or a single file in ff for android?

    how do i clear downloads?

    Hi,
    Just long-tap a download and select Delete to remove it. Currently, there is no way to clear the whole list with one action.
    Thanks,
    Michelle

  • How to expose/convert my Portal Service as/to a Web Service??

    Hi Experts,
    How can i expose my Portal Service as a Web Service??
    What configuration i need to do for that???
    Please reply.
    Help will be rewarded and Appreciated.

    hi
    In NWDS go to
    New ->other -> portal application -> portal application object ->
    portal web services -> portal web services from portal services and select ur portal service.
    Generate portal web service with PDK wizard by choosing  Portal web service from portal service
    Select the interfaces by clicking the browser button.
    select the methods to be exposed to web service.
    Now WSDL files are generated for portal services.
    You can view the WSDL by going to
    System administration->support->portal runtime -> soap admin -> web services
    Regards,
    Ganesh N

Maybe you are looking for