Newby question: NAL Application

hi all, I have a question : how to determine which novell application is distributing now? any log file i can check? or only viewing C:\nalcache?
http://www.rayha.350.com/n.jpg

Rayha,
> hi all, I have a question : how to determine which novell application
> is distributing now? any log file i can check? or only viewing
> C:\nalcache?
>
Problem is that the NAL window appears to be to small to show the actual
app name. Normally, you should see at least part of the app name. Since
this is ZEN4 there is not much I can do, but a possible workaround would
be to change the windows settings so that the title bar uses a smaller
font.
- Anders Gustafsson (Sysop)
The Aaland Islands (N60 E20)
Novell has a new enhancement request system,
or what is now known as the requirement portal.
If customers would like to give input in the upcoming
releases of Novell products then they should go to
http://www.novell.com/rms

Similar Messages

  • Questions about application server architecture

    Hello guys,
    I have few questions about application server architecture�
    I have a task to build a server application which will do the following: Clients (special java clients) will connect to it and send some data for further processing on server side. Chunks of data will be relatively small but they will take a lot of time for processing (it is ok that it will be quite slow).
    Also server will run some sort of �database� where all clients� working data will be stored. So, in case a client loses its data he/she is always able to download it from the server.
    For me it seems, like server will consist of the following components:
    1. �Reception�. This part will be responsible for all client-communication procedures.
    2. �Data storage�. This part will simply store all clients� data and provide some API interface for clients through �reception� to manage it (add/get/delete and so on).
    3. �Processor�. Some sort of dummy-sophisticated module. It will take some input data from �data storage� when it receives order for this and process it. �Processor� will have two states: �busy� which means �processor� processing some data and �available� which means �processor� ready to process new data.
    4. �Manager�. This part will always check �data storage� for new data and �processor� for availability. When �processor� and new data are available �manager� will make an order for �processor� to take new data from �data storage� and process it.
    So, my question is the following: Which technology and approaches I should use to realize my plan?
    I think that I can make �reception� as a Session Bean, but I don�t know yet, what are the best for the rest, for example �manager� and �processor�. I was thinking about writing my own application server (and I can do it), but I would like to learn j2ee technologies, so I think it is a perfect chance for me (I read a lot about j2ee before I wrote this post, but all examples have only �account�-�bill�-�money transfer� I think it is quite far away from reality or I am doing something wrong ;-)!
    p.s. I am thinking about using JBoss as an Application Server. I tested it and wrote some tests. They work and run fast enough, so I like it. Moreover it has module architecture.
    Please, give me some advises and tips!
    Thank you in advance!

    1. �Reception�. This part will be responsible for all
    client-communication procedures.Session bean with remote interface.
    2. �Data storage�. This part will simply store all
    clients� data and provide some API interface for
    clients through �reception� to manage it
    (add/get/delete and so on).Session bean that will use entity beans or hibernate to work with persistant data.
    3. �Processor�. Some sort of dummy-sophisticated
    module.Use a message driven bean. Make Reception to enqueue a message when new data is available for processing. Processor will process the data and store the resut in database using Data Storage session bean.
    4. �Manager�. This part will always check �data
    storage� for new data and �processor� for
    availability. When �processor� and new data are
    available �manager� will make an order for
    �processor� to take new data from �data storage� and
    process it.It's redundand component, because application server will manage messages and processors.

  • Several questions about Application Security

    Hello,
    I have several questions about Application Security and perhaps I need a few tips...
    I have a lot of users in a few groups which have access to my application! And the different groups should have only access to their pages.
    In my application I use trees to navigate through the application.
    So my idea is that i display different trees for the different user groups and restrict the user to access the URL....so the user can only see and contact "their" pages.
    I know how to create the logic behind the trees, but how can I create the restricted URL access...
    The "No URL Access" in the Session State Protection can not be used, because I use a lot of links in reports and HTML regions.
    Is there another way to solve that?
    But I am unsure if that is a "good" solution for my problem!
    What do you think about that?
    Am I going to do that too complicated?
    Could that be done by authentication or authorization?
    (By the way, I do not understand the differences between authentication and authorization. Can anyone help?)
    I would be glad for any reply!
    Thank you,
    Tim

    Hey Arie and Scott,
    thank you for your quick reply!
    Now I understand the context around authorization and authentication...
    I try the Access Control List and I think that is a very nice feature! Really good!
    But now I am wondering, how I can create more privileges?
    So that I have a few "end-user-roles" and then I can choose who have access to a page and who not!
    Does anybody know how to do that?
    Thank you,
    Tim

  • Newby question: I keep on getting "No size set" error

    Hello,
    I'm trying to integrate an Oracle database into my ASP.NET application and I keep on getting an error:
    "Parameter: ENTITY_NAME. No size set for variable length data type: String"
    The parameter is set as VarChar2 in the database, size 50, and the C# code sets this as a VarChar.
    My ASP.NET code is:
    Connect();
    // setup the command to the stored procedure
    OracleCommand DBCmd = new OracleCommand("HDB.PRL_PAYROLL_PKG.GET_ENTITIYID_BY_STOREID", this.Connection);
    DBCmd.CommandType = System.Data.CommandType.StoredProcedure;
    DBCmd.Parameters.Add("STOREID", OracleType.Number).Value = StoreID;
    DBCmd.Parameters.Add("STOREID", OracleType.Number).Direction = System.Data.ParameterDirection.Input;
    DBCmd.Parameters.Add("HDB_ENTITIES_ID", OracleType.Number).Direction = System.Data.ParameterDirection.Output;
    DBCmd.Parameters.Add("ENTITY_NAME", OracleType.VarChar).Direction = System.Data.ParameterDirection.Output;
    DBCmd.Parameters.Add("ENTITY_NAME", OracleType.VarChar).Size = 50;
    // Execute Procedure.
    OracleDataReader reader = DBCmd.ExecuteReader(System.Data.CommandBehavior.SequentialAccess);
    Can anybody steer me in the right direction?
    Thanks in advance for your help.
    Steve

    I have recieved no answers to this question.
    I think I'll go back to SQL Server 2005.

  • Important conceptual question about Application Module, Maximum Pool Size

    Hello everyone,
    We have a critical question about the Application Module default settings (taking the DB connections from a DataSource)
    I know that on the Web it is generally suggested that each request must end with either a commit or rollback when executing PL/SQL blocks "directly" on the DB without the framework BC/ViewObject/Entity service intervention.
    Now, for some reasons, we started to develop our applications with thinking that each Web Session would reference exactly one DB session (opened by any instance taken from the AM pool) for the whole duration of the session, so that the changes made by each Web session to its DB session would never interfere with the changes made by "other" Web Sessions to "other" DB sessions .
    In other words, because of that convincement we often implemented sort of "transactions" that open and close (with either commit or rollback) each DB session not in/after a single HTTP request, but during many HTTP Requests.
    As a concrete example think of this scenario:
    1. the user presses the "Insert" button. An HTTP request is fired. The action listener is executed and ends up with inserting rows in a table via a PL SQL block (not via the ViewObjects API).
    2. no commit or rollback after the above PL/SQL block is done yet.
    3. finally the user presses a "Commit" or "Rollback" button, firing the call to the appropriate AM methos.
    Those three requests consist of what I called "transaction".
    From the documentation it's clear that there is no guarantee that the couple AM istance + DB session is the same during all the requests.
    This means that, during step 2, it's possible that another user might reference the same "pending" AM/DbSession for his needs and "steal" somehow the work done via PL/SQL after step 1. (This happens because sessions taken by the pool are always rolled back by default.)
    Now my question is:
    Suppose we set the "Maximum Pool Size" parameter to very a great number (always inferior to the maximum number of concurrent users):
    Is there any guarantee that all the requests will be isolated in that case?
    I hope the problem is clear.
    Let me know if you want more details.

    Thanks for the answers.
    If I am right, from all your answers about resource avaiability, this means that even supposing the framework is able to always give us the same AM instance back from the AM pool (by following the session-affinity criterias), there is, however, no "connection affinity" with the connections from the DataSource. This means that the "same AM instance" might take the "a new DB connection", if necessary, from the connection pool of the DataSource. If that happens, that could give us the same problems as taking "a new AM instance" (that is, not following session-affinity) from the beginning, since each time an a new connection is taken (either via a new AM instance or via the same AM instance plus a new DB connection), the corresponding DB session is rolle back by default, clearing all the pending transactions we might have performed before with direct PL/SQL calls bypassing the AM services during the life cycle of our application, so that the new HTTP request will have a clean DB session to start to work with.

  • The question about application priority in OCAP

    First question:
    I know the AIT includes priority for each application.
    But I find nothing about priority description in XAIT, may be I made a mistake about XAIT's structure.
    Second question:
    OCAP(10.2.2.5) define the priority range from 1 to 255. Where we can use this value, only in AIT?
    BRs.
    Alexander

    hi igor,
    you have to import the IDOC Types under the imported objects in the integration repository objects,
    what are all the data that coming out from the file adapter, you design the datatype.
    the target IDOC should be real and you do the mapping for the all necessary fields.
    refer: --
    File to IDOC:
    Re: how to Sending XML data to idoc
    IDOC Mapping:
    http://help.sap.com/saphelp_crm40/helpdata/en/77/a1d48b1ce06d40932e0a26f3c117ce/frameset.htm

  • Simple question - minimize application

    I have a simple question to nokia developers. Why I cannot minimize most of my applications in Nokia Asha 302? In Nokia E50 I could. Why are you going backwards in usefulness of your software?

    It is not going backward. Asha series is based on s40 OS while E-series on Symbian. s40 doesn't support multitasking while Symbian does.
    Please mark the post as solution if it solves your problem.
    Current Device - Nokia Lumia 1020/920

  • Quick beginner question about Applications folder

    I have a really simple basic question: Can I organize my computer's applications folder anyway I want? I don't want to move anything out of the apps folder but I do want to group my apps by a few different categories using folders. I don't see why this would be a problem but I wanted to be sure before I fouled anything up. (Time Machine will be nice).

    Create an Applications folder in your home folder and fill it with aliases to the real applications. You can organise these into sub-folders as you wish, without affecting the real applications. Moving the real applications can make updates fail. Different users can have different arrangements of applications.

  • Oracle 1Z0-242 Exam Questions (PeopleSoft Application Developer II )

    Folks,
    Hello. I am working on 1Z0-242 exam. I have freely downloaded the exam questions for PeopleCode and Application Engine. But I cannot find any questions for Integration Tools.
    Do any folks know where to freely download 1Z0-242 exam questions for Integration Tools ? Or, do any folks have taken 1Z0-242 exam and have a copy of 1Z0-242 exam questions ? Please let me know.
    Thanks in advance.

    Hi,
    Did you get all the Q&A for this exam? Could you please share what you got for free?
    or you can tell me where to download from.
    Thanks,

  • Questions on applications compatibility

    I am thinking of buying an apple computer and currently have windows xp. If I install Iworks and email a document from iworks to someone and they have windows will they be able to open it? Also I have a smart phone with windows mobile on it, can I still sync with apple?

    Welcome to Apple Discussions
    This forum is dedicated to the productivity application, AppleWorks. It is not a "catch-all" for how Apple computers work. There are dedicated forums for the iWork applications in the iWork '09 category.
    That being said, the iWork '09 applications have added the option of e-mailing your documents in Word/Excel/PowerPoint/PDF, etc. in the Share menu (the options depend on the applications). You can also export your documents as these various file types.
    If you live near an Apple Store, you could "play" with iWork on one of the computers in the store.
    For syncing with a Windows Mobile phone, I suggest posting a question in the Windows Compatibility forum.

  • Upgrading questions regarding applications

    Hey all,
    I am upgrading from my black macbook running snow leopard to a new macbook pro 15''. A quick question about my applications- I have several licensed programs (Microsoft Office, Photoshop, some video games, etc.). When I move everything over from my time machine to the new computer, will I have to reenter these codes? I'm afraid they've been misplaced over time, and I don't want to have to pay again for these applications.
    Thanks in advance!!

    Good luck. Also, there is a great app that I couldn't live without, called Wallet (http://www.acrylicapps.com/wallet). It's probably the best $20 I've spent. This will keep all your personal information secure and help organize serial numbers, web passwords, bank accounts, etc. You can customize the categories to add as many options as you need. I don't know how much money this has saved me over the years as I surely would have forgotten serial numbers and would have had to re-buy the software.
    Bryan

  • Noob Flex Questions - Run Application

    Hi All
       I am trying to learn Flex 4 and having a question.
    When I download the sample files from Adobe website, I tried to open the files in Flex but it told me that I have to select
    New -> Flex Proejct -> Assign the file folder location to create a new Flex project. Then I created one with my own project name.
    Flex then created a new src folder with my new project name.mxml file. "THE FILE I WANT TO OPEN IS ON THEIR ORIGINAL FOLDER NAME." like
    Flex src or whatever the author created. I tried to run their mxml file, but the "Run Application" is grey out??!!. Why? I have to moved the mxml to my src folder? It seems dumb to me that I have to do this to open an existing project. Besides, if there is a subfolder with another subfolder under Flex src folder, when I moved them to my src folder, it created subfoldername.anothersubfoldername under my src (instead of subfolder/anothersubfolder that the original author created).  I know it might be a noob question, but what is going on here? I cant' even get the existing project running.........Thanks for any helps...

    Hi,
    Your question is a bit confusing but here is a fundimental principle in Eclipse.
    Every project has;
    MyProject
      - bin
      - src
        - MyApplication.mxml
      - html-template
      - libs
    The 'src' folder holds all runable/compilable code actionscript classes and mxml components/applications.
    The only thing Flash Builder will run is a mxml file that subclasses s:Application or mx:Application or any subclass of them.
    Flash Builder will not 'just' run an mxml file. So if you get application samples from Adobe, you need to have them in the src folder and there needs to be a little green arrow in the top left corner. This means it's a registered application that you can run. The little blue dot in the top right corner means it's the default application that will run when you hit ctr-F11 or F11 or Run..
    If you paste a file that IS an Application and cannot get it to run, you need to;
    - make sure it's in your src folder
    - right click an select Run As
    - select Web Application
    This will run the app baring no compiler errors. If the mxml file is not registered as an application, this action will also register it.
    Hope that helps,
    Mike

  • Question about applications

    This may seem like a dumb question but it has me confused! I'm still new to OSX, so I'm still getting used to the system.
    When I download an application lets say..MSN Messenger, and it is a file labelled .dmg. How do I actually install the application to my harddrive and can I then delete that .dmg file?
    I thought I just open it and drag the icon to my harddrive and then I can send the .dmg file to the trash...but for some reason when I do that, I lose the entire application and I get that question mark when I try to open the said application.
    What can I delete and what can I keep...ex...dmg files ?

    Hi Dandoon,
    You need to click on the installer after downlading it. Some of them will automatically install in Applications. Others will instruct you to drag them to your Applcations folder. Then you can trash and delete the installer. Very simple and not a stupid question.

  • 2 AIR Questions: Launching applications and Viewing PDFs...

    I am thinking of purchasing Adobe Flex Builder 3 and planning to have the app run on multiple platforms.
    I have three major questions:
    1. In an AIR program, how do I go about opening/accessing Word documents and/or PDF files (whether by launching Acrobat Reader/Microsoft Word or opening it in AIR)?
    2. Is it true that an AIR application can not execute other applications? If so, do I need to add a plug-in for that (ie: Shu)?
    Regards,
    John M.

    I am thinking of purchasing Adobe Flex Builder 3 and planning to have the app run on multiple platforms.
    I have three major questions:
    1. In an AIR program, how do I go about opening/accessing Word documents and/or PDF files (whether by launching Acrobat Reader/Microsoft Word or opening it in AIR)?
    2. Is it true that an AIR application can not execute other applications? If so, do I need to add a plug-in for that (ie: Shu)?
    Regards,
    John M.

  • Vibe Z2 Pro - Few newby questions

    Hello, as a newby, I have a few simple questions about Z2 Pro and Vibe UI:
    (a) the main issue I have with Vibe UI on this phone is that the 4-apps-per-row look very huge, can you cange it to 5 apps per row with some settings? that would be really useful, as most other big phones are 5 apps per row.
    (b) can I make a guest mode? I think I saw with some other phones, that you can make a guest mode, so that your little cousens don't see all your apps that they don't need to see. I know there is secure mode but that is sothing else.
    (c) can you use Z2 Pro to make the payments with the phone? I know it has the NTF, but don't you need a finger print scanner for that?
    (d) in the camera settings, when I tested the phone, I could not choose 1:1 for the front camera, only for the selfie camera? Is that really so? I would not see why not.
    (e) in the camera settings, I can choose between 3:4 and 16:9 but I somehow could not find the settings for image resolution. what do I do if I want low resolution photos or very high resolutio photos?
    (f) I assume, you can't charge the phone wirelessly, that would be too much to ask for
    Thanks guys.

    Hi, ileyb
    Unfortunately I don't know, what is the "Security Zone" & will be very grateful if you explain a bit about this feature or provide an appropriate link.
    In order to switch to "stock android", you have to do the next:
    1) Go to Settings > About phone > Version information, tap 7 times on "Software version number". This will unlock "Developer options" settings section.
    2) Go to Settings > Developer options > Switch System UI Style and enjoy,

Maybe you are looking for

  • Is there any system table available to check no. of entries in the table?.

    Hi Is there any system table available to check the no of entries in the table. Note : the table may be whether SAP table or Z-table.(All tables) Regards Raja.

  • Setting a Payload Factory

    Hi All, I am currently looking integrating a pretty standard Message Driven Bean with an OJMS(AQ) Queue that is using a custom ADT payload type. Everything was working relatively well following various manuals and blogs until it came to deploying the

  • Certain keys not working on keyboard

    When attempting to hit the "O" key and or the "P" key it hits the letter above and or around the requested keys. Does anyone else have a problem when attempting to text someone and you can't hit either key? Extremely frustrating!

  • Peap authententication

    Hi, what does Enable PEAP machine authentication mean on the ACS server ? we are having a training center where we use certificates for any laptop (domain laptops) to join our wireless network. just wondering  is there any possiblitly for any laptop

  • Unable to use db2 jdbc driver

    i am unable to find the exact name of the db2 jdbc driver that is to be passed in class.forName() method ......i tried to find it in its documentation but not get any result ........please send me the exact name of the driver that i can pass in above