Any good books on web application using JSP/servlet?

Does anyone know good books on how-to build enterprise web application using JSP/servlet? Aside from the book "Head First JSP/Servlet". Development using Netbeans is more preferrable.

801264 wrote:
What about the free web server? JBoss or Glassfish or something else? I prefer web/application server that is fully compatible with JEE6 (unlike Tomcat that can't handle EJB). thanksI'm a JBoss user myself, so naturally I would advise that to you if I were ignorant. I'm not however, so in stead I'll tell you to investigate yourself and see which one you prefer. Nobody is going to tell you which one to use as there is no such thing as a 'better' or 'best' server. Just different servers each with different issues.
And the community edition of JBoss has had many issues in the past (because Red Hat of course wants to advise you to go to the enterprise platform which ain't cheap), but JBoss 5.1 was a rock solid piece of software that I have had zero problems with (after reading the odd forum or two). JBoss 6 builds on top of JBoss 5.1 and provides the full JEE6 web profile; this means it does NOT provide a certified 'full' JEE6 stack yet. This means nothing however as all the services you may need in an enterprise application are already there.
BTW: for simple servlet programming, don't neglect Apache Tomcat. Its a lightweight server that just works.

Similar Messages

  • Composing mail from email web application using jsp and custom tags

    here is the send.jsp file
    <%@ page language="java" %>
    <%@ page errorPage="errorpage.jsp" %>
    <%@ taglib uri="http://java.sun.com/products/javamail/demo/webapp"
    prefix="javamail" %>
    <html>
    <head>
         <title>JavaMail send</title>
    </head>
    <body bgcolor="white">
    hi
    <javamail:sendmail
    recipients="<%= request.getParameter(\"to\") %>"
    sender="<%= request.getParameter(\"from\") %>"
    subject="<%= request.getParameter(\"subject\") %>">
    <%= request.getParameter("text") %>
    </javamail:sendmail>
    <h1>Message sent successfully</h1>
    </body>
    </html>
    Here is the java file i.e used to refer to this custom tag
    package taglib;
    import java.util.*;
    import java.net.*;
    import javax.mail.*;
    import javax.mail.Authenticator;
    import javax.mail.internet.*;
    import javax.servlet.jsp.*;
    import javax.servlet.jsp.tagext.*;
    * Custom tag for sending messages.
    public class SendTag extends BodyTagSupport {
    private String body;
    private String cc;
    private String host;
    private String recipients;
    private String sender;
    private String subject;
    * host attribute setter method.
    public void setHost(String host) {
    this.host = host;
    System.out.println("Host is : " +host);
    * recipient attribute setter method.
    public void setRecipients(String recipients) {
    this.recipients = recipients;
    System.out.println("recipients is " +recipients );
    * sender attribute setter method.
    public void setSender(String sender) {
    this.sender = sender;
    System.out.println("Sender is : " +sender);
    * cc attribute setter method.
    public void setCc(String cc) {
    this.cc = cc;
    * subject attribute setter method.
    public void setSubject(String subject) {
    this.subject = subject;
    System.out.println("subject is : " +subject);
    * Method for processing the end of the tag.
    public int doEndTag() throws JspException {
         System.out.println(" ** In do end tag");
    Properties props = System.getProperties();
    try {
    if (host != null)
    props.put("mail.smtp.host", host);
    else if (props.getProperty("mail.smtp.host") == null)
    props.put("mail.smtp.host", InetAddress.getLocalHost().
    getHostName());
    } catch (Exception ex) {
    throw new JspException(ex.getMessage());
    Session session = Session.getDefaultInstance(props,null);
         Message msg = new MimeMessage(session);
         InternetAddress[] toAddrs = null, ccAddrs = null;
    try {
         if (recipients != null) {
         toAddrs = InternetAddress.parse(recipients, false);
         msg.setRecipients(Message.RecipientType.TO, toAddrs);
         } else
         throw new JspException("No recipient address specified");
    if (sender != null)
    msg.setFrom(new InternetAddress(sender));
    else
    throw new JspException("No sender address specified");
         if (cc != null) {
    ccAddrs = InternetAddress.parse(cc, false);
         msg.setRecipients(Message.RecipientType.CC, ccAddrs);
         if (subject != null)
         msg.setSubject(subject);
         if ((body = getBodyContent().getString()) != null)
         msg.setText(body);
    else
    msg.setText("");
    Transport.send(msg);
    } catch (Exception ex) {
    throw new JspException(ex.getMessage());
    return(EVAL_PAGE);
    all the entries in taglib.tld and web.xml are correct.
    It is one of the article given at this url:
    http://java.sun.com/developer/technicalArticles/javaserverpages/emailapps/

    First, you should not take copyrighted code and post it without a copyright.
    The code you posted is copyright Sun Microsystems.
    Second, why did you post it? Did you have a question?

  • Can I delete a file in my web folder using JSP/servlet?

    I want to delete some of the files in my website. How can I give file path. I have uploaded my website in US. Just by uploading a servlet /jsp I want to delete files in my directory.
    Is it possible to delete files using Servlert/jsp. What path should I give for the file name in jsp/servelet?

    It is possible. You can just specify the absolute file path in a File object and then invoke the delete() method. File file = new File("/path/file.ext");
    file.delete();See the File API [1] for details. Further on I think that you also want to know how to get the absolute file path for the given relative path. If so, it's available by ServletContext#getRealPath() [2]. To get for example the absolute root path, just query the relative root path "/":
    String rootPath = getServletContext().getRealPath("/");[1] http://java.sun.com/j2se/1.5.0/docs/api/java/io/File.html
    [2] http://java.sun.com/javaee/5/docs/api/javax/servlet/ServletContext.html

  • Any good book recommendation on WEB IC and PC-UI

    Hi there
    I'm planning to get a few books to help me understand the above better. Can anyone recommend any good books on the above??
    Many thanks in advance!
    Cheers,
    Josh

    try the below link
    http://www.sap-press.com/product.cfm?account=&product=H1909
    regards
    Vivek
    reward points if this helps

  • How can I develop a web application using EJB design pattern?

    I have searched over the web and found quite a lot of tutorials on how to use the EJB design pattern.
    I know that there will be a home interface, EJB object interface and a SessionBean.
    But the tutorials often only cover a single class, this made me unable to get a complete picture of how EJB design pattern can be implemented into a whole system.
    I am now required to devleop an online shopping web application using EJB and JSP page.
    I think I will need to create a lot of classes: Member, ShoppingCart, Product...etc.
    What I want to ask is that, do I need to create a home interface, EJB object interface and a SessionBean for each of these classes?
    I really need some ideas on how to develop this system using EJB + JSP pages.
    Many thanks to you all.

    For every EJB that you want to create, you will need to code a home and remote interface and a bean class.
    You could start getting your ideas here
    http://www.theserverside.com/books/wiley/masteringEJB/
    http://www.coreservlets.com

  • Building a best practice web application using ColdFusion and Jave EE

    I've been tasked with rewriting a software using ColdFusion.  I cannot seem to find a lot of information on best practice development in ColdFusion.  I am an experience Java developer who has never used ColdFusion before.  I want to build this application using a synergy of ColdFusion and Java EE technologies.  Can someone recommend me a book that outlines how to developer in ColdFusion?  Ideally this book assumes the reader is an experienced developer with no exposure to ColdFusion.  Ideally the methods outlined in the book are still "best practice" methods.

    jaisheela wrote:
    Hello Friends,
    I am also in the same situation.
    I am a building a new web application using JSF and AJAX.
    Requirement is I need to use IBM version of DOJO and JSF but I need to develop the whole application using Eclipse 3.3,2 and Tomcat 5.5.
    With IBM version of DOJO and JSF, will Eclipse and Tomcat help to speed up the development or do you suggest me to go for Rational Application Developer and WebSphere Application Server.
    If I need to go with RAD and WAS, then I am new to RAD and WAS, is it easy to use RAD and WAS for this kind of application and implement web applicaiton fast.
    Any feedback will be great help.Those don't sound like requirements of the system to me. They sound more like someone wants to improve their CV/resume
    From what I've read recently, if it's just fast you want, look at Ruby on Rails

  • Can anyone recommend any good books on leaning actionscript for flash?

    Can anyone recommend any good books on leaning actionscript
    for flash?
    Intermediate level
    I have been using flash for about 2 years more as a hobby
    than anything else, some websites etc but now I realise I am going
    to need to learn more actionscripting to do what I want, I have
    come to terms with the simple stuff like goto – basic
    variables – load mov – enough to programme up website
    navigation.
    I ideally want to learn more about the dynamic side of flash,
    mostly for designing user interfaces and websites etc
    I’m after a book that doesn’t get too heavy too
    fast yet I’m a little past the more basic functions
    Any thoughts?
    Cheers

    You appear to be stuck on iOS 4.2.1. That means up really have a 2G iPod. A real 3G can go to 5.1.1
    .To find compatible apps more app for 4.2.1 see:
    Old Apps
    VintApps 3.1.3 for iPhone, iPod touch, and iPad on the iTunes App Store
    apps for ios 4.2.1: Apple Support Communities
    Finding iOS 4.2.1 Apps Compatible with Older Devices - Apple Club
    HT4972 Touch Game 4.2.1 Apps: Apple Support Communities
    apps for 4.2.1 (also works for 3.1.3)
    Tip - Finding 4.2.1 apps that work on an...: Apple Support Communities
    4.2.1 iPod 2nd generation unable to use any...: Apple Support Communities

  • How to develop web application using ejb3.0 with eclipse

    Hi ,
    I am new to ejb3.0 with eclipse. If any one familar that please guide me...
    how to develop web application using ejb3.0 with eclipse.please help me... server jboss4.2.2. database mqsql5.0
    Thanks,

    jsf_VWP5.5.1 wrote:
    I am new to ejb3.0 with eclipse. If any one familar that please guide me...http://help.eclipse.org/help33/index.jsp

  • Any good book/training cds/dvds for oracle BPM studio developers

    Is there any good book/training cds/dvds for oracle BPM studio developers, where every topic is discussed very clearly along with step wise examples?
    Thanks & Regards
    Ashish

    You can also look at some of the sample projects. These contain example of how to handle many common problems in creating BPM projects.
    Here's a list of the projects:
    BPMUnitTestExample.exp
    Compensations.exp
    DashboardDrilldownInstanceData.exp
    ExceptionHandling.exp
    JSF-Screenflow_FoodDelivery.exp
    JSP-Screenflow_FoodDelivery.exp
    OrderFulfillment.ext
    ExpenseManagement.exp
    HROnboarding.exp
    CoorelationsExample.exp
    ExpenseReimbursment.exp
    These are contained in the <BPM_HOME>/samples directory.
    HTH,
    Mark

  • Unable to create a new Central Administration web application using New-SPCentralAdministration

    for some reason the Central administration web application is no more accessible, and i will get the following error when i try accessing it, this problem happened after i delete a web application using the central administration UI:-
    so i open the IIS , and i find that the CA web application exists and also its physical path as follow:-
    so i am not sure why i can not access the CA web application any more. i try running the following command to create a new CA web application :-
    New-SPCentralAdministration -Port 31546 -WindowsAuthPr
    ovider "NTLM"
    but this did not solve the problem. can anyone advice how i can have my CA web application running again?

    now i removed the CA web application from IIS , and then i run the configuration wizard, whch have create a new CA. but when i try accessing it i got the same problem , here is the related logs :-
    7/2014 16:01:47.62 w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Monitoring nasq Medium Entering monitored scope (Request (GET:http://tgvstg01:31546/default.aspx)). Parent No
    11/27/2014 16:01:47.62 w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Logging Correlation Data xmnv Medium Name=Request (GET:http://tgvstg01:31546/default.aspx) 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.62 w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Authentication Authorization agb9s Medium Non-OAuth request. IsAuthenticated=True, UserIdentityName=, ClaimsCount=0 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.62 w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Files ak8dj High UserAgent not available, file operations may not be optimized. at Microsoft.SharePoint.SPFileStreamManager.CreateCobaltStreamContainer(SPFileStreamStore spfs, ILockBytes ilb, Boolean copyOnFirstWrite, Boolean disposeIlb) at Microsoft.SharePoint.SPFileStreamManager.SetInputLockBytes(SPFileInfo& fileInfo, SqlSession session, PrefetchResult prefetchResult) at Microsoft.SharePoint.CoordinatedStreamBuffer.SPCoordinatedStreamBufferFactory.CreateFromDocumentRowset(Guid databaseId, SqlSession session, SPFileStreamManager spfstm, Object[] metadataRow, SPRowset contentRowset, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres) at Microsoft.SharePoint.SPSqlClient.GetDocumentContentRow(Int32 rowOrd, Object ospFileStmMgr, SPDocumentBindRequest& dbreq, SPDocumentBindResults& dbres... 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.62* w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Files ak8dj High ...) at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, ... 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.62* w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Files ak8dj High ...Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId) at Microsoft.SharePoint.Library.SPRequestInternalClass.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion, String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbst... 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.62* w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Files ak8dj High ...rRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId) at Microsoft.SharePoint.Library.SPRequest.GetFileAndMetaInfo(String bstrUrl, Byte bPageView, Byte bPageMode, Byte bGetBuildDependencySet, String bstrCurrentFolderUrl, Int32 iRequestVersion, Byte bMainFileRequest, Boolean& pbCanCustomizePages, Boolean& pbCanPersonalizeWebParts, Boolean& pbCanAddDeleteWebParts, Boolean& pbGhostedDocument, Boolean& pbDefaultToPersonal, Boolean& pbIsWebWelcomePage, String& pbstrSiteRoot, Guid& pgSiteId, UInt32& pdwVersion,... 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.62* w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Files ak8dj High ... String& pbstrTimeLastModified, String& pbstrContent, UInt32& pdwPartCount, Object& pvarMetaData, Object& pvarMultipleMeetingDoclibRootFolders, String& pbstrRedirectUrl, Boolean& pbObjectIsList, Guid& pgListId, UInt32& pdwItemId, Int64& pllListFlags, Boolean& pbAccessDenied, Guid& pgDocid, Byte& piLevel, UInt64& ppermMask, Object& pvarBuildDependencySet, UInt32& pdwNumBuildDependencies, Object& pvarBuildDependencies, String& pbstrFolderUrl, String& pbstrContentTypeOrder, Guid& pgDocScopeId) at Microsoft.SharePoint.SPWeb.GetWebPartPageContent(Uri pageUrl, Int32 pageVersion, PageView requestedView, HttpContext context, Boolean forRender, Boolean includeHidden, Boolean mainFileRequest, Boolean fetchDependencyInformation, Boolean& ghostedPage, String& siteRoot, Guid& siteId, Int64& bytes, ... 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.62* w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Files ak8dj High ...Guid& docId, UInt32& docVersion, String& timeLastModified, Byte& level, Object& buildDependencySetData, UInt32& dependencyCount, Object& buildDependencies, SPWebPartCollectionInitialState& initialState, Object& oMultipleMeetingDoclibRootFolders, String& redirectUrl, Boolean& ObjectIsList, Guid& listId) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.FetchWebPartPageInformationForInit(HttpContext context, SPWeb spweb, Boolean mainFileRequest, String path, Boolean impersonate, Boolean& isAppWeb, Boolean& fGhostedPage, Guid& docId, UInt32& docVersion, String& timeLastModified, SPFileLevel& spLevel, String& masterPageUrl, String& customMasterPageUrl, String& webUrl, String& siteUrl, Guid& siteId, Object& buildDependencySetData, SPWebPartCollectionInitialState& initialState, ... 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.62* w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Files ak8dj High ...String& siteRoot, String& redirectUrl, Object& oMultipleMeetingDoclibRootFolders, Boolean& objectIsList, Guid& listId, Int64& bytes) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModuleData.GetFileForRequest(HttpContext context, SPWeb web, Boolean exclusion, String virtualPath) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.InitContextWeb(HttpContext context, SPWeb web) at Microsoft.SharePoint.WebControls.SPControl.SPWebEnsureSPControl(HttpContext context) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.GetContextWeb(HttpContext context) at Microsoft.SharePoint.ApplicationRuntime.SPRequestModule.PostResolveRequestCacheHandler(Object oSender, EventArgs ea) at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IEx... 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.62* w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Files ak8dj High ...ecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) at System.Web.HttpApplication.PipelineStepManager.ResumeSteps(Exception error) at System.Web.HttpApplication.BeginProcessRequestNotification(HttpContext context, AsyncCallback cb) at System.Web.HttpRuntime.ProcessRequestNotificationPrivate(IIS7WorkerRequest wr, HttpContext context) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompl... 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.62* w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Files ak8dj High ...etion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.UnsafeIISMethods.MgdIndicateCompletion(IntPtr pHandler, RequestNotificationStatus& notificationStatus) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotificationHelper(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) at System.Web.Hosting.PipelineRuntime.ProcessRequestNotification(IntPtr rootedObjectsPointer, IntPtr nativeRequestContext, IntPtr moduleData, Int32 flags) 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.62 w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Files aiv4w Medium Spent 0 ms to bind 5230 byte file stream 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.62 w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Logging Correlation Data xmnv Medium Site=/ 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.62 w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Monitoring b4ly High Leaving Monitored Scope (PostResolveRequestCacheHandler). Execution Time=5.95222297806006 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.63 w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation General 8nca Medium Application error when access /default.aspx, Error=Could not load file or assembly 'KWizCom.SharePoint.Foundation, Version=13.3.0.0, Culture=neutral, PublicKeyToken=30fb4ddbec95ff8f' or one of its dependencies. The system cannot find the file specified. at KWizCom.SharePoint.ClipboardManager.CONTROLTEMPLATES.ClipboardManager.RegisterClipboard.Page_Load(Object sender, EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeS... 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.63* w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation General 8nca Medium ...tagesAfterAsyncPoint) 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.63 w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Runtime tkau Unexpected System.IO.FileNotFoundException: Could not load file or assembly 'KWizCom.SharePoint.Foundation, Version=13.3.0.0, Culture=neutral, PublicKeyToken=30fb4ddbec95ff8f' or one of its dependencies. The system cannot find the file specified. at KWizCom.SharePoint.ClipboardManager.CONTROLTEMPLATES.ClipboardManager.RegisterClipboard.Page_Load(Object sender, EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPo... 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.63* w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Runtime tkau Unexpected ...int) 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.63 w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation General ajlz0 High Getting Error Message for Exception System.Web.HttpUnhandledException (0x80004005): Exception of type 'System.Web.HttpUnhandledException' was thrown. ---> System.IO.FileNotFoundException: Could not load file or assembly 'KWizCom.SharePoint.Foundation, Version=13.3.0.0, Culture=neutral, PublicKeyToken=30fb4ddbec95ff8f' or one of its dependencies. The system cannot find the file specified. File name: 'KWizCom.SharePoint.Foundation, Version=13.3.0.0, Culture=neutral, PublicKeyToken=30fb4ddbec95ff8f' at KWizCom.SharePoint.ClipboardManager.CONTROLTEMPLATES.ClipboardManager.RegisterClipboard.Page_Load(Object sender, EventArgs e) at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.... 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.63* w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation General ajlz0 High ...LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Control.LoadRecursive() at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.HandleError(Exception e) at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) at System.Web.UI.Page.ProcessRequest() at System.Web.UI.Page.ProcessRequest(HttpContext context) at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.We... 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.63* w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation General ajlz0 High ...b.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.63 w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation General aat87 Monitorable 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.63 w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 adyrv,0 nasq,0 agb9s,4 ak8dj,1 b4ly,8 8nca,0 tkau,0 ajlz0,0 aat87 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.63 w3wp.exe (0x0AEC) 0x0F20 SharePoint Foundation Monitoring b4ly Medium Leaving Monitored Scope (Request (GET:http://tgvstg01:31546/default.aspx)). Execution Time=19.067157976782 9842d09c-5c06-d003-e007-3ec8b83ab2e5
    11/27/2014 16:01:47.63 w3wp.exe (0x0AEC) 0x1680 SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri http://localhost:31546/_layouts/15/1033/styles/corev15.css?rev=OqAycmyMLoQIDkAlzHdMhQ==.
    11/27/2014 16:01:47.63 w3wp.exe (0x0AEC) 0x1060 SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri http://localhost:31546/_layouts/15/1033/styles/Themable/corev15.css?rev=OqAycmyMLoQIDkAlzHdMhQ==.
    11/27/2014 16:01:47.63 w3wp.exe (0x0AEC) 0x1680 SharePoint Foundation Configuration 8059 Warning Alternate access mappings have not been configured. Users or services are accessing the site http://tgvstg01:31546 with the URL http://localhost:31546. This may cause incorrect links to be stored or returned to users. If this is expected, add the URL http://localhost:31546 as an AAM response URL. For more information, see: http://go.microsoft.com/fwlink/?LinkId=114854"/>
    11/27/2014 16:01:47.63 w3wp.exe (0x0AEC) 0x1060 SharePoint Foundation Configuration 8059 Warning Alternate access mappings have not been configured. Users or services are accessing the site http://tgvstg01:31546 with the URL http://localhost:31546. This may cause incorrect links to be stored or returned to users. If this is expected, add the URL http://localhost:31546 as an AAM response URL. For more information, see: http://go.microsoft.com/fwlink/?LinkId=114854"/>
    11/27/2014 16:01:47.63 w3wp.exe (0x0AEC) 0x1680 SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 adyrv
    11/27/2014 16:01:47.63 w3wp.exe (0x0AEC) 0x1060 SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 adyrv
    11/27/2014 16:01:47.65 w3wp.exe (0x0AEC) 0x1AC0 SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri http://localhost:31546/ScriptResource.axd?d=UuopqMVjxlPyCKB-J3eW7oCZ8X3UkGAybJ_dvoik03YDEq7Zegjt4Rg9aDbicjrfcVKKD4V1RBuG2GzH3AdohtmnM3vg050NGuKmIlPPvv57bGV_m6dHaMqVZD5429U5RSpuui-0diKTzu3l7OHl8wpwz1Bgdsby6l2gbBCMRaMDBhl1a1Xp6nG7Nb3NlGfW0&t=7e632e9f.
    11/27/2014 16:01:47.65 w3wp.exe (0x0AEC) 0x1AC0 SharePoint Foundation Configuration 8059 Warning Alternate access mappings have not been configured. Users or services are accessing the site http://tgvstg01:31546 with the URL http://localhost:31546. This may cause incorrect links to be stored or returned to users. If this is expected, add the URL http://localhost:31546 as an AAM response URL. For more information, see: http://go.microsoft.com/fwlink/?LinkId=114854"/>
    11/27/2014 16:01:47.65 w3wp.exe (0x0AEC) 0x1AC0 SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 adyrv
    11/27/2014 16:01:47.65 w3wp.exe (0x0AEC) 0x1B9C SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri http://localhost:31546/_layouts/15/1033/styles/error.css?rev=nc1850SZNy60qTAeQIRxsA==.
    11/27/2014 16:01:47.65 w3wp.exe (0x0AEC) 0x1B9C SharePoint Foundation Configuration 8059 Warning Alternate access mappings have not been configured. Users or services are accessing the site http://tgvstg01:31546 with the URL http://localhost:31546. This may cause incorrect links to be stored or returned to users. If this is expected, add the URL http://localhost:31546 as an AAM response URL. For more information, see: http://go.microsoft.com/fwlink/?LinkId=114854"/>
    11/27/2014 16:01:47.65 w3wp.exe (0x0AEC) 0x1B9C SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 adyrv
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x1B9C SharePoint Foundation Runtime afu6a High [Forced due to logging gap, cached @ 11/27/2014 16:01:47.65, Original Level: VerboseEx] No SPAggregateResourceTally associated with thread.
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x1B9C SharePoint Foundation Runtime afu6b High [Forced due to logging gap, Original Level: VerboseEx] No SPAggregateResourceTally associated with thread.
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x1B9C SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri http://localhost:31546/_layouts/15/init.js?rev=rQHvYUfURJXLBpgKnm0dcA==.
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x1B9C SharePoint Foundation Configuration 8059 Warning Alternate access mappings have not been configured. Users or services are accessing the site http://tgvstg01:31546 with the URL http://localhost:31546. This may cause incorrect links to be stored or returned to users. If this is expected, add the URL http://localhost:31546 as an AAM response URL. For more information, see: http://go.microsoft.com/fwlink/?LinkId=114854"/>
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x1B9C SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 adyrv
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x0E8C SharePoint Foundation Runtime afu6a High [Forced due to logging gap, cached @ 11/27/2014 16:01:47.65, Original Level: VerboseEx] No SPAggregateResourceTally associated with thread.
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x0E8C SharePoint Foundation Runtime afu6b High [Forced due to logging gap, Original Level: VerboseEx] No SPAggregateResourceTally associated with thread.
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x0E8C SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri http://localhost:31546/ScriptResource.axd?d=7IyzISHOgOSyHIlvXy8QdZcgEzGJDQqGKmJaoQjTOiaBz5VlSWcOLKEUSzu8OULMTnnhbaq_-M0WsBRbRbI4C0hGFySGSjYp5rz_grh3qRY5BTEa8vorG92WxotZwh5JXXg6gAscDxPMYJjtv2xudJ85xIui8hahYynsNIyBIm-8hwWUmX9p1xnMGTP_dupT0&t=7e632e9f.
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x0E8C SharePoint Foundation Configuration 8059 Warning Alternate access mappings have not been configured. Users or services are accessing the site http://tgvstg01:31546 with the URL http://localhost:31546. This may cause incorrect links to be stored or returned to users. If this is expected, add the URL http://localhost:31546 as an AAM response URL. For more information, see: http://go.microsoft.com/fwlink/?LinkId=114854"/>
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x0D68 SharePoint Foundation Runtime afu6a High [Forced due to logging gap, cached @ 11/27/2014 16:01:47.65, Original Level: VerboseEx] No SPAggregateResourceTally associated with thread.
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x0D68 SharePoint Foundation Runtime afu6b High [Forced due to logging gap, Original Level: VerboseEx] No SPAggregateResourceTally associated with thread.
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x0D68 SharePoint Foundation General adyrv High Cannot find site lookup info for request Uri http://localhost:31546/_layouts/15/blank.js?rev=ZaOXZEobVwykPO9g8hq/8A==.
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x0D68 SharePoint Foundation Configuration 8059 Warning Alternate access mappings have not been configured. Users or services are accessing the site http://tgvstg01:31546 with the URL http://localhost:31546. This may cause incorrect links to be stored or returned to users. If this is expected, add the URL http://localhost:31546 as an AAM response URL. For more information, see: http://go.microsoft.com/fwlink/?LinkId=114854"/>
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x0E8C SharePoint Foundation Micro Trace uls4 Medium Micro Trace Tags: 0 adyrv
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x1CF4 SharePoint Foundation Runtime afu6a High [Forced due to logging gap, cached @ 11/27/2014 16:01:47.65, Original Level: VerboseEx] No SPAggregateResourceTally associated with thread.
    11/27/2014 16:01:47.71 w3wp.exe (0x0AEC) 0x1CF4 SharePoint Foundation Runtime afu6b High [Forced due to logging gap, Origin
    can anyone advice on this please , i have spend two days over this without being able to know what is the problem ?

  • Any good books for iWeb?

    Hi!
    I wondered if there were any good books on the use of iWeb? I would love to have something to hold in my hand, read, underline, etc.

    There are a couple of books on iLife ...
    Apple Training Series: iLife '08...
    http://www.peachpit.com/store/product.aspx?isbn=0321502671
    Macintosh iLife '08 by Jim Heid...
    http://www.peachpit.com/store/product.aspx?isbn=032150190X

  • Buling a new Web Application using JSF and Ajax.

    Hello Group,
    I am a building a new web application using JSF and AJAX. Planning to use Myfaces Tomahawk, Dojo for Ajax, Hibernate, Spring,Eclipse IDE and Jetty Server.Can some one please suggest me will this be a right one for
    building complex UI and will it support for using the jsf features and would like to know any other free open
    source framework, ide, tools which support the best way for an agile project..?. There is restriction like i have to use java1.4

    jaisheela wrote:
    Hello Friends,
    I am also in the same situation.
    I am a building a new web application using JSF and AJAX.
    Requirement is I need to use IBM version of DOJO and JSF but I need to develop the whole application using Eclipse 3.3,2 and Tomcat 5.5.
    With IBM version of DOJO and JSF, will Eclipse and Tomcat help to speed up the development or do you suggest me to go for Rational Application Developer and WebSphere Application Server.
    If I need to go with RAD and WAS, then I am new to RAD and WAS, is it easy to use RAD and WAS for this kind of application and implement web applicaiton fast.
    Any feedback will be great help.Those don't sound like requirements of the system to me. They sound more like someone wants to improve their CV/resume
    From what I've read recently, if it's just fast you want, look at Ruby on Rails

  • Deploy web applications using JSF 1.2  or JSF 2.0 to WLS 10.3.5

    Hello,
    We have ADF web applications developed with JDeveloper 11.1.1 (using JSF 1.2 and JSTL 1.1)
    deployed on WebLogic server 10.3.4.
    Our department plans to :
    1. upgrade to WebLogic server 10.3.5 with the ADF Runtime 11.1.2.0.
    and
    2. develop new ADF web applications using JDeveloper 11.1.2 (using JSF 2.0 and JSTL 1.2)
    My 2 questions are the following:
    1. Can we deploy all JSF 1.2, JSF 2.0, JSTL 1.1, and JSTL1.2 WAR files on the
    WebLogic server 10.3.5 with the ADF Run-time 11.1.2.0.
    2. Can we deploy existing ADF web applications developed with JDeveloper 11.1.1 (using JSF 1.2 ,JSTL 1.1)
    and new ADF web applications using JDeveloper 11.1.2 (using JSF 2.0 and JSTL 1.2) to the WebLogic server 10.3.5 with the ADF Runtime 11.1.2.0
    Any insights will be greatly appreciated.
    Thanks

    1) That should work
    2) old adf app (developed with jdve 11.1.1.x.0) need to be migrated to jdev 11.1.2
    You can also check out my blog entry about the jdev wls versions here http://tompeez.wordpress.com/2011/09/14/jdeveloper-versions-vs-weblogic-server-versions
    Timo

  • Made The Switch!  Any Good Books To Help A PC Vet?

    Anyone know of any good books to read up on to get used to the Mac? Ive been a pc guy forever and would like a "guide" to ease me into the Mac lifestyle.

    Yes I would recommend getting Mac OS X 10.6 Snow Leopard: Peachpit Learning Series (Paperback)
    by Robin Williams. Amazon is currently selling it and I'm sure you can find it on e Bay too. The link to Amazon is here.
    Also the links that were provided are excellent and a great starting place.
    I bought her Leopard book a couple of years ago and found it invaluable when I was making the switch.
    Regards,
    Roger

  • Any real-world e-commerce application using HTMLDB?

    Hi,
    Any real-world e-commerce application using HTMLDB?
    If yes, can you please provide the web links?
    Thanks!
    Steve

    That's why I said "depends on your definition"
    According to the Wikipedia, the definition of e-commerce is -
    "Electronic commerce, e-commerce or ecommerce consists primarily of the distributing, buying, selling, marketing,
    and servicing of products or services over electronic systems such as the Internet and other computer networks."So nothing mentioned there about the size/number of transactions ;)
    So, is your question "Has anybody built a site in HTMLDB that handles the number of transactions that Amazon handles?"
    I'd be surprised if the answer were Yes, however HTMLDB (depending on your architecture) is capable of scaling to a huge number of users.
    Do you have a particular application/project in mind, or is it just a hypothetical question?

Maybe you are looking for

  • Data flow from Flat file Source to OLEDB Destination

    Hi All  I have Flat file Source data I am trying to Import OLEDB Destination so I am getting below  Whis Is Error I am getting at Flat File Source  [SSIS.Pipeline] Error: SSIS Error Code DTS_E_PRIMEOUTPUTFAILED.  The PrimeOutput method on Flat File S

  • How to Display INR format in WEBI 4.X reports

    Hello All, I have a requirement to display the amount in WEBI report as INR format i.e 1,00,00,000.00. I tried to create a custom number format at report level as #,##,##,###.## , but is it not working. I tried custom display format at universe level

  • Camera shortcut not working and freezing

    Hi sony loving friends: I have the xperia Z1, and after the kitkat update, the on screen camera shortcut will not work.  when i press they shutter key, the camera does come up, but if i touch the screen to take a photo or focus, the phone freezes !!!

  • Computer shuts down with power cord removed

    my macbook pro is just over a year old and has been working fine until just recently when the battery stopped working. the battery shows up as fully charged put as soon as the power cable is unplugged the computer shuts down immediately. i've reset t

  • Public Static List Error

    Here's why I don't use this; or how do I have to apply a solution;