Flooding listening port does

Hello,
I have just been doing some perfomance testing on one of our applications . This application is running as a jboss service on CENTOS(linux) listening for requests on a particular port, whilst testing I discovered that if this service received too many connection request on one go it would accept the connection but would not return responses. It looks like the service just stops allocating ports after a specific number of connections. All ports seem to be recycled successfully, the only way I get it to return responses is by restarting the service. It works fine if I spawn say 10000 threads seperated by 50 milliseconds, it starts failing if the thread separation times is lower.
Here is my listener code:
           ServerSocket serverSocket = new ServerSocket(list_port);
            while (listening)
                System.out.println("Server waiting on port "+list_port);
                Socket clientSocket = null;
                clientSocket = serverSocket.accept();
                new SecureGprsServer(clientSocket).start();
                System.out.println("New request received");
            } From this code when its flodded it does not even print +"Server waiting on port "+list_port);+ I can even telnet to the port. Doing a netstat shows that all ports are killed gracefully.
Please help.

It looks like the service just stops allocating ports after a specific number of connections.But 'the service' doesn't 'allocate' any 'ports' relating to incoming 'connections'. Neither does Java. Neither does anybody else.
Are there any issues related to flooding socket listeners in java?No.
More probably you have run out of threads, or you have an undetected OutOfMemoryError, something like that.

Similar Messages

  • What port does WRT1900Ac listen on for remote admin

    good morning,
    I have had a few problems with linksys smart wifi (periodically cannot connect).
    traditionally I run dynDNS so I can connect to devices remotely (using port forwarding) and this works fine for me.
    what port does the linksys router itself listen on for remote router admin requests (i.e http://publicipaddress:whatport) 
    also, is this configurable?
    thanks
    Dan

    danielgwalter wrote:
    good morning,
    I have had a few problems with linksys smart wifi (periodically cannot connect).
    traditionally I run dynDNS so I can connect to devices remotely (using port forwarding) and this works fine for me.
    what port does the linksys router itself listen on for remote router admin requests (i.e http://publicipaddress:whatport) 
    also, is this configurable?
    thanks
    Dan
    You have to use a Smart Wifi account for remote administration on the WRT1900AC
    Please remember to Kudo those that help you.
    Linksys
    Communities Technical Support

  • Select Listener Port Number from which_table?

    I'm writing a SQL script that, among other things, disconnects from Oracle and then reconnects to the same instance as a different user. I'm able to query v$database and v$instance to get most of the information I need (host, service name, etc) for the reconnect part. The only part I'm missing is the listener port number. I could hard code it to 1521, but that isn't very flexible. Currently, I'm prompting the user (which is normally me) for the listener port number in the SQL script, but that just seems a little bit lame. So my question is this: is there a view or table somewhere in the sys schema that I could use to view the listener configuration? I'm mostly working with 10gR2+ databases.

    cleavitt wrote:
    That is possible, but it needs to be a standard Oracle configuration if the script is to remain generic and portable. The script is actually working fine as-is. I was just trying to go the extra mile and determine the port number automatically. I could also prompt for a TNSNames entry as suggested by others, but I don't always have an entry defined for all of the Oracle instances in my company on every workstation that I work from.
    Here is the script for anyone that is interested. It started out as a script that I found online, but the original did not work with 11g case-sensitive passwords and it only worked for local connections on the server.
    Description:
    Allows a DBA user to impersonate another user (without knowing the user's password).
    Similar in function to using the SU command in Unix/Linux.
    Note:
    This script temporarily changes the impersonated user's password and may cause other
    connection attempts by that user to fail during the moment that the temporary password is in effect.
    WHENEVER SQLERROR EXIT
    SET VERIFY OFF
    ACCEPT username CHAR PROMPT 'Enter the username: '
    ACCEPT listenerport NUMBER DEFAULT 1521 PROMPT 'Enter the listener port [1521]: '
    -- Define substitution variables and column mapping.
    COLUMN username NEW_VALUE username
    COLUMN password_hash NEW_VALUE password_hash
    COLUMN host_name NEW_VALUE hostname
    COLUMN instance_name NEW_VALUE servicename
    -- Populate substitution variables.
    SELECT
    name AS username,
    -- Get the user's password hash(s) and apply appropriate formatting for case-sensitive password if needed (11g+ passwords).
    NVL2(spare4, spare4 || ';' || password /* 11g+ */, password /* pre-11g */) AS password_hash
    FROM sys.user$
    WHERE name = UPPER('&username');
    SELECT host_name, instance_name
    FROM v$instance;
    -- Set the user's password to a temporary value.
    ALTER USER &username IDENTIFIED BY TempPass;
    -- Use the temporary password to connect to the database as the user.
    CONNECT &username/TempPass@(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=&hostname)(PORT=&listenerport))(CONNECT_DATA=(UR=A)(SID=&servicename)));
    -- Reset the user's password to the original value using the original password hash(s).
    ALTER USER &username IDENTIFIED BY VALUES '&password_hash';
    SHOW USER
    UNDEFINE username
    UNDEFINE password_hash
    UNDEFINE hostname
    UNDEFINE servicename
    UNDEFINE listenerport
    WHENEVER SQLERROR CONTINUE
    SET VERIFY ONAnd by so doing you just kicked the user's password expiration on down the road, negating the benefit of havng a password expiration.
    Also, you locked out the legitimate user of this account, until such time as you reset it back to the original. And in the mean time, if this happens to be an account used by some automated process, that process doesn't know the new "temporary" password and runs a risk of locking the account from too many invalid connection attempts. Try to become SYSMAN or DBSNMP from this, and you will very quickly kill OEM.
    This has "bad idea" written all over it. What problem is it supposed to be be solving?

  • MDB and Database - Listener port stops working

    Hi,
    I have created an MDB which does the following when a message is received from the queue.
    1. Store message in database
    2. do some processing
    At step 1, if there is any issue with the database connection (e.g. database is not available etc), I rollback transaction. My idea is to leave the message on queue for now and retry it again after some time unless the database is back again. "Maximum retries" of the listener port is set to N but since there is no retry interval available, all N retries are done in a flash and my listener port stops working. I cannot use backout mechanism as I have to wait for the database to be back again. What are my options?

    usmanchaudhry wrote:
    Hi,
    I have created an MDB which does the following when a message is received from the queue.
    1. Store message in database
    2. do some processing
    At step 1, if there is any issue with the database connection (e.g. database is not available etc), I rollback transaction. My idea is to leave the message on queue for now and retry it again after some time unless the database is back again. "Maximum retries" of the listener port is set to N but since there is no retry interval available, all N retries are done in a flash and my listener port stops working. I cannot use backout mechanism as I have to wait for the database to be back again. What are my options?i believe you need an XA driver and a transaction manager, for starters.
    a simple JDBC rollback won't do it.
    which app server are you using?
    which jms provider?
    %

  • Changing the Listener Port Number

    Hi RACers,
    I need to change the TNS listener port number from the default of 1521 (don't ask!).
    I'm on Solaris10/Oracle10g 10.2.0.3 using a 2 node cluster.
    I've tried editing the relevant files, bouncing everything and re-starting CRS, but that doesn't work. I tried using Netca to delete the listener and re-create it with a different port number and that didn't work either. The instances did not re-register despite having their local_listener parameter changes.
    Obviously I'm doing something wrong, but don't know what. Any ideas or do you know where a procedure to do this is documented?
    Thanks in advance.

    My posting was not aimed at the OP at all.. not his fault that Oracle insists on using a TCP port that's NOT registered for Oracle use.
    It is all Oracle's fault that port 1521 is used instead of 1527.
    As for what Oracle books say.. bahumbug. Means nothing ito playing by the same networking rules as everyone else.
    Port 1527 is what is registered for and by Oracle as use for Oracle tcp traffic. Not fricken port 1521!
    And why is this a problem?
    If you're in the network business and deal with everything and anything from network analysis and management to rewriting ToS bytes for proper DiffServ application.. then it is very frustrating to find a major company like Oracle ignoring the networking rules.
    I read that as Oracle telling us "screw you".

  • Listener port number

    hi,
    what is the range of port number of listener in 10g and 11g.
    in google it has show only default port number.
    thank you

    user8647245 wrote:
    what is the range of port number of listener in 10g and 11g.Default Listener port is 1521. Registered port for the Oracle Listener with IANA (Internet Assigned Numbers Authority) is 1527 and not 1521.
    You can however, in theory, use any port. In practice though, it is not that simple. And can be kind of stupid not to use the default or registered ports.
    Ports 0 to 1023 are well known ports. These should never be used by any other applications like the Listener. On many kernels, only a root process can open a well known port.
    Ports 1024 through 49151 are (IANA) registered ports. See RFC4340 for the registration process details. And this is where the Oracle Listener is registered as port 1527 - despite Oracle for many years using 1521 instead.
    Generally speaking, keep to the default or use the the registered port. Do not arbitrarily change port numbers.
    Ports 49152 through 65535 are private or dynamic ports. You should not ever use a port in this range as a listening end point for an application.
    Okay, so why use specific ports for specific applications?
    It comes down to network management and network performance.
    Use arbitrary ports, and you mess sophisticated network designs horrible around. You can cause a negative network impact for your application due to how QoS (quality of service) are implemented. You can run into firewalls. You are not supportting the network folk in managing the underlying network infrastructure properly, enabling them to support your network application as you expect it to be supported.
    So do NOT simply change the Oracle Listener port number. And no - changing it does not "improve" security either.

  • Problem when I tried to change weblogic listen port from 7001 to 80

    HI! I have problem when I tried to change weblogic listen port from 7001 to 80. When I changed from 7001 to 7777 then all works ok! But why not on 80? With apache all works ok on 80 too.
    I restart my weblogic server and then I have following errors.
    <2009.1.4 16:02:13 EEST> <Notice> <WebLogicServer> <BEA-000365> <Server state ch
    anged to STARTING>
    2009.1.4 16:02:14 oracle.as.jmx.framework.PortableMBeanFactory setJMXFrameworkPr
    oviderClass
    INFO: JMX Portable Framework initialized with platform SPI "class oracle.as.jmx.
    framework.wls.spi.JMXFrameworkProviderImpl"
    2009.1.4 16:02:15 oracle.adf.share.config.ADFConfigFactory cleanUpApplicationSta
    te
    INFO: Cleaning up application state
    <2009.1.4 16:02:22 EEST> <Notice> <Log Management> <BEA-170027> <The Server has
    established connection with the Domain level Diagnostic Service successfully.>
    <2009.1.4 16:02:22 EEST> <Notice> <WebLogicServer> <BEA-000365> <Server state ch
    anged to ADMIN>
    <2009.1.4 16:02:22 EEST> <Notice> <WebLogicServer> <BEA-000365> <Server state ch
    anged to RESUMING>
    <2009.1.4 16:02:22 EEST> <Emergency> <Security> <BEA-090087> <Server failed to b
    ind to the configured Admin port. The port may already be used by another proces
    s.>
    <2009.1.4 16:02:22 EEST> <Error> <Server> <BEA-002606> <Unable to create a serve
    r socket for listening on channel "Default". The address 85.254.224.235 might be
    incorrect or another process is using port 80: java.net.BindException: Address
    already in use: JVM_Bind.>
    <2009.1.4 16:02:22 EEST> <Critical> <WebLogicServer> <BEA-000362> <Server failed
    . Reason: Server failed to bind to any usable port. See preceeding log message f
    or details.>
    <2009.1.4 16:02:22 EEST> <Error> <Server> <BEA-002606> <Unable to create a serve
    r socket for listening on channel "Default[2]". The address 127.0.0.1 might be i
    ncorrect or another process is using port 80: java.net.BindException: Address al
    ready in use: JVM_Bind.>
    <2009.1.4 16:02:22 EEST> <Error> <Server> <BEA-002606> <Unable to create a serve
    r socket for listening on channel "Default[1]". The address 192.168.0.102 might
    be incorrect or another process is using port 80: java.net.BindException: Addres
    s already in use: JVM_Bind.>
    <2009.1.4 16:02:22 EEST> <Notice> <WebLogicServer> <BEA-000365> <Server state ch
    anged to FAILED>
    <2009.1.4 16:02:22 EEST> <Error> <WebLogicServer> <BEA-000383> <A critical servi
    ce failed. The server will shut itself down>
    <2009.1.4 16:02:22 EEST> <Notice> <WebLogicServer> <BEA-000365> <Server state ch
    anged to FORCE_SHUTTING_DOWN>
    2009.1.4 16:02:22 oracle.adf.share.config.ADFConfigFactory cleanUpApplicationSta
    te
    INFO: Cleaning up application state
    2009.1.4 16:02:22 oracle.adf.share.config.ADFConfigFactory cleanUpApplicationSta
    te
    INFO: Cleaning up application state
    Best regards!

    Debuger,
    It does not matter which WLS version I am using (although I'm using 10.3, the one that comes with JDev 11g).
    The problem is that SOME OTHER PROCESS on your machine is listening on port 80. Guess you need to go to the Microsoft forums to find out how you can tell what that OTHER, NOT WLS process is.
    John

  • IOS Zone firewall (ZFW) & changing SSH listening port

    I'll have to check into the deetails again but I recall there being a way to change the listening port for SSH.  Not only do you have to configure SSH itself to listen on a new port but I think there was something about making the inbound interface part of a rotary group or something. 
    Anyway, my question is more about how the zone firewall reacts to this.  If I have inspect set for SSH, (or pass) and yet change the default port for it, does the IOS still know to take the configured action on the protocol?  I'll try to test this myself once I have an opportunity but may not be able to for several days, plus if anybody has anything further to add regarding any other implications this port change mgiht have, please share
    Thanks! 

    Hi Julio,
    You are ever helpful sir Howver, things are not making sense.
    Ok so to take it from the top. So far I have done the following:
    Router(config)#ip ssh port 2340 rotary 1
    Then:
    Router(config)#line vty 0 123 (123 = max # of vty lines, my actual # is different)
    Router(config-line)#rotary 1
    This of course does not make SSH on port 2340 work from the Internet zone to Self as I have not yet modified the firewall nor done the ip port-map command. It does work from the LAN side to Self since that zone-pair is more forgiving, however, it works on both 22 and 2340 which I thought odd since I thought the ip ssh command changes the SSH server listening port.
    I have not yet permanently set the ip port-map command. However I ran it once and then did a sh ip port-map ssh
    This showed system defined ssh port maps for tcp and udp on 22, and then my user defined one for tcp port 2340. Interesting that the system-defined ones are both UDP and TCP - I thought SSH was TCP only.
    According to the IOS command referendces (for release 15.2), I should not be able to remove the system-defined port map entries as it would give an error. However, I did no ip port-map ssh port tcp 22 and the same for the UDP entry and they disappeared - so now for sh ip port-map ssh I get no results returned. Yet, SSH still works on 22 and 2340.
    Be that as it may, after some further testing I've concluded that with or without use of the ip port-map ssh port tcp 2340 entry, SSH works (from LAN to Self) on either port 22 or 2340. It seems ip port-map has no effect on the SSH server itself (?). Or perhaps PAM is overridden by the ip ssh commands?
    So at that point I decided to stop testing, not doing anything with firewall yet, until I understand things better. So far, the IOS is very confusing in it's behavior.
    Changing the SSH server's listening port via ip ssh command to something other than 22 seems to not actually change anything, it just adds that port in addition to 22.
    Port-application mapping appears to have no effect on the SSH server (I have not tested whether ip ssh overrides PAM or vice versa)
    So far there seems to be no way to actually change port 22 usage - even "deleting" the PAM entry for ssh via 22 has no effect.
    Confusing!

  • ACS 4.1 change Radius listen port

    In ACS 3.3 it was possible to specify the radius listen port with registry keys:
    [HKEY_LOCAL_MACHINE\SOFTWARE\Cisco\CiscoAAAv3.3\CSRadius]
    "AuthenticationPort"=dword:0000064e
    "AccountingPort"=dword:0000064f
    "AuthenticationPortNew"=dword:0000064c
    "AccountingPortNew"=dword:0000064d
    This does not work anymore in version 4.1.
    Does anyone know how to change the radius listen port in version 4.1 ?
    Thanks,
    Gerard van Bon

    In 4.x all registry config was moved into the sql anywhere db.
    If you can get hold the Sql Anywhere dev kit to get the Db edit app AND know your ACS database password and then can find the value in the table structure.. then yes you could change the RADIUS listen port.

  • Changing the listening ports of ARD

    I know how to change the listening port of SSH from 22 to some other number.
    Is there any way to configure ARD (in plist maybe?) so that it can try connecting to SSH on a non-default port number.
    Whilst I know how to secure SSH (not properly secured in OS X by default) I would rather change it's listening port to avoid the traffic that will simply try to bruteforce in.
    So if I edit ssh_config and sshd_config on my Macs will this break ARD? Or if these conf files are properly edited (ssh_cnfig on client changed to port 22222 and sshd_config on server changed to 22222) will ARD connect seamlessly?
    In short does ARD absolutely need Remote Login (SSH) to be running on the default port 22?

    hmm okay, but i don't need to port forward 22 from my router to my mac to allow ARD access, only ports 5900, 5988 and 3283.
    That improves things since 22 is not visible to the WAN.
    Still, I'd like to know the answer to my question in the previous post.
    And what about re-mapping VNC from 5900 (another obvious target although prob not vulnerable to VNC exploits since I expect Apple have modified this service and somehow hooked it into the authentication of the ssh protocol)?
    Message was edited by: doz

  • Changing listening port for SSH on IDS

    What command would I use to change the listening port on a 4200 series IDS? I have it listening on another port, and when I applied the S189/S190 update, it changed SSH back to port 22.
    Just out of curiosity too, does anyone know what else the S189/S190 updates change?
    Thanks,
    Jim

    After looking around, I think it may be the /etc/ssh/sshd_config file that needs to be modified. However, I wanted to double check that with the community. If I modify that file and restart ssh, will I mess anything up and lock myself out of remote access?
    Thanks!!

  • WLST - Changing server's listen port

    Hi,
    i'm trying to change the listen port of a managed server using WLST with the following code :
    readDomain('...')
    cd('Servers')
    cd('myServer')
    set('ListenPort',8000)
    updateDomain()
    closeDomain()
    Everything is ok so far.
    Now, if i try to deploy an ear onto this server i get the folowing exception :
    *<20 juil. 2010 10 h 18 CEST> <Warning> <HTTP> <BEA-101162> <User defined listener weblogic.wsee.deploy.ServletDeployListener failed: weblogic*
    *.wsee.deploy.WSEEServletEndpointException: Failed to prepare wsse module: admin-tools.war.*
    weblogic.wsee.deploy.WSEEServletEndpointException: Failed to prepare wsse module: admin-tools.war
    at weblogic.wsee.deploy.ServletDeployListener.contextPrepared(ServletDeployListener.java:32)
    at weblogic.servlet.internal.EventsManager$FireContextPreparedAction.run(EventsManager.java:480)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    at weblogic.servlet.internal.EventsManager.notifyContextPreparedEvent(EventsManager.java:149)
    Truncated. see log file for complete stacktrace
    weblogic.wsee.ws.WsException: weblogic.wsee.security.configuration.WssConfigurationException: Certificate Alias not supplied
    at weblogic.wsee.deploy.WSEEModule.prepare(WSEEModule.java:129)
    at weblogic.wsee.deploy.ServletDeployListener.contextPrepared(ServletDeployListener.java:29)
    at weblogic.servlet.internal.EventsManager$FireContextPreparedAction.run(EventsManager.java:480)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(Unknown Source)
    Truncated. see log file for complete stacktrace
    weblogic.wsee.security.configuration.WssConfigurationException: Certificate Alias not supplied
    at weblogic.wsee.security.policy.SecurityPolicyCustomizer.init(SecurityPolicyCustomizer.java:69)
    at weblogic.wsee.security.policy.SecurityPolicyCustomizer.process(SecurityPolicyCustomizer.java:75)
    at weblogic.wsee.policy.runtime.PolicyServer.processAssertions(PolicyServer.java:167)
    at weblogic.wsee.policy.runtime.PolicyFinder.readPolicyFromStream(PolicyFinder.java:99)
    at weblogic.wsee.policy.runtime.PolicyFinder.loadPolicies(PolicyFinder.java:179)
    Truncated. see log file for complete stacktrace
    weblogic.wsee.security.configuration.WssConfigurationException: Certificate Alias not supplied
    at weblogic.wsee.security.bst.ServerBSTCredentialProvider.initSSLCredential(ServerBSTCredentialProvider.java:224)
    at weblogic.wsee.security.bst.ServerBSTCredentialProvider.initCredentials(ServerBSTCredentialProvider.java:97)
    at weblogic.wsee.security.configuration.WssConfiguration.initDefaultConfiguration(WssConfiguration.java:327)
    at weblogic.wsee.security.configuration.WssConfiguration.init(WssConfiguration.java:119)
    at weblogic.wsee.security.configuration.WssConfiguration.getSupprotedTokens(WssConfiguration.java:171)
    Truncated. see log file for complete stacktrace
    Weblogic Portal 10.2
    Thx a lot
    Emmanuel

    Hi,
    <Warning> <HTTP> <BEA-101162> <User defined listener weblogic.wsee.deploy.ServletDeployListener failed: weblogicAbove BEA-101162 is thrown while deploying a WSDL that references a schema from a URI that is not accessible, the WebService fails to be deployed and the WebService is not available to service requests.
    I am not sure if this is applicable to you but you can refer to metalink document Description of All Signature Patterns in the Current Signature Patterns Release [ID 749964.1] --> refer "Signature ID: 003132"
    Hope this helps.
    Regards,
    Mithun

  • RTSP:Listening Port- Server Class

    I have been given a assignment which I have to write a detailed description of the main method from the Server class (available from http://www.csee.umbc.edu/~pmundur/courses/CMSC691C/lab5-kurose-ross.html)
    An example of the level of description that is required is
    The parse_server_response method of the Client class: The method starts by initialising a local variable
    to zero. In lines 342 to 362, the Client tries to read the three lines of the server response. If this is
    unsuccessful for any reason, the catch clause (lines 366 &ndash; 369) is executed.
    I am new to JAVA, so wondered what is the best way to go about it e.g. suggested tutorial on RTSP:Listening port etc and any websites which will help me in getting an understanding of this kind of coding.
    It is quite frustrating as we were only taught the basic of OO principles and the assignment is asking us to explain the code.
    Thanks

    Yes, but this does not go into the details of what is doing what. I need to know what each command line is doing??
    Thnx

  • Should The Cluster server have a diff. listening port.

              Hello,
              I have 2 managed servers and the main admin server, which routes the requests
              to one of the 2 Managed Server instances on the round-robin algo... Should the
              Admin server's have a diff. listening port like(7001 as per default) to that of
              the 2 Managed servers which r listening on 7005, why is this needed, is there
              a major advantage on doing this... Plz clarify... and can we call the Managed
              servers as Cluster instances...
              Thanx in Advance
              

    You can run admin & managed servers on the same port number.
              and yes you can call managed servers which are part of cluster called as
              clustered instances/nodes etc...
              Kumar
              VenkatRahul wrote:
              > Hello,
              >
              > I have 2 managed servers and the main admin server, which routes the requests
              > to one of the 2 Managed Server instances on the round-robin algo... Should the
              > Admin server's have a diff. listening port like(7001 as per default) to that of
              > the 2 Managed servers which r listening on 7005, why is this needed, is there
              > a major advantage on doing this... Plz clarify... and can we call the Managed
              > servers as Cluster instances...
              >
              > Thanx in Advance
              >
              

  • Incoming Listening Port

    Hi, I am trying to set up and incoming listening port under OS X 10.4.7 and a graphite airport base station. I tried, through the sharing tab of system preferences, adding the port (40031) to the firewall setting with no luck. Does anyone know of a more solid way of doing this, or a text file they can point me too. thanks a lot, I've been at this for a while so any help is greatly appreciated.

    Hi, I am trying to set up and incoming listening port under OS X 10.4.7 and a graphite airport base station. I tried, through the sharing tab of system preferences, adding the port (40031) to the firewall setting with no luck. Does anyone know of a more solid way of doing this, or a text file they can point me too. thanks a lot, I've been at this for a while so any help is greatly appreciated.

Maybe you are looking for

  • How to handle spaces when calling javaw.exe or java.exe

    Hi guys, I'm in the process of releasing my application. My application need to make this system call on Windows. C:\Program Files\MySoftware\javaw.exe -jar C:\Program Files\MySoftware\myJar.jar C:\Program Files\MyDocs\MyArgumentFile this 'Program Fi

  • Copy files out of Preview

    With 10.3 and Preview 2.1.1, one could open a folder of photos and drop copies directly out of Preview into a new folder by altclickdrag to the folder. This seems to have gotten broken with the change to 10.4. It works fine on my iBook, but the G5 iM

  • Special Procurement type for multiple plants ????

    Hi Experts, We currently have a u201CSpecial Procurement Typeu201D of u201C40u201D set up for the sourcing of products between A and B. I need a Special Procurement type to work between all three plants, A,B and C Please advise how this can be achive

  • Virtualised Multi-Instance SQL Server Cluster - Processor Resource Management

    Hi - We're in the process of implementing a multi-instance SQL 2014 guest cluster on Windows 2012 R2.  To our dismay, it seems that Windows System Resource Manager (WSRM) is deprecated in Windows 2012 R2, so we're now stuck for how best to manage CPU

  • Slideshow Missing Forward, Pause, and Back

    In place of forward, pause, and back arrows there are blue boxes with question marks. Any suggestions as to how to get the images back?