App-V 5 Full Infrastructure Apps take long time to stream to the client

Hi was wondering if anyone has the same issue as i am or knows a fix for this, below is my problem and the troubleshooting i have done.
Overview of problem
App-V 5 apps delivered via App-V 5 full infrastructure take a long time to stream to the client and this means the user has to wait if they try and run an application before it has streamed to the client. Users sometimes have to
wait 2 or 3 minutes for an application to stream and this is about 40 times slower than basic SMB and HTTP transfer tests show the system is capable of (see performance results below).
App-V 4.6 apps delivered via App-V 4.6 full infrastructure and HTTP streaming are fine.
Overview of environment
App-V 5.0 SP1 Full Infrastructure.
App-V servers are running Server 2012 on Hyper-V 3 or ESX 5.1 with 2 x vCPU and 4GB RAM.
SQL servers are a SQL 2012 cluster.
Separate servers for SQL, management, publishing, content and reporting.
Management, Publishing and Content servers have two servers per role and NLB to provide load balancing. So 7 servers (2 x Man, 2 x Pub, 2 x Content, 1 x Reporting)
Two further sites with 2 x Pub and 2 x Content each. All publishing servers pointed at the load balance address for management.
Content delivered via HTTP
Clients are physical desktops and laptops running Windows 7 SP1 x86 and Windows 8 x86
App-V client is 5.0SP1
Clients are pointed at their nearest publishing server NLB via a script which looks up the client IP address and uses PowerShell to configure the publishing server
Content is streamed from the nearest content server NLB by setting the PackageSourceRoot to the nearest content NLB (via the same PowerShell script above).
App-V apps delivered per-user via AD group. One AD group per application. Approximately 200 App-V apps published so far - will eventually reach 400 as we sequence more. About 9000 users.
Analysis performed so far
Servers not heavily loaded. CPU averages 5%. Lots of RAM free. Very low disk IO. Problem also occurs out-of-hours so we are 99.9% certain that server resources are not a cause.
Streaming performance is the same from all 6 content servers and all 3 NLB addresses (tested by changing the value of PackageSourceRoot). Wireshark used to confirm packages are really streaming from the correct location, enforcing
our belief that the problem isn't at the server end (unless all 6 servers are affected).
Streaming via both HTTP and SMB2.1 is approximately the same (tested by changing the value of PackageSourceRoot between http://xxxx and \\server\AppVContent).
Wireshark used to confirm we really are using the protocol we think we are using.
All clients exhibit the same behaviour. Issue reported by many users. 5 test PCs chosen at random at all 3 sites confirmed to have the slow streaming problem.
Slow streaming from both Hyper-V and VMware ESX servers.
Client not heavily loaded.
Affects all App-V apps although it obviously affects the larger ones more.
All App-V apps have a Feature Block 1 setup.
If we copy the ".appv" file from the server to the client via either HTTP or SMB then it's reasonably quick (up to 480Mb/s). So we don't believe the network or servers are at fault. For example:
We can copy a 149MB .appv file via SMB from the content server to the client in 5 seconds.
We copy HTTP download the .appv file from the content server using IE on the client in 5 seconds.
But if you ask the App-V 5 client to fully download the sequence then it takes 2 - 3 minutes.
The App-V 4.6 client takes about 8 - 10 seconds to fully download a similar sized application.
App-V 5 publishing works fine - when a new user logs on they get their list of application straight away, it's just the streaming which is slow.
Once the App-V app has streamed locally it runs fine and with a decent performance.
Looking at a Wireshark trace of the streaming you can see that the slow performance is due to the transfer stopping and starting a lot. You only notice this when you zoom into the performance graph a fair bit.
Each time the HTTP server stops sending traffic, it doesn't start again until the client sends a "TCP Window update". Each "stop" is of a different length, but just taking a few from the middle I get 0.06s, 0.11s,
0.13s wasted etc.
I can see that it's the client stopping the transfer by reducing its advertised TCP Window Size. I'll provide an example:
Server sends 9 x 1514 bytes. Client responds with an ACK and a Window size of 54016 bytes (256x211)
Server sends 11 x 1514 bytes. Client responds with an ACK and a Window size of 37888 bytes (256x148)
Server sends 10 x 1514 bytes. Client responds with an ACK and a Window size of 23296 bytes (256x91)
Server sends 15 x 1514 bytes. Client responds with an ACK and a Window size of 1280 bytes (5 x 256)
Server stops sending (I'm guessing because the client advertised Window size was less than a single packet's worth of bytes)
<0.1 seconds passes>
Client sends a "TCP Window Update" re-advertising a TCP window size of 65536 (256x256).
Server starts transmitting again
So the way I see this is that the App-V 5 client is controlling the transfer speed by utilising TCP Window flow control. The trace was taken at the client end so there's no room for anything on the network to be fiddling with flow
control (and we've confirmed there are no traffic shapers in the loop).
We've also tried streaming directly from the local client by copying some App-V 5 apps down to the client, creating a SMB share on the client and changing PackageSourceRoot to \\localhost\AppVContent (i.e. so we are streaming directly
from the client to the client - to remove the network from the equation) and there is only an improvement of 5 to 10 seconds. So we know it's nothing to do with the network or the servers.
We've tried turning off TCP auto-tuning on the client with:
netsh interface tcp set global autotuninglevel=disabled
and turning off TCP chimney offloading (which is off anyway because the NIC doesn't support it and Netstat -t output shows "InHost" for offload state for all connections) with:
netsh int tcp set global chimney=disabled
and nothing has improved.
So we've now focussed on the extraction of the .appv (ZIP) file on the client.
Using Windows Explorer it takes 75 seconds to extract the ZIP file
Using 7ZIP it takes 9 seconds to extract the ZIP file
Yeah we've always known that the Explorer ZIP engine is terrible. That's why we use 7ZIP or WinRAR on our clients.
So we've started to wonder if the problem with the slow App-V 5 streaming is because the client is downloading the .appv file and extracting it as it goes along in a single thread. If the App-V 5 client is using the same terrible
ZIP engine that Explorer does then that would explain the slow performance. The "download" appears to take a long time because the client is using TCP flow control to slow the transfer since it's extracting the .appv file using a very slow ZIP engine
and it's all in a single thread.

Guys,
Just wanted to give you a brief update basically close this thread as Answered.
We had submitted 4 App-V 5 Bugs to Microsoft and these were reproducible and an explanation was given on work around to them. Microsoft
sent down a App-v developer to have a look at our problems. They said they will try and include the Bug fixes in SP2 which should be out in a few weeks or they will definitely be included in SP3.
In regards to the slow streaming it all came down to the Disk IO.
We found that you could simply enable "Turn off
Windows write-cache buffer flushing on the device", then start streaming the app and then disable "Turn
off Windows write-cache buffer flushing on the device" immediately after
(we don't want to leave it on) and that basically fixed the issue.
But a normal user would not have permissions to do
this, so a code was written to enable and disable this option.
Apology for not going in detail, like my opening thread, its very late. 
but if you would like a detailed analysis please message me.
I would like to Thank the Talented Consultant who designed and implemented are App-V infrastructure who found the bugs and created all
the work around and who also emailed the detailed analysis of the problems to Microsoft that got them interested.
Simon Bond from Ultima Business Solutions.
Thank you

Similar Messages

  • Oracle grid infrastructure installation take long time on step 15 (perform prerequisite checks )

    Oracle grid infrastructure installation take long time on step 15 (perform prerequisite checks ) 
    I'm starting install and configure Oracle RAC 11gR2 on redhat 6.3 , when i reached step 15 (perform prerequisite checks ) it's taking long time more than 10 hours and still checking .... i closed it and start installation again it's same still waiting in perform prerequisite checks 75% complete
    it is normal ?? what should i do ?? how i can monitoring installation steps and why this step take all this time please help .

    Pl identify which exact version of 11gR2 - currently only 11.2.0.3 is certified/supported on Linux 6.x - Oracle&amp;reg; Database - if you are using 11.2.0.1 or 11.2.0.2, then you will need to use Linux 5.x
    HTH
    Srini

  • Database Connectivity takes long time if one of the Node is down .. ??

    Hello All,
    Env: 10.2.0.4 on Solaris 10
    I have 2 nodes.
    When Node1 server is down, it takes long time to connec to the database.
    tnsping would give "OK(2050ms)". Below is the tnsalias.
    RAC_test  =
      (DESCRIPTION =
         (ADDRESS = (PROTOCOL = TCP)(HOST=20.268.169.123)(PORT= 1521))
         (ADDRESS = (PROTOCOL = TCP)(HOST=20.268.169.127)(PORT= 1521))
         (LOAD_BALANCE = yes)
              (CONNECT_DATA =
            (SERVICE_NAME = DK.com)
          (FAILOVER_MODE =
            (TYPE = SELECT)
            (METHOD = BASIC)
            (RETRIES = 180)
            (DELAY = 5)
    )I put the trace on sqlnet.ora and found that first it pings to the "20.268.169.123",
    since the Server is down there will not be any reply and this consumes the delay and
    later it would ping "20.268.169.127" and connect to it.
    If i keep "20.268.169.127" above "20.268.169.123" in tnsalias, and keep "LOAD_BALANCE=no",
    it gets connected very fast, as its directly connecting to Node2. In tnsping i get Ok(40ms).
    How do i reduce the connect timing if i use the first step. Why does it take long time for
    Oracle Client to understand that the Node1 Server is down ?
    TIA,
    J J

    I hope the IP's you are using in the TNS are Virtual IP's.
    You must use Virtual IP's / hostnames for the failover to be quick. If Node 1 is not available then then it's (Node 1's) virtual IP would also get assigned to Node 2 hence all client connections are still able to get a response from the Node Virtual IP address without needing to wait for TCP/IP timeouts. This helps clients to get notified immediately that node 1 is unavailable and the connection tries the 2nd ip/host in the connect descriptor.
    Hope this helps.
    - Siba

  • Web report for opening it takes long time how to reduce the time?

    HI Experts,
    I created report using webi. For next time while opening it takes more time. How to reduce the time.

    Hi Manikandan,
    There could be multiple reason behind the bad performance.
    1. Are you using supported JVM version to run Webi reports?
    2. Do the reports contain prompts? Are the LOVs set to "Automatic refresh before use"? If yes, uncheck it.
    3. How many queries do the report has? Can you run the queries one by one and check which query is taking much time?
    4. If it based on relational database, copy and run it against the database directly and check how much time it takes. If more, you may have to fix the issue at database level like using temporary tables, indices, etc.
    5. Also check if there are firewalls or proxy server between client and server communication. if yes, try to refresh the report directly on BO server and check.
    6. Check if there is any hinderance between BO server and Database server communcation.
    Hope it will help.
    Regards,
    Yuvraj

  • Why string type shared variable takes more time to update in the client

    I am using shared variables to share the data across a master and the client PCs connected in a network. (Network published & no buffering)
     I have created an integer type shared variable(I32) and a string type shared variable (data size is 60 bytes) in the Master and subscribing to the same in the client PCs. In the master PC, I am modifying the data in this order - update the data in the string type variable and then update the data in the integer vaiable.
    But in the client PCs, due to the size difference in the variables, I am receiving the data of the integer first and after that about 3-4 sec later only I am receiving the string data. Can any optimization be done to reduce this latency period? Instead of the string data type any better data type will reduce this delay?
    Please suggst. Advnced thanks.

    Latency has a lot to do with your network.  3-4 seconds is a long time though.  This could also be due to the larget data size of your string.  The integer data size is definitaly not 60 bytes.  If you're looking for better performance, I would highly recommend looking into Datasocket communication or TCP/IP communication.  (There are shipping example for both.)
    When it comes to performance of throughput and efficiency, network-published variables are lower on the totem pole.
    I hope this helps,
    Kevin S.
    Applications Engineer
    National Instruments

  • Full GC takes long time

    Hello,
    Since the last two weeks, we're experiencing Full GCs that take long time and block our application.
    Our platform is:
    Windows 2003 Server 64 bit
    Tomcat 6.0.18
    Java 1.6.0_u13.
    Total memory: 8Gb.
    -Xms4096m
    -Xmx6144m
    -Xss256k
    Old generation: min 2,66Gb max 4,0G
    Eden generation: min 1,5Gb max 2,0G
    Perm generation: min 57Mb max 84Mb
    Here a piece of our gc.log:
    21601.266: [GC [PSYoungGen: 2009225K->6206K(1942528K)] 3913618K->1913365K(4738752K), 0.0992347 secs] [Times: user=0.16 sys=0.03, real=0.11 secs]
    21611.268: [GC [PSYoungGen: 1942485K->5485K(1879040K)] 3849645K->1914490K(4675264K), 0.0986129 secs] [Times: user=0.11 sys=0.00, real=0.11 secs]
    21618.350: [GC [PSYoungGen: 1879021K->12392K(2060928K)] 3788026K->1930794K(4857152K), 0.2036000 secs] [Times: user=0.14 sys=0.02, real=0.20 secs]
    21624.869: [GC [PSYoungGen: 1935116K->8545K(2065600K)] 3853519K->1930702K(4861824K), 0.0924182 secs] [Times: user=0.05 sys=0.00, real=0.09 secs]
    21624.961: [Full GC (System) [PSYoungGen: 8545K->0K(2065600K)] [PSOldGen: 1922156K->635750K(2796224K)] 1930702K->635750K(4861824K) [PSPermGen: 38643K->38643K(60992K)], 1.3719842 secs] [Times: user=1.09 sys=0.00, real=1.36 secs]
    21634.887: [GC [PSYoungGen: 2048500K->10395K(2078912K)] 2684250K->646145K(4875136K), 0.0180670 secs] [Times: user=0.02 sys=0.05, real=0.01 secs]
    21645.165: [GC [PSYoungGen: 2074007K->8120K(2003392K)] 2709758K->648930K(4799616K), 0.0176943 secs] [Times: user=0.08 sys=0.00, real=0.03 secs]
    25209.938: [GC [PSYoungGen: 1760190K->7344K(1707072K)] 4127764K->2376892K(4503296K), 0.0760053 secs] [Times: user=0.11 sys=0.03, real=0.06 secs]
    25218.120: [GC [PSYoungGen: 1707056K->10511K(1657728K)] 4076604K->2382964K(4453952K), 0.0704081 secs] [Times: user=0.13 sys=0.00, real=0.08 secs]
    25221.680: [GC [PSYoungGen: 1657679K->5731K(1982400K)] 4030132K->2385544K(4778624K), 0.0985384 secs] [Times: user=0.20 sys=0.00, real=0.09 secs]
    25226.968: [GC [PSYoungGen: 993426K->6083K(1982784K)] 3373239K->2389543K(4779008K), 0.5147901 secs] [Times: user=0.08 sys=0.00, real=0.52 secs]
    25227.483: [Full GC (System) [PSYoungGen: 6083K->0K(1982784K)] [PSOldGen: 2383460K->536034K(2796224K)] 2389543K->536034K(4779008K) [PSPermGen: 39765K->38756K(58816K)], 155.4030025 secs] [Times: user=1.34 sys=0.64, real=155.39 secs]
    25389.833: [GC [PSYoungGen: 1976624K->12915K(2023616K)] 2512658K->566671K(4819840K), 13.1263397 secs] [Times: user=0.11 sys=0.03, real=13.13 secs]
    25405.871: [GC [PSYoungGen: 2023579K->13857K(2031552K)] 2577335K->583736K(4827776K), 3.5796784 secs] [Times: user=0.03 sys=0.00, real=3.58 secs]
    25416.490: [GC [PSYoungGen: 2024544K->9059K(2074944K)] 2594423K->587581K(4871168K), 0.1184355 secs] [Times: user=0.06 sys=0.00, real=0.13 secs]
    25425.393: [GC [PSYoungGen: 2064144K->7415K(2075456K)] 2642665K->590222K(4871680K), 0.0441002 secs] [Times: user=0.02 sys=0.00, real=0.05 secs]
    25438.547: [GC [PSYoungGen: 2062519K->8857K(2075264K)] 2645326K->594735K(4871488K), 0.0301620 secs] [Times: user=0.01 sys=0.00, real=0.03 secs]
    The minor collections go perfect.
    The first full GC in this piece of log takes 1,36s, and the old generation passes from 1922156K->635750K
    But the second full GC (1 hour later) blocks the server for 155.39s, and the old generation pases from 2383460K->536034K
    The server load between execution of full GC was similar. Any differences I saw in this two moments:
    first full gc: number of Tomcat http threads : 230. The full gc provokes that Tomcat start new threads until get 500 (maxThreads)
    second full gc: number of Tomcat http threads : 500.
    I'm not an expert in tunning jvm. If somebody could help me, these pauses are killing the app and it's unacceptable for my client (for 2 min. the app does not work).
    If you need more information (threads stack, histograms, ... I have ...)
    Maybe I need to reduce the size of the old generation? Or change the garbage collector for old generation? The server cpu is going well, I prefer to consume more cpu in gc and avoid this pauses.
    Any help will be very very appreciated.
    Thanks in advance,
    Joan.

    Hello,
    Sorry for my continuous replies. Another full gc has occurred. This is the trace:
    262631.531: [GC [PSYoungGen: 2071685K->10889K(2078464K)] 4711353K->2652961K(4874688K), 0.3392037 secs] [Times: user=0.08 sys=0.00, real=0.34 secs]
    262640.608: [GC [PSYoungGen: 2071978K->11055K(2078784K)] 4714051K->2656136K(4875008K), 1.3267436 secs] [Times: user=0.06 sys=0.00, real=1.33 secs]
    262649.880: [GC [PSYoungGen: 2072165K->17337K(2071872K)] 4717246K->2669454K(4868096K), 3.0493937 secs] [Times: user=0.16 sys=0.00, real=3.05 secs]
    262658.069: [GC [PSYoungGen: 2071865K->14678K(2075840K)] 4723982K->2676078K(4872064K), 5.4598301 secs] [Times: user=0.08 sys=0.03, real=5.45 secs]
    262666.592: [GC [PSYoungGen: 2069183K->15835K(2075776K)] 4730583K->2682691K(4872000K), 1.6894894 secs] [Times: user=0.11 sys=0.05, real=1.70 secs]
    262673.352: [GC [PSYoungGen: 2070620K->14122K(2068992K)] 4737476K->2687230K(4865216K), 2.9711981 secs] [Times: user=0.06 sys=0.03, real=2.97 secs]
    262682.891: [GC [PSYoungGen: 2068909K->10709K(2075712K)] 4742017K->2686673K(4871936K), 1.1160323 secs] [Times: user=0.19 sys=0.00, real=1.13 secs]
    262691.733: [GC [PSYoungGen: 2065941K->10683K(2075584K)] 4741905K->2689212K(4871808K), 1.4898942 secs] [Times: user=0.05 sys=0.00, real=1.50 secs]
    262701.512: [GC [PSYoungGen: 2065888K->9341K(2076480K)] 4744418K->2690073K(4872704K), 1.3835846 secs] [Times: user=0.13 sys=0.00, real=1.39 secs]
    262709.896: [GC [PSYoungGen: 2065601K->10718K(2076480K)] 4746334K->2693212K(4872704K), 0.7815897 secs] [Times: user=0.05 sys=0.01, real=0.78 secs]
    262718.681: [GC [PSYoungGen: 2067028K->10199K(2076672K)] 4749523K->2695508K(4872896K), 1.2951014 secs] [Times: user=0.06 sys=0.00, real=1.30 secs]
    262727.940: [GC [PSYoungGen: 2067345K->10112K(2076608K)] 4752654K->2698129K(4872832K), 1.6785345 secs] [Times: user=0.08 sys=0.00, real=1.69 secs]
    262736.092: [GC [PSYoungGen: 2067264K->10886K(2077184K)] 4755281K->2702237K(4873408K), 1.1985764 secs] [Times: user=0.06 sys=0.02, real=1.20 secs]
    262744.626: [GC [PSYoungGen: 2069382K->11366K(2077248K)] 4760733K->2705795K(4873472K), 1.4323653 secs] [Times: user=0.13 sys=0.00, real=1.44 secs]
    262754.913: [GC [PSYoungGen: 2069912K->11945K(2077824K)] 4764342K->2708689K(4874048K), 0.8340946 secs] [Times: user=0.03 sys=0.00, real=0.84 secs]
    262765.038: [GC [PSYoungGen: 2072283K->11669K(2077888K)] 4769028K->2711204K(4874112K), 1.3040060 secs] [Times: user=0.09 sys=0.02, real=1.31 secs]
    262776.885: [GC [PSYoungGen: 2072021K->9940K(2079360K)] 4771556K->2711919K(4875584K), 0.8646772 secs] [Times: user=0.09 sys=0.00, real=0.88 secs]
    262783.713: [GC [PSYoungGen: 1173115K->8659K(2079168K)] 3875094K->2713127K(4875392K), 1.4434465 secs] [Times: user=0.09 sys=0.00, real=1.45 secs]
    262785.157: [Full GC (System) [PSYoungGen: 8659K->0K(2079168K)] [PSOldGen: 2704467K->655075K(2796224K)] 2713127K->655075K(4875392K) [PSPermGen: 41376K->40988K(42048K)], 132.6088125 secs] [Times: user=1.47 sys=0.39, real=132.58 secs]
    262925.100: [GC [PSYoungGen: 2062280K->16892K(2068992K)] 2717355K->683188K(4865216K), 8.9491611 secs] [Times: user=0.13 sys=0.00, real=8.94 secs]
    262971.183: [GC [PSYoungGen: 2068978K->8052K(2074624K)] 2735273K->692990K(4870848K), 7.7833800 secs]
    When a "bad" full GC occurs, I can see that just before it the minor collections start to perform bad. Normal values for minor collections are 0,0x seconds, and before a "bad" full GC these minor collections take seconds (1, 2, ... up to 5 seconds).
    I can show an histogram of the first 25 entries before and after the full GC:
    BEFORE
    num #instances #bytes class name
    1: 226135 718455272 [I
    2: 1905686 637239584 [C
    3: 122775 621626112 [B
    4: 8218 538714736 [Lcom.sun.org.apache.xpath.internal.objects.XObject;
    5: 160974 445403288 [Ljava.lang.Object;
    6: 1759928 70397120 java.lang.String
    7: 334672 42838016 com.sun.org.apache.xerces.internal.dom.DeferredElementNSImpl
    8: 103592 42699248 [[I
    9: 227966 41945744 java.net.SocksSocketImpl
    10: 629974 35278544 com.vpfw.proxy.cache.data.B
    11: 636515 30552720 java.util.concurrent.ConcurrentHashMap$HashEntry
    12: 555354 26656992 java.util.HashMap$Entry
    13: 89059 18034280 [Ljava.util.HashMap$Entry;
    14: 230432 16591104 com.sun.org.apache.xerces.internal.dom.DeferredTextImpl
    15: 225401 14425664 java.lang.ref.Finalizer
    16: 222588 14245632 java.net.SocketInputStream
    17: 334644 13385760 com.sun.org.apache.xerces.internal.dom.AttributeMap
    18: 386837 12378784 java.util.concurrent.ConcurrentLinkedQueue$Node
    19: 40226 11263504 [[Ljava.lang.Object;
    20: 21646 11246112 [Ljava.util.concurrent.ConcurrentHashMap$HashEntry;
    21: 684613 10953808 java.lang.Object
    22: 227958 9118320 java.net.Socket
    23: 218591 8743640 java.net.Inet4Address
    24: 57810 8730528 <constMethodKlass>
    25: 230658 7381056 java.io.FileDescriptor
    AFTER
    num #instances #bytes class name
    1: 91917 650028776 [B
    2: 1767088 612264368 [C
    3: 176313 581838552 [I
    4: 141278 322132688 [Ljava.lang.Object;
    5: 1762956 70518240 java.lang.String
    6: 367122 46991616 com.sun.org.apache.xerces.internal.dom.DeferredElementNSImpl
    7: 239506 44069104 java.net.SocksSocketImpl
    8: 633882 35497392 com.vpfw.proxy.cache.data.B
    9: 639797 30710256 java.util.concurrent.ConcurrentHashMap$HashEntry
    10: 606366 29105568 java.util.HashMap$Entry
    11: 72730 20521256 [[I
    12: 89136 18497696 [Ljava.util.HashMap$Entry;
    13: 252946 18212112 com.sun.org.apache.xerces.internal.dom.DeferredTextImpl
    14: 236339 15125696 java.lang.ref.Finalizer
    15: 233891 14969024 java.net.SocketInputStream
    16: 366906 14676240 com.sun.org.apache.xerces.internal.dom.AttributeMap
    17: 429913 13757216 java.util.concurrent.ConcurrentLinkedQueue$Node
    18: 43319 12129544 [[Ljava.lang.Object;
    19: 719233 11507728 java.lang.Object
    20: 21649 11246408 [Ljava.util.concurrent.ConcurrentHashMap$HashEntry;
    21: 239498 9579920 java.net.Socket
    22: 143 9317736 [Lcom.sun.org.apache.xpath.internal.objects.XObject;
    23: 229531 9181240 java.net.Inet4Address
    24: 57817 8735944 <constMethodKlass>
    25: 242443 7758176 java.io.FileDescriptor
    The big differencies is the "com.sun.org.apache.xpath.internal.objects.XObject;".
    Before and after, the values are:
    4: 8218 538714736 [Lcom.sun.org.apache.xpath.internal.objects.XObject;
    22: 143 9317736 [Lcom.sun.org.apache.xpath.internal.objects.XObject;
    Could this the cause of the full GC that takes long time?
    Thanks,
    Joan.

  • Procedure takes long time to execute...

    Hi all
    i wrote the proxcedure but it takes long time to execute.
    The INterdata table contains 300 records.
    Here is the procedure:
    create or replace procedure inter_filter
    is
         /*v_sessionid interdata.sessionid%type;
         v_clientip interdata.clientip%type;
         v_userid interdata.userid%type;
         v_logindate interdata%type;
         v_createddate interdata%type;
         v_sourceurl interdata%type;
         v_destinationurl interdata%type;*/
         v_sessionid filter.sessionid%type;
         v_filterid filter.filterid%type;
         cursor c1 is
         select sessionid,clientip,browsertype,userid,logindate,createddate,sourceurl,destinationurl
         from interdata;
         cursor c2 is
         select sessionid,filterid
         from filter;
    begin
         open c2;
         loop
              fetch c2 into v_sessionid,v_filterid;
              for i in c1 loop
                   if i.sessionid = v_sessionid then
                        insert into filterdetail(filterdetailid,filterid,sourceurl,destinationurl,createddate)
                        values (filterdetail_seq.nextval,v_filterid,i.sourceurl,i.destinationurl,i.createddate);
                   else
                        insert into filter (filterid,sessionid,clientip,browsertype,userid,logindate,createddate)
                        values (filter_seq.nextval,i.sessionid,i.clientip,i.browsertype,i.userid,i.logindate,i.createddate);
                        insert into filterdetail(filterdetailid,filterid,sourceurl,destinationurl,createddate)
                        values (filterdetail_seq.nextval,filter_seq.currval,i.sourceurl,i.destinationurl,i.createddate);
                   end if;
              end loop;
         end loop;
         commit;
    end
    Please Help!
    Prathamesh

    i wrote the proxcedure but it takes long time to execute.Please define "long time". How long does it take? What are you expecting it to take?
    The INterdata table contains 300 records.But how many records are there in the FILTER table? As this is the one you are driving off this is going to determine the length of time it takes to complete. Also, this solution inserts every row in the INTERDATA table for each row in the FILTER table - in other words, if the FILTER table has twenty rows to start with you are going to end up with 6000 rows in FILTERDETAIL. No wonder it takes a long time. Is that want you want?
    Also of course, you are using PL/SQL cursors when you ought to be using set operations. Did you try the solution I posted in Re: Confusion in this  scenario>>>>>>> on this topic?
    Cheers, APC

  • I just added money to my account and i haven't bought apps in a long time and i forgot the answers to the security questions.

    I just added money to my account and i haven't bought apps in a long time and i forgot the answers to the security questions. How do i reset them?

    Alternatives for Help Resetting Security Questions and/or Rescue Mail
         1. If you have a valid rescue email address, then use this procedure:
             Rescue email address and how to reset Apple ID security questions.
         2. Fill out and submit this form. Select the topic, Account Security. You must
             have a Rescue Email to use this option.
         3. This is the only option if you do not already have a valid Rescue Email.
             These are telephone numbers for contacting Apple Support in your country.
             Apple ID- Contacting Apple for help with Apple ID account security. Select
             the appropriate country and call. Ask to speak to the Account Security Team.
         4. Account security issues almost always require you to speak directly to an
             Apple representative to securely establish your identity as the account holder.
             You can set it up so that Apple calls you, either immediately or at a time
             convenient to you.
                1. Go to www.apple.com/support.
                2. Choose Contact Support and click Contact Us.
                3. Choose Other Apple ID Topics and choose the appropriate topic for
                    your issue.
                4. Follow the onscreen instructions.
             Note: If you have already forgotten your security questions, then you cannot
             set up a rescue email address in order to reset them. You must set up
             the rescue email address beforehand.
    Your Apple ID: Manage My Apple ID.
                            Apple ID- All about Apple ID security questions.

  • The Application Takes long time to Start

    Hello All,
    We ar eon Unix->64 Bit-> Essbase 11.1.1.3.
    Problem Description : The application is taking long to start up. around 5 to 6 minutes. This is very first time it is happening.
    There were no specific changes done to the application in the recent releases.
    I have tried all options 1. Compacating outline, 2. Purging the application log etc. all other applications respond good on this host except this. Usually any application should not take more than 1 to 2 minutes to start up.
    There are no specific errors or XCP files recorded in the logs and folders.
    Appreciate your suggestions
    MS

    Thanks Jitendra and Prabhas,
    I know i have posted this thread sometime back and later I had to jump on a New release, so did not get time to check your inputs.
    Well I am back on this issue again. I have been working on various option to get this issues solved " start of App takes long time"
    Here are some Details. We are on SunOs 64 Bit, has 12CU with dual core,  with Essbase 11.1.1.3 running on it. This is an ASO application and has just 7 dimensions, Out of which the ORGANIZATION Dimension is pretty huge with Multiple Hierarchies enabled ( Both Stored and Dynamic ) and has more than 20,00,000 members including the alternate hierarchies ( Shared members)
    I did a smoke test by building dimension by dimension the app was startiung up in just *40* seconds. and when i reached the ORG dimension and added more than 70,000 memebrs . there i fall sick. the app now gets back to its old issue ( Takes more than 10 mainutes to start).
    CPU Usage ranges between 3.1 % to 4 %
    PID USER NLWP PRI NI VSZ RSS S STIME ELAPSED %CPU COMMAND
    4424 user1 1 59 20 1608 1032 S 18:13:33 00:00 0.0 grep COMMAND
    4428 user1 1 59 20 1608 1032 S 18:13:33 00:00 0.0 grep ESS
    4766 user1 88 55 20 6814168 5684200 O 17:37:48 35:45 3.1 /path/xyz/masked/ASO_APP hgfedc NOCREAT.
    But My question here is, in the last moth cube i still similar number of members in the cube and nothing really had changed.
    Essbase GURU's Please give me some Hint to think out of box now.
    Thanks
    MS

  • Visual Studio takes long time to start up

    When starting Visual Studio on my machine it used to take a few seconds to start up and be ready to either open or create a new project. Recently however I am finding that it is hanging - stuck on "Updating the News Channel"  and "Connecting
    to " Visual studio Online. It remains unresponsive until these actions are completed.  I have a fast internet connection and a fast computer with solid state drive.  I have not experienced any issues browsing using IE or using other applications. 
    Is there any suggestion that can help improve this situation?
    This is the version and installed packages.  I am using Windows 8.1 Professional 64Bit
    Microsoft Visual Studio Professional 2013
    Version 12.0.31101.00 Update 4
    Microsoft .NET Framework
    Version 4.5.51650
    Installed Version: Professional
    LightSwitch for Visual Studio 2013   06177-004-0446034-02169
    Microsoft LightSwitch for Visual Studio 2013
    Team Explorer for Visual Studio 2013   06177-004-0446034-02169
    Microsoft Team Explorer for Visual Studio 2013
    Visual Basic 2013   06177-004-0446034-02169
    Microsoft Visual Basic 2013
    Visual C# 2013   06177-004-0446034-02169
    Microsoft Visual C# 2013
    Visual C++ 2013   06177-004-0446034-02169
    Microsoft Visual C++ 2013
    Visual F# 2013   06177-004-0446034-02169
    Microsoft Visual F# 2013
    Visual Studio 2013 Code Analysis Spell Checker   06177-004-0446034-02169
    Microsoft® Visual Studio® 2013 Code Analysis Spell Checker
    Portions of International CorrectSpell™ spelling correction system © 1993 by Lernout & Hauspie Speech Products N.V. All rights reserved.
    The American Heritage® Dictionary of the English Language, Third Edition Copyright © 1992 Houghton Mifflin Company. Electronic version licensed from Lernout & Hauspie Speech Products N.V. All rights reserved.
    Windows Phone SDK 8.0 - ENU   06177-004-0446034-02169
    Windows Phone SDK 8.0 - ENU
    Application Insights Tools for Visual Studio Package   1.0
    Application Insights Tools for Visual Studio
    ASP.NET and Web Tools   12.4.51016.0
    Microsoft Web Developer Tools contains the following components:
    Support for creating and opening ASP.NET web projects
    Browser Link: A communication channel between Visual Studio and browsers
    Editor extensions for HTML, CSS, and JavaScript
    Page Inspector: Inspection tool for ASP.NET web projects
    Scaffolding: A framework for building and running code generators
    Server Explorer extensions for Microsoft Azure Websites
    Web publishing: Extensions for publishing ASP.NET web projects to hosting providers, on-premises servers, or Microsoft Azure
    ASP.NET Web Frameworks and Tools 2012.2   4.1.21001.0
    For additional information, visit
    http://go.microsoft.com/fwlink/?LinkID=309563
    ASP.NET Web Frameworks and Tools 2013   5.2.21010.0
    For additional information, visit http://www.asp.net/
    Common Azure Tools   1.3
    Provides common services for use by Azure Mobile Services and Microsoft Azure Tools.
    GenerateUnitTest   1.0
    Generates unit test code for methods in classes under test.
    Microsoft Advertising SDK for Windows Phone 8  
    Microsoft Advertising SDK for Windows Phone 8
    Build
    Microsoft Azure HDInsight HQL Service   1.0.0000.0
    Language service for Hive query
    Microsoft Azure HDInsight Tools for Visual Studio   1.0.0000.0
    An integrated development environment for HDInsight application development.
    Microsoft Azure Mobile Services Tools   1.3
    Microsoft Azure Mobile Services Tools
    Microsoft Azure Tools   2.5
    Microsoft Azure Tools for Microsoft Visual Studio 2013 - v2.5.21104.1601
    Multilingual App Toolkit   3.1.1250.0
    Multilingual App Toolkit helps you localize your Windows Store app by providing file management, pseudo and machine translation, translation editor, and build integration.
    http://go.microsoft.com/fwlink?linkid=245767
    Node.js Tools   1.0.30109.03
    Adds support for developing and debugging Node.js apps in Visual Studio
    Node.js Tools - Profiling   1.0.30109.03
    Profiling support for Node.js projects.
    NuGet Package Manager   2.8.50926.663
    NuGet Package Manager in Visual Studio. For more information about NuGet, visit
    http://docs.nuget.org/.
    Office Developer Tools for Visual Studio 2013 ENU   12.0.30626
    Microsoft Office Developer Tools for Visual Studio 2013 ENU
    PowerShell Tools   1.3
    Provides file classification services using PowerShell
    PreEmptive Analytics Visualizer   1.2
    Microsoft Visual Studio extension to visualize aggregated summaries from the PreEmptive Analytics product.
    Python Tools for Visual Studio   2.1.21008.00
    Python Tools for Visual Studio provides IntelliSense, projects, templates, Interactive windows, and other support for Python developers.
    Python Tools for Visual Studio - Django Integration   2.1.21008.00
    Provides templates and integration for the Django web framework.
    Python Tools for Visual Studio - Profiling Support   2.1.21008.00
    Profiling support for Python projects.
    SQL Server Data Tools   12.0.41012.0
    Microsoft SQL Server Data Tools
    Visual Studio Tools for Unity   1.9.8.0
    Visual Studio Tools for Unity
    Web Essentials 2013   2.5.3
    Adds many useful features to Visual Studio for web developers.
    Windows Phone 8.1 SDK Integration   1.0
    This package integrates the tools for the Windows Phone 8.1 SDK into the menus and controls of Visual Studio.
    Workflow Manager Tools 1.0   1.0
    This package contains the necessary Visual Studio integration components for Workflow Manager.

    Hi Sal_S,
    >>Recently however I am finding that it is hanging - stuck on "Updating the News Channel"  and "Connecting to " Visual studio Online. It remains unresponsive until these actions are completed.
    What does "Updating the news Channel" mean? You mean that open the VS IDE, and then some links or videos showed in the start page.
    Maybe you could change some settings in your VS IDE under TOOLS->Options.
    As you said that the VS hanging when it connected to VSO, one idea is that you could post an issue to the VSO forum:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=TFService
    In addition, for the performance issue, we would think about many elements.
    For example, the machine configurations, run the VS for a long time(we often restart the VS), the temp files(clean them), or the add-ins or extension tools (you could disable them), the third party processes in your task manager which make the CPU is high
    or others.
    Best Regards,
    Jack
    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.
    Click
    HERE to participate the survey.

  • Concurrent Program Takes Long Time to complete

    Hi every body,
    Normally concurrent i will takes 5 min time to complete.But some time same concurrent program takes more than 30 min's to complete.
    How to troubleshoot in that senario.
    Thanks in Advance
    With Regards
    Gogineni'S
    Edited by: Gogineni Surendra on Dec 10, 2009 11:40 PM
    Edited by: GogineniS on Dec 11, 2009 11:46 PM

    Hi;
    Please follow those link and see its helpful:
    tune concurrent manager
    Oracle apps database
    Also check:
    Concurrent Manager very slow........
    Concurrent Request very slow
    Re: Concurrent Program "Running" for a long time
    How to Run the Purge Concurrent Request and/or Manager Data Program and Which Tables Does it Purge? [ID 154850.1]
    How to Optimize the Process of Running Purge Concurrent Request and/or Manager Data (FNDCPPUR) [ID 92333.1]
    Purge Concurrent Request and/or Manager Data Slow Performance [ID 789698.1]
    Regard
    Helios

  • My query take long time..

    The output of tkprof of my trace file is :
    SELECT ENEXT.NUM_PRSN_EMPLY ,ENEXT.COD_BUSUN ,ENEXT.DAT_CALDE ,ENEXT.COD_SHFT
    FROM
    AAC_EMPLOYEE_ENTRY_EXITS5_VIW ENEXT ,PDS.PDS_EMPLOYEES EMPL ,
    PDS.PDS_EMPLOYMENT_TYPES EMPTYP ,PDS.PDS_PAY_CONDITIONS PAYCON WHERE
    ENEXT.DAT_CALDE BETWEEN :B6 AND :B5 AND ENEXT.NUM_PRSN_EMPLY IN (SELECT
    ATT21 FROM APPS.GLOBAL_TEMPS WHERE ATT1 = 'PRSN') AND ENEXT.NUM_PRSN_EMPLY =
    EMPL.NUM_PRSN_EMPLY AND EMPL.EMTYP_COD_EMTYP = EMPTYP.COD_EMTYP AND
    EMPTYP.LKP_COD_STA_PAY_EMTYP <> 3 AND
    NVL(EMPL.LKP_MNTLY_WITHOUT_ENEXT_EMPLY,2) <> 1 AND EMPL.PCOND_COD_STA_PCOND
    = PAYCON.COD_STA_PCOND AND NVL(EMPL.LKP_MNTLY_WITHOUT_ENEXT_EMPLY,2) <> 1
    AND PAYCON.LKP_FLG_STA_PAY_PCOND = 1 AND ENEXT.DAT_CALDE >=
    EMPL.DAT_EMPLT_EMPLY AND ENEXT.DAT_CALDE <= NVL(EMPL.DAT_DSMSL_EMPLY,
    TO_DATE('15001229','YYYYMMDD')) AND 1 = (CASE WHEN
    ENEXT.LKP_STA_HOLIDAY_CALNR = 2 AND ENEXT.LKP_CAT_SHFT_SHTAB = 1 AND
    ENEXT.TYP_DAY BETWEEN 4 AND 6 THEN 0 WHEN ENEXT.LKP_STA_HOLIDAY_CALNR = 2
    AND ENEXT.LKP_CAT_SHFT_SHTAB = 1 AND ENEXT.TYP_DAY NOT BETWEEN 4 AND 6 THEN
    1 WHEN ENEXT.LKP_STA_HOLIDAY_CALNR = 2 AND ENEXT.LKP_CAT_SHFT_SHTAB = 2
    THEN 0 WHEN ENEXT.LKP_STA_HOLIDAY_CALNR = 1 AND ENEXT.LKP_CAT_SHFT_SHTAB =
    1 THEN 1 WHEN ENEXT.LKP_STA_HOLIDAY_CALNR = 1 AND ENEXT.LKP_CAT_SHFT_SHTAB =
    2 THEN 0 END) AND ENEXT.LKP_COD_DPUT_BUSUN = NVL(:B4 ,
    ENEXT.LKP_COD_DPUT_BUSUN) AND ENEXT.LKP_COD_MANAG_BUSUN = NVL(:B3 ,
    ENEXT.LKP_COD_MANAG_BUSUN) AND ENEXT.COD_BUSUN = NVL(:B2 , ENEXT.COD_BUSUN)
    AND ENEXT.COD_CAL = NVL(COD_CAL, ENEXT.COD_CAL) AND ENEXT.NUM_PRSN_EMPLY =
    NVL(:B1 , ENEXT.NUM_PRSN_EMPLY) AND ENEXT.COD_SHFT IN (SELECT
    SHFTBL.COD_SHTAB FROM AAC_SHIFT_TABLES SHFTBL WHERE
    SHFTBL.LKP_CAT_SHFT_SHTAB = 1) AND ENEXT.DAT_CALDE NOT IN (SELECT ABN.DAT
    FROM APPS.AAC_EMPL_EN_EX_ABNORMAL_VIW ABN WHERE ABN.PRSN =
    ENEXT.NUM_PRSN_EMPLY AND ABN.DAT BETWEEN :B6 AND :B5 ) AND ENEXT.DAT_CALDE
    IN (SELECT EMPENEXT.DAT_STR_SHFT_ENEXT FROM AAC.AAC_EMPLOYEE_ENTRY_EXITS
    EMPENEXT WHERE EMPENEXT.EMPLY_NUM_PRSN_EMPLY = EMPL.NUM_PRSN_EMPLY AND
    EMPENEXT.DAT_STR_SHFT_ENEXT BETWEEN :B6 AND :B5 AND
    EMPENEXT.LKP_FLG_STA_ENEXT <> 3) ORDER BY ENEXT.NUM_PRSN_EMPLY,
    ENEXT.DAT_CALDE
    call count cpu elapsed disk query current rows
    Parse 2 0.00 0.00 0 0 0 0
    Execute 2 0.00 0.00 0 0 0 0
    Fetch 2 40.45 40.30 306 17107740 0 24
    total 6 40.45 40.30 306 17107740 0 24
    what is wrong in my query?
    why it take long time?

    user13344656 wrote:
    what is wrong in my query?
    why it take long time?See PL/SQL forum FAQ
    https://forums.oracle.com/forums/ann.jspa?annID=1535
    *3. How to improve the performance of my query? / My query is running slow.*
    SQL and PL/SQL FAQ
    For instructions on what information to post an how to format it.

  • Installing patch 5217019 takes long time.

    Hi,
    I will install patch 5217019.But it does not complete succesfuly.Compiling apps schema takes long time I think.There are a lot of invalid objects.
    please help me to install patch 5217019.
    thanks.

    This is an EBS patch for WF Notificaton Mailer. What are your OS and EBS versions and your ATG RUP version ? This patch is included in ATG RUP5 and above. Have all of the pre-req patches listed in the readme file been applied ? What is your definition of a "long time" ?
    HTH
    Srini

  • BPM Process chain takes long time to process

    We have BI7, Netweaver 2004s on Oracle and SUN Solaris
    There is a process chain (BPM) which pulls data from the CRM system into BW. The scheduled time to run this chain is 0034 hrs. This chain should ideally complete before / around 0830 Hrs. <b>Now the problem is that every alternate day this chain behaves normally and gets completed well before 0830 hrs but every alternate day this chain fails…</b> there are almost 40 chains running daily. Some are event triggered (dependent with each other) or some run in parallel. In this, (BPM) process chain, usually there are 5 requests with 3 Delta and 2 full uploads (Master Data). The delta uploads finishes in 30 minutes without any issues with very few record transfers. The first full upload is from 0034 hrs to approximately 0130 hrs and the 2nd upload is from 0130 hrs to 0230 hrs. Now if the 1st upload gets delayed then the people who are initiating these chains, stop the 2nd full upload and continue it after all the process chains are completed. Now this entire BPM process chain sometimes takes 17 -18 hrs to complete!!!!!
    No other loads in CRM or BW when these process chains are running
    CRM has background jobs to push IDOCS to BW which run every 2 minutes which runs successfully
    Yesterday this chain got completed successfully (well within stipulated time) with over 33,00,000 records transferred but sometimes it has failed to transfer even 12,00,000 records!!
    Attaching a zip file, please refer the “21 to 26 Analysis screen shot.doc” from the zip file
    Within the zip file, attaching “Normal timings of daily process chains.xls” – the name explains it….
    Also within the zip file refer “BPM Infoprovider and data source screen shot.doc” please refer this file as the infopackage (page 2) which was used in the process chain is not displayed later on in page number 6 BUT CHAIN GOT SUCESSFULLY COMPLETED
    We have analyzed:--
    1)     The PSA data for BPM process chain for past few days
    2)     The info providers for BPM process chain for past few days
    3)     The ODS entries for BPM process chain for past few days
    4)     The point of failure of BPM process chain for past few days
    5)     The overall performance of all the process chains for past few days
    6)     The number of requests in BW for this process chain
    7)     The load on CRM system for past few days when this process chain ran on BW system
    As per our analysis, there are couple of things which can be fixed in the BW system:--
    1)     The partner agreement (transaction WE20) defined for the partner LS/BP3CLNT475 mentions both message types RSSEND and RSINFO: -- collect IDOCs and pack size = 1 Since the pack size = 1 will generate 1 TRFC call per IDOC, it should be changed to 10 so that less number of TRFCs will be generated thus less overhead for the BW server resulting in the increase in performance
    2)     In the definition of destination for the concerned RFC in BW (SM59), the “Technical Setting” tab says the “Load balancing” option = “No”. We are planning to make it “Yes”
    But we believe that though these changes will bring some increase in performance, this is not the root cause of the abnormal behavior of this chain as this chain runs successfully on every alternate day with approximately the same amount of load in it.
    I was not able to attach the many screen shots or the info which I had gathered during my analysis. Please advice how do I attach these files
    Best Regards,

    Hi,
    Normally  index  creation or deletion can take long time in case  your database statistics are not updated properly, so can check  stat  after your data loading is completed and index generation is done,  Do creation of database statistics.
    Then try to recheck ...
    Regards,
    Satya

  • In P6 8.4 web client for loading Resource page takes long time

    As per tested configuration of P6 EPPM 8.4 we are using IE 9 and JRE 1.7.0.67.
    I had checked RAM and its utilization is Max 40%, CPU usage is also very less.
    Enough disk space is also avaliable (70% avaliable).
    Enteries in resources are also very few just 20 numbers.
    Project page is loading normally. But for loading resource page it pause for almost 15-20 seconds.
    Last week i had faced issue that application freezes while loading resource page so i had restarted application and it was working.
    May i know, what will be reason to take long time to load resorce page and possible solution.

    I am attching java console tracer log for while loading resource page..
    please check.
    Java Plug-in 10.67.2.01
    Using JRE version 1.7.0_67-b01 Java HotSpot(TM) 64-Bit Server VM
    User home directory = C:\Users\xyz
    c:   clear console window
    f:   finalize objects on finalization queue
    g:   garbage collect
    h:   display this help message
    l:   dump classloader list
    m:   print memory usage
    o:   trigger logging
    q:   hide console
    r:   reload policy configuration
    s:   dump system and deployment properties
    t:   dump thread list
    v:   dump thread stack
    x:   clear classloader cache
    0-5: set trace level to <n>
    cache: Initialize resource manager: com.sun.deploy.cache.ResourceProviderImpl@344c963c
    network: Version checking for commons-logging.jar, specified version is 8.4.0.0.0283
    security: Blacklist revocation check is enabled
    security: blacklist: created: NEED_LOAD, lastModified: 1425280031913
    security: blacklist: hasBeenModifiedSince 1425280032053 (we have 1425280031913)
    security: Trusted libraries list check is enabled
    network: Version checking for jide.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280034845 (we have 1425280031913)
    network: Version checking for poi.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280035501 (we have 1425280031913)
    network: Version checking for prm-to.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280035594 (we have 1425280031913)
    network: Version checking for commons-lang.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280035173 (we have 1425280031913)
    network: Version checking for prm-img.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036000 (we have 1425280031913)
    network: Version checking for HTMLEditorPro.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280042583 (we have 1425280031913)
    network: Version checking for calendars.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280043535 (we have 1425280031913)
    network: Version checking for forms-1.0.7.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280032381 (we have 1425280031913)
    network: Version checking for resources.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    network: Version checking for prm-applets-common.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036811 (we have 1425280031913)
    network: Version checking for migcalendar.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280043113 (we have 1425280031913)
    network: Version checking for applets-bo.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036156 (we have 1425280031913)
    network: Version checking for ilog.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037763 (we have 1425280031913)
    network: Version checking for prm-guisupport.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036936 (we have 1425280031913)
    network: Version checking for tablesupport.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037965 (we have 1425280031913)
    network: Version checking for resource_strings.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280034939 (we have 1425280031913)
    network: Version checking for commons-collections.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280035469 (we have 1425280031913)
    network: Version checking for prm-common.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036327 (we have 1425280031913)
    network: Version checking for poi-ooxml.jar, specified version is 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037045 (we have 1425280031913)
    basic: Added progress listener: sun.plugin.util.ProgressMonitorAdapter@1ba14608
    security: Expected Main URL: http://server:7001/p6/applets/resources.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/resources.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/prm-applets-common.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/forms-1.0.7.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/prm-guisupport.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/prm-to.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/jide.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/tablesupport.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/applets-bo.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/ilog.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/poi.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/poi-ooxml.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/HTMLEditorPro.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/calendars.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/migcalendar.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/commons-collections.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/commons-lang.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/prm-common.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/resource_strings.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/prm-img.jar
    basic: Plugin2ClassLoader.addURL parent called for http://server:7001/p6/applets/commons-logging.jar
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425538063109 (we have 1425280031913)
    security: Certificate revocation enabled. Disable security validation optimizations.
    security: Reset cached validation for http://server:7001/p6/applets/resources.jar.
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/icons/loading.gif, version: null] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/icons/loading.gif
    network: Cache entry found [url: http://server:7001/p6/applets/resources.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/resources.jar
    cache: Resource http://server:7001/p6/icons/loading.gif has future expires: Thu Mar 12 09:13:57 CAT 2015 update check skipped.
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@90dd6174: 1
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/resources.jar: read=170 full=15762
    cache: Loading full manifest for http://server:7001/p6/applets/resources.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-35881926-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/resources.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425538063109 (we have 1425280031913)
    security: Certificate revocation enabled. Disable security validation optimizations.
    security: Reset cached validation for http://server:7001/p6/applets/resources.jar.
    network: Cache entry found [url: http://server:7001/p6/applets/resources.jar, version: null] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/resources.jar (refcnt=2). Was: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-35881926-8.4.0.0.0283-.idx Now: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-6660b097.idx
    security: Certificate revocation enabled. Disable security validation optimizations.
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425538063109 (we have 1425280031913)
    security: Certificate revocation enabled. Disable security validation optimizations.
    security: Reset cached validation for http://server:7001/p6/applets/resources.jar.
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/resources.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/resources.jar (refcnt=1). Was: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-6660b097.idx Now: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-35881926-8.4.0.0.0283-.idx
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 1
    cache:  Read manifest for http://server:7001/p6/applets/resources.jar: read=170 full=15762
    cache: Loading full manifest for http://server:7001/p6/applets/resources.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 2
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/resources.jar
    security: Loading Deployment certificates from C:\Program Files\Java\jre7\security\trusted.certs
    security: Loaded Deployment certificates from C:\Program Files\Java\jre7\security\trusted.certs
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Deployment session certificate store
    security: Loaded certificates from Deployment session certificate store
    security: Loading certificates from Internet Explorer TrustedPublisher certificate store
    security: Loaded certificates from Internet Explorer TrustedPublisher certificate store
    security: Loading certificates from Internet Explorer DISALLOWED certificate store
    security: Loaded certificates from Internet Explorer DISALLOWED certificate store
    security: Validate the certificate chain using CertPath API
    security: Loading certificates from Internet Explorer ROOT certificate store
    security: Loaded certificates from Internet Explorer ROOT certificate store
    security: Loaded blacklisted.certs file: C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\security\blacklisted.certs
    security: SHA-256Certificate finger print: 794F53C746E2AA77D84B843BE942CAB4309F258FD946D62A6C4CCEAB8E1DB2C6
    security: Checking if certificate is in Internet Explorer DISALLOWED certificate store
    security: SHA-256Certificate finger print: 0CFC19DB681B014BFE3F23CB3A78B67208B4E3D8D7B6A7B1807F7CD6ECB2A54E
    security: Checking if certificate is in Internet Explorer DISALLOWED certificate store
    security: SHA-256Certificate finger print: 8420DFBE376F414BF4C0A81E6936D24CCC03F304835B86C7A39142FCA723A689
    security: Checking if certificate is in Internet Explorer DISALLOWED certificate store
    security: SHA-256Certificate finger print: A4B6B3996FC2F306B3FD8681BD63413D8C5009CC4FA329C2CCF0E2FA1B140305
    security: Checking if certificate is in Internet Explorer DISALLOWED certificate store
    security: The OCSP support is disabled
    security: The CRL support is disabled
    security: Revocation check disabled
    security: Saving certificates in Deployment session certificate store
    security: Saved certificates in Deployment session certificate store
    security: Saving certificates in Deployment session certificate store
    security: Saved certificates in Deployment session certificate store
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425538063109 (we have 1425280031913)
    security: Certificate revocation enabled. Disable security validation optimizations.
    security: Reset cached validation for http://server:7001/p6/applets/resources.jar.
    network: Cache entry found [url: http://server:7001/p6/applets/resources.jar, version: null] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/resources.jar (refcnt=2). Was: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-35881926-8.4.0.0.0283-.idx Now: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-6660b097.idx
    cache: Reading Signers from 6599 http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-6660b097.idx
    cache: Done readSigners(http://server:7001/p6/applets/resources.jar)
    basic: updateValidationResultsForApplet update
    cache: Mark prevalidated: http://server:7001/p6/applets/resources.jar true tm=1426140948227 cert=1453507199000
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280062801 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425538063109 (we have 1425280031913)
    security: Certificate revocation enabled. Disable security validation optimizations.
    security: Reset cached validation for http://server:7001/p6/applets/resources.jar.
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/resources.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/resources.jar (refcnt=1). Was: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-6660b097.idx Now: URL: http://server:7001/p6/applets/resources.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\62\58d3f27e-35881926-8.4.0.0.0283-.idx
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Grant socket perm for http://server:7001/p6/applets/resources.jar : java.security.Permissions@6002a673 (
    ("java.net.SocketPermission" "server" "connect,accept,resolve")
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/resources.jar: read=170 full=15762
    cache: Loading full manifest for http://server:7001/p6/applets/resources.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@b8bf67f3: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/resources.jar
    security: Validate the certificate chain using CertPath API
    basic: Plugin2ClassLoader.getPermissions CeilingPolicy allPerms
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036811 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280036811 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/prm-applets-common.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/prm-applets-common.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@8e5c08ed: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/prm-applets-common.jar: read=170 full=61037
    cache: Loading full manifest for http://server:7001/p6/applets/prm-applets-common.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@8e5c08ed: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/prm-applets-common.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\57\3aee4c39-4ea92ae8-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/prm-applets-common.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036811 (we have 1425280031913)
    network: Cache entry not found [url: http://server:7001/p6/applets/prm-applets-common.jar, version: null]
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/prm-applets-common.jar
    security: Validate the certificate chain using CertPath API
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Grant socket perm for http://server:7001/p6/applets/prm-applets-common.jar : java.security.Permissions@44f94083 (
    ("java.net.SocketPermission" "server" "connect,accept,resolve")
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/prm-applets-common.jar
    security: Validate the certificate chain using CertPath API
    basic: Plugin2ClassLoader.getPermissions CeilingPolicy allPerms
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/resources.jar
    security: Validate the certificate chain using CertPath API
    security: SSV validation:
        running: 1.7.0_67
        requested: 1.7.0.67
        range: null
        javaVersionParam: 1.7.0_67
        Rule Set version: null
    network: Created version ID: 1.7.0.67
    network: Created version ID: 1.7.0.67
    security: continue with running version
    network: Created version ID: 1.7.0.67
    network: Created version ID: 1.7
    network: Created version ID: 2.2.67
    security: blacklist: hasBeenModifiedSince 1425280032381 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280032381 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/forms-1.0.7.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/forms-1.0.7.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@18524ac: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/forms-1.0.7.jar: read=170 full=2928
    cache: Loading full manifest for http://server:7001/p6/applets/forms-1.0.7.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@18524ac: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/forms-1.0.7.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\1\6aa3bac1-775bda80-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/forms-1.0.7.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280032381 (we have 1425280031913)
    network: Cache entry not found [url: http://server:7001/p6/applets/forms-1.0.7.jar, version: null]
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/forms-1.0.7.jar
    security: Validate the certificate chain using CertPath API
    security: blacklist: hasBeenModifiedSince 1425280036936 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280036936 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/prm-guisupport.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/prm-guisupport.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@a4952a42: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/prm-guisupport.jar: read=170 full=68762
    cache: Loading full manifest for http://server:7001/p6/applets/prm-guisupport.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@a4952a42: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/prm-guisupport.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\35\1e51d6e3-30250490-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/prm-guisupport.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036936 (we have 1425280031913)
    network: Cache entry not found [url: http://server:7001/p6/applets/prm-guisupport.jar, version: null]
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/prm-guisupport.jar
    security: Validate the certificate chain using CertPath API
    security: blacklist: hasBeenModifiedSince 1425280035594 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280035594 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425465623861 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/prm-to.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/prm-to.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4f5e0809: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/prm-to.jar: read=170 full=3981
    cache: Loading full manifest for http://server:7001/p6/applets/prm-to.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4f5e0809: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/prm-to.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\52\48797df4-4eaaf1b8-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/prm-to.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280035594 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425465623861 (we have 1425280031913)
    network: Cache entry found [url: http://server:7001/p6/applets/prm-to.jar, version: null] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/prm-to.jar (refcnt=2). Was: URL: http://server:7001/p6/applets/prm-to.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\52\48797df4-4eaaf1b8-8.4.0.0.0283-.idx Now: URL: http://server:7001/p6/applets/prm-to.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\52\48797df4-63558a2c.idx
    security: Trust for: http://server:7001/p6/applets/prm-to.jar has ended: Thu Jan 01 02:00:00 CAT 1970
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4f5e0809: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280035594 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425465623861 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/prm-to.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/prm-to.jar (refcnt=1). Was: URL: http://server:7001/p6/applets/prm-to.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\52\48797df4-63558a2c.idx Now: URL: http://server:7001/p6/applets/prm-to.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\52\48797df4-4eaaf1b8-8.4.0.0.0283-.idx
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4f5e0809: 1
    cache:  Read manifest for http://server:7001/p6/applets/prm-to.jar: read=170 full=3981
    cache: Loading full manifest for http://server:7001/p6/applets/prm-to.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4f5e0809: 2
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/prm-to.jar
    security: Validate the certificate chain using CertPath API
    security: blacklist: hasBeenModifiedSince 1425280034845 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280034845 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/jide.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/jide.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@215976c: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/jide.jar: read=170 full=144099
    cache: Loading full manifest for http://server:7001/p6/applets/jide.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@215976c: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/jide.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\12\4555650c-5003359c-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/jide.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280034845 (we have 1425280031913)
    network: Cache entry not found [url: http://server:7001/p6/applets/jide.jar, version: null]
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/jide.jar
    security: Validate the certificate chain using CertPath API
    security: blacklist: hasBeenModifiedSince 1425280037965 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425465618214 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037965 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/tablesupport.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/tablesupport.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@c5e01a2d: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/tablesupport.jar: read=170 full=22255
    cache: Loading full manifest for http://server:7001/p6/applets/tablesupport.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@c5e01a2d: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/tablesupport.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\60\607124fc-59c4200a-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/tablesupport.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425465618214 (we have 1425280031913)
    network: Cache entry found [url: http://server:7001/p6/applets/tablesupport.jar, version: null] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/tablesupport.jar (refcnt=2). Was: URL: http://server:7001/p6/applets/tablesupport.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\60\607124fc-59c4200a-8.4.0.0.0283-.idx Now: URL: http://server:7001/p6/applets/tablesupport.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\60\607124fc-2cdc3aab.idx
    security: Trust for: http://server:7001/p6/applets/tablesupport.jar has ended: Thu Jan 01 02:00:00 CAT 1970
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@c5e01a2d: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425465618214 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037965 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/tablesupport.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/tablesupport.jar (refcnt=1). Was: URL: http://server:7001/p6/applets/tablesupport.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\60\607124fc-2cdc3aab.idx Now: URL: http://server:7001/p6/applets/tablesupport.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\60\607124fc-59c4200a-8.4.0.0.0283-.idx
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@c5e01a2d: 1
    cache:  Read manifest for http://server:7001/p6/applets/tablesupport.jar: read=170 full=22255
    cache: Loading full manifest for http://server:7001/p6/applets/tablesupport.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@c5e01a2d: 2
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/tablesupport.jar
    security: Validate the certificate chain using CertPath API
    security: blacklist: hasBeenModifiedSince 1425280036156 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280036156 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425472043817 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/applets-bo.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/applets-bo.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@7f6f84ed: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/applets-bo.jar: read=170 full=65962
    cache: Loading full manifest for http://server:7001/p6/applets/applets-bo.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@7f6f84ed: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/applets-bo.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\34\26f05562-1ff2601f-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/applets-bo.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036156 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425472043817 (we have 1425280031913)
    network: Cache entry found [url: http://server:7001/p6/applets/applets-bo.jar, version: null] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/applets-bo.jar (refcnt=2). Was: URL: http://server:7001/p6/applets/applets-bo.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\34\26f05562-1ff2601f-8.4.0.0.0283-.idx Now: URL: http://server:7001/p6/applets/applets-bo.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\34\26f05562-4f148928.idx
    security: Trust for: http://server:7001/p6/applets/applets-bo.jar has ended: Thu Jan 01 02:00:00 CAT 1970
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@7f6f84ed: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280036156 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425472043817 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/applets-bo.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/applets-bo.jar (refcnt=1). Was: URL: http://server:7001/p6/applets/applets-bo.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\34\26f05562-4f148928.idx Now: URL: http://server:7001/p6/applets/applets-bo.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\34\26f05562-1ff2601f-8.4.0.0.0283-.idx
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@7f6f84ed: 1
    cache:  Read manifest for http://server:7001/p6/applets/applets-bo.jar: read=170 full=65962
    cache: Loading full manifest for http://server:7001/p6/applets/applets-bo.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@7f6f84ed: 2
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/applets-bo.jar
    security: Validate the certificate chain using CertPath API
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Grant socket perm for http://server:7001/p6/applets/applets-bo.jar : java.security.Permissions@a77ba09 (
    ("java.net.SocketPermission" "server" "connect,accept,resolve")
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: Missing Application-Library-Allowable-Codebase manifest attribute for: http://server:7001/p6/applets/applets-bo.jar
    security: Validate the certificate chain using CertPath API
    basic: Plugin2ClassLoader.getPermissions CeilingPolicy allPerms
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037763 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425280037763 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425465623658 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/ilog.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: Adding MemoryCache entry: http://server:7001/p6/applets/ilog.jar
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4bc89a27: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache:  Read manifest for http://server:7001/p6/applets/ilog.jar: read=170 full=195916
    cache: Loading full manifest for http://server:7001/p6/applets/ilog.jarcache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4bc89a27: 2
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    cache: Reading Signers from 6599 http://server:7001/p6/applets/ilog.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\36\64180da4-182cab74-8.4.0.0.0283-.idx
    cache: Done readSigners(http://server:7001/p6/applets/ilog.jar)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037763 (we have 1425280031913)
    security: blacklist: hasBeenModifiedSince 1425465623658 (we have 1425280031913)
    network: Cache entry found [url: http://server:7001/p6/applets/ilog.jar, version: null] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/ilog.jar (refcnt=2). Was: URL: http://server:7001/p6/applets/ilog.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\36\64180da4-182cab74-8.4.0.0.0283-.idx Now: URL: http://server:7001/p6/applets/ilog.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\36\64180da4-1b5ccf61.idx
    security: Trust for: http://server:7001/p6/applets/ilog.jar has ended: Thu Jan 01 02:00:00 CAT 1970
    cache: registerReference: com.sun.deploy.cache.MemoryCache$CachedResourceReference@4bc89a27: 1
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425280037763 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Created version ID: 8.4.0.0.0283
    security: blacklist: hasBeenModifiedSince 1425465623658 (we have 1425280031913)
    network: Created version ID: 8.4.0.0.0283
    network: Cache entry found [url: http://server:7001/p6/applets/ilog.jar, version: 8.4.0.0.0283] prevalidated=false/0
    cache: MemoryCache replacing http://server:7001/p6/applets/ilog.jar (refcnt=1). Was: URL: http://server:7001/p6/applets/ilog.jar | C:\Users\xyz\AppData\LocalLow\Sun\Java\Deployment\cache\6.0\36\64180da4-1b5ccf61.idx Now

Maybe you are looking for

  • Ssrs expression to sql query

    Hi, I am unable to convert the below ssrs expression to sql query. can you guys help. --          IIF(Parameters!parameter1.Value Is Nothing,  --               " 3>2 ",  --               "column1 NOT LIKE --                           Replace(IIF(Left

  • USR02-LTIME - Last logon Time

    Hi All we have to trace the last logon time of CRM webclient users but USR02-LTIME does not write the right time, in this sense: - you logon at 11:00 with user TEST - you see USR02-LTIME = 11:00 - you use the webclient without logoff and you see in U

  • Archive Link Configuration

    Hi, Anyone tell me how to configure a file system as a content repository for archive link? Thanks, Dave

  • Autocomplete / code insight features appeared in Release 919.

    The first time I ran version 919, in the SQL Worksheet pain I typed in "DBMS_" and Code Insight popped up listing the database packages starting with "DBMS_". That was very cool! Only problem is Code Insight has disappeared. I made no Raptor configur

  • Training in ORACLE FINANCIAL in New Delhi - uegent query

    Hi, I would like to know if there are any centres offering course in Oracle Financial in Delhi, India. What is the duration for the course and how much does it cost.What is the scope after course completion since I am new to Finance n ERP. I am curre