How to distribute web users on appli server via BEx service at SICF?

I read from the BW tuning guide that following is possible:
Distribution of web users across application servers can be configured in the
BEx service in SICF.
I look into SICF but cannot find a way to configure the distribution.
Could you help?  Thanks!

Hi,
I think you talk about authentication in Bex with internet users, is it?
You can configure internet users in tx SU05, and then you can set "Internet users" like basic authentication in bex service.
Regards.

Similar Messages

  • How to make Web Dynpro Search work using CAF Entity Service Method

    Hallo everybody,
    I'm facing a problem regarding CAF Method and I really need some help.
    The Method I want use is a "Search by Key" method, which I already testet in Composite Application and it has worked.
    But wenn I try to add the CAF Model in Web Dynpro and Apply the template in Component Controller, there was no input value there to be selected but only the return values. How can I make the method work?
    Thanks a lot.

    Hallo everybody,
    I'm facing a problem regarding CAF Method and I really need some help.
    The Method I want use is a "Search by Key" method, which I already testet in Composite Application and it has worked.
    But wenn I try to add the CAF Model in Web Dynpro and Apply the template in Component Controller, there was no input value there to be selected but only the return values. How can I make the method work?
    Thanks a lot.

  • How to Connect to Oracle 9i database server via Oracle 10g XE

    I have installed Oracle 10g eXpress Edition and uninstalled Oracle 9i client database. I used Oracle 9i client to connect to another Database server on a local LAN. Is it possible to create a database link to the old Oracle 9i database server via Oracle 10g XE? If yes, do I need to add ODBC drivers?
    I want to achieve the following:
    1) Create a connection to the Oracle 9i database server using Ora101040 odbc drivers.
    2) Use a similar 9i tool (Enterprise Management Console) within Oracle 10g XE to access Oracle 9i Database tables on a LAN network.
    3) Create data access to Oracle 10g XE via some ODBC connection from a C++ runtime application.
    Hope to receive help from Oracle professionals.
    Thanks.

    I have installed Oracle 10g eXpress Edition and
    uninstalled Oracle 9i client database. I used OraclePlease clarify - you uninstalled the 9i database or the 9i client.
    9i client to connect to another Database server on a
    local LAN. Is it possible to create a database link
    to the old Oracle 9i database server via Oracle 10g
    XE? If yes, do I need to add ODBC drivers?
    Database links between Oracle databases do not require ODBC. They do require Oracle Networking (included with both Oracle9i Database and Oracle Database 10g XE) to be configured correctly.
    It is also possible to connect ot the 9i database using the 10g Instant Client (separate download)
    I want to achieve the following:
    1) Create a connection to the Oracle 9i database
    server using Ora101040 odbc drivers.Please clarify - what client do you wish to run that needs ODBC?
    2) Use a similar 9i tool (Enterprise Management
    Console) within Oracle 10g XE to access Oracle 9i
    Database tables on a LAN network.XE does not have an equivalent to Oracle Enterprise Manager. XE does come with HTMLdb preinstalled and configured, and HTMLdb provides a subset of the administration capabilities of Enterprise Manager.
    3) Create data access to Oracle 10g XE via some ODBC
    connection from a C++ runtime application.You can download ODBC drivers from the same location on OTN you downloaded XE. I do not know whether XE includes ODBC drivers. ODBC drivers will usually still require you to configure the Oracle Networking.
    There are a number of items that make me believe you do not have a good grasp of Oracle architecture and basics. If true, I encoureage you to start reading the Concepts manual found for the database at http://docs.oracle.com, or at least the O'Reilly book 'Oracle Essentials' found at http://oracle.oreilly.com

  • How to get the user input while server is waiting for client's message

    I have a server/client program (using sockets)
    I used a thread to let a server always waiting for client's request, but how should I found that
    there is no message pass to server from client.
    public void run(){
    while (true){
    Socket server = serverP.accept();
    ObjectInputStream inFromClient = new ObjectInputStream(server.getInputStream());
    inMessage = (Message)inFromClient.readObject();
    System.out.println("Deadlock may occurred, please enter your command: ");
    BufferedReader inFromUser = new BufferedReader(new InputStreamReader(System.in));
    String command = inFromUser.readLine();
    The server is waiting for the inMessage that is passed from multiple clients. But if the server
    received no message after some time, it will assume something is wrong (eg, there is a
    deadlock), then it will ask the user to input the command to execute the method.
    If I put
    "System.out.println("Do you want to take Snapshot: ");
    BufferedReader inFromUser = new BufferedReader(new InputStreamReader(System.in));
    String command = inFromUser.readLine();"
    inside the while loop, it will keep asking user to enter the input when every time the client
    connect to the server. But I want to ask the user to enter the command only when the server
    can't get the response from clients.
    How should I do?
    Please help.

    Your statement:
    Socket server = serverP.accept();
    it will block until Server receive connect request from client.
    So, what u can do is, create a seperate Thread which check if server is idle (no client connect to it) for a certain time.
    public class xxxxx extends Thread {
    public void run(){
       (new WatcherThread()).start()
       while (true){
       Socket server = serverP.accept();
       WatcherThread.acceptFlag();  
       ObjectInputStream inFromClient = new ObjectInputStream(server.getInputStream());
       inMessage = (Message)inFromClient.readObject();
       Do something with client request ...
       I suggest you to create a WorkerThread for
       each client request.
       For example:
       new (WorkerThread(inMessage)).start();
       This way, your server thread will immediately serve
       the next client request ASAP.
    public class WatcherThread extends Thread {
       private static accept = false;
       public static void acceptFlag() {
            flag = true;
       public void run() {
           while(true) {
               try { sleep(10000); } catch (Exception ex) { }
               if (!accept) { // never accepted after 10000 msecs
                  ... do your System.in here ...
               flag=false;          
    }The idea is, your server notify WatcherThread if a client connect. WathcerThread runs at seperate thread. It waits for 10000 msecs and check if Server ever gets connect request from server. If it doesn't then you can do your System.in, otherwise, it will wait for 10000 again..
    FYI, next time, please use [ code ] and [ / code ] to format your code. It discourage me to read plain whole-left-aligned code like yours.
    See: http://forum.java.sun.com/features.jsp#Formatting
    rgds,
    Alex

  • How to get all users from the server....?

    Hi all,
    in my application i want to get all possible users present in the PORTAL-EP Server
    and set them into the drop down.
    is there need to login in the portal as a admin or other user to get the all users present in the Server.
    Regards,
    Deepak

    Hi! Deepak,
       you can use UME API to get all the users of EP in WebDynpro appl.
    Herewith i am giving you the UME API link --
    <a href="http://help.sap.com/javadocs/NW04/current/um/index.html">http://help.sap.com/javadocs/NW04/current/um/index.html</a>
    i am giving the code also to get all the users from LDAP.
       IPublic<ComponentName>.IUserIDElement userIDNodeElement = null;
    IUserAccountFactory accountFact = UMFactory.getUserAccountFactory();
    MessageManager msgMgr = (MessageManager)wdThis.wdGetAPI().getComponent().getMessageManager();
    try {     
    IUserAccountSearchFilter accountSearchFilter  =  accountFact.getUserAccountSearchFilter();
    accountSearchFilter.setLogonUid("*",ISearchAttribute.LIKE_OPERATOR,false);
    ISearchResult srchRslt = accountFact.search(accountSearchFilter);
       while(srchRslt.hasNext()) {                    
                    userIDNodeElement = wdContext.createUserIDElement();          String uniqueID = (String)srchRslt.next();
         IUserAccount userAccount = accountFact.getUserAccount(uniqueID);
         String LogonUid = userAccount.getLogonUid();
         userIDNodeElement.setCtx_UserID(LogonUid);
         wdContext.nodeUserID().addElement(userIDNodeElement);
        } catch(Exception exc) {
                  msgMgr.reportWarning(umException.toString());
    regards,
    Mithilehwar

  • Fresh Install of Mountain Lion how do I export users from Lion Server

    I've been having some issues with Lion Server, mainly Kerberos related and Profile Manager. So I want to start fresh with Mountain Lion.
    I've installed ML and Server, and profile manager is working now for the first time (yay!)
    Now I want to Import all my existing Open Directory users from Lion, I don't want to Import the entire OD though because I think some of my kerberos issues will just get carried over to ML.
    I would like to just export the Users to a file then use ML server to import users from file, but I can't see an option to export in Lion Server, I have tried doing it from WGM on Lion but the 'users' file is not recognised by ML server

    Great thanks for the reply, I'll try it tonight when everyone has logged off.
    Yeah I was very pleased initially with kerberos on Lion, it worked great to start with, now I'm just getting expired tickets for a default realm when some users log in, yet other users continue to work fine.
    I was planning to slowly install Mountain Lion Server and test is thouroghly but I've had a bit of a disaster that if forcing me to go live with ML server quicker than I wanted to!
    Basically because on Lion Server I have all the Service Data on a separate drive, and I upgraded to ML server on a backup copy of Lion Server just to see what it was like, though now I've rebooted the original Lion drive but half of the services are now screwwed up because the ML Server must have changed them, so things like Wiki Server and Profile Manager are now broken from the Lion Server boot, they just show "Error Reading Settings"
    I realise now I should have moved the Service data back to the local drive before doing a test upgrade so I wouldn't have messed it up! but now it seems like my best way forward is a fresh install of ML Server

  • How to know which user shutdown the server

    Hi,
    Is there a way to check which user has shutdown the server in windows server 2012.
    I know Event Id : 1076,1074,6008 gives information about system shutdown.but want to know which user did that ?
    thanks

    Steps to see which user shutdown the system:
    1. Go to event Viewer
    2. Right click on system and -> Filter Current Log
    3. For User Shutdowns, click downward arrow of Event Sources -> Check User32.
    4. In <All Event IDs> type  1074 -> OK
    This will give the list of Power off and restart events. It will have the date and time as well as Username.

  • Re: How does the web user drag the image left or right?

    hmm, no matter how far i move this movie clip to the right,
    it is still coming
    up unbalanced to the left if the browser is larger than the
    swf size, >768. I
    used a centered table as well.
    I would really like to finish this off nicely. Waht do you
    think?
    http://www.stevez.biz/foto_fun/flossie/Flossie.htm

    your swf is centered. you don't need a table for that,
    though. you can just use the <center> </center> tags i
    described in your duplicate thread.

  • How does the web user drag the image left or right?

    Folks, I'm ignorant in this stuff, yet I think I can work my
    way thru with some help. I have a panoramic photo that extends off
    the stage left and right, which is ok. I made it a movie clip. I
    would like to have the user be able to click and drag this movie
    clip of an image to see the missing areas, or even do that thing
    where the mouse moves away from center and the picture follows
    (unless that is way too tough). Got to be able to ONLY move left
    and right; no up and down. I tried the help files, and even copy
    pasted but got a lot of errors I cant understand, and lots of my
    help files are missing anyway. I dont know vars, and classes, and
    objects etc, so i guess I am looking for code or clues.
    If anyone is kind enough to provide code, be sure to let me
    know what parts of the sample code requires substitution because I
    have seen stuff where you all know the abreviations, but I dont.
    Flash 7 Mac osx.4.8

    Thanks kglad.
    Well, that's a start. Only the picture jumped to the far
    right, and then I had no more dragging ability; there it stayed.
    Any thoughts?
    Even tho it says script contains no errors, this error showed
    up on output:
    **Error** Symbol=home, layer=Layer 1, frame=1:Line 1: The
    class 'drag' could not be loaded.
    and here is what i used:
    homeClip.onPress = function() {
    this.startDrag(0, Stage.width-this._width, this._y, 0,
    this._y);
    homeClip.onRelease = function() {
    this.stopDrag();
    where "homeClip" is the instance name of the movie clip named
    "home"
    by the way, that instance name was in BLACK, not BLUE

  • How do I set up a proxy server for webmail services to assist in migrating from NMS 4.15p6 on NT to iMS 5.1 on HP-UX.

    I want to have minimal if no downtime at all when moving the message store. iPlanet support hinted at an "unsupported" proxy server solution, and would give no further information. I am running the MMP with 5.1 and that supports IMAP and POP migration, but I need support for webmail services as well to complete the migration from NT to UNIX with minimal distruption of thousands of users. I am using the MoveUser utility to move the message store in hopes that will clear up some store corruption we have been seeing.

    To get this in a 'supported' fashion you might want to wait until the iMS 5.2 release. iPlanet has said this release would include a webmail proxy/mmp server to do exactly what you desire.
    A proxy server would not be a solution to your problem as it would have to have access and knowledge to the users mailhost attribute to determine to which host to route the webmail connection. The webmail proxy/mmp will have this functionality.
    You might want to contact your iPlanet rep about this product and maybe you could get a copy of it as part of a beta program. I know iPlanet is always looking for oppourtunities for feedback like this.
    -Chris

  • How can I tell my current Weblogic server version and Service pack

    Hello,
    I was wondering how can I tell what my current
    weblogic server version is and what service pack
    it is at.
    Thanks.

    use 'java weblogic.version'
    ensure weblogic.jar is in the classpath

  • How can I list print queues per server via power shell script

    Hello,
    we are managing many print servers on our domain environment,  now for auditing purpose I need to report print queues per server,  and it seems bit difficult task doing it via GUI in print management view, could someone help me with script which
    gets me the no. of print queues on each print server.
    Also I need to list all the print drivers installed on each print servers. 
    I tried to list the drivers " Get-WmiObject win32_printerDriver -filter " but this will get me complete information about the driver, I need to list only the driver name (-filter) either _RELPATH or _PATH
    dibu

    You can also use WMI like this:
    (get-WmiObject win32_printer -computer ws702).count
    I don't understand what you mean by list only.  Just select what you need.
    See: http://technet.microsoft.com/en-us/scriptcenter/dd742419
    That will give you some basic background on how to use PowerShell to get the properties of objects.
    ¯\_(ツ)_/¯

  • How to transfer files into Time Capsule server via ethernet?

    Hello,
    I intend to use my Time Capsule as to perform backups and a file server. I have been using it for backups only and now I want to move files from my external hard drive into the TC for storage so that I would be able to stream the files over wireless connection. I have bought a thunderbolt to gigabit ethernet adapter and plugged it in between my TC and my MacBook Air to enable fast transfer of files and backups. I am however baffled when I found out the transfer of files (900 gb) is going to take approximately 78 days to complete. It seems to me that the file transfer is going on over wireless connection instead of thunderbolt gigabit ethernet connection by default when the adapter is plugged in. Appreciate if someone could guide me through to solve the problem.
    Note: All softwares are up-to-date and my wireless connection is a shared wireless connection, meaning that my TC only serves a backup station.

    Mount the TC disk manually.
    In Finder use Go, Connect to server.
    Type in the following.
    AFP://TCname.local (TCname is the actual network name of the TC. I strongly recommend you use SMB names.. ie short, no spaces and pure alphanumeric)
    Find out the Network version of the TC name if you don't want to comply to the above rule. The best way is to discover it via netstat scan.
    Open network utility.
    Locate your TC on it.. since my TC is correctly named it shows up as tcgen4.local
    I then type in AFP://tcgen4.local
    Then the computer can discover the TC and it will ask for a password. The default is public
    Type in whatever you changed it to or public.
    The TC disk should now be mounted.
    If this fails.. reset the TC to factory and start over. Name it correctly.. all short names, no spaces and pure alphanumeric will be a lot lot easier.
    Then manually force the mounting.

  • How to distribute LabView software to workstatio​ns via MSI's

    We are repackaging software for a client. Several of these applications are LABVIEW related.
    We found that most of the installation software excists of an executable and several msi's. Creating a new MSI from a snapshot (with wise) results in a MSI that does not work properly. This is te result of several issues comming together.
    For several applications the creation of a MST per vendor MSI results in more then 7 msi/mst combinations for one application. The distribution system (Radia Novadiym) can handle max 7 MSI'S per application.
    Is there a way to create one msi that can install all parts of the application.
    Or is there a way to give extra info to the setup.exe so the installation is silent and the option needed are installed (these differ from the default settings)?
    My attention goes to Vision Assistent 7.1.0.
    with kind regards
    Clemens de Brouwer

    Adam,
    You ve to go thro' this thread to get a clear picture about creating installers from LV 8.x upwards.
    http://forums.ni.com/ni/board/message?board.id=170​&message.id=181107#M181107
    - Partha
    LabVIEW - Wires that catch bugs!

  • Email Task users:  JDeveloper and OID via Integration Service?

    While building an email task in JDeveloper, we are trying to use the "Identity Lookup Dialog" box. When trying to access the OID users, we can see only the default (JAZN) accounts (oc4jadmin, bpeladmin, etc.) We do not see any of our actual users.
    However, BPEL is integrated with OID. We have imported our AD users into OID. These users can access the worklistapp in this BPEL installation, so i feel comfortable that the BPEL Process Manager is configured with OID. Any idea how to get JDeveloper to see that info? JDeveloper is using the "Integration Server Connection", so it should see it, right?
    Our BPEL install is in its own Application Server instance. It is version 10.1.3.3.
    Any ideas on what i'm missing?
    thank you,
    iggy.

    Patrick N. _Futureweb OG,
    Please use the following PowerShell to confirm your guest vm integration service has updated successfully, if not try to reinstall the IC.
    Get-VM | ft Name, IntegrationServicesVersion
      2. Please confirm your exchange vm the following service is running.
      3. Please confirm your SYSTEM account have write permission on the following registry,
            HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Svchost
              If not
    please add full permission on it.
      4. In exchange vm the
     System Device manager must  have a “Microsoft
    Hyper-V virtual machine Bus” device.
    More related information:
    Assign permissions to a registry key
    http://technet.microsoft.com/en-us/library/cc728310(v=ws.10).aspx
    Updating Hyper-V Integration Components (IC)
    http://blogs.technet.com/b/rmilne/archive/2013/06/17/updating-hyper-v-integration-components-ic.aspx
    Hope this helps.
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

Maybe you are looking for

  • What is the easiest way to sync and back up 2 iPhones with different accounts on one computer?

    My parents have gotten a new Windows 8 computer and want to use it to back up and sync their phones for updates. They don't share an iTunes account but they do share the credit card used to make purchases. They also so not want to set up "his and her

  • Acrobat XI Outlook 2013 plug-in problems

    I have Outlook 2013 installed on my computer and just downloaded Acrobat XI.  According to some web searches, I should get an Adobe PDF pull-down tab inside Outlook, but there is nothing there.  When I go to Outlook Options/Add-Ins the PDFMaker plug-

  • Add a new tab with customer fields to shopping cart item

    Hello Experts, I wanted some help in adding a new tab to shopping cart items. I went through some posts and found ways of doing it using some spro settings, but there is no way i can handle the field type in this. I want a customer field which is a c

  • Procedure containg select from Database link

    Hi, I have one database link xxx which is getting some data from one table from Sqlserver database. Now I am writing one procedure which contain if(c=1) --get from databaselink select name,num from table1@xxx; else --get from the Oracle table; Now ia

  • Windows 7 to windows 8 upgrade questions

    Hello, i have Creative Suite CS6 installed on my computer running Windows 7, however, i wish to upgrade to windows 8, is there any special step i should take before upgrading to windows 8 with this product?