Deployment of OA extension

These are steps to Deploy OAF Pages for freshly created.
Step 1.. Copy your files to corressponding Folder in $JAVA_TOP
..does it means the AK_TOP OR Product_top
My development is window NT based PC , with J developer with Latest patch for OAF framework.
xxtom.oracle.apps.ak.schema.server
My JDeveloper Structure is:
C:\OraHome1\jdevhome\jdev\myprojects\xxtom
for Classes is
C:\OraHome1\jdevhome\jdev\myclasses\xxtom
where xxtom is my company package.
what i did , i zipped xxtom.zip from C:\OraHome1\jdevhome\jdev\myprojects\
and ftp to unix box.
I have unzip this at $AK_TOP
ie
/dv1/ora01/dv1appl/ak/11.5.0/java
Is this right, or should I need to unzip in $JAVA_TOP
which is
/dv1/gfp/ora01/dv1comn/java
is this right
Step 2.. Give permission to all its sub folder
Do i need to change the permission set to all folders.
Step 3. I have copied the .jpx file and copied in
/dv1/ora01/dv1appl/ak/11.5.0/mds folder
is this right
also ftped jpximport.bat to same folder in unix, but suspecting how to run.change the .bat extension to .sh but no outcome.
Can anyone guide the rest of steps , as I am bit struggling with deployment.
thanks in advnce

hi,
I created a OA Page which is running fine from JDeveloper. As a first step to deploy it to Apps, I placed the page1.xml and HelloWorldMainCO.java in the $JAVA_TOP/oracle/apps/ak/hello/webui directory on the server. And i created a class file HelloWorldMainCO.class in the same directory.
After this i created a function and attached to the menu, when i ran its giving the error ::: oracle.apps.fnd.framework.OAException: Application: FND, Message Name: FND_NO_REGION_DATA. Tokens: REGIONCODE = /oracle/apps/ak/hello/webui/page1;
when i searched for this error, then i got to know i have to use the import command to import the jpx file. But on my local pc, in the C:\jdevstudio10131\OAF\jdevbin\jdev\myprojects and C:\jdevstudio10131\OAF\jdevbin\jdev\myprojects\oracle\apps\ak\hello\webui directories, i'm unable find the .jpx file at all.
one more thing is i ran the following command on the server dircectory $JAVA_TOP/oracle/apps/ak/hello/webui:
java oracle.jrad.tools.xml.importer.XMLImporter /u01/d02/viscomn/java/oracle/apps/ak/hello/webui/page1.xml -rootdir /u01/d02/viscomn/java/oracle/apps/ak/hello/webui/ -userId apps_r -rootPackage /u01/d02/viscomn/java/oracle/apps/ak/hello/webui/ -username apps_r -password apps_r
-dbconnection "(description = (address_list = (address = (protocol = tcp)(host = CSC.oracledemo.com)(port=1521)))(connect_data = (sid = VIS)))"
but its giving the following error:
Error:
ORA-06550: line 1, column 12:
PLS-00201: identifier 'JDR_MDS_INTERNAL.GETREPOSITORYVERSION' must be declared
ORA-06550: line 1, column 7:
PL/SQL: Statement ignored
So, can anyone please guide me how can i solve this.
thanks,
chandana

Similar Messages

  • Need automated/hands-off deployment for VO extension

    Hello,
    I have created a VO extension. I only changed the query in an LOV, so I only need to promote the jpx and xml files. I have successfully promoted the xml file (moved it to the custom directory) and imported the JPX file with JPX importer.
    Now we need to promote from dev, where I did this manually, to beta, where we need an automated approach. To do so, I decided to create a Simple Archive JAR file. My plan:
    Create a Jar file
    * right click project -> Create Business Components Deployement profile
    * choose Simple Archive
    * note jar location
    * click Finish
    * expand the bcdeploy file
    * right click the MiddleTier.bcdeploy file -> Settings
    * choose files I want deployed
    * under Filters, remove all Excludes in the After Dependency section
    * include my custom package tree
    * click Finish
    * right click the MiddleTier.bcdeploy file -> Deploy to JAR
    check the jar into pvcs
    have Kintana (our migration tool) pull the jar from pvcs
    use a shell script (which Kintana would execute) to
    * unpack the jar
    * import the xml or jpx if exists
    * move class files to appropriate directories
    Is there a better methodology than this?
    Thanks!

    Hey there,
    For our custom OAF deployments we do the following:
    1. Remember to move your *.class files into your project on your local machine.
    2. Zip up our project file.
    3. DBA's take *.zip and extract in $JAVA_TOP on forms server.
    4. Import each XML file using the following script (provide correct path names). We use a shell script to run this for each of our XMLs.
    java oracle.jrad.tools.xml.importer.XMLImporter $JAVA_TOP/item/oracle/apps/spl/part/webui/PartSearchPG.xml -rootdir $JAVA_TOP -username apps -password $APPS_PASSWD -dbconnection "(DESCRIPTION =(ADDRESS_LIST =(ADDRESS =(PROTOCOL =TCP)(Host = $HOST)(Port =1569)))(CONNECT_DATA =(SID =$SID)(GLOBAL_NAME =$SID.oracledb.com)(SDU =1450)(TDU =2900)))"
    5. Load *.sql scripts to create Form functions, Menu entries, and messages. As described below:
    fnd_form_functions_pkg.load_row(
    X_FUNCTION_NAME => 'CREATE_PARTS',
    X_APPLICATION_SHORT_NAME => NULL,
    X_FORM_NAME => NULL,
    X_PARAMETERS => NULL,
    X_TYPE => 'JSP', --' 'SSWA jsp function',
    X_WEB_HOST_NAME => NULL,
    X_WEB_AGENT_NAME => NULL,
    X_WEB_HTML_CALL => 'OA.jsp?page=/item/oracle/apps/...,
    X_WEB_ENCRYPT_PARAMETERS => NULL,
    X_WEB_SECURED => NULL,
    X_WEB_ICON => NULL,
    X_OBJECT_NAME => NULL,
    X_REGION_APPLICATION_NAME => NULL,
    X_REGION_CODE => NULL,
    X_USER_FUNCTION_NAME => 'Item Console',
    X_DESCRIPTION => 'Item Console',
    X_OWNER => 'SYSADMIN',
    X_CUSTOM_MODE => 'Y'
    commit;
    FND_MENU_ENTRIES_PKG.LOAD_ROW(
    X_MODE => 'I',
    X_ENT_SEQUENCE => v_ent_sequence,
    X_MENU_NAME => 'INV_NAVIGATE_CUS_T',
    X_SUB_MENU_NAME => NULL,
    X_FUNCTION_NAME => 'CREATE_PARTS',
    X_GRANT_FLAG => 'Y',
    X_PROMPT => 'Item Console',
    X_DESCRIPTION => 'Item Console',
    X_OWNER => NULL);
    commit;
    fnd_new_messages_pkg.load_row (
    x_application_id => 601, --AK
    x_message_name => 'PART_W',
    x_message_number => null,
    x_message_text => 'Part Created: &PART_NBR',
    x_description => null,
    x_type =>'30_PCT_EXPANSION_PROMPT',
    x_max_length => null,
    x_category => null,
    x_severity => null,
    x_fnd_log_severity => '0',
    x_owner => null,
    x_custom_mode => null,
    x_last_update_date => null
    6. Finally, Bounce Apache.

  • Deploy Business Logic Extensions (BC4J changes) back to Oracle 11i

    Hi all,
    I am new to OAF. I made a small change to the SELECT SQL of an OAF page and I am able to see my initial change in 11i. Then I made more changes to the same SQL and I did same steps to deploy back to 11i (i.e. ZIP up all files under JDEV_USER_HOME\myclasses\ and update the server files; run jpximport.bat to update MDS respository). When I tried again in 11i, it does not have my latest change.
    The OA Framework Developer Guide mentions to bounce the web server as part of the deployment steps. Do we have to bounce the web server? In our team environment, bounce the web server involves sending request to DBA, etc.. Any workaround so I can retest over and over without going through requests?
    Thanks,
    Mike

    There are some changes the effects of which are not visible unless apache is bounced, for example, changes to java files, or xml defn.
    You should ideally make changes and test everything on jdeveloper and when satisfied, move code to server.
    Thanks
    Tapash

  • Implement and deploy a JSON rendering extension for SSRS.

    Hi,
    Can anyone please let me know how to implement and deploy a JSON extension for SSRS 2005?

    Hi Anoopmulamoodu,
    In Reporting Services, we can implement custom rendering extensions to generate reports in expected formats. After doing some research, I am afraid there is no example of JSON Rendering Extension for Reporting Services. Generally, it is difficult to write
    a custom rendering extension because it must typically support all possible combinations of report elements and requires that you implement hundreds of classes, interfaces, methods, and properties. Before you decide to create a custom rendering extension,
    you should evaluate simpler alternatives:
    Customize rendered output by specifying device information settings for existing extensions.
    Add custom formatting and presentation features by combining XSL Transformations (XSLT) with the output of the XML rendering format.
    If you indeed to implement a custom rendering extension, please go through the following MSND document as well as an code example of Zip Rendering Extension:
    Implementing a Rendering Extension
    Zip Rendering Extension for SQL Server Reporting Services 2005/2008/2012
    Hope this helps.
    Regards,
    Mike Yin
    TechNet Community Support

  • VO extension error:  FND, Message Name: FND_VIEWOBJECT_NOT_FOUND

    All, I am try to extend a VO in isupplier page to display some additional fields in 12.1.3
    While following the regular process, I got the error "each row in the query result columns must be mapped to a unique query attribute in the mapped entity columns".
    So, I created a new VO with out any changes and then I added a new attribute and changed the sql of the extended VO ,  then did the substitution and deployed the
    files and bounced the app server.
    Then, in the about this page section I do  see my new extended VO in place of the original VO and I do the new attribute. So far so good.
    Then I tried to personalize the page to add the new filed to the page. Then I am getting the below error:
    "Message not found. Application: FND, Message Name: FND_VIEWOBJECT_NOT_FOUND.  Tokens: VONAME = VendorsVO; APPLICATION_MODULE =
    oracle.apps.pos.supplier.server.ByrSuppAM"
    What I don't understand is why is the AM looking for the old VO? The name of my new VO is xxVendorsVO.
    Can some one please help me? I am have hit a dead end here.
    Thanks.

    Hi,
    After VO extension when you adding new field in the page by personalization. please make sure Your viewinstance should be VendorsVO (i.e StandarVO)
    Dilip'S Oracle Application Framework Blogs: Deploying Your ViewObject Extensions
    Regards,
    Dilip

  • Adding a custom rendering extension to SQL Server Reporting Services 2012 for SharePoint 2010 integrated mode

    We are attempting to add OfficeWriter report rendering extensions for SSRS 2012 in SharePoint (2010) integrated mode through powershell. The documentation for “New-SPRSExtension” is rather
    sparse and we have not found any clear examples on the internet. With SSRS 2012 in native mode, we make the following two changes to the config files:
    We add the following report rendering extension declaration to
    RSReportServer.config:
    <Configuration>
        <Extensions>
            <Render>
                <Extension Name="XLTemplate" Type="SoftArtisans.OfficeWriter.ReportingServices.ExcelTemplateRenderer,
    SoftArtisans.OfficeWriter.RS2008"/>
                <Extension Name="WordTemplate" Type="SoftArtisans.OfficeWriter.ReportingServices.WordTemplateRenderer,
    SoftArtisans.OfficeWriter.RS2008"/>
            </Render>
        </Extensions>
    </Configuration>
    We add the following security trust codegroup to
    RSSvrPolicy.config:
    <configuration>
        <mscorlib>
            <security>
                <policy>
                    <PolicyLevel version="1">
                  <CodeGroup version="1" PermissionSetName="Nothing">
                    <CodeGroup
                                version="*"
                                PermissionSetName="FullTrust"
                                Name="SoftArtisans_OfficeWriter_Strong_Name"
                                Description="This
    code group grants SoftArtisans OfficeWriter code full trust.">
                              <IMembershipCondition
                                class="StrongNameMembershipCondition"
                                version="*"
                                PublicKeyBlob="00240000048000009400000006020000002400005253413100040000010001004779CB207F11
                                5E86EF9DD3233F9F130F8891911345176650F72330F84CA3F54C96DEB08439680660F02872EEF5DA3955
                                A14C63F96E57DFB71B1535280C37DA2CB5BA37D78A9882414DB11F67FD66DEBC4AD93DD34F4A587D34D
                                B4D23D9C6AF83431D88A7EF42BB01082913F3560DCB50129C5BBA7ECA0DE8BC286DA74F58FADE"/>
                  </CodeGroup>
              </CodeGroup>
           </PolicyLevel>
        </policy>
       </security>
      </mscorlib>
    </configuration>
    What would be the equivalent syntax for “New-SPRSExtension” to do the above for SSRS 2012 in SharePoint (2010) integrated mode?
    Alison Bird SoftArtisans Technical Services www.softartisans.com

    Hi Alison,
    Unlike the deployment of other custom extensions such as custom delivery extension and data processing extension, it is not necessary to add a code group for the custom assembly that grants FullTrust permission for the extension during the deployment of
    custom rendering extension. If you have copy the custom assembly to the %ProgramFiles%\Microsoft SQL Server\MSRS11.<InstanceName>\Reporting Services\ReportServer\Bin folder, and modify the RSreportserver.config file to add the extention entry properly,
    please open the SSRS Service Application created on the SharePoint and verify that your extension is included in the list of available export types for a report.
    Reference:
    Deploying a Rendering Extension
    Regards,
    Mike Yin
    TechNet Community Support

  • Custom rendering extensions not working in SSRS Report Designer (rsreportdesigner.config)

    My custom rendering extension is working in Report Builder (in RSReportServer.config), but not in Report Designer (in RSReportDesigner.config):  instead of adding a "TXT" export option, it's just adding a duplicate "CSV" option.
    SUMMARY: 
    Is there a way to get these features working, with Report Designer?
    DETAILS:
    We are running SSRS (Reporting Services) under SQL Server 2008 R2.
    Here's my rendering section:
        <Render>
          <Extension Name="XML" Type="Microsoft.ReportingServices.Rendering.DataRenderer.XmlDataReport,Microsoft.ReportingServices.DataRendering" />
          <Extension Name="CSV" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering" />
          <!-- TXT extension with help from:  http://social.msdn.microsoft.com/Forums/sqlserver/en-US/d79845a8-17fb-4ec6-b121-2c40cf466d73/how-do-i-add-a-pipe-delimited-option-in-ssrs-2008-report-manager?forum=sqlreportingservices -->
          <Extension Name="TXT" Type="Microsoft.ReportingServices.Rendering.DataRenderer.CsvReport,Microsoft.ReportingServices.DataRendering">
            <OverrideNames>
                <Name Language="en-US">TXT(ASCII,NoColHds)</Name>
            </OverrideNames>
            <Configuration>
                 <DeviceInfo>
                     <FileExtension>txt</FileExtension>
                    <FieldDelimiter>,</FieldDelimiter>
                    <Encoding>ASCII</Encoding>
                    <NoHeader>true</NoHeader>
                </DeviceInfo>
            </Configuration>
          </Extension>
          <Extension Name="IMAGE" Type="Microsoft.ReportingServices.Rendering.ImageRenderer.ImageRenderer,Microsoft.ReportingServices.ImageRendering" />
          <Extension Name="PDF" Type="Microsoft.ReportingServices.Rendering.ImageRenderer.PDFRenderer,Microsoft.ReportingServices.ImageRendering" />
          <Extension Name="HTML4.0" Type="Microsoft.ReportingServices.Rendering.HtmlRenderer.Html40RenderingExtension,Microsoft.ReportingServices.HtmlRendering" Visible="false" />
          <Extension Name="MHTML" Type="Microsoft.ReportingServices.Rendering.HtmlRenderer.MHtmlRenderingExtension,Microsoft.ReportingServices.HtmlRendering" />
          <Extension Name="RPL" Type="Microsoft.ReportingServices.Rendering.RPLRendering.RPLRenderer,Microsoft.ReportingServices.RPLRendering" Visible="false" />
          <Extension Name="EXCEL" Type="Microsoft.ReportingServices.Rendering.ExcelRenderer.ExcelRenderer,Microsoft.ReportingServices.ExcelRendering" />
          <Extension Name="WORD" Type="Microsoft.ReportingServices.Rendering.WordRenderer.WordDocumentRenderer,Microsoft.ReportingServices.WordRendering" />
        </Render>
    When I add the above "TXT" section to RSReportServer.config, then Report Builder (and production) both show an export option "TXT(ASCII,NoColHds)". 
    But when I add this "TXT" section to RSReportDesigner.config, and then (in Report Designer / BIDS) attempt to export from a "Preview" of the report, the export drop-down does not show a "CSV" option followed by a "TXT"
    option, but instead shows the "CSV" option twice.
    This simply limits testing of the export option, to Report Builder... or requires any reports be published from Report Designer before they can be tested with
    this export option.
    (FYI, why this export option:  compliance in our industry requires sending data to government agencies, in text files, with fixed-length columns, and ASCII encoding.  Also, we're attempting to give the production of these files to the *users* managing
    communication with those agencies... so we're putting them into SSRS.
    I worked around the fixed length columns (and no delimiters -- no commas), by writing a version of the report where all string columns are padded, and all columns are concatenated, to form ONE LONG COLUMN... but Reporting Services' CSV export format produces
    a Unicode file (UTF-8, which the agency rejected, because it had a leading "", or "EF BB BF" in hex), whereas the agency requires an ASCII file.)

    Hi Doug_atMidway,
    According to your description, you want to enable your custom render extension. Right?
    In Reporting Services, if you want to deploy the custom extension, you just need to add the extension into rsreportserver.config file.  The
    RSReportDesigner.config file stores settings about the rendering extensions available to Report Designer. Since you still use the csv rendering extension in your assembly, we don't need to do any modification in rsreportdesigner.config file. Pleaes
    refer to the links below:
    Thanks for attempting to help, Simon.  
    As my question states, I've *already done* both the above:  changed (1) rsreportserver.config and (2) rsreportdesigner.config.  I added the same code, shown above, to both files.  I did that so I could see the new "txt" extension
    both (1) when exporting in production and Report Builder, and (2) when exporting in Report Designer's "preview".  
    The change in (2) is not working:  I do not see the "TXT" extension in Report Designer, when I try to export from a preview.  Instead, Report Designer shows the CSV extension repeated.
    Thanks for the docs.  I consulted them (well, I consulted the EQUIVALENT pages, for SQL Server 2008 R2), when creating my block of code above.
    Do you see anything to correct, in my code?
    Are the features I'm using actually working, with rsreportdesigner.config?
    Thanks again, 
    -- Doug

  • Registry to install extension to FireFox 24

    Hi, I want to deploy a FireFox extension automatically to a box via the Windows registry. Before FireFox 23, I am using the steps in https://developer.mozilla.org/en-US/docs/Adding_Extensions_using_the_Windows_Registry to add an extension.
    I deploy the extension to C:\Program Files (x86)\Mozilla Firefox\extensions and create a registry to point to this.
    It worked pretty well until FireFox 24.
    In Firefox, it seems it does not recognize the extension deployed in this manner. When I open FireFox, click Extensions, I see nothing.
    Do you know if there is any step change in https://developer.mozilla.org/en-US/docs/Adding_Extensions_using_the_Windows_Registry for FireFox 24?

    See:
    *http://mike.kaply.com/2013/04/24/major-changes-coming-in-firefox-21/
    *http://mike.kaply.com/2013/05/13/more-major-changes-coming-in-firefox-21/

  • Maven Auto deployment problems in Weblogic 10.0

    Hi All,
    Past two day's i am facing a exception in maven auto deployment process. I have given properly the configuration Tags(Shown below). I am able to send the deployment commands to weblogic but i am getting some run time exceptions. Please find below details.
    mvn -e org.codehaus.mojo:weblogic-maven-plugin:2.9.1:deploy -Dsource=target/test-war-SNAPSHOT.war
    [INFO] Error stacktraces are turned on.
    [INFO] Scanning for projects...
    [INFO]
    [INFO] ------------------------------------------------------------------------
    [INFO] Building maven-test-war -SNAPSHOT
    [INFO] ------------------------------------------------------------------------
    [INFO]
    [INFO] --- weblogic-maven-plugin:2.9.1:deploy (default-cli) @ test-war ---
    [INFO] Weblogic Deployment beginning with parameters DeployMojoBase[adminServerH
    ostName = localhost, adminServerProtocol = t3, adminServerPort = 8001, userId =
    weblogic, password = weblogic, artifactPath = C:\test\test\test-war\target/test-war--SNAPSHOT, projectPackaging = war, name = test-war, targetNames = AdminServer, remote = false]
    [INFO] Weblogic Deployment parameters [-adminurl, t3://localhost:8001, -username
    , weblogic, -password, weblogic, -name, test-war, -targets, AdminServer, -s
    ource,
    weblogic.Deployer invoked with options: -adminurl t3://localhost:8001 -username
    weblogic -name test-war -targets AdminServer -source C:\test\test-war\target/test-war--SNAPSHOT.war -deploy
    [INFO] ------------------------------------------------------------------------
    [INFO] BUILD FAILURE
    [INFO] ------------------------------------------------------------------------
    [INFO] Total time: 2.155s
    [INFO] Finished at: Wed Jul 13 18:06:20 IST 2011
    [INFO] Final Memory: 3M/12M
    [INFO] ------------------------------------------------------------------------
    [ERROR] Failed to execute goal org.codehaus.mojo:weblogic-maven-plugin:2.9.1:dep
    loy (default-cli) on project test-war: Execution default-cli of goal org.co
    dehaus.mojo:weblogic-maven-plugin:2.9.1:deploy failed: A required class was miss
    ing while executing org.codehaus.mojo:weblogic-maven-plugin:2.9.1:deploy: weblog
    ic/rmi/extensions/RemoteRuntimeException
    [ERROR] -----------------------------------------------------
    Number of foreign imports: 1
    import: Entry[import  from realm ClassRealm[maven.api, parent: null]]
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
    .java:225)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
    .java:153)
    at org.apache.maven.lifecycle.internal.MojoExecutor.execute(MojoExecutor
    .java:145)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje
    ct(LifecycleModuleBuilder.java:84)
    at org.apache.maven.lifecycle.internal.LifecycleModuleBuilder.buildProje
    ct(LifecycleModuleBuilder.java:59)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.singleThreadedBu
    ild(LifecycleStarter.java:183)
    at org.apache.maven.lifecycle.internal.LifecycleStarter.execute(Lifecycl
    eStarter.java:161)
    at org.apache.maven.DefaultMaven.doExecute(DefaultMaven.java:319)
    at org.apache.maven.DefaultMaven.execute(DefaultMaven.java:156)
    at org.apache.maven.cli.MavenCli.execute(MavenCli.java:537)
    at org.apache.maven.cli.MavenCli.doMain(MavenCli.java:196)
    at org.apache.maven.cli.MavenCli.main(MavenCli.java:141)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.
    java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAcces
    sorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launchEnhanced(Laun
    cher.java:290)
    at org.codehaus.plexus.classworlds.launcher.Launcher.launch(Launcher.jav
    a:230)
    at org.codehaus.plexus.classworlds.launcher.Launcher.mainWithExitCode(La
    uncher.java:409)
    at org.codehaus.plexus.classworlds.launcher.Launcher.main(Launcher.java:
    352)
    Caused by: org.apache.maven.plugin.PluginExecutionException: Execution default-c
    li of goal org.codehaus.mojo:weblogic-maven-plugin:2.9.1:deploy failed: A requir
    ed class was missing while executing org.codehaus.mojo:weblogic-maven-plugin:2.9
    .1:deploy: weblogic/rmi/extensions/RemoteRuntimeException
    r
    import: Entry[import  from realm ClassRealm[maven.api, parent: null]]
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(Default
    BuildPluginManager.java:125)
    ... 20 more
    Caused by: java.lang.NoClassDefFoundError: weblogic/rmi/extensions/RemoteRuntime
    Exception
    at weblogic.deploy.api.tools.deployer.Deployer.runBody(Deployer.java:90)
    at weblogic.utils.compiler.Tool.run(Tool.java:158)
    at weblogic.utils.compiler.Tool.run(Tool.java:115)
    at weblogic.Deployer.run(Deployer.java:70)
    at org.codehaus.mojo.weblogic.DeployMojoBase.executeDeployer(DeployMojoB
    ase.java:510)
    at org.codehaus.mojo.weblogic.DeployMojo.execute(DeployMojo.java:49)
    at org.apache.maven.plugin.DefaultBuildPluginManager.executeMojo(Default
    BuildPluginManager.java:101)
    ... 20 more
    [ERROR]
    [ERROR] Re-run Maven using the -X switch to enable full debug logging.
    [ERROR]
    [ERROR] For more information about the errors and possible solutions, please rea
    d the following articles:
    [ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/PluginContaine
    rException
    I checked the weblogc.jar, i am unable to find the RemoteRuntimeException class in that jar.
    Configuration Tags
    ================
    <configuration>
    <name>web</name>
    <adminServerHostName>localhost</adminServerHostName>
    <adminServerPort>7001</adminServerPort>
    <adminServerProtocol>t3</adminServerProtocol>
    <artifactPath></artifactPath>
    <exploded>true</exploded>
    <userId>weblogic</userId>
    <password>weblogic</password>
    <upload>true</upload>
    <remote>false</remote>
    <verbose>true</verbose>
    <debug>false</debug>
    <targetNames>AdminServer</targetNames>
    </configuration>
    Please help me on the same.
    Regards,
    Jerald.
    Edited by: user1173449 on Jul 14, 2011 6:09 AM

    Jerald, Oracle doesn't own this particular piece of code so I can't help too much since I have no real knowledge of it's working. It was built and used with earlier versions of WLS (8.1, 9.2) so it may not have tracked any changes made to libraries/packaging in WLS 10.0.
    Caused by: java.lang.NoClassDefFoundError: weblogic/rmi/extensions/RemoteRuntimeException
    at weblogic.deploy.api.tools.deployer.Deployer.runBody(Deployer.java:90)I see in WLS 10.3.x, that the class identified as missing is located in client JAR files:
    sbutton:~/Oracle/Middleware/wlserver_10.3 $ jwhich RemoteRuntimeException .
    Adding . to search path
    ./server/lib/wljmsclient.jar: weblogic.rmi.extensions.RemoteRuntimeException
    ./server/lib/wlthint3client.jar: weblogic.rmi.extensions.RemoteRuntimeException
    I don't have a 10.0 install so am not sure where it resides in that release.
    We have introduced a WebLogic Server Maven Plugin in our WLS 10.3.3 release which supports deployment operations. This is not supported/certified for working against a WLS 10.0 environment, but if you are using Maven and have an opportunity to update to a more recent release, then we have something which may be of use to you.
    http://download.oracle.com/docs/cd/E17904_01/web.1111/e13702/maven_deployer.htm#BABBBEGG
    -steve-

  • Can you push install an extension without using Extension Manager?

    I'm looking for a way to deploy a CS5 extension en mass using an unattended network push install utility (i.e. LanDesk). I have not been able to find any documentation yet on how to do this and our corporate customers do not want to send someone to every desktop to install or upgrade extensions manually using Extension Manager (in some cases they can have over 1000 end users spread across the country). Please help me locate some documentation on how to do this.
    Thanks,
    Dwane Ferry

    Extension Manager supports updatable extension. If your existing extension specifies update URL in its mxi file, when the new version of the extension is available, you can put the update information file to the URL. Extension Manager will detect the extension update during launch and notify users. After user clicks the "Update" button, the updated extension will be downloaded and installed.
    Extension Manager also supports command line interface. You can put the extension to a shared loacation, and write a batch file using commands. Send the batch file to all customers to run.
    More detailed information about updatable extension can be found in http://www.adobe.com/go/em_file_format .
    About command line interface, please see http://help.adobe.com/en_US/extensionmanager/cs/using/WSB4845EDD-14E5-476a-B749-FF328830D1 4F.html .

  • Deploy IP Printer Locally without a print server via GPO

    I have a client that has 1 main site and 3 smaller satellite sites. They only have one (yes 1) server for all of their clients. There is a 100MB connection between so bandwidth is not an issue. The server is 2008 R2,
    clients are a mix of XP and Windows 7. I have deployed client side extensions to the XP clients.
    My project: Install a new network printer in each site (its the same printer for all 4 sites), configure clients to use printer in their site via GPO.
    Each site has its own OU with users in their respective site OU. Normally, if this were a single site I could add the print services role, install the drivers for the printer on the print server, and use GP preferences;
    User config -> Preferences -> Control Panel -> Printers -> add new TCP/IP and then apply this to the users OU. The problem is that it requires a local name and local path, which would require a local print server in each site. 
    Is there a way to use GP to add a printer to each client computer (and set as default) throughout multiple sites, while only having the One server in 1 out of 4 sites? 
    All help is greatly appreciated! 
    NOTE: when I say site, I mean physical location, it is all one domain. 

    I am really getting close to the deadline of new printers arriving so I will walk through exact steps I have taken to get this set up. 
    Ok. I have a server running 2008 R2. I added the Print services role. 
    Right click 'Printers' -> Add printer
    select 'Add a TCP/IP Printer by IP address or hostname'
    'Type of device' = 'Autodetect'
    'hostname or IP address' = 'x.x.x.x' (IP address that printer will be set to)
    'Port name' = 'x.x.x.x_2'
    do NOT select 'auto detect printer driver'
     select 'Generic Network Card'
    select 'Install new driver'
    select 'Have Disk' and browse to driver
    'Printer name' = Printer Name
    select 'share this printer'
    'Share name' = Printer Name
    next, next, driver installs and printer installs, and finish. 
    Now you have the printer installed and showing up under printers. 
    Now, I right click printer and -> deploy with group policy
    Browse to the OU where my user is located in ADUC, select the GPO that I have linked to that OU, click 'add' and click 'OK'.
    Now, log in to a win 7 computer, gpupdate, printer shows up in devices and printers. I can't print to it obviously since it's not connected to the network yet. But, when I log in to an XP computer, run gpupdate, it does NOT populate in devices and printers. 
    What am I doing wrong? 
    Thank you in advance. 

  • IExpense OA Extension

    Hi Group,
    I have downloaded & configured Jdeveloper of patch 4573517 & able to run the Hello World seeded example successfully.
    <<<<<<<<<OA Framework Version Information>>>>>>>>>
    OA Framework Version 11.5.10.2CU.
    MDS Version 9.0.5.4.81 (build 481)
    UIX Version 2.2.18
    BC4J Version 9.0.3.13.51
    <<<<<<<<<OA Framework Version Information>>>>>>>>>
    I have basic doubt before stating my first OA Extension for iExpenses.
    1) is it madatory to setup iExpense using Jdeveloper so that iExpense application can be launched from local PC Jdeveloper for OA Extension?
    if yes, please give me the step for configuring Jdeveloper for iExpense (or any OA based application).
    2) Steps required for development & deployment of OA Extension for iExpense (or any OA based application).
    Please help & let me know for any details,
    Thanks,
    Ajay

    Well no wonder...! You are hinting at adding another thousands of pages to the Dev. Guide if we expect to add the classes required for extensions...! ;)
    To answer your questions...!
    - In order to run your complete application from JDev. You need not do anything except for setting up the JDev. as per the Dev. guide instructions. Specify your responsibility and application short code in project settings - Runtime Connection.
    - Create a library for the class files. Now this actually depends on the OS of your middle tier. If you apps is hosted on a linux system, you can create a mount for the JAVA_TOP directory in the linux system to be accessible from windows and then Map a drive of your PC to your JAVA_TOP directory. The idea to to have the classes accessible to JDev. a library.
    - Add the Home Page (JRAD xml) of your application to your project and Run.
    - Optionally if you want to see the tabs and menu structure, you might want to use the option "Optional URL Parameters" under "Runtime Connection" of project settings to specify
    &OAHP=<home page manu>&OASF=<home page function>
    And Rock....! :)

  • Distribution of the javaHelp extension (jhall.jar) with application.

    Hello,
    I have been looking into a work around with regard to the fact that jhall.jar is not included in the JRE. As it has to be included in jre/lib/ext, it therefore needs to be shipped with the application.
    I have been looking at Java Web Start - I can't really make out exactly what it does - if anyone has deployed the javahelp extension with their app, please would you tell me how to go about it? Is Java Web Start the best way? If so, how does it work in simple steps?
    I really need a solution to this - any help would be greatly appreciated......:
    Thanks in advance,
    Clodagh

    Hello Clodagh,
    there are several ways of distributing jhall.jar. An alternative of placing it in jre/lib/ext is to put it in the directory where the application is located, that is using jhall.jar.
    Although others might do it differently, I am using Web Start to distribute jhall.jar. I you have Web Start installed you cann see a working example at http://www.lightdev.com/template.php4?id=3 (click on the link that says 'Read the tutorial online' or use the following link directly http://www.lightdev.com/shtm_hlp.jnlp)
    The help set that is viewed with this link remains on the server. Web Start only instally a tiny reader application in Java (4 KB) and the JavaHelp extension (jhall.jar) in the same directory on the client. It then starts the reader with the help set (on the server) as a parameter.
    To set up something similar, you need to create two .jnlp files, one for the reader app and for jhall.jar. The .jnlp file for the reader app refers to the one for jhall.jar. When it is started by Web Start, above mentioned parts are installed and started, i.e. the help set is displayed in the typical viewer of JavaHelp.
    HTH
    Ulrich

  • WebCenter Spaces Extensions - Problems creating custom header

    Hi,
    I'm looking for a way of branding the WebCenter Spaces application so that (among others) I can place my own html fragment above the Primary Tab to render a header and hide out-of-the-box global tool bar, secondary tabs and and the side bar. As far as I understood from the "Extending WebCenter Spaces" document (Link: [http://www.oracle.com/technology/products/webcenter/pdf/owcs_r11_extend_spaces_wp.pdf]) I should be able to do this by creating my own custom shell.
    I have taken the gsDefault shell provided within the extendwebcenterspaces.zip file and I got to remove the unwanted bars. Unfortunately I could not get to add my own html fragment for the header. What I have done for this purpose is to change this piece of code in the shell-config.xml:
    <shellContent id="gsDefault" displayName="#{uib_o_w_w_r_WebCenter.LABEL_SPACE_MAXIMIZED_CHROME}"
    pageTemplate="/oracle/webcenter/webcenterapp/view/templates/WebCenterAppShellTemplate.jspx">
    with this one:
    <shellContent id="gsDefault" displayName="#{uib_o_w_w_r_WebCenter.LABEL_SPACE_MAXIMIZED_CHROME}"
    pageTemplate="*/custom*/oracle/webcenter/webcenterapp/view/templates/*Custom*WebCenterAppShellTemplate.jspx">
    For making my custom JSPX file I have taken the default one and made the following change:
    Where there was:
    <f:facet name="top">
    <wcshell:panel name="PrimaryTabBar">
    <af:region id="wc_prm"
    value="#{bindings.shell_PrimaryTabBar.regionModel}"/>
    </wcshell:panel>
    </f:facet>
    I have placed the following code:
    <f:facet name="top">
    <af:panelStretchLayout id="pt_psl1">
    <!--f:facet name="bottom"/>
    < f:facet name="start"/ >
    < f:facet name="end"/-->
    <f:facet name="top">
    <af:image source="/ExtendWebCenterSpaces-StaticFiles-context-root/images/Header.jpg"
    shortDesc="BB 360 Header"
    id="pt_i1"/>
    </f:facet>
    <f:facet name="center">
    <wcshell:panel name="PrimaryTabBar">
    <af:region id="wc_prm"
    value="#{bindings.shell_PrimaryTabBar.regionModel}"/>
    </wcshell:panel>
    </f:facet>
    </af:panelStretchLayout>
    </f:facet>
    I have followed the steps indicated in the document for deploying the custom extensions several times (including, adding the extra java parameter, redeploying and restarting). I know the jspx is accessible as when I try to get it directly from a browser I get a response instead of the page not found page.
    Is this the rightway fo doing it? Am I missing something? Which steps could I follow to identify the underlying problem?
    Thank you very much.

    Marcos,
    I am trying to create new site template and getting below error for wcshell:panel.
    "No grammer available for namespace http://xmlns.oracle.com/webcenter/shell, content of element panel cannot be validated"
    Do you know which JSP Tag Libraries i need to add?
    Thanks
    JP

  • Updating commercial extension

    I'm about to deploy a commercial extension but have some doubts relating to updates.
    My scenario is a couple of extensions which should be installed at same time and a lot of resource files to be installed in the users Documents folder.
    So far no problem, I add the second extension to the first in the manifest, create an hybrid extension and add the resources folder with destination "Documents".
    I belive I only need to sign the extension package, later I double click at the mxi file to allow extension manager to create the big zxp file which doesn't need to be signed, correct ? ( Seems to work)
    Ok, the problem now is that I need to control which users may update and which not, adding an automatic update in the mxi file means no control, therefore I guess I have to send the new version zxp manually but then Extension Manager requests to uninstall the old version which means deleting the resources folder.
    I need a way to update the extension without affecting the current resources, may be adding more but not deleting the current ones.
    It would be great if the extension itself could download and install the update like I do with additional resources instead of the Extension Manager who doesn't know about the user.
    I have tried to add the update in the mxi file but this way I must include all resources again in the update or they will be deleted automatically by the extension manager.
    Thanks for any help

    It is possible to mark a file as a "system file" in your MXI file (see http://help.adobe.com/en_US/extensionmanager/cs/using/MXI_tech_note.pdf). I believe that will prevent it from being removed on uninstall:
    <files>
         <file source="myResourceFolder" destination="$userhomefolder/myPlugin" systemfile="true" />
    </files>
    That should avoid your resources being removed when you update. If you want to add new resources in your update you'll need to make sure the destination for any new files is within the resources folder that you initially created. If you just had a new resources folder that you installed to the same location then I think it will overwrite the original resources folder (rather than, say, merging them).
    <files>
         <file source="myResourceFolder/additionalFile.txt" destination="$userhomefolder/myPlugin/myResourceFolder" systemfile="true" />
    </files>
    Hope that helps,
    Louis

Maybe you are looking for

  • Firefox shrinks my swf file

    Please see the attached two samples. Firefox is shrinking my swf header. It works fine in ie, safari, chrome, but not in firefox. Has anyone experienced this problem? Is it in the flash file or in the html? Thanks in advance for you time.

  • Migration Workbench for migrating IBM DB2 on OS/390 to Oracle 10Gon Solaris

    Hi, We are looking to migrate an IBM DB2 database on OS/390 onto Oracle 10G on SUN Solaris. Can anyone help us with a migration workbench toolkit for the same. Regards, Jagdish Narayanan

  • SAP Business Connector and EDI

    Hi, I need to implement a new EDI version to use within Business Connector. However, I cannot remember where to extract the EDI template files from. Has anybody done this before and can inform me where to extract the EDI template files from. Thanks M

  • OBIEE 11g Graph records limitation

    Hi Gurus, I am new to 11g OBIEE. I would like to know what is the maximum records allowed to have a graph and the default. if i want to increase the value from default how i can do that. As we have some graph reprot in 10g which is not working in 11g

  • After crash, users cannot use MS Office or InDesign CS2

    Hi, Our server had a couple of kernel panics last night. Once I got it back up and running, our 10 client computers could not access their user databases for Entourage, MS Word would not open, and Adobe InDesign CS2 would not work. All the clients we