Including service-side file

Hi,
According to the lessons in my book, I inserted a service-side file in
my HTML-code.
It seems to work fine in the Design Mode and in the Live-View.
But when starting a browser, no matter which one, the service side
file is not visible.
What can be the problem?
Thanks in advance.
PR.

Sorry, you're right, I'm talking about server-side. And I think I found the answer as well, in my book ("classroom in a book").
At the end of the chapter it says: "You won't be able to see the SSI in a browser without a testing server as long as it's stored
only on your local hard drive."
And I'm not using a test-server yet.
Thanks for your attention anyway!

Similar Messages

  • How can i include Services and Bindung in a generated WSDL file?

    Hi,
    i what to use a generated wsdl file from an erp system, to build a web service client with WSDL2Java (org.apache.axis.wsdl.WSDL2Java).
    I noticed, that services an bindings are missing, also a policy is included.
    How can i include services and bindings in the wsdl and exclude the policy?
    Thanks!

    well, I assume you have SOAMANAGER.
    choose your service & "Apply Selection" (very useless button btw)
    select a binding in the dropdown box or create on if you do not have one yet
    Click button "Show WSDL options" (actually they do not really look like buttons in WD; call it yellow blot)
    Some extra config area is thrown onto your screen (without any sense for usability or design); Change the radio button for WSDL format from "WS policy" to "Standard"; make sure the first radio button group is on "True" for monolithic
    Now click the link (why is this a link and no blot?) called "Display selected bindings WSDL URL"
    an extra text field is again thrown onto your screen somwhere between the dropdown and the WSDL option config area containing an URL (get out your glasses if you don't see the sub-10pt-letters)
    hope it helps,
    anton

  • ANT how to include NetBeans Jar  files in my script of ANT ??

    ANT how to include NetBeans Jar files in my script of ANT ??

    I mean the library say swing layout ...
    which is SwingLayOuts1.0.jar ...
    in side this there is folder org.jDesktop....
    I want this folder in my jar file ...
    also ....
    My question ... i know the path of the jar file of NetBeans .... i can copy that ...dirctly ... but if m using Netbeans editor ... can i give NetBeans class to my jar command for ANT...........

  • Service SID and setup account for DB engine service

    SQL supports service isolation of access control through granting permissions to the service SID. However, we also can give the privileges to service account. Which one of the service
    SID  and service account has higher priority? If we give the conflicting permissions to service SID and service account, which one will work?

    Hi smileahpu,
    In short, for account rights/privileges, there are two general types Allow and Deny. The "Allow" rights/privileges are combined, and the "Deny" rights/privileges are exclused. The DENY(SE_DENY) rights override the corresponding account
    rights. In this case, either the service account or the service sid is denied on a right, the service is denied on the right.
    To be more detailed, we need to go through the following topics:
    How does system validate a process's privileges while accessing securable objects
    How does per-service SID work while accessing securable objects
    How does Access Control work
    How a process accesses securable objects:
    The system uses an access token to identify the user when a thread(or a process) interacts with a securable object or tries to perform a system task that requires privileges.
    An access token is an object that describes the security context of a process or thread.
    Access token contains lots of information. Two of them are:
    •The security identifier (SID) for the user's account
    •A list of the privileges held by either the user or the user's groups
    Please review the following article for more information:
    http://msdn.microsoft.com/en-us/library/windows/desktop/aa374909(v=vs.85).aspx
    How does per-service SID work while accessing securable objects
    For a service without per-Service SID enable, we can image the security context is just from the user(service account). With per-Service SID enabled, we can make a security context that is not just a user, but a user AND a particular process.
    Actually, the per-Service SID's SID and privilege are included the access token directly.
    By checking with Windbg, we can see the service SID was included.
    0:072> !token
    Thread is not impersonating. Using process token...
    TS Session ID: 0
    User: S-1-5-21-3485830563-343820118-176642512-1008
    User Groups:
     00 S-1-5-21-3485830563-343820118-176642512-513
        Attributes - Mandatory Default Enabled
     01 S-1-1-0
        Attributes - Mandatory Default Enabled
     02 S-1-5-21-3485830563-343820118-176642512-1009
        Attributes - Mandatory Default Enabled
     03 S-1-5-32-545
        Attributes - Mandatory Default Enabled
     04 S-1-5-6
        Attributes - Mandatory Default Enabled
     05 S-1-2-1
        Attributes - Mandatory Default Enabled
     06 S-1-5-11
        Attributes - Mandatory Default Enabled
     07 S-1-5-15
        Attributes - Mandatory Default Enabled
     08 S-1-5-113
        Attributes - Mandatory Default Enabled
     09 S-1-5-80-3880718306-3832830129-1677859214-2598158968-1052248003 < -- service SID
        Attributes - Default Enabled Owner
     10 S-1-5-5-0-274023807
        Attributes - Mandatory Default Enabled Owner LogonId
     11 S-1-2-0
        Attributes - Mandatory Default Enabled
     12 S-1-5-64-10
        Attributes - Mandatory Default Enabled
     13 S-1-16-12288
        Attributes - GroupIntegrity GroupIntegrityEnabled
    Primary Group: S-1-5-21-3485830563-343820118-176642512-513
    Privs:
     00 0x000000003 SeAssignPrimaryTokenPrivilege     Attributes -
     01 0x000000005 SeIncreaseQuotaPrivilege          Attributes -
     02 0x000000013 SeShutdownPrivilege               Attributes -
     03 0x000000017 SeChangeNotifyPrivilege           Attributes - Enabled Default
     04 0x000000019 SeUndockPrivilege                 Attributes -
     05 0x00000001d SeImpersonatePrivilege            Attributes - Enabled Default
     06 0x00000001e SeCreateGlobalPrivilege           Attributes - Enabled Default
     07 0x000000021 SeIncreaseWorkingSetPrivilege     Attributes -
     08 0x000000022 SeTimeZonePrivilege               Attributes -
    Auth ID: 0:105545a6
    Impersonation Level: Anonymous
    TokenType: Primary
    Is restricted token: no.
    SandBoxInert: 0
    Elevation Type: 1 (Default)
    Mandatory Policy: TOKEN_MANDATORY_POLICY_VALID_MASK
    Integrity Level: S-1-16-12288
    Process Trust Level: (null)
    Token Virtualized: Disabled
    UIAccess: 0
    IsAppContainer: 0
    Device Groups:
    How does Access Control work
    Please check from the following article for more information:
    http://technet.microsoft.com/en-us/library/cc740104(v=ws.10).aspx
    In addition, the following articles are helpful for understanding the concepts discussed in this reply:
    http://msdn.microsoft.com/en-us/library/windows/desktop/bb545671(v=vs.85).aspx
    http://msdn.microsoft.com/en-us/library/windows/desktop/ms684880(v=vs.85).aspx
    http://technet.microsoft.com/en-us/library/cc781716(v=ws.10).aspx
    http://blogs.technet.com/b/voy/archive/2007/03/22/per-service-sid.aspx
    Thanks,
    Jinchun Chen

  • SSI/'Include' a .php file?

    Hi All,
    Server Side Includes in DW look much more complex than they
    used to be! A
    few years ago I used them a lot. Now I read the 'Help' and
    I'm bewildered!
    I began wondering about this because we have PHP file
    containing n HTML
    fragment - on one server - and wish to include it in pages
    elsewhere. The
    Joomla sites will pull it in no prob.
    Q: Is there any way that a static DW site with .html pages
    can 'include'
    that code too?
    Thanks All,
    John

    > Q: Is there any way that a static DW site with .html
    pages can 'include'
    > that code too?
    You are asking if a static HTML page can include a PHP file
    fragment? Sure
    it can, using an HTML include, but be prepared for the static
    page to not
    execute any of the PHP in the fragment.
    > Server Side Includes in DW look much more complex than
    they used to be! A
    > few years ago I used them a lot. Now I read the 'Help'
    and I'm bewildered!
    They are exactly the same as they used to be. Nothing has
    changed.
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "johnivan" <[email protected]> wrote in message
    news:giapm8$b1l$[email protected]..
    > Hi All,
    > Server Side Includes in DW look much more complex than
    they used to be! A
    > few years ago I used them a lot. Now I read the 'Help'
    and I'm bewildered!
    >
    > I began wondering about this because we have PHP file
    containing n HTML
    > fragment - on one server - and wish to include it in
    pages elsewhere. The
    > Joomla sites will pull it in no prob.
    >
    > Q: Is there any way that a static DW site with .html
    pages can 'include'
    > that code too?
    >
    > Thanks All,
    > John
    >

  • Include Service inside application bundle?

    I read a brief note in the Dev docs that you can include Services inside your application bundle to distribute them with your app.
    Is this possible with the newer Automator-created Services? 
    Where should they be stored in the bundle?
    When I peek inside bundles of other apps that provide services, such as BBedit, I don't see any Service files.
    I've tried this a bit but could not get them to show up in the Services menu after logout.
    Thanks,
    Joe

    Services for the App/Services menu and contextual menu? They're better and more prolific than ever.

  • Q abt. "Server Side File Tracking for Mobile Home Sync"

    I am following the steps "To optimize the file server for mobile accounts" which are listed on page 157 in Mac OS X Server v10.6 - User Management :
    In Server Admin, click the disclosure triangle for the server hosting network home folders for mobile accounts.
    If Firewall isn’t listed, select the server, click Settings, click Services, select Firewall, and then click Save.
    Select Firewall, click Settings, and then click Services.
    Choose the address range for your users’ computers from the “Edit Services for” pop-up menu.
    Select “Allow only traffic from ‘ipaddress’ to any of these ports,” select the Allow checkbox for Mobile Account Sync (port 2336), and then click Save.
    Select the server, click Settings, and then click General.
    Select “Server Side File Tracking for Mobile Home Sync” and then click Save.
    My questions is:
    In step 2, I added "Firewall" to the services. I continued with the following steps, but nowhere does it say to press the button "Start Firewall", so as of right now Firewall is listed, but not activated - it's gray and not green. Should I turn on the Firewall Service? In my setup, a cable modem/router is acting Firewall between WAN and LAN (small private home network).

    I can't get Server Side File Tracking to work. Any help would be greatly appreciated!
    Here's what I've done:
    1. Followed the instructions in "Mac OS X Server v10.6 - User Management" as per the first post in this thread.
    2. Tried turning on the Firewall Service - resulting in clients unable to log in to their network accounts.
    3. In Server Admin, under Firewall>Settings>Services, with 192.168-net selected in the pop-up menu entitled "Editing services for", I then chose "Allow all traffic" (instead of "Allow only traffic to these ports:") as my router acts as a Firewall in my setup. Now users can log in to their network accounts again, but Server Side File Tracking is still not working. How do I know it is not working?
    According to infinite vortex in this other thread, the syncing window is supposed to only show this:
    On my clients, you can see it scan through the home directory before the file copying/syncing actually starts.

  • Sharepoint Visio Services .vdw file not getting refreshed

    Hello,
    I recently imported an orgchart in visio from (sql server table, excel sheet) that created shapes for me. And I can publish the file as .vdw on a sharepoint library and it works fine over there. But I wanted to refresh the data as the data in sql table
    or excel sheet chages. So I linked to datasource on visio to excel sheet(saved on sharepoint same library where the .vdw file is) and did automatically link the shapes with the external data. Refresh works fine on the visio file. But after I publish to sharepoint(in
    the publish settings datasource is selected) as vdw file, and I make some changes to excel file, and click refresh on the vdw file viewed in browser I dont see any data changes. I tried several different ways like connecting to data connection library pointing
    to sql table etc. Nothing seems to refresh the data in vdw file. Am I missing something? Appreciate help.
    thank you.
    rani

    Hi,
    I understand that you failed to refresh Visio Services .vdw file.
    It is a configuration problem in Central Administration.
    You need to create Target Application and associate it with Visio Services.
    Here is a similar blog for your reference:
    http://sharepointsolutions.com/sharepoint-help/blog/2010/10/visio-services-wont-refresh-in-sharepoint-2010how-to-fix-it/
    If the issue still exists, I recommend to log into Central Administration, clicked on the SharePoint Health Analyzer and see the issues.
    In addition, you can check the SharePoint ULS log to find more information about this error, the ULS log file is in the location: C:\Program Files\Common Files\Microsoft Shared\Web Server
    Extensions\14\LOGS
    You can check the ULS log by the methods here:
    http://blogs.msdn.com/b/opal/archive/2009/12/22/uls-viewer-for-sharepoint-2010-troubleshooting.aspx
    Thanks,
    Linda Li
    Forum Support
    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]
    Linda Li
    TechNet Community Support

  • How to include a .class file in a jsp page

    hi everyone,
    i know the syntax as:
    <%@ include file = "filename.class" %>
    then at run time the server could not find the class file
    if i use,
    <%@ page import = "FileName.class" %>
    then also the same problem persists
    & if i use
    <jsp:include page = "Relative address"/>
    the problem still remains as it is...
    please help me out...i am working on developing an EJB application in which client interacts with server's Stateful session bean through a jsp page...it is necessary for me to include the home interface class file in my jsp page.
    P.S. do not suggest me to include the class file in a package & then use
    <%@ page import = "packageName.ClassFileName" %>
    i
    Edited by: Ankit_JIITU on 6 Jul, 2008 1:55 AM

    Ankit_JIITU wrote:
    i have already included the remote interface class file by <%@ page import = "University.RemoteInterfaceName" %>in my jsp page ...
    if i try to make a new package called test & then include my home interface in that package...i need to import University.*to generate the class file of my home interface ; but the class file generation is not taking place as i am getting the error..
    "package University does not exist".How can i overcome this problem. The package University, which you are trying to import, must be in the classpath. If you removed it then you will have to add it back.
    i have tried my best..but tell me if there's any possible way of including a class file in the jsp page without involving a package.No, there isn't.
    If not,then pls help me to generate the class file of my home interface within a package called test.Read the New To Java Tutorial and understand how packages work.
    >
    i am assuming that u have a deep knowledge of developing EJB applications.

  • I have a Windows 7 laptop using I tunes 64 and all my music files are on an external disc. I rarely use I tunes and at one point moved all my files (including the music files) from one external disc to another without considering what affect this wou

    I have a Windows 7 laptop using I tunes 64 and all my music files are
    on an external disc. I rarely use I tunes and at one point moved all my files
    (including the music files) from one external disc to another without
    considering what affect this would have on the I tunes library. When I eventually
    attempted to use I tunes, every selected a song from the library resulted in a
    message stating that the file couldn't be located. After following some of the procedures
    explained in this community I was able to reconnect the library back to where
    the associated music files are presently stored. However, there are still 2
    problems that need to be corrected. 1) Every song file now has a duplicate. One
    file works and the other file will result in the same message stating that the
    file couldn't be located. Before there were 4,000 songs in the library, now
    there are 8,000 songs. I need to eliminate the 4,000 dead song files. 2) All
    the playlists are still associated with the dead song files which makes the
    playlists unusable. Can the playlists be reconnected to the usable files
    without manually having to recreate them? Thanks in advance for the help.
    sdkr

    So am I understanding correctly?
    You used your iPod as a hard drive (drag and drop) instead of having iTunes install the music?
    If you used drag and drop your choices are different than if you used iTunes to transfer.
    Good luck!

  • Problem while including the header file in C source code in CIN

    While Creating code interface node....
    In the C source code we are supposed to include the Header file "extcode.h".In my system i have installed
    Turbo C. I couldn't able to find the above header files.When i am trying to use the above header file i am getting error,what could be the reason

    Hi,
    You need to point your turbo C to ..\labview\cintools which is where you will find the extcode.h and other h file and also the lib file.
    Regards
    Ray Farmer
    Regards
    Ray Farmer

  • REST API: Create Deployment throwing error BadRequest (The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.)

    Hi All,
    We are trying to access the Create Deployment method stated below
    http://msdn.microsoft.com/en-us/library/windowsazure/ee460813
    We have uploaded the Package in the blob and browsing the configuration file. We have checked trying to upload manually the package and config file in Azure portal and its working
    fine.
    Below is the code we have written for creating deployment where "AzureEcoystemCloudService" is our cloud service name where we want to deploy our package. I have also highlighted the XML creation
    part.
    byte[] bytes =
    new byte[fupldConfig.PostedFile.ContentLength + 1];
                fupldConfig.PostedFile.InputStream.Read(bytes, 0, bytes.Length);
    string a = Encoding.UTF8.GetString(bytes, 0, bytes.Length);
    string base64ConfigurationFile = a.ToBase64();
    X509Certificate2 certificate =
    CertificateUtility.GetStoreCertificate(ConfigurationManager.AppSettings["thumbprint"].ToString());
    HostedService.CreateNewDeployment(certificate,
    ConfigurationManager.AppSettings["SubscriptionId"].ToString(),
    "2012-03-01", "AzureEcoystemCloudService", Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot.staging,
    "AzureEcoystemDeployment",
    "http://shubhendustorage.blob.core.windows.net/shubhendustorage/Infosys.AzureEcoystem.Web.cspkg",
    "AzureEcoystemDeployment", base64ConfigurationFile,
    true, false);   
    <summary>
    /// </summary>
    /// <param name="certificate"></param>
    /// <param name="subscriptionId"></param>
    /// <param name="version"></param>
    /// <param name="serviceName"></param>
    /// <param name="deploymentSlot"></param>
    /// <param name="name"></param>
    /// <param name="packageUrl"></param>
    /// <param name="label"></param>
    /// <param name="base64Configuration"></param>
    /// <param name="startDeployment"></param>
    /// <param name="treatWarningsAsError"></param>
    public static
    void CreateNewDeployment(X509Certificate2 certificate,
    string subscriptionId,
    string version, string serviceName, Infosys.AzureEcosystem.Entities.Enums.DeploymentSlot deploymentSlot,
    string name, string packageUrl,
    string label, string base64Configuration,
    bool startDeployment, bool treatWarningsAsError)
    Uri uri = new
    Uri(String.Format(Constants.CreateDeploymentUrlTemplate, subscriptionId, serviceName, deploymentSlot.ToString()));
    XNamespace wa = Constants.xmlNamespace;
    XDocument requestBody =
    new XDocument();
    String base64ConfigurationFile = base64Configuration;
    String base64Label = label.ToBase64();
    XElement xName = new
    XElement(wa + "Name", name);
    XElement xPackageUrl =
    new XElement(wa +
    "PackageUrl", packageUrl);
    XElement xLabel = new
    XElement(wa + "Label", base64Label);
    XElement xConfiguration =
    new XElement(wa +
    "Configuration", base64ConfigurationFile);
    XElement xStartDeployment =
    new XElement(wa +
    "StartDeployment", startDeployment.ToString().ToLower());
    XElement xTreatWarningsAsError =
    new XElement(wa +
    "TreatWarningsAsError", treatWarningsAsError.ToString().ToLower());
    XElement createDeployment =
    new XElement(wa +
    "CreateDeployment");
                createDeployment.Add(xName);
                createDeployment.Add(xPackageUrl);
                createDeployment.Add(xLabel);
                createDeployment.Add(xConfiguration);
                createDeployment.Add(xStartDeployment);
                createDeployment.Add(xTreatWarningsAsError);
                requestBody.Add(createDeployment);
                requestBody.Declaration =
    new XDeclaration("1.0",
    "UTF-8", "no");
    XDocument responseBody;
    RestApiUtility.InvokeRequest(
                    uri, Infosys.AzureEcosystem.Entities.Enums.RequestMethod.POST.ToString(),
    HttpStatusCode.Accepted, requestBody, certificate, version,
    out responseBody);
    <summary>
    /// A helper function to invoke a Service Management REST API operation.
    /// Throws an ApplicationException on unexpected status code results.
    /// </summary>
    /// <param name="uri">The URI of the operation to invoke using a web request.</param>
    /// <param name="method">The method of the web request, GET, PUT, POST, or DELETE.</param>
    /// <param name="expectedCode">The expected status code.</param>
    /// <param name="requestBody">The XML body to send with the web request. Use null to send no request body.</param>
    /// <param name="responseBody">The XML body returned by the request, if any.</param>
    /// <returns>The requestId returned by the operation.</returns>
    public static
    string InvokeRequest(
    Uri uri,
    string method,
    HttpStatusCode expectedCode,
    XDocument requestBody,
    X509Certificate2 certificate,
    string version,
    out XDocument responseBody)
                responseBody =
    null;
    string requestId = String.Empty;
    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(uri);
                request.Method = method;
                request.Headers.Add("x-ms-Version", version);
                request.ClientCertificates.Add(certificate);
                request.ContentType =
    "application/xml";
    if (requestBody != null)
    using (Stream requestStream = request.GetRequestStream())
    using (StreamWriter streamWriter =
    new StreamWriter(
                            requestStream, System.Text.UTF8Encoding.UTF8))
                            requestBody.Save(streamWriter,
    SaveOptions.DisableFormatting);
    HttpWebResponse response;
    HttpStatusCode statusCode =
    HttpStatusCode.Unused;
    try
    response = (HttpWebResponse)request.GetResponse();
    catch (WebException ex)
    // GetResponse throws a WebException for 4XX and 5XX status codes
                    response = (HttpWebResponse)ex.Response;
    try
                    statusCode = response.StatusCode;
    if (response.ContentLength > 0)
    using (XmlReader reader =
    XmlReader.Create(response.GetResponseStream()))
                            responseBody =
    XDocument.Load(reader);
    if (response.Headers !=
    null)
                        requestId = response.Headers["x-ms-request-id"];
    finally
                    response.Close();
    if (!statusCode.Equals(expectedCode))
    throw new
    ApplicationException(string.Format(
    "Call to {0} returned an error:{1}Status Code: {2} ({3}):{1}{4}",
                        uri.ToString(),
    Environment.NewLine,
                        (int)statusCode,
                        statusCode,
                        responseBody.ToString(SaveOptions.OmitDuplicateNamespaces)));
    return requestId;
    But every time we are getting the below error from the line
     response = (HttpWebResponse)request.GetResponse();
    <Error xmlns="http://schemas.microsoft.com/windowsazure" xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
      <Code>BadRequest</Code>
      <Message>The specified configuration settings for Settings are invalid. Verify that the service configuration file is a valid XML file, and that role instance counts are specified as positive integers.</Message>
    </Error>
     Any help is appreciated.
    Thanks,
    Shubhendu

    Please find the request XML I have found it in debug mode
    <CreateDeployment xmlns="http://schemas.microsoft.com/windowsazure">
      <Name>742d0a5e-2a5d-4bd0-b4ac-dc9fa0d69610</Name>
      <PackageUrl>http://shubhendustorage.blob.core.windows.net/shubhendustorage/WindowsAzure1.cspkg</PackageUrl>
      <Label>QXp1cmVFY295c3RlbURlcGxveW1lbnQ=</Label>
      <Configuration>77u/PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4NCjwhLS0NCiAgKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKg0KDQogIFRoaXMgZmlsZSB3YXMgZ2VuZXJhdGVkIGJ5IGEgdG9vbCBmcm9tIHRoZSBwcm9qZWN0IGZpbGU6IFNlcnZpY2VDb25maWd1cmF0aW9uLkNsb3VkLmNzY2ZnDQoNCiAgQ2hhbmdlcyB0byB0aGlzIGZpbGUgbWF5IGNhdXNlIGluY29ycmVjdCBiZWhhdmlvciBhbmQgd2lsbCBiZSBsb3N0IGlmIHRoZSBmaWxlIGlzIHJlZ2VuZXJhdGVkLg0KDQogICoqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioqKioNCi0tPg0KPFNlcnZpY2VDb25maWd1cmF0aW9uIHNlcnZpY2VOYW1lPSJXaW5kb3dzQXp1cmUxIiB4bWxucz0iaHR0cDovL3NjaGVtYXMubWljcm9zb2Z0LmNvbS9TZXJ2aWNlSG9zdGluZy8yMDA4LzEwL1NlcnZpY2VDb25maWd1cmF0aW9uIiBvc0ZhbWlseT0iMSIgb3NWZXJzaW9uPSIqIiBzY2hlbWFWZXJzaW9uPSIyMDEyLTA1LjEuNyI+DQogIDxSb2xlIG5hbWU9IldlYlJvbGUxIj4NCiAgICA8SW5zdGFuY2VzIGNvdW50PSIyIiAvPg0KICAgIDxDb25maWd1cmF0aW9uU2V0dGluZ3M+DQogICAgICA8U2V0dGluZyBuYW1lPSJNaWNyb3NvZnQuV2luZG93c0F6dXJlLlBsdWdpbnMuRGlhZ25vc3RpY3MuQ29ubmVjdGlvblN0cmluZyIgdmFsdWU9IkRlZmF1bHRFbmRwb2ludHNQcm90b2NvbD1odHRwcztBY2NvdW50TmFtZT1zaHViaGVuZHVzdG9yYWdlO0FjY291bnRLZXk9WHIzZ3o2aUxFSkdMRHJBd1dTV3VIaUt3UklXbkFrYWo0MkFEcU5saGRKTTJwUnhnSzl4TWZEcTQ1ZHI3aDJXWUYvYUxObENnZ0FiZnhONWVBZ2lTWGc9PSIgLz4NCiAgICA8L0NvbmZpZ3VyYXRpb25TZXR0aW5ncz4NCiAgPC9Sb2xlPg0KPC9TZXJ2aWNlQ29uZmlndXJhdGlvbj4=</Configuration>
      <StartDeployment>true</StartDeployment>
      <TreatWarningsAsError>false</TreatWarningsAsError>
    </CreateDeployment>
    Shubhendu G

  • Where yo find reporting services log files in sharepoint 2013 integrated mode

    i use to find the reporting services log files in the msrs folder in sharepoin 2010 integrated mode. but when we migrated to sharepoint 2013. i am not able to find the logs.i wanted to check all the executed sql statement using the logs as we don't have
    access to sql server profiler. does anybody know the location of yhe logs?

    Hi there,
    Not sure you'll see the sql statements however you can find information on the ULS logs here:
    http://technet.microsoft.com/en-us/library/cc627510(v=sql.105).aspx
    http://technet.microsoft.com/en-us/library/ff487871(v=sql.105).aspx
    and here:
    http://technet.microsoft.com/en-us/library/ms156500(v=sql.105).aspx
    You might want this once ULS log is capturing info.
    http://archive.msdn.microsoft.com/ULSViewer
    cheers,
    Andrew
    Andrew Sears, T4G Limited, http://www.performancepointing.com

  • Portlets Issues:-  Included resource or file  not found

    I am facing some problems in the loading of portlets with Weblogic 9.2.When I access the portal url all the portlets are displayed blank by giving the following error message on the server :
    <Error> <HTTP> <BEA-101214> <Included resource or file "/mysamples/exampleView.jsp" not found from requested resource "/portal/ep/home.do".>
    My application is using pluto portlet container,
    When I change the jsp file and reload portlet displays but after restarting the server it is again gone ,
    Can someone please provide some pointers on this , I will really appreciate the help .
    Thanks a lot
    -- Vandana

    has anyone got the solution I am getting the same error.
              mine is weblogic 6.1 in clustered env and when I am opening the browser and clicking on the link first time it is showing me no content in the pop up browser and I am getting the same error on the server as you people have got. help will be appreciated a lot as I am facing this in production env

  • How to include external JavaScript files

    Hello All,
    i'm wondering haow can i include externel JavaScrip files, there is an clip-example with a function in the same JSP file
    but not how to include a file?
    <body>
    <script language='JavaScript' src="menu/menu.js'></script>
    If some one has a clip i would appreciate.
    Thanks
    Gino

    <script src="resources/myscript.js"></script>
    I did this exact thing in my jsp but it did not work, nothing popped up.
    When I tried replacing it with:
    <script language="JavaScript" type="text/javascript"><![CDATA[
    function postMessage(message) {
    alert(message);
    ]]></script>
    It worked. Can someone tell me why? Can't i refer to javascript files this way?

Maybe you are looking for