Create weblogic as a windows service

By making entry in windows registry we can create weblogic server instance as windows service. To do this, we need to create a script which will have weblogic server-specific variables like domain name, server name, etc. This script calls master script called installSvc.cmd(${bea_dir}\wlserver_10.3\server\bin).

Here are the steps:
1. Go to${bea_dir}\wlserver_10.3\server\bin where bea_dir is home directory of weblogic installation.

2. Create a file called createSvc.cmd with following values: please make sure you mention the right domain name, path and admin server instance name. Also check the path of installSvc.cmd it varies from one version to other.
    echo off
    SETLOCAL
    set DOMAIN_NAME=sampleDomain
    set USERDOMAIN_HOME=c:\bea\user_projects\domains\sampleDomain
    set SERVER_NAME=Adminserver_name
    set PRODUCTION_MODE=false

    set JAVA_VENDOR=Sun
    set JAVA_HOME=C:\bea\jdk160_05
    set MEM_ARGS=-Xms256m -Xmx512m
    call "c:\bea\wlserver_10.3\server\bin\installSvc.cmd"
    ENDLOCAL


3. Execute createSvc.cmd script from same folder c:\bea\wlserver_10.3\server\bin\

4. This should create service with name of "beasvc sampleDomain_Adminserver_name" in the registry under HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services

5. Also, if you go to services under Control panel, you should see the service with above name. Click the service to start. If you don't see it, there is some problem or sure. Check the path of domain and other variables in createSvc script.

6. Also if there is an issue with start up, you may check the Admin server logs under domain.
Good luck. Let me know  if you are running into any issues.

How to change the default service name?
As you know this script internal calls installSvc.cmd to create a windows service, this will prefix default "beasvc domain_name Adminserver....". To remove this prefix and have a custom service name, edit installSvc.cmd and look for beasvc and change the name you wanted to.
"%WL_HOME%\server\bin\beasvc" -install -svcname:"beasvc %DOMAIN_NAME%_%SERVER_NAME%" -javahome:"%JAVA_HOME%" -execdir:"%USERDOMAIN_HOME%" -maxconnectretries:"%MAX_CONNECT_RETRIES%" -host:"%HOST%" -port:"%PORT%" -extrapath:"%EXTRAPATH%" -password:"%WLS_PW%" -cmdline:%CMDLINE%

How to remove server instance as a windows service:
Create a script called removeSvc.cmd and copy the following lines. Make sure adminServer name & domain name values are correctly set. And execute from the same place(c:\bea\wlserver_10.3\server\bin) where you created window service before.

echo off
SETLOCAL
set DOMAIN_NAME=sampleDomain
set SERVER_NAME=AdminServer
call "c:\bea\wlserver_10.3\server\bin\uninstallSvc.cmd"
ENDLOCAL

P.S: The name should be matching with the name given at the time of creating service in installSvc.cmd.

90 comments:

  1. Thanks! This solved a problem I was having – all good now!

    ReplyDelete
  2. This comment has been removed by the author.

    ReplyDelete
  3. Glad to know it worked. Thank you!

    ReplyDelete
  4. So where do we specify the Admin user and password for this to work?

    ReplyDelete
  5. if your domain picks up username/password from boot.propeties, no need to mention them in the script. That is wiser thing to do. Otherwise check above, i have added as part of the script itself where username/password is in cleartext.

    ReplyDelete
  6. Thanks, that worked.

    ReplyDelete
  7. I have weblogic installed as a service but when I add -verbose:gc to setDomainEnv I can see it in the registry but doesnt go anywhere. The -Dweblogic.Stderr=filename appears in the registry too but the file is not touched. When I run the start on the command line it sends gc to stderr just fine. What am I doing wrong?

    ReplyDelete
  8. What does it mean "doesn't go anywhere"? you don't see in services ? Can you post your script?

    ReplyDelete
  9. This is from the user_mem_args line
    USER_MEM_ARGS=-verbose:gc -Xms1024m -Xmx1024m -XX:NewRatio=2 -XX:+PrintGCDetails -CC:+PrintGCTimeStamps -XX:+UseParallelGC -XX:+HeapDumpOnOutOfMemoryError -XX:MaxPermSize=128m -Dfile.encoding=UTF-8 -Djava.awt.headless=true -Dweblogic.Stderr=D:\bea\user_profiles\domains\clarity\servers\AdminServer\logs\AdminServerStderr.log

    The AdminServerStderr.log is created but nothing is written to it.

    ReplyDelete
  10. This comment has been removed by a blog administrator.

    ReplyDelete
  11. Hi
    I am using weblogic portal 10.3 and i have previously created a domain and got some problem with my server and deleted it now i am trying to create a new server in the same domain and i am getting this error msg :


    The server is invalid. Error occurred reading server credential. If the domain was recreated, the server instance in Workshop must also be recreated. Required classpath for credential

    Can you please help me on this i am not an admin i am a developer so can you be more clear.

    Thank you

    ReplyDelete
  12. Pavan,

    Are you able to see boot.properties under your domain_home\servers\AdminServer\security folder?

    ReplyDelete
  13. Yes i am able to see the boot.properties

    ReplyDelete
  14. in which OS you have installed weblogic on? Could you try creating a new domain and see?

    ReplyDelete
  15. Its in Vista ..I've even tried to create a new domain but its not working.

    ReplyDelete
  16. I would recommend you to re-install the weblogic. Also do make sure weblogic installable is compatible with vista.

    ReplyDelete
  17. Hi, i have installed Weblogic as a service, service got created successdully, but when i try to start tha, it is starting and immedieately getting stopped, giving a prompt saying that "the beasvc _TestServer is started and then stopped on your local computer.some services stop automatically if they have no work to do,for example, Performance Logs and the Alerts Service".Could you please help me to resolve this please.
    Thanks in advance

    ReplyDelete
  18. Hi, I followed the steps to create a service but when the service is started I get some class not found errors, such as oracle.security.audit.ajl.loader.JEEAuditLoader and oracle.dms.wls.DMSServletFilter, I tried addind the jars containig this classes to the CLASSPATH and when doing so, the service wont start. Could you help me in solving this errors?

    ReplyDelete
  19. @sharma and @ vvcortazar,
    Try looking into domain logs for error messages. that is the best place to start debugging.
    @sharma -
    after how many minutes, the service got stopped?

    ReplyDelete
  20. immedieately, right click on windows service, click start, immedieately popup comes saying that server has started and immedieately stopped.

    If i use the same batch file and try this on some other machines it works fine, is there anything that depends on user previliges?? Because the problem it has occured, on that machine, i am using a test user....

    ReplyDelete
  21. how to specify jrockit/sun jre in case of window services?

    ReplyDelete
  22. Try as below for Sun JVM in the above script:
    set JAVA_VENDOR=Sun
    set JAVA_HOME=C:\bea\jdk160_05
    or
    For Jrockit:
    set JAVA_VENDOR=BEA
    set JAVA_HOME=C:\bea\jrockit_160_05

    Good luck!

    ReplyDelete
  23. I see that you can specify where the log files are located, but is there a way to set within the script what rotation type to use for logging?

    ReplyDelete
  24. Thanks Aananth.. This was very helpful!!

    ReplyDelete
  25. This comment has been removed by the author.

    ReplyDelete
  26. @Sharma Jampani - Did you get a solution to your problem? I am having the same exact issue on multiple computers and can NOT get around it.

    Any help will be appreciated.

    ReplyDelete
  27. @Sharma Jampani - Did you get a solution to your problem? I am having the same exact issue on multiple computers and can NOT get around it.

    Any help will be appreciated.

    ReplyDelete
  28. I followed the above procedure to install the svc, when I look in the registry the mem Args are not what I specified in the createsvc.cmd script, they are default and are too low for our needs. How do I get the mem args updated?

    ReplyDelete
  29. That's weird. Try adding the same in installSvc.cmd. Make sure you delete the service before doing it.

    Let me know if that doesn't help.

    Ananth.

    ReplyDelete
  30. I have uninstalled/reinstalled and still find the same mem settings showing in the registry in the CmdLine field. Am I looking at the wrong thing?
    -client -Xms32m -Xmx200m -XX:MaxPermSize=128m -XX:+UseSpinning

    ReplyDelete
  31. You will have to remove those entries from createSvc.cmd and put in installSvc.cmd.

    ReplyDelete
  32. I apologize, you are right. It was very strange that it doesn't pick up from installSvc.
    Try setting the MEM_ARGS values in WL_HOME\common\bin\commEnv.cmd. Please make sure you do change for JVM you choose(sun or jrockit)

    ReplyDelete
  33. Hi Ananth,

    I'm having the same problem as Sharma. I've tried creating the script exactly as you describe, but I cannot start the service. My stdout log reports the error "Error in JVM. Cause=Unable to find a JVM!". I am not able to get rid of this error.

    As a test, I tried to simulate beasvcX64.exe (I use a 64-bit server) by running thru command line and it starts the server, but not with Windows Services.

    Any more suggestions?

    ReplyDelete
  34. Hi,
    I am not able to create service after running createSvc.cmd. Error displayed in cmd window is openscmanager failed 0X5. Please guide.
    Thanks in Advance.

    ReplyDelete
  35. @Walter, Could you try adding Java_home & vendor as mentioned above in the createSvc script?
    If you still have issues, can you copy/paste your script?

    ReplyDelete
  36. setting the MEM_ARGS values in WL_HOME\common\bin\commEnv.cmd worked! Now, the service will not stay started. Classpath issue?

    ReplyDelete
  37. I found the problem. THanks for all your help. Do you have any expertise in working with the domain templates? I'm having trouble getting the directory structure to match the server from which I made the template.

    ReplyDelete
  38. Ananth,

    The java_home and vendor are set in the script. Here is a copy:

    echo on
    SETLOCAL
    set DOMAIN_NAME=base_domain
    set USERDOMAIN_HOME=D:\product\Oracle\11.1.1\Middleware\user_projects\domains\base_domain
    set SERVER_NAME=AdminServer
    set MEM_ARGS=-Xms512M -Xmx512M
    set PRODUCTION_MODE=FALSE
    set JAVA_VENDOR=Sun
    set JAVA_HOME=C:\PROGRA~1\Java\JDK16~1.0_1
    cd %USERDOMAIN_HOME%
    call %%USERDOMAIN_HOME%\bin\setDomainEnv.cmd
    call "D:\product\Oracle\11.1.1\Middleware\wlserver_10.3\server\bin\installSvc.cmd"
    ENDLOCAL

    Marcia - How did you resolve your problem?

    ReplyDelete
  39. I had the wrong drive indicated in the createsvc script for the parameter USERDOMAIN_HOME. Doh!

    ReplyDelete
  40. Walter,
    Check if your JAVA_HOME value is correctly said. Try to enter the full path with out any characters.

    ReplyDelete
  41. Hi Ananth,

    can you provide any source where can i find examples with weblogic portal using hibernate to interact with database..or else can you give any brief idea about how we configure hibernate mapping with our portal application.

    ReplyDelete
  42. @SHARMA, I HAD THE SAME PROBLEM WITH YOU. I RESOLVE IT BY CHECKING JAVA HOME. I REPLACE JDK BY JROCKIT. DELETE THE WINDOWS SERVICE AND RUN THE SCRIP AGAIN.
    HERE IS MY SCRIPT

    echo off
    SETLOCAL
    set JAVA_HOME=C:\bea\jrockit_150_11
    set JAVA_VENDOR=Sun
    set DOMAIN_NAME=base_domain
    set USERDOMAIN_HOME=C:\bea\user_projects\domains\base_domain
    set SERVER_NAME=osg-gxj5inn3ipb
    set WLS_USER=weblogic
    set WLS_PW=weblogic
    set PRODUCTION_MODE=true
    call C:\bea\wlserver_10.0\server\bin\installSvc.cmd"
    ENDLOCAL

    HOPE THIS HELPS

    - JAY TOBIO

    ReplyDelete
  43. Here's the batch file I use:

    @echo off
    SETLOCAL enabledelayedexpansion

    set DOMAIN_NAME=MyDomain
    set USERDOMAIN_HOME=C:\bea\user_projects\domains\%DOMAIN_NAME%
    set SERVER_NAME=AdminServer
    set WLS_USER=weblogicadmin

    set /P WLS_PW=Enter the weblogic admin password:
    echo Password: %WLS_PW%
    pause If this isn't correct press ctrl-break now...

    set PRODUCTION_MODE=false
    set JAVA_HOME=C:\bea\jrockit_160_05
    set JAVA_VENDOR=BEA

    call C:\bea\wlserver_10.3\server\bin\installSvc.cmd

    ENDLOCAL

    ReplyDelete
  44. Walter,
    Have you got rid of your problem yet?

    This is caused by a typo in the installSvc.cmd. :)
    My environment: Windows 64; WebLogic 11g (10.3.2.0); jrockit-R27.6.5-jre1.6.0_14; 3 days ;)

    Check it!
    1.) Run "java"
    result contains these 2 lines:
    where options include:
    -jrockit to select the "jrockit" VM

    2.) Open the "installSvc.cmd" file:
    it contains this:
    if "%JAVA_VENDOR%" == "BEA" set JAVA_VM=-jrocket

    3.) Check it in your registry
    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\WebLogic sec_domain_t-sec-idmadm-wlas\Parameters\CmdLine starts with "-jrocket"

    So the problem is the following:
    "jrockit" is waited instead of "jrocket"

    Resolve the problem by one of the next two method:
    A.) Modify the CmdLine Parameter if you are there (see 3.)) But in this case next time it will be a mistake again!

    B.) Modify the "installSvc.cmd" file. (see 2.))

    LAci

    ReplyDelete
    Replies
    1. Handy info... u made my day... thanks

      Delete
  45. Err, no, this doesn't work at all. Test your service using this command:

    beasvc -debug "beasvc beasvc sampleDomain_Adminserver_name"

    and you'll see that you simply get a load of java.lang.ClassNotFoundException thrown when the service attempts to run.

    Did you even test this before creating this blog entry?

    ReplyDelete
  46. You need to call %USERDOMAIN_HOME%\bin\setDomainEnv.cmd before calling installSvc.cmd. This sets up about 50 different environment variables that WLS needs to start correctly. The seven environment variables you've defined above will not suffice.

    Once you've created the service, you then need to open regedit and edit:

    HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\Services\beasvc base_domain_AdminServer\Parameters\CmdLine

    to set the memory arguments.

    ReplyDelete
  47. Its worked and start the WLS Server but it does not start the applications deployed on that domain.

    Please guide.

    ReplyDelete
  48. HI..what is the procedure for BEA 9.2 because there is no InstallSvc.cmd comand?

    thanks in advance

    ReplyDelete
  49. Hi..what is the procedure for BEA 9.2 version?

    because there is no InstallScv.cmd

    Thanks in advance

    ReplyDelete
  50. Hey Guys,

    WLS 9.2 does have a path to InstallSvc.cmd

    Here is the path to my file:

    D:\BEA\BEA922\weblogic92\server\bin

    ReplyDelete
  51. HI, I am getting an error when setting Weblogic as a windows service. I am running the service on Windows Server with Sun ad the JAVA_VENDOR. Error I am getting is...

    Delay: ....... 0

    Thread created successfully!
    Unrecognized option: -server

    Error in java application .......

    The following line contains specific error details .......
    Unable to initialize the Java virtual machine!

    ReplyDelete
    Replies
    1. I hope you found the solution. I got the same error. Please help me if your got it.
      Thanks in advance

      Delete
    2. Server should be in Production mode and ProductionMode=true

      Delete
  52. HI,
    When I am trying to create a clustered WLS10gR3 domain, with one MS in one machine and other MS in other with Node Managers protocol as SSL with Host Name verification as false, it is throwing an exception of SSL Handshake failure during the startup. The managed server which is on the same machine of the admin server is starting properly while the other one is creating trouble. Any help would be appreciated.


    Regards,
    Souvik Mukherjee

    ReplyDelete
  53. Hi,
    i installed WLS 10.3 64-bit on Windows 2008.
    Admin instance is running as service fine but how can i create the managedserver as service?
    I try the same way as i did for admin instance but this didn't work.
    any idea for my problem?
    thanks & regards.
    Fatih

    ReplyDelete
  54. But what is the need of doing all these as wlserver 10.3 comes with inbuilt service creation ... any way i know the process specified is for older versions and i just want to say no need of service creation for the latest wlserver......

    ReplyDelete
  55. Hi,
    I am new with weblogic, I ran the script and the service did get created. But when I start the service i get the error "the beasvc _dctm_domain is started and then stopped on your local computer.some services stop automatically if they are not in use by other services or programs".

    Could you tell me the location for the admin logs?
    I looked under "E:\bea\user_projects\domains\DCTM_Domain\servers" but there is no log folder in here or in its sub folders.

    ReplyDelete
  56. You can do this on weblogic 9.2MP1,2 &3. Procedure is exactly the same.

    ReplyDelete
  57. Hi,

    I tried this out and it worked. Service is running.

    But, when i try to open console, browser gives me an Error 404--Not Found.

    The logs confirm that server is in running mode, but there are exceptions like for example:

    java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup

    Any ideas how to fix this?
    Thanks

    ReplyDelete
  58. This comment has been removed by the author.

    ReplyDelete
  59. Thanks..It solved my problem

    ReplyDelete
  60. Hi,

    I tried this out and it worked. Service is running.

    But, when i try to open EM, browser gives me an Error 404--Not Found.

    The logs confirm that server is in running mode, but there are exceptions like for example:

    java.lang.ClassNotFoundException: oracle.jrf.wls.JRFStartup

    And in my Admin console In depolyment five Enterprise applications got failed as they have to be in Active State.

    Any ideas how to fix this?
    Thanks

    ReplyDelete
  61. @Suman I have the exact same error! I'm on WLS 10.3.6 on Windows Server 2008. Any luck w/ your issue? Looks like a classpath issue to me.

    Let me know if you resolved yours.

    Thanks.

    ReplyDelete
  62. Hi, Ananth...
    I am new to weblogic ..i Am using 10.3.5.0 .I like to learn Log4j mechanism so can u explain me very clearly about it..like purpose of log4j, and how it will work ......


    thanks , BALAJI.

    ReplyDelete
  63. Weblogic 12c


    set JAVA_HOME=D:\Java7
    FOR %%i IN ("%JAVA_HOME%") DO SET JAVA_HOME=%%~fsi

    @rem JAVA VENDOR, possible values are:
    @rem Oracle, HP, IBM, Sun, etc.
    set JAVA_VENDOR=Oracle

    @rem PRODUCTION_MODE, default to the development mode
    set PRODUCTION_MODE=true

    :noReset
    set JAVA_VENDOR_TMP=
    if "%JAVA_VENDOR%" == "Oracle" (
    set JAVA_VENDOR_TMP=Sun
    if exist %JAVA_HOME%/jre/bin/jrockit (
    set JAVA_VENDOR_TMP=Oracle
    ) else (
    for /d %%I in (%JAVA_HOME%\jre\lib\*) do if exist %%I\jrockit set JAVA_VENDOR_TMP=Oracle
    )
    )
    if defined JAVA_VENDOR_TMP set JAVA_VENDOR=%JAVA_VENDOR_TMP%

    @rem set up JVM options
    if "%JAVA_VENDOR%" == "Oracle" goto oracle
    if "%JAVA_VENDOR%" == "Sun" goto sun


    ECHO JAVA VENDOR IS..... ####### %JAVA_VENDOR%

    PAUSE

    goto continue

    :oracle
    if "%PRODUCTION_MODE%" == "true" goto oracle_prod_mode
    set JAVA_VM=-jrockit
    set MEM_ARGS=-Xnohup -Xms512m -Xmx1024m
    set JAVA_OPTIONS=%JAVA_OPTIONS% -Xverify:none -Djava.endorsed.dirs=%JAVA_HOME%/jre/lib/endorsed;%WL_HOME%/endorsed
    goto continue
    :oracle_prod_mode
    set JAVA_VM=-jrockit
    set MEM_ARGS=-Xnohup -Xms512m -Xmx1024m
    set JAVA_OPTIONS=%JAVA_OPTIONS% -Djava.endorsed.dirs=%JAVA_HOME%/jre/lib/endorsed;%WL_HOME%/endorsed
    goto continue


    ***:sun***
    ***if "%PRODUCTION_MODE%" == "true" goto sun_prod_mode***
    ***set JAVA_VM=-client***
    ***set MEM_ARGS=-Xms32m -Xmx200m -XX:PermSize=128m -XX:MaxPermSize=256m -XX:+UseSpinning***
    ***set JAVA_OPTIONS=%JAVA_OPTIONS% -Xverify:none -Djava.endorsed.dirs=%JAVA_HOME%/jre/lib/endorsed;%WL_HOME%/endorsed***
    ***goto continue***
    ***:sun_prod_mode***
    ***set JAVA_VM=-server***
    ***set MEM_ARGS=-Xms32m -Xmx200m -XX:PermSize=128m -XX:MaxPermSize=256m -XX:+UseSpinning***
    ***set JAVA_OPTIONS=%JAVA_OPTIONS% -Djava.endorsed.dirs=%JAVA_HOME%/jre/lib/endorsed;%WL_HOME%/endorsed***
    ***goto continue***
    **:continue**

    ReplyDelete
  64. I am running weblogic12c with jdk7 .which secion needs change with respect to memory change?

    ReplyDelete
  65. Hi,
    I am new to Windows installer,
    When i tried to run createSVC.cmd i am getting following error

    The filename, directory name, or volume label syntax is incorrect.

    Please check my file and let me know whats wrong with it ...


    @echo off
    SETLOCAL
    set DOMAIN_NAME=SOAApps
    set USERDOMAIN_HOME=D:\Soa\SoaDomain\SOAApps
    set SERVER_NAME=AdminServer
    set PRODUCTION_MODE=false
    set JAVA_VENDOR=Sun
    set JAVA_HOME=D:\Middleware\SOASuite11g\jdk160_29
    set WL_HOME=D:\Middleware\SOASuite11g\wlserver_10.3
    set WLS_USER=weblogic
    set WLS_PW=welcome1
    set HOST=localhost
    set PORT=7001
    set MEM_ARGS=-Xms512m –Xmx512m
    call %WL_HOME%\server\bin\installSvc.cmd
    ENDLOCAL

    ReplyDelete
  66. I believe this is one of the most important information for
    me. And i'm glad reading your article. But should observation on some basic issues, The web site taste is wonderful, the articles is actually excellent : D. Good task, cheers

    My web page - www.rangide.com

    ReplyDelete
  67. Its not my first time to pay a visit this web site, i am browsing this site dailly and take good information from here daily.



    Also visit my weblog :: riboflavin

    ReplyDelete
  68. Please let me know if you're looking for a article author for your site. You have some really good articles and I believe I would be a good asset. If you ever want to take some of the load off, I'd love to write some articles for your blog in exchange for a link
    back to mine. Please shoot me an email if interested.
    Thank you!

    My page ... "ligulate"

    ReplyDelete
  69. Incredible points. Sound arguments. Keep up the good work.


    Here is my web blog; vakantiehuis

    ReplyDelete
  70. Just wish to say your article is as astounding.
    The clearness in your publish is simply cool and that i
    can suppose you are knowledgeable on this subject.
    Fine along with your permission allow me to grab your feed to stay up to date with imminent post.
    Thanks a million and please carry on the enjoyable work.



    Here is my webpage ... straight women who love women

    ReplyDelete
  71. Thanks.. It was really helpful.

    ReplyDelete
  72. I have created and added the bea weblogic serive as windows service. Earlier It was working fine but now it started giving an error "SetServiceStatus() failed!". Everytime I restart the service it stops automatically, throwing the above mentioned error. Please help.

    ReplyDelete
  73. 0 down vote favorite


    I have problem while installing weblogic server as windows service , After creating installation script and service created when I'm trying to start the service I got this message :

    The service on Local Computer started then stopped. Some services stop atuomatically if the are not in use by other services or programs.

    Then after debugging I got this exception:

    Exception in thread "main" java.lang.NoClassDefFoundError: Files\Java\j 1/jre/lib/endorsed;C:\Oracle\MIDDLE~1\WLSERV~1/1/endorsed Caused by: java.lang.ClassNotFoundException: Files\Java\jdk1.6.0_31.jre rsed;C:\Oracle\MIDDLE~1\WLSERV~1.1.endorsed at java.net.URLClassLoader$1.run(URLClassLoader.java:202) at java.security.AccessController.doPrivileged(Native Method) at java.net.URLClassLoader.findClass(URLClassLoader.java:190) at java.lang.ClassLoader.loadClass(ClassLoader.java:306) at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301 at java.lang.ClassLoader.loadClass(ClassLoader.java:247)

    Error in java application .......

    Can you please suggest what might be causing this, and what's the solution for this. ?

    ReplyDelete
  74. replica bags turkey check my site i3h53p4p18 replica bags cheap replica bags prada find out here now c9c57g9e96 replica bags toronto see here f4y05h7c28 luxury replica bags replica bags in china

    ReplyDelete