How to define configurable Properties in WAS - CE 7.1 ??

Hi,
You can visit NetWeaver Administrator Web Page of your server:
[http://<server>:<port>/nwa|http://<server>:<port>/nwa]
You must have Admin rights to do so. And you can see/edit properties from various tabs and not under single tab.
Reason: All the properties are not assembled and may not have single portal role. They are scattered and might be you have to search into right tab (role) to modify any property after logon to portal.
-kunal kotak

Hi,
Where in under NWA ????
From where can i view all deployed application in NWA ???
I have all administrator roles.
Regards,
Satya.

Similar Messages

  • How to define own properties

    Hi,
    I would like to know how to create own properties of own iView which can be set on EP after deploying.
    For example: on URL iView can be set URL, request method, etc.
    How to create parameters like these?

    Hi Mrkvica,
        You can add properties in component profile of  portalapp.xml file which can be modified later.
    Check out the following xml and the java code.
    <?xml version="1.0" encoding="utf-8"?>
    <application>
      <application-config>
        <property name="PrivateSharingReference" value="com.sap.portal.htmlb"/>
      </application-config>
      <components>
        <component name="display">
          <component-config>
            <property name="ClassName" value="com.ust.table.display"/>
            <property name="SecurityZone" value="com.ust.table/high_safety"/>
          </component-config>
          <component-profile>
            <property name="System Alias" value="BWDEV" />
          </component-profile>
        </component>
      </components>
      <services/>
    </application>
    to get the property "System Alias" of the component.
    IPortalComponentRequest request = (IPortalComponentRequest) this.getRequest();
             String system = request.getComponentContext().getProfile().getProperty("System Alias");

  • How to define if iPhone was activated and when?

    My friend is living in Russia (I myself in Canada). Recently she bought iPhone in the shop. When she opened the box she found an old used iPhone there.
    Management of the store refused her to return the product.
    She put complains to police. Now she is trying to prove that the used iPhone  she received was activated before she bought it.
    How she can define when purchased  iPhone was activated initially? (She has iPhone ID on the product).
    Where she can file a complain about switch of the products? May be Apple is interesting to know about such cases?
    Thank you.

    Put the serial number in here: https://selfsolve.apple.com/agreementWarrantyDynamic.do
    Since the phone has a 1 year warranty from the original date of sale, you should be able to tell when the phone was originally sold based on the end date of the warranty.
    There's nothing Apple can do about it. The gray market for iPhones is huge and it is not necessarily illegal to re-sell an iPhone that was privately purchased.

  • I have been interested in how lightroom uses the catalog so was poking around a backup of the catalog. I found it rather concerning that although the database (catalog) is pretty well designed, there is no referential integrity defined or enforced.

    I have been interested in how lightroom uses the catalog so was poking around a backup of the catalog.  I am a database administrator and I found it rather concerning that although the database (catalog) is pretty well designed, there is no referential integrity defined or enforced. This is non-standard practice and could well be the source of corrupt catalogs I have seen many people complain about. I would strongly recommend the developers modify the catalog and adopt best practices if they want to improve the stability of Lightroom and the catalog.

    I would imagine that data integrity is not enforced for performance reasons. In a closed environment like LR where the application has complete control over the data, enforcing data integrity may not be worth the performance hit. Often what is done in an environment like this is to have data integrity on in test environments which would expose data integrity bugs but where the impact of performance is low. In "production" it is then turned off to get as much performance as possible. I would say there are many more complaints about performance than corrupt catalogs. And corrupt catalogs are more likely due to interruptions in writing to the catalog (like crashes, backups or dropbox activity while LR is running, etc). Data integrity would not help in these cases as they are outside the databases control.

  • How can configure .properties file and  log4j on weblogic 8.1 SP5

    Hi,
    I know this is not right forum for post this question.But I hope I'll get my perfect answer here.
    I have 2 questions.
    1. Where I'll keep my .properties file in weblogic 8.1 SP 5. means I have one own .properties file which is contains some proxy settings and this .properties resides on .war file(now), But I want move this propeties file outside .war file. So Where I'll keep in weblogic 8.1 SP 5.
    2. How can we configure log4j in weblogic?
    Please reply me.
    Regards,
    Pattanaik

    You can add your.properties and log4j.properties to the classpath cant you?
    You just need to edit setEnv.cmd (if i remember correctly) in your weblogic server folder to add the folder containing the properties files to the classpath variable.

  • How to load a properties from path that is relative to the classpath

    Hello;
    I need to load a set of properties from a propertie file from inside and EJB. I need to do so that I don't set the full absoulte path of the property file. In brief I don't want to be dependent on the file system struture instead I want to read the property file relatively to the package path name.
    Here is my code:
    package packagename.com;
    import packagename.com.*;
    import java.util.*;
    import java.io.*;
    public class PropDemo {
    public static void main(String[] args) {
    public static final String PROP_FILE_NAME
    = "configuration.properties";
    File inputFile = new File(PROP_FILE_NAME);
    Properties prop = new Properties();
    try {
    FileInputStream fis = new FileInputStream(inputFile);
    prop.load(fis);
    } catch (Exception e) {
    Any body have an idea how to so.
    Regards
    mal

    I realize that you are trying to be a pain in the arseNot really. I know that I spent about a day figuring it out and that was after skirting around the issue for a about a year.
    with that reply, but we can look here:
    public void load(InputStream inStream) throws
    IOExceptionReads a property list (key and element pairs) from the
    input stream. The stream is assumed to be using the
    ISO 8859-1 character encoding.
    The original post suggests the author already knows how to load from a file. So this doesn't help at all.
    And possibly GASP cross reference this entry in
    Class:
    public InputStream getResourceAsStream(String name)Finds a resource with a given name. This method
    returns null if no resource with this name is found.
    The rules for searching resources associated with a
    given class are implemented by the defining class
    loader of the class.
    Now you may equivocate that the docs don't
    specifically state that the classpath is where
    resources are searched for, but I would maintain that
    any Java developer worth anything should know this.Really? So where, in the above entry, does it explain the impact of the "/" character at the beginning of the string?
    I know how classes are searched for. I know the impact of the class path. How that impacts a 'resource' is less clear. Particularily since the "/" character has nothing to do with loading classes.
    >
    This should be Java 101. Advanced Topics should be
    something that affect people who have programmed Java
    for years. (This is usually something that first year
    programmers work out). If this is representitive of
    the kinds of questions that qualify as "Advanced" then
    this forum will become basically useless.So an opposing opinion...this is an advanced topic. Nothing in the java docs makes it clear. And it is even less clear the context of a container.

  • How to define the default activity for an unbounded task flow?

    In the new "Fusion Developer’s Guide for Oracle Application Development Framework 11g Release 1" documentation at the bottom of page 14-3 it states "An unbounded task flow .... contains a default activity, an activity designated as the first to run in the unbounded task flow, because an unbounded task flow does not have a single point of entry."
    What I can't find is how to define the default activity in an unbounded task flow and where this is recorded? Can we set this via the task flow diagrammer, and which configuration file is it stored?
    I note the first time I run the application with an unbounded task flow a dialog asks me which of the activities in the adfc-config.xml file to make the default, but I can't find where this is recorded.
    Anybody have any ideas?
    Thanks,
    CM.

    Chris,
    In fact this information is nothing that belongs into the taskflow meta data because unbounded taskflow have more than one entry point and there is no notion of default. Its a tools setting (JDeveloper) we had before
    Frank
    Message was edited by:
    Frank Nimphius

  • How to define new classpath of libraries while making jar files with ant

    I am useing eclipse and ant and trying to make a jar file. I have used some external jar files. I have managed to add external jar files to my jar. But Still I have a problem. In my project all libraries in lib folder. But when I put them into jar file. They are in the root folder.Classpath has changed and It couldn't find the class path.
    Is there any body knows how to define a new class path for external libraries with ANT. or How can I put my libraries into a lib folder in jar ?? I think both of them would solve my problem.
    thanks in advance.
    My code is like that, I think it requires a little modification
    <target name="jar">
            <mkdir dir="build/jar"/>         
            <jar destfile="build/jar/Deneme.jar" basedir="build/classes" >             
                <manifest>
                    <attribute name="Main-Class" value="${main-class}"/>                    
                </manifest>             
                 <fileset  dir="${lib.dir}" includes="**/*.jar"/>           
            </jar>
        </target>

    I can see why your other "question" was likely deleted. You need to drop the editorial comments and just ask a question. I believe what you want to know is how to configure something using php on your Apache server so that it can be read. If that's your question, here's a couple of places that discuss the topic:
    http://www.webmasterworld.com/linux/3345459.htm
    http://forums.macrumors.com/showthread.php?t=427742
    http://en.allexperts.com/q/PHP5-3508/configuring-installing-permissions.htm
    For a general introduction to 'nix permissions, take a look at this:
    http://www.osxfaq.com/Tutorials/LearningCenter/UnixTutorials/ManagingPermissions /index.ws
    And here's a whole book on the subject of Leopard permissions:
    http://my.safaribooksonline.com/9780321579331
    Try doing a Google search on "leopard permissions php apache" and see if you find what you are looking for.
    Francine
    Francine
    Schwieder

  • How to define pool size of a data source

    In OC4J,How do I configure the behaviour of connection pools such as maxStatements, initialPoolSize,minPoolSize,maxPoolSize,maxIdleTime,propertyCycle which is defined in the JDBC specification?

    <BLOCKQUOTE><font size="1" face="Verdana, Arial, Helvetica">quote:</font><HR>Originally posted by wang haitao ([email protected]):
    Thanks.From the example,I have known how to configure the minPoolSize and MaxPoolSize.
    But,where can I find a example include all the datasource properties?
    When I configure a property, I want to know the XML tag for the property.
    IS this what you are looking for: http://www.orionserver.com/docs/data-sources.xml.html
    <data-sources>
    This file contains the configuration for the installed DataSources of an application-server.
    <data-source ...>
    An installed DataSource. The installed DataSources are bound to the JNDI-paths specified by the location attribute.
    class - The classname of the DataSource. The core classes are com.evermind.sql.DriverManagerDataSource, com.evermind.sql.DriverManagerXADataSource, com.evermind.sql.DriverManagerConnectionPoolDataSource, com.evermind.sql.OrionPooledDataSource, com.evermind.sql.OrionCMTDataSource. There is also a special name; com.evermind.sql.AliasDataSource, which copies the data-source at the source-location to the specified location. See the API docs for further info on the other types.
    connection-driver - The JDBC-driver classname for this DataSource, needed by some DataSources that deal with java.sql.Connections.
    connection-retry-interval - How long to wait before retrying in seconds if a connection attempt fails. The default is 1.
    ejb-location - The JNDI-path to bind an EJB-aware and pooled version of this DataSource to. (only applies to ConnectionDataSources). This version of the datasoruce will automatically take part in container-managed transactions and is the type of source that should be used from within EJBs and similar (if you use a "clean" datasource you loose the container-managed transactions support).
    inactivity-timeout - Time to cache unused connections before closing them (seconds).
    location - The JNDI-path to bind this DataSource to.
    max-connect-attempts - How many times to retry making a Connection. This is useful when the network isnt stable or the environment is unstable for any other reason that will make connection attempts fail at times. The default is 3.
    max-connections - The maximum number of open connections for pooling DataSources.
    min-connections - The minimum number of open connections for pooling DataSources. The default is zero.
    name - The displayed name of the DataSource.
    password - The password to user when logging in using the DataSource, optional.
    pooled-location - The JNDI-path to bind a pooled version of this DataSource to. (only applies to ConnectionDataSources).
    schema - The relative/absolute path to a database-schema for this database connection.
    source-location - The underlying DataSource of this specialized DataSource.
    url - The JDBC URL for this DataSource, needed by some DataSources that deal with java.sql.Connections.
    username - The username to log in as when using the DataSource, optional.
    wait-timeout - The number of seconds to wait for a free connection if the pool is used up (ie reached max-connections used). The default is 60.
    xa-location - The JNDI-path to bind a transactional version of this DataSource to. (only applies to ConnectionDataSources). XA-datasources are automatically pooled internally.
    xa-source-location - The underlying XADataSource of this specialized DataSource (used by OrionCMTDataSource).
    <description>The description</description>
    A short description.
    <property name="theName" value="theValue" />
    A property to set when using a custom/3rd-party DataSource.
    name - The name of the property.
    value - The property value.
    <HR></BLOCKQUOTE>
    null

  • Application Module Configuration Properties file?

    Hi,
    Any body knows where could i find the Application Module Configuration Properties file on the disk.
    (This properties on wizard are appeared when we right click on application module and select configuration...)

    Curt,
    Thanks for your direction. That link is vary useful to be familiar with the AM configuration setting.
    Frankly, during last few months I was extremely busy to develop JSP pages. And didnt study much about AM But now that we are close to move the application to production I faced unacceptable problems. Recently I started to read your/and other folks treads to get more familiar with AM.
    Here is some of the problem i faced, which i think are AM related:
    1-The application speed goes down as soon as more than 2-3 browser(user) work with the same application(most probably I have memory leak).
    2-Some times I received following error when tried to load a JSP page in the application:
    Error Message: oracle.jbo.PCollException: JBO-28020: Passivation error on collection TXN, node id -1 void
    3-I faced following error when I tried to work with two applications in one or even two browsers:
    Error Message: JBO 30004: An application module that was not checked out was checked in...
    So, please let me know your idea on those and/or any point that I have to check.
    By the way, I am still on JDev9i-Beta and I accepted all default setting at the time I created AM . but the state of each page explicitly defined at the page level(mostly stateful, but on some of the pages i didn't mentioned the state which by default is stateless).
    Thanks.

  • How does log-configuration.xml work?

    Hi,
    Anyone has an idea how the "log-configuration.xml" works in Enterprise Application Project? If this properties file is configured properly, what is to be done in the code so that the log/trace messages can be written to a designated destination?
    I have been trying to find a appropriate documentation, but have not been successful so far.
    Appreciate if someone can share his/her experience with me.
    - Teecheu

    Hello,
    I can not tell how the files works, but the documentation about this topic can be seen here:
    Portal Developer Guide -> Portal Runtime Technology -> Portal Application Archives ->
    Defining a Logger Configuration.
    (http://help.sap.com/saphelp_nw04/helpdata/en/b1/441e40777cdd5fe10000000a155106/frameset.htm)
    Hope that helps,
    Jordan

  • Fedora 13: After upgrading from FF3.6 to FF6.0.2 I no longer have a Java plugin. How do I configure the Java Plugin for FF 6 ? There is no Java Plugin at the site

    I am Fedora 13x64 bit. I just installed FF v6.0.2 from the FF download site. I backed up the existing FF 3.6 as firefox_old
    I need to have a Java plugin to access company site, how do I configure the Java Plugin ?
    At the Plugin area in FF6 there is no Java Plugin available, even after a search.
    I have Java 1.6.0 installed in the OS at:
    /usr/lib/jvm/java-1.6.0/jre/lib/amd64/libnpjp2.so
    I googled how to configure Java Plugin for FF 6 for Fedora 13 and the trick was to create a soft link from /home/<userID>/.mozilla/plugins to the above libnpjp2.so

    AVtech wrote:
    . . . If a person can't get an answer here I don't know where else to turn since Sun certainly wouldn't offer tech support for a free product . . .These forums are user forums, and only occasionally visited by Sun employees. Sun does provide Java technical support options, although (of course) at a charge.
    See:
    http://developers.sun.com/services/
    . . . I guess we'll just use JRE 5 until it's unsupported, whenever that will be. I'm still waiting for an answer on that question, too. See:
    http://java.sun.com/products/archive/eol.policy.html
    http://www.sun.com/service/eosl/
    This document (part IV and Appendix) has some debugging and troubleshooting information that may allow someone involved in the problem to resolve the cause:
    See:
    http://java.sun.com/javase/6/docs/technotes/guides/plugin/developer_guide/contents.htm
    Any steps that you can take to isolate the problem to specific Java versions, browsers, applets, web sites, operating systems (and versions), etc, would enhance the possibility of getting help.
    You can try the applets at this Sun location and see if any of them are "slow".
    See:
    http://java.sun.com/javase/6/docs/technotes/samples/demos.html

  • HT4623 please help!! how can i configure my iphone 3gs because i've been updated a new version i did it but it's hard to activate it again.

    please help!! how can i configure my iphone 3gs because i've been updated a new version, i did it but it's hard to activate it again. this message i always recieved in my iphone
    "We're sorry, we are unable to continue with your activation at this time."

    You phone was hacked. You can not get help with it here. Hacking / Jailbreaking voids any warraty and forfeits your right to support. Discussing jailbroken / hacked devices is forbidden by the terms of service here.

  • How Do I Configure A WRT54G to Work With A Cisco 2800 Router

    I'm helping my dad set up a new network.  He has a Cisco 2800 series router that connects to the internet via two T1 lines.  From this connection, he supplies internet service to his customers.  The router was installed and configured with help from AT&T who monitors the router and advises my dad if there are problems. 
    The Cisco 2800 is not my reason for posting.
    He wants to connect his home computers to the 2800.  He has one desktop and two wireless laptops and wants to use a WRT54G to connect those computers to the 2800 router.  How should he configure the WRT54G to connect to the 2800?  
    Thanks!

    That's what I thought.  So it is really no different than connecting the WRT to a DSL modem or cable modem as far as the setup goes. Good then.
    Now, next question;
    Would this network setup be correct?
    Connect a 5-port switch to the 2800
    Connect the WRT54G to the 5-port switch.
    Configure the laptops to connect throught the WRT54G.
    Connect the desktop (Ubuntu 9.10) to the 5-port switch via Ethernet cable (bypass the WRT54G).
    Would there be IP conflicts or domain problems?  I ask this because this is how his LAN is presently setup and he seems to be getting random connectivity problems on his Ubuntu desktop machine.  One day it works fine.  The next day it won't connect.  Sometimes, even after he is connected, it stop works midstream.  It also takes 10 minutes or so to boot up.  The laptops always work without issue.
    The two laptops would be issued IP addresses of 192.168.1.xxx but the desktop would be getting 12.83.xxxx.xx(something similar).  The desktop's internet IP would receive its internet IP from the 2800 via DHCP just like the WRT54G is receiving its IP from the 2800.  The two would essentially be on different LANs connected to the same router.  Do you forsee any issues here?
    Thanks!

  • How could it happen that there was a wrong FIRMWARE on the HP side?

    Hey,
    I've bought a HP LaserJet Pro 200 color MFP M276nw.
    I checked for a new firmware
    1.
    downloaded the latest one: M270_colorMFP_Series_FW_Update-20140718.exe
    2.
    I started the exe file while working in a WiFi NETWORK
       2.1 - chose the printer
       2.2 - got a SMILE
       2.3 - checked the system info: FAILED: old FIRMWARE 20121026 
                  Printer firmware update failed, nothing happened.
    3.
    I started the exe file while working in a WiFi NETWORK
       3.1 - chose the printer 
       and after a quarter of the installation I saw an "error 65" displayed on the printer screen 
       3.2 - but still got a SMILE at the end
       3.3 - checked the system info: OLD FIRMWARE 20121026 
                  Printer firmware update FAILED, nothing happened.
    4.
    I started the next try with USB connection  
       4.1 - chose the printer 
       and after a quarter of the installation I saw "BLACK printer screen"
       4.2 - but at the end I still got a SMILE from the laptop Software
       4.3 - checked the system info: OLD FIRMWARE 20121026 
                  Printer firmware update FAILED, nothing happened.
    5. 
    Meanwhile I had searched the web for "error 65" and found a disussion 2 few weeks ago, where there was metioned that error 65 displayed on the printer screen.
    There was mentioned that the downloaded firmware was wrong and that there should have been only one firmware on the website and that the latest was wrong, "20140521" should be the only one.
    I started the next try with USB connection and that bigger "20140521"  exe file 
       5.1 - chose the printer  
       5.2 - then I saw something like "programming" what sounded somehow better
       5.3 - the display went again black while the app on the laptop was still running
       5.4 - again there was a "programming" screen displayed
       5.5 - the display went again black
       5.6 - but then the printer rebooted while the app was still running .
       5.7 - a few moments later the laptop firmware app was done and the SMILE came back
       5.8 - checked the system info: NEW FIRMWARE  
    AFTER ALL IT TOOK ME MORE THAN 4 HOURS just to update that FIRMWARE.
    I still don't know if that firmware is fixing my problem of backing up and restoring Printer Configurations.
    I don't like the fact that it seems that I am not able to save the complete configuration or at least each configuration segment like it should be possible for the "eMail Adressbook"
    There is much more work to be done inside each network configuration (Networkname, Fileprefix, Format, resolution, ...),. Therefore it would be very useful to have a backup especially if you have to exchange units .
    Why isn't this backup feature available for FAX Adresses & Network Buttons?
    HOW COULD IT HAPPEN THAT THERE WAS A WRONG FIRMWARE ON THE OFFICIAL HP SIDE?
    HOW CAN IT BE THAT EVEN THE SUCCESSFULL FIRMWARE UPDATE PROCESS WAS THE TOTAL OPPOSITE OF something you would call smooth?
    There was no message on the PC telling something about what was going on on the HP 200 printer, the programming, black displays, reboot and nothing was synchronized between the firmware app and the printer  display.
    The TCO of this unit have exploded for this tiny firmware update I had done before on other equipment over 15 years.
    I can't believe that the app is state of the art and that the quality assurance is on the right track if there is a wrong  firmware on HP's website.
    I am really unsatisfied and still hope, that the firmware update will deliver a better success than I had the whole eveing.
    WOLF

    Hey,
    so after 3 month nothing has been cleared.
    I got several phone calls from a terribly bad german speaking support center (may be polish orign) agent , therefore I could not understand her easily and she had no technical expertise or skills. I answered all her questions.
    Later I got a support eMail in german where she was speaking about an "ELIVIERUNGSTEAM"
    That is an in german unknown word probably she meant "EVALUIERUNGSTEAM" which means EVALUATION TEAM.
    So I got that answer from that TEAM in late December 2014  and replied after christmas.
    I received an eMail that HP received my answer but nothing happened until today.
    We have several devices with the same issues and I do not want to hear or read that HP tries to tell me that it is my problem. It is an problem which occured under each browser they asked me to perform the steps - chrome, firefox, ie ...
    And it occures on all printers of that series and on all laptops.
    HERE IS THE LAST MESSAGE WHICH ANNOUNCED A REPLACEMENT BUT I AM STILL WAITING 
    HERE IS THAT MESSAGE:
    Antwort unserer Elevierung [ ref:_00DG0h8qk._500G0bDLRI:ref ]
    Sehr geehrter Herr Bxxxxxxxxxxxxxx,
    anbei die Originalantwort unseres Elevierungsteams. Sollten Sie eine deutsche Übersetzung benötigen, so bitten wir um Rückmeldung:
    Thank you for the escalation. We are able to save the email as well as fax phone book and restore it. The files saved are in .csv format. As for the firmware on the website, we are looking into it on a priority basis, as a number of product firmware listed are incorrect. We expect the error to be rectified soon, I shall keep you updated. If the customer has tried updating the printer firmware and as a result of it he is having the issue, then please replace the printer for the customer and check for the issue.
    With Regards
    Ich hoffe Ihnen mit diesen Auskünften weitergeholfen zu haben.
    Mit freundlichen Grüßen,
    Ihr HP-Laserjet-Support
    WHO IS RESPONSIBLE FOR THIS SUPPORT UNIT AND THAT WHOLE TASK ?
    I NEED SOLUTIONS CAUSE HERE ARE SEVERAL MACHINES WITH ALL THESE PROBLEMS BECAUSE WE MADE THESE UPDATES OF THE HP FIRMWARE

Maybe you are looking for

  • Are the sound clips from Final Cut Pro Fair Use?, Are the sound clips from Final Cut Pro Fair Use?

    I recently found YouTube had flaged a video for containing a "third party" sound clip.  All clips I've used in videos for YouTube have come directly from Final Cut Pro X.  Any idea if the sound clips are Fair Use?  I'm not sure how to repsond to YouT

  • Organizing photos from an external drive.

    I am currently organizing my iphoto library vers 6.0.6 (322) and want to start on the stuff on my ext drive. Does anyone know a way to put files from the ext drive into albums without actually importing them onto your computer hard drive?

  • Hello! Please delete my account on Skype. Thank yo...

    Hello! Please delete my account on Skype. Thank you.

  • Safari web process - memory leak?

    Mac Pro seemed to have slowed to a crawl. Safari 5.1.2 on SL 10.6.8 Activity Monitor showed I was low on memory - over 7GB was being used by 'safari web process' - slowly close all open pages until only left with two - one was simply the 'bing' home

  • Standard price in Material master

    Hello, in the Table MBEW und Field STPRS ther is the actual standard preis. We actualise (change) the preis every Friday. It means we have another price on saturday How can I see the Preis from wednesday on saturday. It's there any table for change h