App.activeDocument.cropBox returning an error (CS3)

Hi friends
My script currently being developed is working perfectly in Illustrator CS5, CS6 and CC. When testing in Illustrator CS3, the line where I read the cropBox property of the activeDocument returns an error. So I tried to isolate this property in order to test it. So here's my test:
var doc = app.activeDocument;
var v = doc.cropBox;
Even running from Extended Script or directlly in Illustrator (and even declaring #target illustrator and #targetengine main) the line about cropBox stops and gets the error. Debugging in ESTK it returns the error:
"The property was not initialized"
Am I missing anything?
In newer Illustrator versions it works fine. But in CS3 not.
Thank you very much for the help
Gustavo

Hi pixxxel
Thank you very much for testing.
Strange. Here, in my test machine (Windows 7 64 bits), I´m not able to read this property! It returns that error.
Well..anyway I found and alternative reading the width and height and rulerOrigin of the document. But the cropBox is really not reading haha!
Best Regards and thank you very much
Gustavo

Similar Messages

  • Can't add any apps ,eprint server return"SBS​Error". What does this mean?

    Please bear with my poor English。。。
    when i  add apps to K510a
    Always show:
    I used ie & chrome.
     chrome debug tools show the last post for "add apps to printer "  return a ErrorCode "552"  
    I open the page source,find this code:
    when I add apps,always return error code "552 SBSError",and show "Something just went wrong on our server!"
    so  i can't add any apps to my k510a.
    please tell me,What is the meaning of “SBSError”? Thank you。。。 。。。

  • [JS CS3, Win] Saving InDesign using app.activeDocument.save

    Hello.
    I am having problems saving an InDesign document using Javascript.
    My aim is to have a box in the document where I will type the filename and path where I want the InDesign file to be saved (eventually this will be generated from a datamerge).
    I then want to run a script which will read the contents of the box and then save the document to that filename or location.
    At the moment I have:
    //SaveText.jsx
    //An InDesign CS3 JavaScript
    //Saves the document to the provided path
    //get contents of the FileNameBox box on the document
    var varFileName = app.activeDocument.textFrames.item("FileNameBox").contents;
    //now save
    app.activeDocument.save("/"+ varFileName+".indd");
    //alert (app.activeDocument.filePath);
    When I run the script (with "Hello" in the FileNameBox) the file changes name on the top bar of InDesign to "Hello.indd", but (when I run the commented out alert at the end) the file is not actually saving anywhere.
    If I close InDesign and then open it the file is listed under "Open Recent" on the menu, but clicking it does nothing - again the file doesn't exist.
    Does anyone have any ideas to help me from tearing my hair out?
    Where is my file saving? (Or, if it isn't, how can I make it save!).
    Thanks in advance for any help you can offer.

    var myFolder = new Folder("~/Desktop/Test");
    if (!myFolder.exist) myFolder.create();
    var varFileName = app.activeDocument.textFrames.item("FileNameBox").contents;
    app.activeDocument.save(myFolder.fsName + "\\" + varFileName+".indd");
    alert(app.activeDocument.filePath);

  • Provider-hosted Apps debug error: The remote server returned an error: (401) unauthorised

    Hi,
    Any help appreciated!!
    I'm getting this error: "The remote server returned an error: (401) unauthorised when I debug a provider-hosted app.  I get the error on this line:  
    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
    See code below
    I created a high trust development environment following the instructions provided here:
    http://msdn.microsoft.com/en-us/library/office/fp179901(v=office.15).aspx and
    http://msdn.microsoft.com/library/office/fp179923
    I created a provider-hosted app with the intent to:
    create a SharePoint list in the appweb
    Use self-signed certificate, tokenhepler.cs and sharepointcontext.cs to retrieve current user context and access on SharePoint.  (No changes were made to tokenhelper.cs and sharepointcontext.cs)
    retrieve list items from the SharePoint list in a button click event handler on a default.aspx of the remote web
    What happens:
    The app is deployed successfully to the Dev site
    The SharePoint feature is deployed and activated
    The default.aspx page of the remote web loads
    The error (see image) is returned on clicking of the button
    My environment is an on-premise SharePoint 2013 with AD and my dev box is standalone windows 8.1 running Visual Studio Professional 2013 Update 3.
    The code block below is a copy of the default.aspx code-behind
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using Microsoft.SharePoint.Client;
    using Microsoft.IdentityModel.S2S.Tokens;
    using System.Net;
    using System.IO;
    using System.Xml;
    using System.Data;
    using System.Xml.Linq;
    using System.Xml.XPath;
    namespace Idea.GeneratorWeb
    public partial class Default : System.Web.UI.Page
    SharePointContextToken contextToken;
    string accessToken;
    Uri sharepointUrl;
    protected void Page_PreInit(object sender, EventArgs e)
    Uri redirectUrl;
    switch (SharePointContextProvider.CheckRedirectionStatus(Context, out redirectUrl))
    case RedirectionStatus.Ok:
    return;
    case RedirectionStatus.ShouldRedirect:
    Response.Redirect(redirectUrl.AbsoluteUri, endResponse: true);
    break;
    case RedirectionStatus.CanNotRedirect:
    Response.Write("An error occurred while processing your request.");
    Response.End();
    break;
    protected void Page_Load(object sender, EventArgs e)
    //// The following code gets the client context and Title property by using TokenHelper.
    //// To access other properties, the app may need to request permissions on the host web.
    var spContext = SharePointContextProvider.Current.GetSharePointContext(Context);
    //var spContext = new ClientContext("MySPDevInstance");
    //spContext.Credentials = new NetworkCredential("username", "password");
    //using (var clientContext = spContext.CreateUserClientContextForSPHost())
    // clientContext.Load(clientContext.Web, web => web.Title);
    // clientContext.ExecuteQuery();
    // Response.Write(clientContext.Web.Title);
    string contextTokenString = TokenHelper.GetContextTokenFromRequest(Request);
    if (contextTokenString != null)
    // Get context token
    contextToken = TokenHelper.ReadAndValidateContextToken(contextTokenString, Request.Url.Authority);
    // Get access token
    sharepointUrl = new Uri(Request.QueryString["SPAppWebUrl"]);
    accessToken = TokenHelper.GetAccessToken(contextToken, sharepointUrl.Authority).AccessToken;
    // Pass the access token to the button event handler.
    Button1.CommandArgument = accessToken;
    protected void Button1_Click(object sender, EventArgs e)
    // Retrieve the access token that the Page_Load method stored
    // in the button's command argument.
    string accessToken = ((Button)sender).CommandArgument;
    if (IsPostBack)
    sharepointUrl = new Uri(Request.QueryString["SPAppWebUrl"]);
    // REST/OData URL section
    string oDataUrl = "/_api/Web/lists/getbytitle('Diagrams In Idea Generator')/items?$select=Title,Diagram,SharingStatus";
    // HTTP Request and Response construction section
    HttpWebRequest request = (HttpWebRequest)HttpWebRequest.Create(sharepointUrl.ToString() + oDataUrl);
    request.Method = "GET";
    request.Accept = "application/atom+xml";
    request.ContentType = "application/atom+xml;type=entry";
    request.Headers.Add("Authorization", "Bearer " + accessToken);
    HttpWebResponse response = (HttpWebResponse)request.GetResponse();
    // Response markup parsing section
    XDocument oDataXML = XDocument.Load(response.GetResponseStream(), LoadOptions.None);
    XNamespace atom = "http://www.w3.org/2005/Atom";
    XNamespace d = "http://schemas.microsoft.com/ado/2007/08/dataservices";
    XNamespace m = "http://schemas.microsoft.com/ado/2007/08/dataservices/metadata";
    List<XElement> entries = oDataXML.Descendants(atom + "entry")
    .Elements(atom + "content")
    .Elements(m + "properties")
    .ToList();
    var entryFieldValues = from entry in entries
    select new
    Character = entry.Element(d + "Title").Value,
    Actor = entry.Element(d + "Diagram").Value,
    CastingStatus = entry.Element(d + "SharingStatus").Value
    GridView1.DataSource = entryFieldValues;
    GridView1.DataBind();
    Any ideas what I might be doing wrong

    Hi ,
    Use the below code
    Public string GetAccessToken(){
    string sharePointSiteUrlHost =  Page.Request["SPHostUrl"].Tostring();
    string AccessToken = tokenHelper.GetS2SAccessTokenWithWindowsIdentity(sharePointSiteUrlHost, Request.LogonUserIdentity);
    return accessToken;
    Than initialize the ClientCOntext with the below Method
     private static ClientContext GetClientContextWithAccessTokenString(string targetUrl, object accessToken)
                ClientContext clientContext = new ClientContext(targetUrl);
                clientContext.AuthenticationMode = ClientAuthenticationMode.Anonymous;
                clientContext.FormDigestHandlingEnabled = false;
                clientContext.ExecutingWebRequest +=
                    delegate(object oSender, WebRequestEventArgs webRequestEventArgs)
                        webRequestEventArgs.WebRequestExecutor.WebRequest.UserAgent = "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)";
                        webRequestEventArgs.WebRequestExecutor.RequestHeaders["Authorization"] =
                            "Bearer " + accessToken;
                return clientContext;
    use this clientCOntext and it will work.
    Do not use
    SharePointContextProvider
    Whenever you see a reply and if you think is helpful,Vote As Helpful! And whenever you see a reply being an answer to the question of the thread, click Mark As Answer

  • Error occurred in deployment step 'Uninstall app for SharePoint': The remote server returned an error: (502) Bad Gateway.

    Installed SP 2013 Foundation in my Hyper-V machine
    Created and done all the steps mentioned here http://blogs.msdn.com/b/shariq/archive/2013/05/07/how-to-set-up-high-trust-apps-for-sharepoint-2013-amp-troubleshooting-tips.aspx && http://msdn.microsoft.com/en-us/library/office/fp179901%28v=office.15%29.aspx
    for self signed certificate
    copied those two certificates in my local machine(base machine) D drive
    (D:\Cert)
    Both VM and base machine are in same domain
    Installed VS 2013 in my base machine and create a Provided hosted app with the copied certificates, (For creation i followed the above mentioned URL)
    Just created and hit F5 to run in my base machine, but getting this error
    Error occurred in deployment step 'Uninstall app for SharePoint': The remote server returned an error: (502) Bad Gateway.
    Please help me to resolve this issue, trying to figure out from last 2 days
    Thanks in Advance
    Arun

    Hi Harminder,
    This happens because an app has already been deployed and you are deploying it again using the same version.
    Resolution:
    Open the AppManifest.xml file and change the version.
    Vivek Jagga - MCTS SharePoint
    SharePointExcellence

  • The remote server returned an error :(401) unauthorized in Provider hosted app deployment

    Hi,
    We are trying to deploy the provider hosted app in server environment . we are getting the "The remote server returned an error :(401) unauthorized" error after deploy the app in server.
    stack Trace:
    [webException:Te remote server returned an error:(401) UnAuthorized.]
    System.Net.HeepWebRequest.GetResponse().
    Followed the same MSDN steps , but sill same error. We have attached the certificate and using the same issuer ID in the app web.config.
    Verified the IIS setting and still getting the same error when we call the "Clientcontext.ExecuteQuery()" method.
    Same code is working fine in my Local dev environment.
    If anyone have idea about this issue, please let me know.
    Thank you,
    Mylsamy

    Hi ,Thank you for your response. We have tried all the options and everything is same (Client ID,Issuer ID...etc) and finally figured out the issue.The below link saved my day.http://msdn.microsoft.com/en-us/library/office/dn762439(v=office.15).aspxIn "TokenHelper.cs" GetRealmFromTargetUrl method always return null andWhen we analyze the issue we found some variable name assigned for "Realm" Instead of GUID in SP server.Power shell command to get the Realm in SP server:  Get-SPAuthenticationRealmWe have followed below article to generate the new GUID for realm.http://technet.microsoft.com/en-us/library/jj219756(v=office.15).aspx$c =Get-SPServiceContext -Site "http://<websiteurl>"Set-SPAuthenticationRealm -ServiceContext $c -Realm "a686d436-9f16-42db-09b7-cb578e110ccd".
    Thankyou,Mylsamy

  • Provider hosted app error message: The remote server returned an error: (429) Too Many Requests.

    Hi,
    I have a customer running a provider hosted app and in Sharepoint 2013. Things have been working fine but recently they keep experiencing an issue where the all the app parts on the page show the following error message. Does anyone have an idea what
    could be causing this problem and how I can fix it? The Sharepoint site and provider hosted app site are running on a Server 2008 R2 box with IIS 7.5.
    Server Error in '/Test.Sharepoint.App' Application.
    The remote server returned an error: (429) Too Many Requests.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.           
    Exception Details: System.Net.WebException: The remote server returned an error: (429) Too Many Requests.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [WebException: The remote server returned an error: (429) Too Many Requests.]
    System.Net.HttpWebRequest.GetResponse() +8527180
    Microsoft.SharePoint.Client.SPWebRequestExecutor.Execute() +58
    Microsoft.SharePoint.Client.ClientRequest.ExecuteQueryToServer(ChunkStringBuilder sb) +975
    Test.Sharepoint.AppWeb.Pages.LatestAnnouncement.GetLatestAnnouncement(Boolean showFullText) +610
    Test.Sharepoint.AppWeb.Pages.LatestAnnouncement.Page_Load(Object sender, EventArgs e) +764
    System.Web.UI.Control.LoadRecursive() +71
    System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3178
    Version Information: Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.18034
    Impreza Software Development

    Hi GuYumming,
    I have checked the Sharepoint site using Fiddler and my X-SharePointHealthScore stays consistently on 1, I have even refreshed the site and had the "(429) Too Many Requests" error happen right in front of me whilst Fiddler is running and when I look at the
    200 response for the Sharepoint site it is still showing "X-SharePointHealthScore: 1".
    I assume because of this I do not need to make any of the changes suggested in your article above?
    I have also been through the ULS logs and found the following 3 log entries that appear to relate to the issue but they do not really mean much to me so I am hoping that you can help:
    Begin CSOM Request ManagedThreadId=59, NativeThreadId=12476
    SPResourceTally(ClientServiceRequestDuration) value 1 + 150425 > 150000
    ResourceBudgetExceeded, sending throttled status code. Exception=Microsoft.SharePoint.SPResourceBudgetExceededException: ResourceBudgetExceeded     at Microsoft.SharePoint.SPResourceTally.Check(Int32 value)    
    at Microsoft.SharePoint.SPAggregateResourceTally.Check(SPResourceKind kind, Int32 value)     at Microsoft.SharePoint.Client.SPClientServiceHost.OnBeginRequest()
    Impreza Software Development

  • New R12 install: Apps ORACLE_HOME connection test has returned an error:

    Hi guys,
    New to R12 apps. Installing 2node R12 on linux 5R9. Database installed fine. Called rapidwiz from node 2 and used conf_PROD.txt i moved from database sever. Failing however with error with Database Availability red exclaimed and every other box red x'd except ODBC and environment file in green at post install check. Where do i start troubleshooting my issue please. thanks.
    -Richard.
    RW-50011: Error: - Apps ORACLE_HOME connection test has returned an error: 4
    LOGS:
    /d02/oracle/PROD/inst/apps/PROD_ovm2/admin/log/ohclone.log
    Executing command sh -c "/d02/oracle/PROD/apps/tech_st/10.1.2/opmn/bin/opmnctl stopall ; echo ERRORCODE = $? ERRORCODE_END" Sun Mar 03 08:02:50 CST 2013
    Command returned
    opmnctl: opmn is not running
    ERRORCODE = 0 ERRORCODE_END
    .end std out.
    /d02/oracle/PROD/apps/tech_st/10.1.2/opmn/bin/opmnctl: line 636: /d2/R12/ab/apps/R1211XB9/apps/tech_st/10.1.2/opmn/bin/opmn: No such file or directory
    .end err out.
    Command sh -c "/d02/oracle/PROD/apps/tech_st/10.1.2/opmn/bin/opmnctl stopall ; echo ERRORCODE = $? ERRORCODE_END" completed successfully. Sun Mar 03 08:02:51 CST 2013
    OPMN shutdown successfull
    deleting ojmisc file (copied earlier) at /d02/oracle/PROD/apps/tech_st/10.1.2/jdk/jre/lib/ext/ojmisc.jar
    ApplyAppsTechStack_03030802.log
    adlnktools.sh started at Sun Mar 3 08:02:51 CST 2013
    Log file located at /d02/oracle/PROD/inst/apps/PROD_ovm2/logs/ora/10.1.2/install/make_03030802.log
    /d02/oracle/PROD/apps/tech_st/10.1.2/bin/OracleAS_Relink_Patch.sh: line 10: /d2/R12/ab/apps/R1211XB9/apps/tech_st/10.1.2/install/oracle_relink_patch.log: No such file or directory
    /d02/oracle/PROD/apps/tech_st/10.1.2/bin/OracleAS_Relink_Patch.sh: line 11: /d2/R12/ab/apps/R1211XB9/apps/tech_st/10.1.2/install/oracle_relink_patch.out: No such file or directory
    /d02/oracle/PROD/apps/tech_st/10.1.2/bin/OracleAS_Relink_Patch.sh: line 23: /d2/R12/ab/apps/R1211XB9/apps/tech_st/10.1.2/install/oracle_relink_patch.log: No such file or directory
    Error while running adlnktools.sh.
    return code = .16.17.18.21.22.23.24.25.32.33.34.36.37.38
    Please check logfile located at /d02/oracle/PROD/inst/apps/PROD_ovm2/logs/ora/10.1.2/install/make_03030802.log
    /d02/oracle/PROD/inst/apps/PROD_ovm2/logs/ora/10.1.2/install/make_03030802.log
    0.1.2/jdk/jre/lib/i386/client:/d2/R12/ab/apps/R1211XB9/apps/tech_st/10.1.2/jdk/jre/lib/i386 -Wl,--allow-shlib-undefined `cat /d02/oracle/PROD/apps/tech_st/10.1.2/lib/sysliblist` -ldl -lm
    /usr/bin/ld: cannot find -ljava
    collect2: ld returned 1 exit status
    make: *** [d02/oracle/PROD/apps/tech_st/10.1.2/sysman/lib/libnmefsql.so] Error 1
    Failed linking target libnmefsql on Sun Mar 3 08:02:56 CST 2013...
    /usr/bin/ld: cannot find -ljava
    collect2: ld returned 1 exit status
    make: *** [d02/oracle/PROD/apps/tech_st/10.1.2/sysman/lib/emagtm] Error 1
    Error found while relinking
    return code = .16.17.18.21.22.23.24.25.32.33.34.36.37.38
    ApplyApplTop_03030824.log
    Skipping prodsetup driver processing; driver file not found at: /media/sf_allshare/stage/startCD/Disk1/rapidwiz//apps/driver/ovm2_prodsetup.drv
    ApplyApplTop Completed Successfully.
    Edited by: 991478 on Mar 3, 2013 10:28 AM

    I fear that my issue is somehow related to missing rpms....i see this in the make log for 10.1.2 home
    /usr/bin/ld: cannot find -ljava
    collect2: ld returned 1 exit status
    make: *** [d02/oracle/PROD/apps/tech_st/10.1.2/sysman/lib/libnmefvr.so] Error 1
    Failed linking target libnmefvr on Tue Mar 5 10:59:47 CST 2013...
    My rpms look as though i have them all. C anything i might be missing still please?
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep compat-libgcc
    compat-libgcc-296-2.96.138 (i386)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep compat-libstdc++
    compat-libstdc++-296-2.96.138 (i386)
    compat-libstdc++-33-3.2.3.61 (i386)
    compat-libstdc++-33-3.2.3.61 (x86_64)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep compat-libgcc
    compat-libgcc-296-2.96.138 (i386)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep compat-gcc
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep gcc
    gcc-c++-4.1.2.54.el5 (x86_64)
    compat-libgcc-296-2.96.138 (i386)
    libgcc-4.1.2.54.el5 (i386)
    gcc-4.1.2.54.el5 (x86_64)
    gcc-4.1.2.54.el5 (i386)
    libgcc-4.1.2.54.el5 (x86_64)
    gcc-c++-4.1.2.54.el5 (i386)
    gcc-gfortran-4.1.2.54.el5 (x86_64)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep glibc
    glibc-common-2.5.107 (x86_64)
    glibc-common-2.5.107 (i386)
    glibc-devel-2.5.107 (x86_64)
    glibc-devel-2.5.107 (i386)
    glibc-2.5.107 (x86_64)
    glibc-2.5.107 (i686)
    glibc-headers-2.5.107 (x86_64)
    glibc-headers-2.5.107 (i386)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep oracle
    oracle-validated-1.1.0.17.el5 (x86_64)
    oracle-linux-5.0.0.9.el5 (noarch)
    oracle-logos-4.9.17.10 (noarch)
    oraclelinux-release-5.9.0.2 (x86_64)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep oracle-validated
    oracle-validated-1.1.0.17.el5 (x86_64)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep libc
    glibc-common-2.5.107 (x86_64)
    glibc-common-2.5.107 (i386)
    libcap-1.10.26 (x86_64)
    libcap-devel-1.10.26 (x86_64)
    glibc-devel-2.5.107 (x86_64)
    libcap-devel-1.10.26 (i386)
    glibc-devel-2.5.107 (i386)
    glibc-2.5.107 (x86_64)
    libcroco-0.6.1.2.1 (x86_64)
    glibc-2.5.107 (i686)
    libcap-1.10.26 (i386)
    libcroco-devel-0.6.1.2.1 (x86_64)
    glibc-headers-2.5.107 (x86_64)
    libcroco-0.6.1.2.1 (i386)
    glibc-headers-2.5.107 (i386)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep libgomp
    libgomp-4.4.7.1.el5 (x86_64)
    libgomp-4.4.7.1.el5 (i386)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep libXp
    libXpm-3.5.5.3 (x86_64)
    libXpm-3.5.5.3 (i386)
    libXp-1.0.0.8.1.el5 (i386)
    libXp-1.0.0.8.1.el5 (x86_64)
    libXpm-devel-3.5.5.3 (x86_64)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep make
    automake16-1.6.3.8.el5.1 (noarch)
    automake-1.9.6.2.3.el5 (noarch)
    make-3.81.3.el5 (x86_64)
    automake14-1.4p6.13.el5.1 (noarch)
    imake-1.0.2.3 (x86_64)
    automake15-1.5.16.el5.2 (noarch)
    automake17-1.7.9.7.el5.2 (noarch)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep compat
    java-1.4.2-gcj-compat-1.4.2.0.40jpp.115 (x86_64)
    compat-libgcc-296-2.96.138 (i386)
    compat-libstdc++-296-2.96.138 (i386)
    avahi-compat-libdns_sd-0.6.16.10.el5_6 (x86_64)
    compat-libstdc++-33-3.2.3.61 (i386)
    xorg-x11-libs-compat-6.8.2.1.EL.33.0.1 (i386)
    compat-libstdc++-33-3.2.3.61 (x86_64)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep unix
    unixODBC-libs-2.2.11.10.el5 (x86_64)
    unixODBC-libs-2.2.11.10.el5 (i386)
    unixODBC-devel-2.2.11.10.el5 (x86_64)
    unix2dos-2.2.26.2.3.el5 (x86_64)
    dos2unix-3.1.27.2.el5 (x86_64)
    unixODBC-2.2.11.10.el5 (i386)
    unixODBC-2.2.11.10.el5 (x86_64)
    unixODBC-devel-2.2.11.10.el5 (i386)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep libaio
    libaio-devel-0.3.106.5 (i386)
    libaio-0.3.106.5 (x86_64)
    libaio-0.3.106.5 (i386)
    libaio-devel-0.3.106.5 (x86_64)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep elf
    elfutils-libelf-0.137.3.el5 (x86_64)
    elfutils-libs-0.137.3.el5 (x86_64)
    elfutils-0.137.3.el5 (x86_64)
    elfutils-libelf-0.137.3.el5 (i386)
    elfutils-libelf-devel-static-0.137.3.el5 (x86_64)
    elfutils-libelf-devel-0.137.3.el5 (x86_64)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep gdbm
    gdbm-1.8.0.28.el5 (i386)
    gdbm-devel-1.8.0.28.el5 (i386)
    gdbm-1.8.0.28.el5 (x86_64)
    gdbm-devel-1.8.0.28.el5 (x86_64)
    [root@ovm2 ~]# rpm -qa --queryformat "%{NAME}-%{VERSION}.%{RELEASE} (%{ARCH})\n" |grep sysstat
    Only missing rpm is see is binutils i386. There is the 86x64. Installing that now.....and will re install APPSSTACK.
    Verions chosen is binutils-2.17.50.0.6-9.0.1.el5.i386.rpm and presnt is it 86X64.
    Edited by: 991478 on Mar 5, 2013 9:59 AM

  • Possible bug in Photoshop CS6 with app.activeDocument.path.

    JavaScript running in Photoshop CS6 under OS X 10.7.5 returns the wrong result for app.activeDocument.path when the file is located on the boot drive. The result is undefined and an error message incorrectly states that the document has not been saved yet. If the file is located on a remote volume, the correct path is returned.
    To reproduce this problem, create a new file in Photoshop CS6 on a Mac. Save the file to the desktop. With the file still open, run the following script in ExtendScript Toolkit.
    // start script
    var thePath = app.activeDocument.path;
    alert(thePath);
    // end script
    Running the same script with a file located on a server volume open in Photoshop correctly returns "/path/to/file.psd" instead of undefined and no error occurs.
    This appears to be a bug in Photoshop CS6's JavaScript implementation. This problem did not exist in Photoshop CS3.
    A similar issue prevents Photoshop CS6 from saving files to the boot drive using activeDocument.saveAs.
    Has anyone else experienced this problem? If so, have you discovered an alternate method to determine the file path or save a file on the boot drive?

    Don't know if this will help much but at least you can use it to check a document's filepath without throwing an error. And maybe tell if the problem is with the Photoshop DOM.
    function hasFilePath(){// returns true/false
        var ref = new ActionReference();
        ref.putEnumerated( charIDToTypeID("Dcmn"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
        return executeActionGet(ref).hasKey(stringIDToTypeID('fileReference'));
    function getFilePath(){// returns path as a string if exists, undefined if not
        var ref = new ActionReference();
        ref.putEnumerated( charIDToTypeID("Dcmn"), charIDToTypeID("Ordn"), charIDToTypeID("Trgt") );
        var desc = executeActionGet(ref);
        if(desc.hasKey(stringIDToTypeID('fileReference'))) return decodeURI(desc.getPath(stringIDToTypeID('fileReference')));

  • After Upgrade OBI 10g to 11g:Odbc driver returned an error - SQLExecDirectW

    Hi all,
    for an OBI upgrade from 10g to 11g I used a RPD and Webcatalog based on a remote machine other than my local machine. Firstable I am making the tests on a Linux Virtual machine, which uses the Sample Lite version from Oracle.
    I made the following steps:
    1. I upgraded the RPD and Webcatalog. It worked without any errors.
    2. I set the static variable BI_EE_HOME via Administration Tool to the path in the Linux machine.
    --> Here I am not sure if the set path is correct. It begins with: \bi\ ...\instances\...\coreapplication_obis1 (... : I can't mention here the whole path name).
    --> When the OBI Server is installed in Windows, the mentioned static variable points to something like 'C:\<install folder>\...\coreapplication_obis1'
    --> Question: is the begin of my set path correct?. I set that pointing to the Linux OBI Server, because the OBI Server is installed on Linux.
    Problem:
    After login as the user in RPD: Administrator/<Password for my upgraded RPD> I can see the links in the Catalog and the Dashboards links. But I can not see any values, any Reports when going through the links.
    For example when trying to see a Dashboard with date 12.02.2011it happens:
    Odbc driver returned an error (SQLExecDirectW).
    Status: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] general error.
    [nQSError: 43113] Message returned from OBIS.
    [nQSError: 43119] Query Failed:
    [nQSError: 17001] Oracle Error code: 12154, message: ORA-12154: TNS:could not resolve the connect identifier specified
    at OCI call OCIServerAttach.
    [nQSError: 17014] Could not connect to Oracle database. (HY000)
    SQL Issued: SELECT "Dimension_-_My Dimension"."MyDimension" saw_0 FROM "Accounting (ACC)" WHERE "Dimension_-_My Dimension"."MyDimension" LIKE 'J%' ORDER BY saw_0
    I think its not retrieving the data from the remote database, because I don't have the data of the remote database in my local. I think the OBI Server still is pointing to the local virtual machine Oracle database.
    Can anybody tell me what happens here and how can I solve this problem?.
    I would appreciate any help....

    Hi gerardnico,
    I've tried many things and did as in your articles, but I don't have success with that.
    These are the things I did:
    1. I searched for the file tnsnames.ora in my Linux virtual machine. I could find it in many paths:
    /.../Oracle_BI1/network/admin/samples/tnsnames.ora
    /.../oracle/xe/app/oracle/product/10.2.0/server/hs/admin/tnsnames.ora.sample
    /.../oracle/xe/app/oracle/product/10.2.0/server/network/admin/tnsnames.ora
    /.../oracle/xe/app/oracle/product/10.2.0/server/network/admin/samples/tnsnames.ora
    /.../oracle/xe/app/oracle/product/10.2.0/server/network/admin/temp/tnsnames.ora
    /.../usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin
    in the last path I found the listener.ora as well.
    2. I took the tnsnames.ora from the last path, because the ORACLE_HOME points to /.../usr/lib/oracle/xe/app/oracle/product/10.2.0/server
    3. I edited the tnsnames.ora this way:
    # tnsnames.ora Network Configuration File:
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = host_of_the_remote_machine)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = database_name_of_the_remote_machine)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = database_SID_of_the_remote_machine)
    (PRESENTATION = RO)
    4. I made a backup of the tnsnames.ora in path /.../Oracle_BI1/network/admin/samples/tnsnames.ora
    and copied the tnsnames.ora from /.../usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin to the Oracle_BI1 path
    5. I set the TNS_ADMIN to /.../usr/lib/oracle/xe/app/oracle/product/10.2.0/server/network/admin
    6. I restarted the BI Server
    No success in what I did. The error is still there.
    7. I've tried also: sqlplus database_user_remote_machine/database_password_remote_machine@database_SID_remote_machine
    I didn't get the connection:
    SQL*Plus: Release 10.2.0.1.0 - Production on Thu Jun 16 04:36:10 2011
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    ERROR:
    ORA-12154: TNS:could not resolve the connect identifier specified
    Enter user-name: database_user_remote_machine
    Enter password:
    ERROR:
    ORA-01034: ORACLE not available
    ORA-27101: shared memory realm does not exist
    Linux Error: 2: No such file or directory
    What am I doing wrong here?. I am still thinking that I need the import of the database.
    Additional SID=Service-Name=Database-name in the remote machine.

  • Error: Load operation failed for query 'GetAuthenticationInfo'. The remote server returned an error: NotFound.

    Hello,
    I have a lightswitch web-application in development, which I need to copy from one computer to the other. I have tried doing it both through Git and by simply copying the solution and opening the project on another machine. The project builds without errors,
    but when I try to debug it, it opens a web-browser, loads to 100% and pops up an error - Load operation failed for query 'GetAuthenticationInfo'. The remote server returned an error: NotFound.
    Now, I have tried repairing Visual Studio on my machine, reinstalling .NET framework and setting  <basicAuthentication enabled="false" /> in web.config, yet it still does not run.
    When using Fiddler, it shows an error while loading the application - "HTTP/1.1 500 Internal Server Error" , which I honestly don't know what it means.
    The application uses ComponentOne and Telerik modules, but they are both installed on both machines. 
    The application does run perfectly on the original machine, but it is not working on any other one.
    Both machines are using Win 8.1 and Visual Studio 2013 Update 4.
    I have tried to look this up online, but most people's problem are when they are deploying the app, not just debugging. I would be really happy for any help with this issue.
    Thanks!

    I have the same problem on one of my development machines. Whenever I create a new project, the System.IdentityModel.Tokens.Jwt nuget package is not referenced properly. The project compiles correctly but you are not able to debug as I get the same error
    as you.
    If you open up your references and there is an error next to any of your references make sure that you correct them. In the case of the jwt reference error, I have to remove the jwt reference and then add it back from the packages folder.
    This may not be your problem but could point you in a direction?

  • The remote server returned an error: (503) Server Unavailable In SharePoint 2010.

    I created a web app with claims based authentication ,
    basiclly i follwe this blog
    http://donalconlon.wordpress.com/2010/02/23/configuring-forms-base-authentication-for-sharepoint-2010-using-iis7/
    but when i login it throws 503 error
    Server Error in '/' Application.
    The remote server returned an error: (503) Server Unavailable.
    Description: An unhandled exception occurred during the execution of the current web request. Please review the stack trace for more information about the error and where it originated in the code.
    Exception Details: System.Net.WebException: The remote server returned an error: (503) Server Unavailable.
    Source Error:
    An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
    Stack Trace:
    [WebException: The remote server returned an error: (503) Server Unavailable.]
    System.Net.HttpWebRequest.GetResponse() +1126
    System.ServiceModel.Channels.HttpChannelRequest.WaitForReply(TimeSpan timeout) +81
    [ServerTooBusyException: The HTTP service located at http://localhost:32843/SecurityTokenServiceApplication/securitytoken.svc is too busy. ]
    System.Runtime.Remoting.Proxies.RealProxy.HandleReturnMessage(IMessage reqMsg, IMessage retMsg) +10258154
    System.Runtime.Remoting.Proxies.RealProxy.PrivateInvoke(MessageData& msgData, Int32 type) +539
    Microsoft.IdentityModel.Protocols.WSTrust.IWSTrustContract.Issue(Message message) +0
    Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst, RequestSecurityTokenResponse& rstr) +61
    Microsoft.IdentityModel.Protocols.WSTrust.WSTrustChannel.Issue(RequestSecurityToken rst) +36
    Microsoft.SharePoint.SPSecurityContext.SecurityTokenForContext(Uri context, Boolean bearerToken, SecurityToken onBehalfOf, SecurityToken actAs, SecurityToken delegateTo) +26062081
    Microsoft.SharePoint.SPSecurityContext.SecurityTokenForLegacyLogin() +270
    Microsoft.SharePoint.IdentityModel.SPWindowsClaimsAuthenticationHttpModule.GetSecurityTokenFromWindowsIdentity(WindowsIdentity windowsIdentity, HttpContext httpContext) +21
    Microsoft.SharePoint.IdentityModel.SPWindowsClaimsAuthenticationHttpModule.AuthenticateRequest(Object sender, EventArgs e) +1176
    System.Web.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() +80
    System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously) +171
    any thoughts?
    thanks in advance!
    Share Knowledge and Spread Love!

    Hi ,
    I was also facing the same issue on changing my credentials. This effects the ServiceTokenApplicationPool and other pools related to the Web applications
    To resolve this  follow these :
    1. Open IIS Manager , under Connection section you can see the Name of your site collection(as
    siteCollectionName(Username))
    2. Open SiteCollection , select Application Pools. A new window with your Web application pool names would open.
    3. Right click on web app, select Advance Setting... , under Process Model select Identity 
    4. check for Custom account , click set and enter your Credentials and click
    OK
    Atlast Refresh the IIS manager.
    Thank you.
    Under application pools Do select the ServiceTokenApplicationPool  also and follow steps 3 and 4

  • APP-MRP-22075: An internal error has occurred (mrnspia, 2, 8170, )

    EBS 12.1.3
    Database Version 11.2.0.2
    APP-MRP-22075: An internal error has occurred (mrnspia, 2, 8170, )
    @ERRORTEXT            Cause:        The current routine encountered the specified@ERRORTEXT  x        Action:        Contact your customer supportrepresentative.
    APP-MRP-22075: An internal error has occurred (main, 19, MSCNSP,  )
    @ERRORTEXT            Cause:        The current routine encountered the specified@ERRORTEXT  x        Action:        Contact your customer supportrepresentative.
    {Code}
    Steps to reproduce the issue isAdvanced Supply Chain Planner > Supply Chain Plan > Launch. Select P:BUIEH and select SP-TEST plan. Hit OK and Submit
    Error Log Contents
    Advanced Supply Chain Planning: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    MSCNSP module: Memory-Based Snapshot
    Current system time is 23-JUL-2012 21:08:58
    ===================================================================
    Debug Mode : Disabled
    Output to Terminal : No
    Argument Method : Database Fetch
    Trace Mode : Disabled
    ===================================================================
    Argument 1 (PLAN_ID) = 1026
    Argument 2 (LAUNCH_CRP_PLANNER) = 2
    Argument 3 (SNAPSHOT_WORKER) = 0
    Argument 4 (MON_PNAME) = 0
    Argument 5 (MON_REQUEST_ID) = 0
    Argument 6 (SNAPSHOT_MODE) = 1
    Argument 7 (SNAP_STATIC_ENTITIES) = 1
    ===================================================================
    plan_id:1026 plan_type:1 planning_engine_type:1
    Setting up flat file directories: Checking for DIR: /app/oracle/EBSCRP2/inst/apps/EBSCRP2_houebsap2/logs/appl/conc/out/data1026/
    Directory is already there or can not be opened
    Setting up flat file directories: Checking for mbpinput and mbpoutput directories
    mbp input/output directory existing.. check it out
    mbp flat file dir /app/oracle/EBSCRP2/inst/apps/EBSCRP2_houebsap2/logs/appl/conc/out/data1026/
    before call to calculate plan buckets
    success in calculate plan buckets
    MRNSPIA: Constraine_mode :1
    Planning Engine Type: ASCP Plan_type:1
    The value of profile option 'MRP_RETAIN_DATES_WTIN_CAL_BOUNDARY' is Y
    SELECT TO_NUMBER(TO_CHAR(MIN(calendar_date),'j')),
    TO_NUMBER(TO_CHAR(MAX(calendar_date),'j'))
    FROM msc_calendar_dates
    WHERE calendar_code = :calendar_code
    AND seq_num IS NOT NULL
    AND to_number(to_char(calendar_date, 'J')) >=
    to_number(to_char(sysdate, 'J')) - 365
    AND exception_set_id = :exception_set_id
    AND sr_instance_id = :instance_id
    Loading workday calendar. Please wait ..
    SELECT TO_CHAR(calendar_date, 'j')
    FROM msc_calendar_dates
    WHERE calendar_code = :calendar_code
    AND sr_instance_id = :instance_id
    AND to_number(to_char(calendar_date, 'j')) >=
    to_number(to_char(sysdate, 'J')) - 365
    AND exception_set_id = :exception_set_id
    AND seq_num IS NOT NULL
    ORDER BY calendar_date
    Loading workday calendar. Please wait ...
    Loading workday calendar. Please wait . 0:00
    APP-MRP-22075: An internal error has occurred (mrnspia, 2, 8170, )
    @ERRORTEXT Cause: The current routine encountered the specified@ERRORTEXT x Action: Contact your customer supportrepresentative.
    APP-MRP-22075: An internal error has occurred (main, 19, MSCNSP, )
    @ERRORTEXT Cause: The current routine encountered the specified@ERRORTEXT x Action: Contact your customer supportrepresentative.
    ***** End Of Program - No title available *****
    Executing request completion options...
    Output file size:
    0
    Output is not being printed because:
    The print option has been disabled for this report.
    Finished executing request completion options.
    Concurrent program returned no reason for failure.
    Exceptions posted by this request:
    Concurrent Request for "Memory-Based Snapshot" has completed with error.
    Concurrent request completed
    Current system time is 23-JUL-2012 21:08:58

    Hi;
    Thanks for sharing soluiton for other forum user and thanks to Hussein Sawwan for his great posts.
    PS:Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
    Regard
    Helios

  • App.activeDocument no longer works right

    In a different topic, I was explaining my use of app.documents[0] rather than app.activeDocument. I was going to elaborate some about the differences when I hit a snag. There was a dramatic change after CS3 and apparently nobody noticed. I didn't until today. Look at this simple script that expects there to be more than one document open:
    docZero = app.documents[0];
    activeDoc = app.activeDocument;
    $.writeln("docZero: " + docZero.name);
    $.writeln("activeDoc: " + activeDoc.name);
    // move back document to front
    app.activeDocument = app.documents[-1];
    $.writeln("\ndocZero: " + docZero.name);
    $.writeln("activeDoc: " + activeDoc.name + "\n");
    $.writeln("docZero: "+ docZero.toSpecifier());
    $.writeln("activeDoc: " + activeDoc.toSpecifier() + "\n");
    In CC, I was astonished to discover that I got this result (after creating two untitled documents):
    docZero: Untitled-2
    activeDoc: Untitled-2
    docZero: Untitled-2
    activeDoc: Untitled-2
    docZero: /document[0]
    activeDoc: /document[@id=2]
    That second docZero ought to say Untitled-1. Untitled-1 was definitely moved to the front by the app.activeDocument = app.documents[-1] statement. So looking at the docZero specifier, how come I got the wrong name?
    I decided to check my sanity and went back to see what happens in CS3 -- the oldest InDesign I still have installed (actually, on two different computers, so I tried it on both). CS3 gives:
    docZero: Untitled-2
    activeDoc: Untitled-2
    docZero: Untitled-1
    activeDoc: Untitled-2
    docZero: /document[0]
    activeDoc: /document[@name="Untitled-2"]
    There's two interesting things here:
    The second docZero message has the correct name of the document that was moved to the front.
    In those days, documents were identified by name, not id.
    Point 2 is interesting but off topic.
    So I tried CS4 (also on two machines). It gave:
    docZero: Untitled-2
    activeDoc: Untitled-2
    docZero: Untitled-2
    activeDoc: Untitled-2
    docZero: /document[0]
    activeDoc: /document[@name="Untitled-2"]
    So this is when things started to go wrong. Interestingly, documents were still identified by name in CS4, so it wasn't that change that caused the change in behavior. It was CS5 (which produced exactly the same output as CC) where the specifier changed to using the id -- a property that had not previously existed for Document objects.
    So, I guess the question is: Is this a bug? Looks like one to me. Looks like it stopped working after CS3.
    Dave
    Message was edited by: DaveSofTypefi -- minor formatting change

    Hi Dave,
    This is a typical specifier resolution problem, and indeed this is not related to id-based document specifiers introduced in CS5.
    How specifiers are resolved is consistant since CS4—except for Text and Cell specifiers, but this another story.
    Here is what happens:
    Unlike activeDoc = app.activeDocument (which is instantly resolved), docZero = app.documents[0] remains an unresolved specifier until you hit some property on it, which is done at the next line, when you innocently display the name property:
    $.writeln("docZero: " + docZero.name); // this code sends a command that resolves docZero
    Then, whatever you do, docZero is internally resolved to an actual receiver (the Untitled2 document), even if the specifier string accessed from docZero.toSpecifier() still contains the original path "/document[0]". Ironically, if you didn't prompt docZero.name before sending the command app.activeDocument = app.documents[-1]; then docZero would have been properly resolved to the Untitled1 document! Remove the first $.writeln and you will see the change.
    Now, the question is: how to force a new resolution of the specifier considering its formal path "/document[0]". The answer is getElements(). Just access this method and the magic happens:
    docZero = app.documents[0];
    alert("docZero: " + docZero.name);          // => Untitled-2
    // move back document to front
    app.activeDocument = app.documents[-1];
    docZero.getElements();                      // resolve again!
    alert("\ndocZero: " + docZero.name);        //  => Untitled1
    alert("docZero: "+ docZero.toSpecifier());  // still /document[0]
    See also: http://www.indiscripts.com/post/2010/07/on-everyitem-part-2
    @+
    Marc

  • Using Runtime exec() method to run java files and return runtime errors

    Hi
    I'm writing a java editor and I use
    Runtime.getRuntime().exec(command)
    to compile the java files. That works fine and I deal with the returned errors using the getErrorStream().
    My questions are:
    1. Can I use the same technique for returning runtime errors. In any posts I've read the process runs from begining to end, returning the errors after completion. How do I return the errors of the app as they happen interactively?
    2. If i cant use the exec and getErrorStream() methods then does anyone know how it is done?
    Thanks in advance for any help!

    Read this:
    http://www.javaworld.com/javaworld/jw-12-2000/jw-1229-traps.html
    MOD

Maybe you are looking for

  • G-Drive Mini disconnects itself

    Hello everyone, This has happened a few times, too many to ignore. When I leave my MBP on and go away for a while, when I come back and take it out of sleep mode, or just the screen saver, I get that message when you unplug a device without properly

  • Creating a SP 2010 farm

    Hi, We have a staging environment which is a farm and We want to create a new production farm for share point 2010.(This farm is for Internet sites(public sites). not for Intranet as of now) Can I know how do I know how many servers do we need (i mea

  • Find the Database where user defined function is ??

    Hi,   I have one user defined function , but i couldn't find where the function is and where the function is using.. anyone pls help me to overcome this one. Thanks

  • Web.xml file not being read

    Hello, I did a quick search but could not find an answer to my specific problem. (this is also my first night tackling servlets) i hope this hasnt been answered before. here goes... i'm using Tomcat 4.1 and this is my file structure where i put my se

  • Adding an open menu to the movie

    Just like a blueray disk or a DVD dick. Since movies are starting to have Itune extras with them. If on the apple tv if it would open to the opening menu. So then that you could also start the mpvie from there or chooses to  watch the extra things on