Running my first ASP page

HI
I have my Web server (Sun One Web server 6.1) running and my First ASP Page ready, where do i store my .asp pages and how do i run the first ASP Page?

Take a look at:
http://docs.sun.com/source/817-1829-10/gsgasp.html
Thanks
Manish

Similar Messages

  • Running a java program from a .asp page

    i'm looking for someone in the community that knows how to run a java program
    on a web server ( not an applet) from a asp page. The server as IIS 5 and the jre1.3.1
    any help or tips would be welcomed

    The following site explains in detail how you have to do it. I have done it and it works fine.
    If u still have problems, contact me at [email protected]
    http://support.microsoft.com/default.aspx?scid=kb;EN-US;q167941

  • When I run the cursor over a template it shows several pages but when i select the document it only brings up the first two pages to edit. How do I see them all?

    When I run the cursor over a template it shows several pages but when i select the document it only brings up the first two pages to edit. How do I see them all?

    Skimming the templates in the Template Chooser shows you all of the pages available in the template once you open it. You can insert the one(s) you want, even more than one of any of them. Most users don't want or need all of the different pages, especially when they start the document.

  • How to reset report to first pagination page each time it runs?

    On a report with paging...heres the scenario:
    Go to page 2 and run a report.
    The report has 100 rows which page by 15 rows at a time.
    I go to the 3rd pagination page which has rows 45-60.
    I then navigate to page 300 in the application and do whatever.
    When I return to page 2, it is still on the 3rd pagination page.
    but I want it to return to the 1st pagination page.
    How do I make sure every query returns to its first pagination page rather to the page I was last on?
    Thanks,
    Linda

    You can also create a process on Page 2 that resets the pagination based on whether or not the current request is a next/prev page.
    Create a pagination reset process on page 2, then condition it with a PL/SQL expression of
    (:REQUEST IS NULL) OR (:REQUEST NOT LIKE 'pg_R_%')
    This is based on Vikas' recommendation at Re: How to reset pagination

  • Problems running asp pages on windows 7 IIS local host

    Hi,
    I've just put DW CS5 onto my new Windows 7 machine, and am having problems trying to run asp pages on the IIS local host. With DWmx and windows XP I had no problems, but with the new DW and the new operating system - W7 - it's impossible!
    I fill in the all the basics, and am able to set up a remote local site in the wwwroot folder under a new file I have created called "websites". However I keep getting an error 401.3 Unauthorized message in IE9 when trying to view the site I'm working on locally.
    It suggests that I check the ACLs for the file that is being requested, which I have done and have given all the files full permissions - but I still get the same message.
    I'm going to a trade fair where I can't connect the interet, so I have to find a way of showing my site on my local machine.
    Has anyone had this problem with the new version of IIS for W7 and asp pages - and can anyone help? I'm desperate!!
    Cheers,
    Seb

    Hi Mooreski,
    No, I don't have Skype - but I did what you suggested, and now I get the following:
    I have given all the files in the IIS folder - including the website folder all the permissions necessary, but I still get this!
    This is the IIS app and what I have set up...
    Am I doing the right thing here?
    I will set up a skype account - and contact you
    Cheers,
    Seb

  • ASP pages and Oracle ODBC Driver

    I have a number of ASP pages that need to be updated to connect to Oracle using the ORACLE ODBC driver. Currently, these pages connect using the Microsoft ODBC driver for Oracle. I do not know of all the details yet as I havent seen the pages or network for which they reside on and I havent been supplied with details on version information. I would assume I am working with recent versions of all software.
    What Im curious about is if anyone has done this sort of driver change before and if you have any suggestions on how I would go about doing this, or if there are things that I need to be aware of that arent evident at first glance.
    Again, I am switching from the odbc driver provided by Microsoft to a version of the odbc driver provided by Oracle.
    Thanks for any and all information.

    I'll assume that there is some reason that necessitates switching drivers. If there's not going to be a benefit, I'd suggest not changing.
    That said, changing drivers should be relatively painless. If your ASP makes database connections using DSN's, simply go to the ODBC Data Source Administrator, rename the old Microsoft DSN, and create a new DSN using the Oracle driver with the name your ASP is looking for. If your ASP specifies the ODBC driver in its connect string, you'll have to modify all the ASP connect strings to use the Oracle driver. If all goes well, your ASP will now be up & running using the Oracle driver.
    As we all know, however, reality and theory are often at odds with each other. While your ASP should be connecting to the database correctly when you make these changes, please do some thorough testing to verify that everything works like you expect. The ODBC specification permits drivers to have a variety of behaviors in certain conditions. Applications written with one ODBC driver often end up relying on one of these behaviors, and may break when the ODBC driver changes.
    Justin Cave
    ODBC Development

  • How to change Crystal Reports XI database name at run time from ASP code using ADO

    Dear All,
    I need advises regarding to my problem below
    I have two database in same SQL 2005 SERVER for TEST01 and LIVE01 Environtment, and I've created more than 100 reports with Crystal Reports 11 and call it from ASP classic page.
    The problem is how can I change a database from TEST01 to LIVE01 at the run time from ASP code as I already using TEST01 database on Crystal Reports and I do not want to set a new database location inside crystal for each reports
    Thanks and wait for your reply soon.
    Below is my code, which has no effect to crystal reports although I've change the database from TEST01 to LIVE01:
    <%
    Dim oADOConnection, oRptTable, oADORecordset, sql
    Dim struser, strpwd, strdriver, dblocation, dbname, strConnect
    struser = "sa"
    strpwd = ""     
    strdriver = "{SQL SERVER}" 
    dblocation = "SQL200501"     
    dbname = "LIVE01"    ' Changed from TEST01 to LIVE01
    strConnect = "User Id=" & strUser & ";"
    strConnect = strConnect & "PWD=" & strPwd & ";"
    strConnect = strConnect & "DRIVER=" & StrDriver & ";"
    strConnect = strConnect & "SERVER=" & DBLocation & ";"
    strConnect = strConnect & "DATABASE=" & dbName
    sql="Select * from Employee"
    Set session("oApp") = Server.CreateObject("CrystalRuntime.Application.11")
    Set session("oRpt") = session("oApp").OpenReport("C:\REPORTS\RPT01.RPT", 1) 'USING TEST01 DATABASE
    session("oRpt").MorePrintEngineErrorMessages = False
    session("oRpt").EnableParameterPrompting = False
    session("oRpt").DiscardSavedData
    Set oADOConnection = Server.CreateObject("ADODB.Connection")
    oADOConnection.Open (strConnect)
    Set oADORecordset = Server.CreateObject("ADODB.Recordset")
    Set oRptTable = session("oRpt").Database.Tables.Item(1)
    oRptTable.SetDataSource oADORecordset, 3
    session("oRpt").SQLQueryString = CStr(sql)
    session("oRpt").ReadRecords
    %>

    Did you ever find a solution to this problem?  I have the same problem when moving reports from development to Test to Production environments.  If the DBName is not the same the report ignores the name provided at runtime.

  • SOAP Response From ASP Page gives Exceptions-Why ?

    Hi Friends,
    I am trying to call an ASP Page by sending it a SOAP Request.
    The SOAP Request reaches the ASP Page but still i am getting lot of
    exceptions.This is my code from Request.java
    import javax.xml.soap.*;
    import java.util.*;
    import java.net.URL;
    public class Request {
    public static void main(String[] args) {
    try {
    SOAPConnectionFactory scFactory =
    SOAPConnectionFactory.newInstance();
    SOAPConnection con = scFactory.createConnection();
    MessageFactory factory =
    MessageFactory.newInstance();
    SOAPMessage message = factory.createMessage();
    SOAPPart soapPart = message.getSOAPPart();
    SOAPEnvelope envelope = soapPart.getEnvelope();
    SOAPHeader header = envelope.getHeader();
    SOAPBody body = envelope.getBody();
    header.detachNode();
    Name bodyName = envelope.createName(
    "TestDtls", "m",
    "urn:myserver/soap:TestThis");
    SOAPBodyElement gltp =
    body.addBodyElement(bodyName);
    Name name = envelope.createName("PhoneOrigin");
    SOAPElement symbol = gltp.addChildElement(name);
    symbol.addTextNode("0672324228");
    URL endpoint = new URL
    ("http://john/myservices/testsoap.asp");
         message.writeTo(System.out);
    SOAPMessage response = con.call(message, endpoint);
         response.writeTo(System.out);
    SOAPPart sp = response.getSOAPPart();
    SOAPEnvelope se = sp.getEnvelope();
    SOAPBody sb = se.getBody();
    Iterator it = sb.getChildElements(bodyName);
    SOAPBodyElement bodyElement =
    (SOAPBodyElement)it.next();
    String myvalue = bodyElement.getValue();
    System.out.print("The Value Retrived is ");
    System.out.println(myvalue);
         con.close();
    } catch (Exception ex) {
         System.out.println(ex);
    This is what i have in my ASP Page: testsoap.asp
    <%
    Set objReq = Server.CreateObject("Microsoft.XMLDOM")
    objReq.load(Request)
    strmycode = "SOAP-ENV:Envelope/SOAP-ENV:Body/m:TestDtls/PhoneOrigin"
    varPhoneOrigin=objReq.SelectSingleNode(strmycode).text
    status="ok"
    strReturn = "<SOAP-ENV:Envelope xmlns:SOAP=""urn:schemas-xmlsoap-org:soap.v1"">" & _
    "<SOAP-ENV:Header></SOAP-ENV:Header>" & _
         "<SOAP-ENV:Body>" & _
              "<m:TestDtlsResponse xmlns:m=""urn:myserver/soap:TestThis"">" & _
         "<PhoneStatus>" & Status & "</PhoneStatus>" & _
         "</m:TestDtlsResponse>" & _
         "</SOAP-ENV:Body>" & _
                        "</SOAP-ENV:Envelope>"
    Response.Write strReturn
    %>
    The Exceptions i get are as follows:
    =====================================
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"><S
    OAP-ENV:Body><m:TestDtls xmlns:m="urn:myserver/soap:TestThis"><PhoneOrigin>"0672
    324228"</PhoneOrigin></m:TestDtls></SOAP-ENV:Body></SOAP-ENV:Envelope>Jul 11, 20
    03 6:37:35 PM com.sun.xml.messaging.saaj.soap.MessageImpl identifyContentType
    SEVERE: SAAJ0537: Invalid Content-Type. Could be an error message instead of a S
    OAP message
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:text/html. Is
    this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    Jul 11, 2003 6:37:35 PM com.sun.xml.messaging.saaj.soap.MessageImpl <init>
    SEVERE: SAAJ0535: Unable to internalize message
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Unable to internalize message
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:2
    02)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:te
    xt/html. Is this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    ... 7 more
    CAUSE:
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:text/html. Is
    this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    CAUSE:
    com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:text/html. Is
    this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    java.security.PrivilegedActionException: com.sun.xml.messaging.saaj.SOAPExceptio
    nImpl: Unable to internalize message
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.call(HttpSOA
    PConnection.java:126)
    at Request.main(Request.java:34)
    Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Unable to internalize m
    essage
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:2
    02)
    at com.sun.xml.messaging.saaj.soap.ver1_1.Message1_1Impl.<init>(Message1
    _1Impl.java:45)
    at com.sun.xml.messaging.saaj.soap.ver1_1.SOAPMessageFactory1_1Impl.crea
    teMessage(SOAPMessageFactory1_1Impl.java:32)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection.post(HttpSOA
    PConnection.java:361)
    at com.sun.xml.messaging.saaj.client.p2p.HttpSOAPConnection$PriviledgedP
    ost.run(HttpSOAPConnection.java:156)
    ... 3 more
    Caused by: com.sun.xml.messaging.saaj.SOAPExceptionImpl: Invalid Content-Type:te
    xt/html. Is this an error message instead of a SOAP response?
    at com.sun.xml.messaging.saaj.soap.MessageImpl.identifyContentType(Messa
    geImpl.java:268)
    at com.sun.xml.messaging.saaj.soap.MessageImpl.<init>(MessageImpl.java:1
    35)
    ... 7 more
    Actually,i need to see the response in XML format as per my program.
    But,What does all this stuff mean ? I have using latest jwsdp 1.2.
    Can Anyone Help me on this ?

    i have the same problem. when i make a test with a VB client, the SOAP message is builded this way "<SOAP.... instead of <SOAP-ENV.... tag generated by java. When a make a test in vb client using this syntax (SOAP-ENV), the asp page returns a error:
    <font face="Arial" size=2>
    <p>Microsoft VBScript runtime </font> <font face="Arial" size=2>error '800a01a8'</font>
    <p>
    <font face="Arial" size=2>Object required: 'objXMLDOM.selectSingleNode(...)'</font>
    <p>
    <font face="Arial" size=2>/rcruz/soap/vbSoap/simplesoap.asp</font><font face="Arial" size=2>, line 6</font>
    Anyone have a idea???
    Thanks

  • C309a (Duplex Printing): the first two pages don't "duplex"

    Hi, I've got a little annoyance here: I love the duplex printing feature, but the first two pages don't "duplex!" The first page prints fine but doesn't get retracted back inside, and then the second page prints upside-down on a new sheet of paper.  The rest of the document "duplexes" as expected. Is there some option I'm (not) enabling?
    I'm running Windows XP SP3, wireless printing. Also for what it's worth, everything I've duplex-printed have been PDF files.
    Hopefully there's a solution and I don't have to continue leaving the first two pages of my documents blank
    Thanks in advance!

    If you have blank pages in your file you must set the print dialog through print booklet to print blank pages.

  • ASP Page to query report

    Hi there,
    So a long time ago we had a developer who set up an asp page that loads through some of our applications.  The asp page points to a specific report, depending on where it is called from within our application and also the parameters for that specific report are provided in the URL when it is called.  Then the report being requested from within our application is displayed with the given paramaters that are provided by our application. 
    We are working on preparing to migrate everything to a new server, this is all on a windows 2003 server running like crystal server 8 or something, to a new server that is currently running crystal server 2013.  Is what I am describing possible on crystal server 2013 and if so, what would I need to set up server side to allow our applications to work the same as they are? 

    If you pull the reports from Crystal Reports Server (CRS), you'll have to log in to CRS to get to them.  You'll also need the latest Service Pack of the BI Platform 4.1 .NET SDK to connect to the server. (version 14.1.x of the assemblies).  You'll run a query on the CMS database (through the SDK - you can't query it directly) to get information about the report and then either build an OpenDocument URL to open the report or open it in the viewer that comes with the SDK.  You can find more information about OpenDocument here:  http://help.sap.com/businessobject/product_guides/sbo41/en/sbo41_opendocument_en.pdf.  Unfortunately, the documentation for the .NET SDK is virtually non-existent and what is available is not very good.  However, I have some sample C# code for working with the SDK on my website (http://www.dellstinnett.com/sample_code.html) that includes a couple of tutorial programs that show how to work with the SDK.
    If you're not connecting to CRS, you'll use the SAP Crystal Reports for Visual Studio SDK, which you can download here:  http://scn.sap.com/docs/DOC-7824.  Get the latest "Install Executable" for integration into Visual Studio - the other downloads on the same line are for various types of runtime installs.  This will allow you to open reports directly from files.  You can get more information about this SDK here:  SAP Crystal Reports, developer version for Microsoft Visual Studio – SAP Help Portal Page
    -Dell

  • ASP page on OC4J

    Hello,
    Is posible to run ASP page on OC4J standalone server?

    ASP is Windows technology and only runs on their application server (IIS).
    Cheers,
    Andy

  • ASP Page Manipulated by Form Variable

    I have an ASP page containing data from a recordset. I would
    like help doing the following: When the user first opens the page,
    they see all of the records. On the top of the page, there will be
    a form containing a menu and a submit button. I would like it so
    that the user can select an item from the menu and when they hit
    submit, it simply uses the selection as the filter term.
    I can get everything to work if I'm passing to a secondary
    page, but then the problem arises again if the user wants to make
    another selection without hitting the back button. If I'm stuck
    with the 'back' solution, please let me know.
    Thanks for your help!

    Hi,
    Thanks for replying. I have now resolved by creating a master page and passing the AwayUser URL variable through to the main form.
    Regards

  • Dreamweaver locks loading ASP page

    on several of my asp pages Dreamwaver 8.02 (8.0 did the same)
    locks up while loading it.......it only seems to happen on the
    larger pages like the home page, which is 600 lines.....but I just
    tried an experiment, and there is an include file that when I
    exclude it then Dreamweaver will load it........this include file
    is 1415 lines long.........it won't even load this file in code
    only view (I thought it might have problemns with the display of
    some particularly conditional if then else type of displays (I do
    wish there could be some way to enable DW to handle the display of
    such in the design window....or throw an error at least that would
    identify the problem area........I have had to use Visual Studio to
    open such files, and I hate having to do that........perhaps an
    error message could be thrown by DW8 when it hits the problem area,
    and id'ing the line where it runs into display
    problems......

    I have resolved this, thanks to anyone who spent time on
    this.

  • First OAF page deployment - many questions

    I am trying deploy my first OAF Page (HelloWorldPG). However, I am getting lost trying to understand the directory
    structure. I tried to read through older posts from other users....but parts of their directory structure is different
    from mine.
    Development Steps:
    1) Created new OA component page using the default package "oracle.apps.ak.hello"
    The Physical location of the page is C:\JDEV\jdevhome\jdev\myprojects\oracle\apps\ak\hello\webui
    I notice that it is also located under C:\JDEV\jdevhome\jdev\myclasses\oracle\apps\ak\hello\webui. why does it get created in both myprojects and myclasses?
    2) Created and attached the controller class (HelloWorldMainCO.class) as suggested in the dev guide
    Physical location of the class file is C:\JDEV\jdevhome\jdev\myclasses\oracle\apps\ak\hello\webui
    3) Build and run the page. Page runs with out any errors
    Deployment steps(This is where I feel like I am running in circles...)
    1) I manually created a directory structure "/hello/webui" under $JAVA_TOP/oracle/apps/ak since I thought that it should match what I had on my PC. Is this step of creating the directory structure manually even needed?
    2) Then I migrated:
    a)"HelloWorldPG.xml" into $JAVA_TOP/oracle/apps/ak/hello/webui from C:\JDEV\jdevhome\jdev\myprojects\oracle\apps\ak\hello\webui
    as ASCII after ftp'ing into in my UNIX via command prompt
    b) "HelloWorldMainCO.class" into $JAVA_TOP/oracle/apps/ak/hello/webui from C:\JDEV\jdevhome\jdev\myclasses\oracle\apps\ak\hello\webui
    as Binary after ftp'ing into in my UNIX via command prompt
    3) I tried to import the page/region in to the DB using the following command in the command prompt from C:\JDEV\jdevbin\jdev\bin
    import C:\JDEV\jdevhome\jdev\myprojects\oracle\apps\ak\hello\webui\HelloWorldPG.xml -username apps -password <password> -rootdir C:\JDEV\jdevhome\jdev\myprojects\ -dbconnection "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=172.xx.x.xxx)(PORT=1521))(CONNECT_DATA=(SID=<xxxxxx>)))" -rootPackage /oracle/apps/ak/hello
    Import seems to have completed successfully without any errors. However, I am not sure if I gave the correct rootpackage or not.
    JDR_% tables seem to be updated. I can vouch for only the JDR_PATHS table as only that seems to have the creation date.
    PS: In the above import statement, I masked (only for this post) the password, ip address and the SID for security reasons. I am confident that what I used when importing is accurate.
    4) At this point should I be able to run procedure shown below?
    Begin
    jdr_utils.PrintDocument('/oracle/apps/ak/hello/webui/HelloWorldPG');
    End;
    or should I first create the AOL function/attach it to the menu and then run the above?
    I tried running it, with out creating the AOL Function and attaching the menu. It comes back with the message "Error: Could not find document /oracle/apps/ak/hello/webui/HelloWorldPG".
    5) Then I created the form function called "TOOLBOX_HELLO" with following:
    Type = SSWA jsp function
    HTML Call = "OA.jsp?page=/oracle/apps/ak/hello/webui/HelloWorldPG"
    Now I don't know which menu to add the AOL Function.
    As I mentioned earlier, I tried to read through several other older posts....however, I am getting confused.
    There are multiple places in the above steps where I need guidance. Could any one pls. suggest/correct my steps in deployment?
    Thanks

    Hi there,
    1) Created new OA component page using the default package "oracle.apps.ak.hello"
    The Physical location of the page is C:\JDEV\jdevhome\jdev\myprojects\oracle\apps\ak\hello\webui
    I notice that it is also located under C:\JDEV\jdevhome\jdev\myclasses\oracle\apps\ak\hello\webui. why does it get created in both myprojects and myclasses?
    The folder myclasses holds the .class compiled object files you deploy, the myprojects folder holds the .java source files.
    2) Created and attached the controller class (HelloWorldMainCO.class) as suggested in the dev guide
    Physical location of the class file is C:\JDEV\jdevhome\jdev\myclasses\oracle\apps\ak\hello\webui
    3) Build and run the page. Page runs with out any errors
    Deployment steps(This is where I feel like I am running in circles...)
    1) I manually created a directory structure "/hello/webui" under $JAVA_TOP/oracle/apps/ak since I thought that it should match what I had on my PC. Is this step of creating the directory structure manually even needed?
    Yes. This allows your code to be separate from seeded code so it isn't overwritten on patches.
    2) Then I migrated:
    a)"HelloWorldPG.xml" into $JAVA_TOP/oracle/apps/ak/hello/webui from C:\JDEV\jdevhome\jdev\myprojects\oracle\apps\ak\hello\webui
    as ASCII after ftp'ing into in my UNIX via command prompt
    b) "HelloWorldMainCO.class" into $JAVA_TOP/oracle/apps/ak/hello/webui from C:\JDEV\jdevhome\jdev\myclasses\oracle\apps\ak\hello\webui
    as Binary after ftp'ing into in my UNIX via command prompt
    3) I tried to import the page/region in to the DB using the following command in the command prompt from C:\JDEV\jdevbin\jdev\bin
    import C:\JDEV\jdevhome\jdev\myprojects\oracle\apps\ak\hello\webui\HelloWorldPG.xml -username apps -password <password> -rootdir C:\JDEV\jdevhome\jdev\myprojects\ -dbconnection "(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=172.xx.x.xxx)(PORT=1521))(CONNECT_DATA=(SID=<xxxxxx>)))" -rootPackage /oracle/apps/ak/hello
    Import seems to have completed successfully without any errors. However, I am not sure if I gave the correct rootpackage or not.
    JDR_% tables seem to be updated. I can vouch for only the JDR_PATHS table as only that seems to have the creation date.
    PS: In the above import statement, I masked (only for this post) the password, ip address and the SID for security reasons. I am confident that what I used when importing is accurate.
    4) At this point should I be able to run procedure shown below?
    Begin
    jdr_utils.PrintDocument('/oracle/apps/ak/hello/webui/HelloWorldPG');
    End;
    Yes, that will show you that it was loaded into mds. This is only for diagnostic purposes, not always required.
    or should I first create the AOL function/attach it to the menu and then run the above?
    You can now to do the AOL function.
    I tried running it, with out creating the AOL Function and attaching the menu. It comes back with the message "Error: Could not find document /oracle/apps/ak/hello/webui/HelloWorldPG".
    5) Then I created the form function called "TOOLBOX_HELLO" with following:
    Type = SSWA jsp function
    HTML Call = "OA.jsp?page=/oracle/apps/ak/hello/webui/HelloWorldPG"
    Now I don't know which menu to add the AOL Function.
    As I mentioned earlier, I tried to read through several other older posts....however, I am getting confused.
    There are multiple places in the above steps where I need guidance. Could any one pls. suggest/correct my steps in deployment?
    You need to bounce the apache server on the middle tier to get it to work.
    Hope this helps.
    Kristofer

  • Can Java Applet Call the ASP Page

    Hi,
    I would like to know whether the Java Applet can call the ASP page.
    If it can be done, how does the Java Applet get the value from ASP page?
    Please provide me some running example.
    Thanks.

    I would like to know whether the Java Applet can
    an call the ASP page.Something like:
    AppletContext.showDocument(new URL("http://wherever/myPage.asp"), "_blank");
    how does the Java Applet get the value from ASP page?What?
    Please provide me some running example.Nope.

Maybe you are looking for

  • Error while query is been executed?

    Hi all, I am getting the following error? while executing a query based upon the Multi provider. Warning Following error for the partial infocube = zclmbl in rsdrc_cube_data_get_rf abort internal error in program CL_RSDD_VCUBE and method COLLECT_CHA_

  • When I try to map faders to the volume in audio tracks it only lets me map the "selected track"

    LogicX user. I'm trying to map my mpd32's faders up with four audio tracks to control their volume. For the first three tracks, I can map the faders accordingly, and in the Controller Assignments window, in the "channel strip" section on the right, t

  • How to Convert Normal XML date or Oracle date to JDE Julian Date

    We can do a simple mathematical step in XSLT : 'xpath20:format-dateTime(xpath20:current-dateTime(),"[Y0001][d001]") - 1900000' Or in SQL : Select to_char(sysdate,'YYYYDDD')-1900000 from dual; Julian Date is: Year in 4 digits, YYYY, and Number of days

  • Manually changing the Track name in my Library?

    When importing songs from an external CD, the songs are coming up Track 1, Track 2 and so on. The Itunes doesn't find a supported name.  How can I rename the Track in my Library to the song name?

  • Achieving iPhone Native Look-and-Feel

    Im currently doing an Iphone tutorial for my final year project. Here's the link for the tutorial that I am doing http://www.oracle.com/technology/pub/articles/huang-iphone.html I have no idea how to start doing the second part of the tutorial; Achie