Create a  Web application by NetBeans

after I creat a samply WEb application under NetBean , how can I move it to Tomcat and when I start my tomcat I can see my WEB APPLICATION?
tHANK YOU

HJava wrote:
under net bean , I click deploy a project and get war file , I copy the war file to tomcat /webapps restart the tomcat, I can see the project on localhost/Hello/index.jsp
but under tomcat/webapps the war file did not get extracts,
is suppose like that?So it's working, but not extracting the WAR file? I don't think that's the default setting, but you can configure Tomcat to work that way, if I remember correctly.

Similar Messages

  • Web Application with NetBeans 4.0 & JDK 1.5

    I am currently working on a web application using NetBeans 4.0.
    I have a piece of code that works perfectly in a General application which works on jdk 1.5.
    However, when i created a web application and port all existing code to this new project, the compiler gives me an error:
    javac: invalid target release 1.5
    So wat do i have to do to get the code work under Web Project in NetBeans 4.0?

    In NetBeans 4.0, General Java Apps seem to work fine with jdk 1.5 so NetBeans 4.0 does support jdk 1.5 to an extent.
    However, the same code does not work in the Web Application.
    Okay, when you first create a Web Project in NetBeans 4.0, it asks you the 'J2EE Specification Level' and it gives you only 2 options: J2EE 1.3 or J2EE 1.4. I think this is wat giving me the problem.
    The reason why i chosed NetBeans 4.0 because I want to work with Web Services and Tomcat. There are 'none' online resource for NetBeans 4.1 WS and Tomcat (only App Server).
    The worst case is i'll get rid of Generics in my code.

  • Error in Creating New Web Application SharePoint 2013

    Everything was working fine but today when i try to create  a new web application i am getting the following error.It's happening whenever i am trying to create a new web application.
    The directory C:\inetpub\wwwroot\wss\VirtualDirectories\26060 is already being used by another IIS Web Site.  Choose a different root directory for your new Web application. 
    But this port 26060 was not being used before and if i try to create new web application again then the error message occurs with the port number of the new web application. 
    Please help.

    Hi HelloFragrance,
    Are you using a host header when creating these web apps? If so have you tried creating without a host header? Also are you logged in with the Server with the Admin account? Check this out: (taken from Jeremy Taylor's
    blog)
    " 1. Ensure you have a proper dns name / entry in the hosts file of your server for the new url you are wanting to create.
    2. Ensure you have typed in the ‘host header’ typed in when creating the new web application.
    3. If this doesnt work, open IIS Manager – Start>run> inetmgr> and verify the home directory – it could be located on a different drive."
    Also have you tried creating through Powershell and see if you run into the same issue or not?
    http://technet.microsoft.com/en-us/library/ff607931(v=office.15).aspx
    Hope this helps!
    Thanks!
    BlueSky2010
    Please help and appreciate others by using forum features: "Propose As Answer", "Vote As Helpful" and
    "Mark As Answer"

  • Runtime error and unable to create new web application

    Hi
    when i create new web application i faced this error Runtime error and unable to create new web application.
    in this farm we have
    2 wfe servers
    2 application servers.
    adil

    Adil,
    There could be many reason like IIS issue, Space issue, Permission issue, SQL issue which is not possible us to guess rather
    you need to jump in the SharePoint log(Program Files\Common files\Microsoft Shared\Web Server Extensions\14\LOGS) and find out the specific error log its throwing after which trouble shoot can be start.
    You can refer few similar threads here -
    Link
    Please 'propose as answer' if it helped you, also 'vote helpful' if you like this reply.

  • Powershell script for creating SSL web application

    Hello,
    I am trying to create SSL web application in Sharepoint 2010 using power shell and I am using the below script.
    $WebApp = New-SPWebApplication -ErrorAction SilentlyContinue -Name $WebApplicationName -url $WebApplicationUrl -port $WebApplicationPort
    -ApplicationPool $AppPool.Name -ApplicationPoolAccount $AppPoolManagedAccount.Username -AuthenticationProvider $AuthProvider -DatabaseName
    $ContentDatabaseName
    -SecureSocketsLayer
    The web application gets created and when I try to create a site collection and access it, the page is inaccessible.
    So I tried to bind the url to a new certificate from inetmgr and site collection still doesnt show up.
    I tried manually through central admin and everything worked well including the binding to SSL.
    Is there anything wrong with script, if yes what more do I need to add into this?
    Thanks.

    The issue is solved, the problem was that the parameter -URL shouldn't be any random url but it should be
    https://yourservername/ and then configure the binding to a self-signed certificate.
    So John I think the command rather should be
    New-SPWebApplication -Name "Contoso Internet Site" -URL "https://yourservername"  -Port 80 -ApplicationPool "ContosoAppPool"                                                           
     than                                                                                                                                                         
    New-SPWebApplication -Name "Contoso Internet Site" -URL "https://www.contoso.com"  -Port 80 -ApplicationPool "ContosoAppPool"

  • Tomcat 5.X and creating a Web Application

    To all,
    I've tried to add a new web application to the Tomcat 5.0.X (It is a bundled download with NetBeans, since I can't use Struts directly from the NetBeans IDE, I'm just using the Tomcat to act as the Web App Server)
    My procedures are like this:
    1) create a folder (eg. Struts_Trial) under the Catalina_Home\webapps
    2) add an index.jsp (no xml config files are added by now)
    3) re-start the Tomcat
    4) try to access the web app in a browser (eg. http://localhost:8080/Struts_Trial/index.jsp)
    5) it fails and list out "404 requested resource is not available"
    I remember that adding a new web app is really that simple, but now it seems to be a bit different and I can't figure it out what's wrong or missing (except missing the xml config files)
    From Jason (Kusanaghk)

    If you:
    1) create a folder (eg. Struts_Trial) under the Catalina_Home\webapps
    2) add an index.jsp
    You then need to add a folder called WEB-INF in webapps/Struts_Trial/
    In here put a file called web.xml that looks like:
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <!DOCTYPE web-app
        PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
        "http://java.sun.com/dtd/web-app_2_3.dtd">
    <web-app>
      <display-name>Test</display-name>
      <description>
         Test
      </description>
      <welcome-file-list>
        <welcome-file/>
      </welcome-file-list> 
    </web-app>Now restart tomcat and you should be able to access the page by going to:
    http://localhost:8080/Struts_Trial/index.jsp
    (if you are running tomcat on port 8080)

  • Error while creating a blackberry application in netbeans

    hi everyone,
    i am trying to create a blackberry application along with my midlet in netbeans 6.5, where as the build failed with errors.
    here are the errors i am getting.. can anyone help me........
    java.io.IOException: CreateProcess: "D:\Research In Motion\bin\preverify" -classpath "D:\Research In Motion\BlackBerry JDE 4.6.0\lib\net_rim_api.jar" -d D:\ProjectHome\MoBilal-English\build\preverified
    D:\ProjectHome\MoBilal-English\build\preverifysrc error=3
    at java.lang.ProcessImpl.create(Native Method)
    at java.lang.ProcessImpl.<init>(ProcessImpl.java:81)
    at java.lang.ProcessImpl.start(ProcessImpl.java:30)
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:451)
    at java.lang.Runtime.exec(Runtime.java:591)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Execute.java:828)
    at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:445)
    at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:459)
    at org.netbeans.mobility.antext.PreverifyTask.execute(PreverifyTask.java:225)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    at sun.reflect.GeneratedMethodAccessor52.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1298)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
    at org.apache.tools.ant.module.bridge.impl.BridgeImpl.run(BridgeImpl.java:277)
    at org.apache.tools.ant.module.run.TargetExecutor.run(TargetExecutor.java:481)
    at org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:151)
    BUILD FAILED (total time: 9 seconds)
    thanks in advance
    pallavi

    hi everyone,
    i am trying to create a blackberry application along with my midlet in netbeans 6.5, where as the build failed with errors.
    here are the errors i am getting.. can anyone help me........
    java.io.IOException: CreateProcess: "D:\Research In Motion\bin\preverify" -classpath "D:\Research In Motion\BlackBerry JDE 4.6.0\lib\net_rim_api.jar" -d D:\ProjectHome\MoBilal-English\build\preverified
    D:\ProjectHome\MoBilal-English\build\preverifysrc error=3
    at java.lang.ProcessImpl.create(Native Method)
    at java.lang.ProcessImpl.<init>(ProcessImpl.java:81)
    at java.lang.ProcessImpl.start(ProcessImpl.java:30)
    at java.lang.ProcessBuilder.start(ProcessBuilder.java:451)
    at java.lang.Runtime.exec(Runtime.java:591)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.tools.ant.taskdefs.Execute$Java13CommandLauncher.exec(Execute.java:828)
    at org.apache.tools.ant.taskdefs.Execute.launch(Execute.java:445)
    at org.apache.tools.ant.taskdefs.Execute.execute(Execute.java:459)
    at org.netbeans.mobility.antext.PreverifyTask.execute(PreverifyTask.java:225)
    at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:288)
    at sun.reflect.GeneratedMethodAccessor52.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.apache.tools.ant.dispatch.DispatchUtils.execute(DispatchUtils.java:105)
    at org.apache.tools.ant.Task.perform(Task.java:348)
    at org.apache.tools.ant.Target.execute(Target.java:357)
    at org.apache.tools.ant.Target.performTasks(Target.java:385)
    at org.apache.tools.ant.Project.executeSortedTargets(Project.java:1329)
    at org.apache.tools.ant.Project.executeTarget(Project.java:1298)
    at org.apache.tools.ant.helper.DefaultExecutor.executeTargets(DefaultExecutor.java:41)
    at org.apache.tools.ant.Project.executeTargets(Project.java:1181)
    at org.apache.tools.ant.module.bridge.impl.BridgeImpl.run(BridgeImpl.java:277)
    at org.apache.tools.ant.module.run.TargetExecutor.run(TargetExecutor.java:481)
    at org.netbeans.core.execution.RunClassThread.run(RunClassThread.java:151)
    BUILD FAILED (total time: 9 seconds)
    thanks in advance
    pallavi

  • How to create a Web Application when SQL is running in SQL Authentication mode ?

    Hi,
    I a have the following config:
    SQL server 2012 with mixed authentication, running in the LAN
    IIS server with SharePoint 2013 SP1, running in a DMZ --> SharePoint contacts the SQL server with a SQL login (not a Windows login, the required port has been opened in the FW)
    SharePoint is working fine but when I want to create a new Web Application, I get an error: "Could not connect to MySQLServer\MySQLInstance,MyPortnumber using integrated security: Cannot
    connect to database master at SQL server. The database might not exist, or the current user does not have permission to connect to it."
    I think, since I use SQL authentification,  I have to use PowerShell. I found a script on the Internet but this script was not made to create a Web App which a SharePoint installed with SQL authentication.
    Can you help to adapt the script ?
    Thks
    THE SCRIPT Documentation:
    New-SPWebApplication -ApplicationPool <String> -Name <String> [-AdditionalClaimProvider <SPClaimProviderPipeBind[]>] [-AllowAnonymousAccess <SwitchParameter>] [-ApplicationPoolAccount <SPProcessAccountPipeBind>]
    [-AssignmentCollection <SPAssignmentCollection>] [-AuthenticationMethod <String>] [-AuthenticationProvider <SPAuthenticationProviderPipeBind[]>] [-Confirm [<SwitchParameter>]] [-DatabaseCredentials <PSCredential>] [-DatabaseName
    <String>] [-DatabaseServer <String>] [-HostHeader <String>] [-Path <String>] [-Port <UInt32>] [-SecureSocketsLayer <SwitchParameter>] [-ServiceApplicationProxyGroup <SPServiceApplicationProxyGroupPipeBind>] [-SignInRedirectProvider
    <SPTrustedIdentityTokenIssuerPipeBind>] [-SignInRedirectURL <String>] [-Url <String>] [-WhatIf [<SwitchParameter> ]] [<CommonParameters>]
    The Example:
    $siteName = “PowerShell for SharePoint”
    $port = 80
    $hostHeader = “lab.ps4sp.com”
    $url = “http://lab.ps4sp.com&#8221;
    $appPoolName = “PS4SPAppPool”
    $managedAccount = “PS4SPspservice”
    $dbServer = “PS-SQL”
    $dbName = “PS4SP_SP2010_LAB_ContentDB”
    $allowAnonymous = $true
    $authenticationMethod = “NTLM”
    $ssl = $false
    New-SPWebApplication -Name $siteName -Port $port -HostHeader $hostHeader -URL $url -ApplicationPool $appPoolName -ApplicationPoolAccount (Get-SPManagedAccount “$managedAccount”) -DatabaseName $dbName -DatabaseServer $dbServer -AllowAnonymousAccess: $allowAnonymous
    -AuthenticationMethod $authenticationMethod -SecureSocketsLayer:$ssl
    Charles

    Hi Scott,
    Based on your aticle, I changed my script by adding the credential, but I still have an error.
    Il also put the SQL specific port in the $dbServer variable.
    Any idea ?
    MY SCRIPT:
    $siteName = "TEST Site"
    $port = 80
    $hostHeader = "sharepoint.test.be"
    $url = "http://sharepoint.test.be"
    $appPoolName = "TestAppPool"
    $managedAccount = "DISNET\administrator"
    $authenticationMethod = "NTLM"
    $dbServer = "DSPORT-SQL02\DSPORTPRDEXT,50123"
    $dbName = "WSS_TEST_Content"
    $dbServer_secPassword = ConvertTo-SecureString "MySQLPassword" -AsPlaintext -Force
    $dbServer_Creds = New-Object System.Management.Automation.PsCredential "DMZSharePointLoginSQL", $dbServer_secPassword
    New-SPWebApplication -Name $siteName -Port $port -HostHeader $hostHeader -URL $url -ApplicationPool $appPoolName -ApplicationPoolAccount (Get-SPManagedAccount "$managedAccount") -AuthenticationMethod $authenticationMethod -DatabaseName
    $dbName -DatabaseServer $dbServer -DatabaseCredentials $dbServer_Creds
    Charles

  • An unexpected error when create a web application

    hello,
    I'm trying to create a new web application ( under Deployments in console). I
    just manually create an sub-dir under ".\config\<active-domain>\applications"
    directory, say WebAppDir. Then I went to the console and right-click on the "Web
    Applications" and select "Configure a new Web Application", then I filled out
    the Name, URI, and Path as follows:
    Name: WebAppDir
    URI: WebAppDir
    Path: .\config\<active-domain>\applications
    then click "Create" , I then got the following error message, I don't know why
    and what i did wrong... please let me know what did i do wrong ? I don't have
    any things under the new dir i created, but I thought i would be fine, but it
    didn't.
    Here is the error message:
    An unexpected error was encountered in processing your request.
    Exception
    java.lang.NullPointerException
         at weblogic.management.console.pages._panels._mbean._webappcomponent._jspService(_webappcomponent.java:212)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:208)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:1127)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1529)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Current Date
    Wed Jun 06 17:01:25 CDT 2001
    thanks so much...i really appreciate your helps.
    -Kieu

    hello,
    I'm trying to create a new web application ( under Deployments in console). I
    just manually create an sub-dir under ".\config\<active-domain>\applications"
    directory, say WebAppDir. Then I went to the console and right-click on the "Web
    Applications" and select "Configure a new Web Application", then I filled out
    the Name, URI, and Path as follows:
    Name: WebAppDir
    URI: WebAppDir
    Path: .\config\<active-domain>\applications
    then click "Create" , I then got the following error message, I don't know why
    and what i did wrong... please let me know what did i do wrong ? I don't have
    any things under the new dir i created, but I thought i would be fine, but it
    didn't.
    Here is the error message:
    An unexpected error was encountered in processing your request.
    Exception
    java.lang.NullPointerException
         at weblogic.management.console.pages._panels._mbean._webappcomponent._jspService(_webappcomponent.java:212)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
         at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:208)
         at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:1127)
         at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:1529)
         at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:137)
         at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    Current Date
    Wed Jun 06 17:01:25 CDT 2001
    thanks so much...i really appreciate your helps.
    -Kieu

  • Storing output file created by web application in specific folder

    Hi Friends,
    I am creating a text file through my web Application which is on JBoss and I have to read this file in the JSP to print the out put.
    My problem is, the text file has been created in JBoss/bin, I want it to be created in my project folder.
    Can some one please guide me in specifying the path to place the file.
    Thanks in advance.
    Preeti

    I want to add one more sentence to my previous message:
    I can do this by specifying absolute path but I want to specify this path in my web.xml. which tags should I add to web.xml ?
    Thanks,
    Preeti

  • Create a web application in eclipse

    hi,
    There's anybody have a tutorial kit on how to create web application in eclipse 3.3 version.
    I only have a web server apache tomcat.
    Thanks in advance.

    Eclipse Web Tools Platform: http://www.eclipse.org/webtools/
    Eclipse WTP tutorials: http://www.eclipse.org/webtools/community/communityresources.php#tutorials
    Eclipse WTP webapplication tutorial: http://www.eclipse.org/webtools/community/tutorials/BuildJ2EEWebApp/BuildJ2EEWebApp.html

  • Don't know how to make public on web application in netbeans(visualWebPack

    My netbeans(VisualWebPack) JSF application works fine in netbeans
    but when I try to run it on a tomcat server(version 5.5.20) i'm getting the folowing error:
    Description: An unhandled exception occurred during the execution of the web application. Please review the following stack trace for more information regarding the error.
    Exception Details: java.lang.NullPointerException
    null
    Possible Source of Error:
    Class Name: javax.faces.webapp.FacesServlet
    File Name: FacesServlet.java
    Method Name: init
    Line Number: 165
    Source not available. Information regarding the location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    javax.faces.webapp.FacesServlet.init(FacesServlet.java:165)
    org.apache.catalina.core.StandardWrapper.loadServlet(StandardWrapper.java:1105)
    org.apache.catalina.core.StandardWrapper.allocate(StandardWrapper.java:757)
    org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:130)
    org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)
    org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)
    org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
    org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)
    org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
    org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
    org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
    org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
    org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
    org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
    java.lang.Thread.run( Unknown Source )
    Are there any settings needed to be done to the tomcat server?
    .....or to use a different version?
    Ps: i'm putting the MyApplication.war file in the webapps directory of the installed tomcat server(I thought this one is needed)

    I too have had the same problem and have tried every trick in the book, this solution work and makes sence for me.
    If you wish to deploy to a server that is not the the bundled server, make sure that there are no spaces in the path to your source code or your tomcat server.
    C:\Documents and settings\Fred Brooks\My Documents\MyApplication
    Bad
    C:\env\MyApplication
    Good
    C:\Program files\Appache Software Foundation\Tomcat 5.5\
    Bad
    C:\Tomcat55\
    Good
    this seemed to allow me to both deploy strait to the server from netbeans as well as using the tomcat admin web page to deploy the .war file.
    I remember reading someware, or hearing someware that ant doesn't like spaces in file or directory names, in fact had a general dislike for spaces in general.
    If you find this solution doesn't work try some of the following.
    - set the <faces severlet> <load on startup> to false (0) in the project web.xml.
    - copy the jars from your build web-inf / lib folder of your project to tomcat\server\lib
    - removing the any content in the tomcat\temp folder
    - copy the jars from your build web-inf / lib folder of your project to any folder
    in tomcat that contains jars or you might think would like some (yes i know
    im flayaling wildly at the problem here this is realy a last ditch effort)
    these are some of the solutions i have found elseware on the internet, you have by now proberbley seen them and tried them yourself, they work sometimes apparently, but they seem a little random.
    Hope this helps
    Message was edited by:
    JonPen
    Message was edited by:
    JonPen
    Message was edited by:
    JonPen

  • Problem related to create new web application

    Hi,I recently got visual studio express 2013 for web,whenever I create a new asp web application it shows a readme file instead of blank page and I don't know how to remove it. please help me as I am new to this asp aplications.

    Akhilesh,
    Microsoft has the bad habit to hide some forums for their customers.
    However for your question there is a Microsoft forum.
    http://forums.asp.net
    Sometimes I think that some Microsoft employees are afraid to show the products of their company.
    In my opinion that is not needed, in many cases especially development they are the best.
    Success
    Cor

  • SCOM 2012 R2 - How to create a Web Application Monitor for an URL requiring certificate authentication

    Hi All,
    It looks like in SCOM 2012 there are two ways to monitor a web application (URL monitoring):
    Way no 1: (Using the Web Application Transaction Monitoring template)
    Way no 2: (Using the Web
    Application Availability Monitoring template)
    We have created some monitors using
    Web Application Availability Monitoring to check if URL is up without any authentication method.
    However, we have few URLs for which we need Client Certificates to be used for accessing them but found no option in SCOM 2012 to configured the certificates. 
    I have searched a lot on the Tech Net library but no clue.  Does anyone know how to successfully monitor an URL requiring certificate authentication on SCOM 2012 ? or, at least, using no matter which method?
    Thanks.
    Regards,
    Raju.

    Hi,
    Based on my research, it is not possible by using the built-in monitoring templates. Both of them handles “normal”, server-side, SSL-certs, and the transaction monitor handles basic/digest/NTLM authentication, but client certificate based authentication
    is not a configurable option.
    Regards,
    Yan Li
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Problem running any web applications in netbean

    I receive this error message whenever i wanted to run any web applications in my netbeans. The following messages usually come up and I want people to help me:
    init:
    deps-module-jar:
    deps-ear-jar:
    deps-jar:
    library-inclusion-in-archive:
    library-inclusion-in-manifest:
    compile:
    compile-jsps:
    The Sun Java System Application Server could not start.
    More information about the cause is in the Server log file.
    Possible reasons include:
    - IDE timeout: refresh the server node to see if it's running now.
    - Port conflicts. (use netstat -a to detect possible port numbers already used by the operating system.)
    - Incorrect server configuration (domain.xml to be corrected manually)
    - Corrupted Deployed Applications preventing the server to start.(This can be seen in the server.log file. In this case, domain.xml needs to be modified).
    - Invalid installation location.
    C:\usr\JavaProjects\LtlProjects\nbproject\build-impl.xml:568: Deployment error:
    The Sun Java System Application Server could not start.
    More information about the cause is in the Server log file.
    Possible reasons include:
    - IDE timeout: refresh the server node to see if it's running now.
    - Port conflicts. (use netstat -a to detect possible port numbers already used by the operating system.)
    - Incorrect server configuration (domain.xml to be corrected manually)
    - Corrupted Deployed Applications preventing the server to start.(This can be seen in the server.log file. In this case, domain.xml needs to be modified).
    - Invalid installation location.
    See the server log for details.
    BUILD FAILED (total time: 1 minute 1 second)

    Netbeans is unable to deal with alias host name "localhost". But it isn't the only local server.
    Search for *::1 localhost* in your host file.
    I have Windows OS so host file is in this folder
    C:\Windows\System32\drivers\etc\hosts
    add *127.0.0.1 localhost* to the hosts file above the existing entry
    Should look like this:
    127.0.0.1 localhost
    ::1 localhost
    Stop server and close netbeans (if not already done).
    Restart and test. Server startup should be quicker.

Maybe you are looking for

  • How to exit full screen mode while playing a presentation in Keynote '09

    Hi, my question is: when I play a presentation it starts by default in full screen mode; I would like instead to see it in a little box, in order to be able to take notes on another file; how can I do that?

  • Annoying album cover updates

    Hello everyone. Issue with iTunes 7.0.2 here. When I add music, from anywhere, any source, even though in preferences, under the "General" tab, I have the "download missing album artwork" unchecked, for some inane reason while the songs are being add

  • How to repair my File vault

    Can I have assistence in reparing my file vault form macbook pro OSX 10.6.8. Currently, i cant login but accepted my password but i keep on receiving massage that my file vault need reparing and when i click ok it says error has occur and try later!

  • How to change table defnition after upgrade from 9 to 10 ?

    after upgrade from 9 to 10, tables ddl still like 9i: .................PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255.......... ................ inndex PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS.......... Is there a method to convert it all

  • Creating xcelsius reports in boe3.1

    Hello! Experts,                       Please tell me how to develop xcelsius reports in boe3.1? I used Crystal Xcelsius for that purpose but it takes only excel sheets as datasource. My data would change as per day to day transactions so need to use