"Run Scripts" giving a problem to create portal domain

Hello All.
I am new to weblogic portal development. Was trying to create my basic sample portal in weblogic_portal_10.3.4 with the help of documentation. I am getting in running scripts when I was creating the domain. I have followed the below steps, please help me if you find any issue with my steps.
1. downloaded Weblogic_Portal_10.3.4 and installed in my windows 7 environment.
2. launched eclipse for weblogic portal.
3. opened portal prospective in eclipse.
4. right click on server tab and selected "Oracle WebLogic Server 11gR1 (10.3.4)"
5. opened "Domain Configuration Wizard"
6. Selected "Create a new Weblogic domain" radio button.
7. in the next screen for "Generate a domain configured automatically to support the following products"
selected "Weblogic Portal 10.3.4" radio button
8. in the next screen given the domain_name
9. in the next screen provided the password/confirm-password for administrator user
10. in the next screen selected JRocket SDK and development_mode for my domain.
11. in the next screen just left all the default configuration for the datasources. ( non of the datasource is selected in their check boxes)
12. in the next screen just clicked on "Next" button and "OK" on my popup
13. in this screen "p13nDataSource" is selected on my left top window area, All 3 SQL Files are selected for loading database.
Clicked on *"Run Scripts"*
At this point i am getting an error saying : "CFGFWK-60839:  Database Load Failed!"
java.lang.Exception: SQLException when executing file file:/C:/Oracle/Middleware/wlportal_10.3/p13n/db/derby/seq_drop_tables.sql
     at com.oracle.cie.domain.jdbc.JDBCDataLoader.load(JDBCDataLoader.java:183)
     at com.oracle.cie.wizard.domain.gui.tasks.JDBCConfigGUITask$LoadDatabaseThread$1.run(JDBCConfigGUITask.java:1673)
Caused by: java.sql.SQLNonTransientConnectionException: java.net.ConnectException : Error connecting to server localhost on port 1527 with message Connection refused: connect.
     at org.apache.derby.client.am.SQLExceptionFactory40.getSQLException(Unknown Source)
     at org.apache.derby.client.am.SqlException.getSQLException(Unknown Source)
     at org.apache.derby.jdbc.ClientDriver.connect(Unknown Source)
     at com.oracle.cie.domain.jdbc.JDBCConnectionTester.createConnection(JDBCConnectionTester.java:272)
     at com.oracle.cie.domain.jdbc.JDBCDataLoader.load(JDBCDataLoader.java:154)
     ... 1 more
Caused by: org.apache.derby.client.am.DisconnectException: java.net.ConnectException : Error connecting to server localhost on port 1527 with message Connection refused: connect.
     at org.apache.derby.client.net.NetAgent.<init>(Unknown Source)
     at org.apache.derby.client.net.NetConnection.newAgent_(Unknown Source)
     at org.apache.derby.client.am.Connection.<init>(Unknown Source)
     at org.apache.derby.client.net.NetConnection.<init>(Unknown Source)
     at org.apache.derby.client.net.NetConnection40.<init>(Unknown Source)
     at org.apache.derby.client.net.ClientJDBCObjectFactoryImpl40.newNetConnection(Unknown Source)
     at org.apache.derby.jdbc.ClientDriver.connect(Unknown Source)
     at com.oracle.cie.domain.jdbc.JDBCConnectionTester.createConnection(JDBCConnectionTester.java:273)
     at com.oracle.cie.domain.jdbc.JDBCDataLoader.load(JDBCDataLoader.java:154)
     at com.oracle.cie.wizard.domain.gui.tasks.JDBCConfigGUITask$LoadDatabaseThread$1.run(JDBCConfigGUITask.java:1674)
Caused by: java.net.ConnectException: Connection refused: connect
     at java.net.PlainSocketImpl.socketConnect(Native Method)
     at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
     at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
     at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:366)
     at java.net.Socket.connect(Socket.java:529)
     at java.net.Socket.connect(Socket.java:478)
     at java.net.Socket.<init>(Socket.java:375)
     at java.net.Socket.<init>(Socket.java:189)
     at javax.net.DefaultSocketFactory.createSocket(SocketFactory.java:206)
     at org.apache.derby.client.net.OpenSocketAction.run(Unknown Source)
     at org.apache.derby.client.net.NetAgent.<init>(Unknown Source)
     at org.apache.derby.client.net.NetConnection.newAgent_(Unknown Source)
     at org.apache.derby.client.am.Connection.<init>(Unknown Source)
     at org.apache.derby.client.net.NetConnection.<init>(Unknown Source)
     at org.apache.derby.client.net.NetConnection40.<init>(Unknown Source)
     at org.apache.derby.client.net.ClientJDBCObjectFactoryImpl40.newNetConnection(Unknown Source)
     at org.apache.derby.jdbc.ClientDriver.connect(Unknown Source)
     at com.oracle.cie.domain.jdbc.JDBCConnectionTester.createConnection(JDBCConnectionTester.java:272)
     at com.oracle.cie.domain.jdbc.JDBCDataLoader.load(JDBCDataLoader.java:154)
     at com.oracle.cie.wizard.domain.gui.tasks.JDBCConfigGUITask$LoadDatabaseThread$1.run(JDBCConfigGUITask.java:1673)
CFGFWK-60839:  Database Load Failed!
Please help me if you find any problem with the steps that I am following to create my weblogic_portal_domain.
I was following the steps mentioned at : http://docs.oracle.com/cd/E15919_01/wlp.1032/e14252.pdf to create my domain to start portal development.

Those are the WLP 10.3.2 instructions. But, the 10.3.4 instructions in the tutorial (http://docs.oracle.com/cd/E26806_01/wlp.1034/e14252/setup_dev_env.htm#i1014619) are wrong, too.
In 10.3.4, with derby, Run Scripts doesn't work any longer; it should still work the other database (Oracle, SQL Server, etc.). Instead, for derby, just create the domain, accepting any warning dialogs about databases that come up. After that finishes, in the domain directory, run create_db.cmd (on windows) or create_db.sh (on *nix and Mac). It should create the derby database files in the domain, and include everything needed.
I'll send a note to get the docs updated.
Greg

Similar Messages

  • "Run Script" (F5) Flacky Behavior with CREATE PROCEDURE and PACKAGE

    When I have the following create statement in a SQL Worksheet and run the script using "Run Script" (F5), I get the "PROCEDURE bogus Compiled." message. Why does it not tell me that there was a compile error? The procedure is marked with a little red "X" in the connections pane.
    CREATE OR REPLACE PROCEDURE bogus IS
    BEGIN
      x := 1;
    END;
    /Also, when I have the following command in a SQL Worksheet and run the script using "Run Script" (F5), I get the "PROCEDURE bogus Compiled." message. The difference is that I removed the slash after the CREATE PROCEDURE command. I can go into that procedure in the database via the Connections pane, click on the compile button, and the procedure compiles with no errors. Why does it not compile in a script when missing the slash?
    CREATE OR REPLACE PROCEDURE bogus IS
    BEGIN
      NULL;
    END;I noticed the same flaky behavior with CREATE PACKAGE BODY as well. This is in version 1.0.0.14.67 on Windows XP. Has this been fixed in the latest version?
    Mike

    I found a number of earlier posts on this (going back to at least v804), but I cannot find a thread with a response from the SQL Developer team - see:
    Package compilation error
    Succesful compilation message and Compiling Invalid Objects
    Creating a stored procedure from a file does not show compilation errors
    Re: Syntax Error Feedback
    I assume that it is just a bug with SQL Developer that it does not check for compilation errors when determining the status message to display (ie "PROCEDURE bogus Compiled"). At least now we get the little red cross on the navigator to tell us it is invalid :)

  • Facing problem in creating a domain for osb10.3.1

    Hi All,
    I have installed osb10.3.1. Now I want to create a domain for osb10.3.1. In the steps of creating domain we have to provide the database details for configuring the jdbc datasources. I am not understanding which username and password should be given here. Do we need to create any schema for osb10.3.1 through rcu prior to creating the domain?
    Thanks in Advance

    Hi Again,
    Oops my mistake :) You can follow the below link for Oracle Service Bus 10g Release 3
    http://docs.oracle.com/cd/E1315901/osb/docs10gr3/_
    For Specific Oracle Service Bus Domain Creation,The below link would be helpful
    http://docs.oracle.com/cd/E1284001/common/docs103/confgwiz/newdom-alsb.html#wp1080587_
    Regards
    Fabian

  • Creating Portal Domain

    Hi
    I am trying to create a PortalDomain and configuring it with oracle Database on solaris in console mode.
    i configured all the pools (cgPools,portalPool etc) and tested the each connection its working fine then i used loaddatabase option to load the portal tables in to oracle database but it is showing only 18 tables..for each pool and all the tables are repeated.
    in windows enviroment it is showing more than 50 portal tables and all these tables loaded perfectly
    does any one have idea why it is happening in Solaris ..?
    wht i should i do in this case..plz help me
    Thanks in advance

    seems like your dB scripts might not be running properly.. u can run them from a windows box - just point to the same database as u are on the solaris environment. u need to run the scripts as one user only - both pools connect to the same schema/database.
    Kunal Mittal

  • Creating and populating portal domain

    I have created a portal domain on 8.1 platform using configuration wizard the problem
    is that I the domain is empty and I need thelibraries available on the sample
    portal how I am supposed to get to the my portal domain since I thought they would
    be provided automaticall once creating portal domain ,in other words what would
    be the standard way doing this .

    The admin portal exists as part of a portal application; it modifies the
    state of the portal resources in the application it's part of. If
    there's no app (such as with a new portal domain), there's no admin portal.
    You should use Workshop to create a new portal application on your new
    portal domain. In Workshop, use the menus: File|New|Application...,
    choose Portal Application, choose the name of application, choose the
    directory to put the application, then browse the Server field to the
    config.xml of the portal domain you created.
    If the server isn't already running, you can use Tools|WebLogic
    Server|Start Server to start it, at which point Workshop will deploy the
    new portal application to you domain, and you will be able to access the
    admin portal (including on the menu from Portal|Portal Administration...
    Greg
    Lara Man wrote:
    Hi Folks,
    I wanted to create my own portal domain in WebLogic 8.1 portal and I used the
    Weblogic domain wizard(config.cmd) and created a portal based domain.When I try
    to access the potal admin console (http://localhost:7001/PortalAppAdmin/portal.portal),
    it shows 404 error.
    How do I access the portal admin console in my own domain? Do I need to tweak
    anything in configuration?
    Thanks
    -Lara

  • Getting error while Creating IntegratedWebLogicServer Domain...

    Hi All,
    I am using for the first time Oracle Jdeveloper 12.1.2.0.0. I created a samle application and connected to local data base. When hit run page, Jdev is trying to create IntegratedWebLogicSever Domain. But it is failing.
    When checked the logfile BuildDefaultDomain.log it's failing with below message. I have no clue what this is SERVICETABLE and DEMODB schema. In my DB i don't have schema or table like this below. Need your help.
    wlst > Failed to query contents of table SERVICETABLE.
    wlst > Schema 'DEMODB' does not exist
    Regards
    Surendra
    [06:04:50 PM] Creating IntegratedWebLogicServer Domain...
    [06:05:25 PM] ERROR:  An error occurred while building the default domain.
    Please see this log file for more details:
    C:\Users\sumandal\AppData\Roaming\JDeveloper\system12.1.2.0.40.66.68\o.j2ee.adrs\BuildDefaultDomain.log
    The Server Instance cannot be started because the IntegratedWebLogicServer Domain was not built successfully.
    ---------------- BuildDefaultDomain.log file below -----------------
    Log File:      C:\Users\sumandal\AppData\Roaming\JDeveloper\system12.1.2.0.40.66.68\o.j2ee.adrs\BuildDefaultDomain.log
    Label:         JDEVADF_12.1.2.0.0_GENERIC_130608.2330.6668
    Product Home:  C:\ORACLE\Middleware\Oracle_Home\jdeveloper\jdev\
    Domain:        C:\Users\sumandal\AppData\Roaming\JDeveloper\system12.1.2.0.40.66.68\DefaultDomain
    BuildDefaultDomain1.py      2013-08-01 18:04:50
    cmd.exe /c ""C:\ORACLE\Middleware\Oracle_Home\oracle_common\common\bin\wlst.cmd" "C:\Users\sumandal\AppData\Roaming\JDeveloper\system12.1.2.0.40.66.68\o.j2ee.adrs\BuildDefaultDomain1.py""
    Process started
    wlst >
    wlst > Initializing WebLogic Scripting Tool (WLST) ...
    wlst >
    wlst > Welcome to WebLogic Server Administration Scripting Shell
    wlst >
    wlst > Type help() for help on available commands
    wlst >
    wlst > Creating Default Domain
    wlst > [progress] Reading template: /C:/ORACLE/Middleware/Oracle_Home/wlserver/common/templates/wls/wls.jar
    wlst > Setting Name to 'DefaultServer'
    wlst > Setting ListenAddress to 'SUMANDAL-WS02'
    wlst > Setting ListenPort to 7101
    wlst > Enabling SSL using port 7102
    wlst > Setting domain administrator to 'weblogic'
    wlst > Setting domain password.
    wlst > [progress] Writing domain: /C:/Users/sumandal/AppData/Roaming/JDeveloper/system12.1.2.0.40.66.68/DefaultDomain/
    wlst > [progress] Closing template.
    wlst > [progress] Reading domain: /C:/Users/sumandal/AppData/Roaming/JDeveloper/system12.1.2.0.40.66.68/DefaultDomain/
    wlst > [progress] Adding domain extension template: /C:/ORACLE/Middleware/Oracle_Home/jdeveloper/common/templates/jdeveloper/adrs_template.jar
    wlst > [progress] Updating domain.
    wlst > [progress] Adding domain extension template: /C:/ORACLE/Middleware/Oracle_Home/jdeveloper/common/templates/domains/jsf_template_2.1.jar
    wlst > [progress] Updating domain.
    wlst > [progress] Adding domain extension template: /C:/ORACLE/Middleware/Oracle_Home/oracle_common/common/templates/wls/oracle.jrf_template_12.1.2.jar
    wlst > [progress] Updating domain.
    wlst > Error: updateDomain() failed. Do dumpStack() to see details.
    wlst > Problem invoking WLST - Traceback (innermost last):
    wlst >   File "C:\Users\sumandal\AppData\Roaming\JDeveloper\system12.1.2.0.40.66.68\o.j2ee.adrs\BuildDefaultDomain1.py", line 112, in ?
    wlst >   File "C:\Users\sumandal\AppData\Local\Temp\WLSTOfflineIni3685836016674860513.py", line 103, in updateDomain
    wlst >
    wlst > Domain Location: C:\Users\sumandal\AppData\Roaming\JDeveloper\system12.1.2.0.40.66.68\DefaultDomain
    wlst >
    wlst > Reason: Failed to query contents of table SERVICETABLE.
    wlst > Schema 'DEMODB' does not exist
    wlst >
    wlst > Exception:
    wlst >
    wlst > Failed to query contents of table SERVICETABLE.
    wlst > Schema 'DEMODB' does not exist
    wlst >
    wlst >
    wlst >  at com.oracle.cie.domain.script.jython.CommandExceptionHandler.handleException(CommandExceptionHandler.java:55)
    wlst >
    wlst >  at com.oracle.cie.domain.script.jython.WLScriptContext.handleException(WLScriptContext.java:1967)
    wlst >
    wlst >  at com.oracle.cie.domain.script.jython.WLScriptContext.updateDomain(WLScriptContext.java:604)
    wlst >
    wlst >  at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    wlst >
    wlst >  at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:57)
    wlst >
    wlst >  at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    wlst >
    wlst >  at java.lang.reflect.Method.invoke(Method.java:601)
    wlst >
    wlst >
    wlst > com.oracle.cie.domain.script.jython.WLSTException: com.oracle.cie.domain.script.jython.WLSTException: com.oracle.cie.domain.script.ScriptException: Domain Extension Application Failed!
    wlst >
    wlst > Domain Location: C:\Users\sumandal\AppData\Roaming\JDeveloper\system12.1.2.0.40.66.68\DefaultDomain
    wlst >
    wlst > Reason: Failed to query contents of table SERVICETABLE.
    wlst > Schema 'DEMODB' does not exist
    wlst >
    wlst > Exception:
    wlst >
    wlst > Failed to query contents of table SERVICETABLE.
    wlst > Schema 'DEMODB' does not exist
    wlst >
    wlst >
    Elapsed time:  34768 ms

    Hi ..Try,
    1) Check your database and ensure thar DEMODB schema is exist or not.
    2) Exit JDeveloper and then delete  or rename the folder "C:\Users\sumandal\AppData\Roaming\JDeveloper\system12.1.2.0.40.66.68". Start JDeveloper and run integrated weblogic server . Provide the essential things like password, host etc. I hope this will solve your issue.
    You can refer the below link also if you do not get the solution after doing the second step.
    http://dstas.blogspot.in/2012/09/integrated-weblogic-domain-creation.html
    Gijith.

  • Error While running WLST script to create SOA Domain in Clustered Environme

    Hi,
    I am trying to run WLST script to create SOA Domain in clustered environment.The script is as follows.
    import sys
    print "@@@ Starting the script ..."
    global props
    from wlstModule import *#@UnusedWildImport
    from java.io import FileInputStream
    from java.io import File
    #=======================================================================================
    # Create Boot Properties File
    #=======================================================================================
    def createBootPropertiesFile(directoryPath, username, password):
    adminserverDir = File(directoryPath)
    bool = adminserverDir.mkdirs()
    fileNew=open(directoryPath + '/boot.properties', 'w')
    fileNew.write('username=%s\n' % username)
    fileNew.write('password=%s\n' % password)
    fileNew.flush()
    fileNew.close()
    def createNodeManagerPropertiesFile(directoryPath, username, password):
    adminserverDir = File(directoryPath)
    bool = adminserverDir.mkdirs()
    fileNew=open(directoryPath + '/nm_password.properties', 'w')
    fileNew.write('username=%s\n' % username)
    fileNew.write('password=%s\n' % password)
    fileNew.flush()
    fileNew.close()
    def createAdminStartupPropertiesFile(directoryPath, args):
    adminserverDir = File(directoryPath)
    bool = adminserverDir.mkdirs()
    fileNew=open(directoryPath + '/startup.properties', 'w')
    args=args.replace(':','\\:')
    args=args.replace('=','\\=')
    fileNew.write('Arguments=%s\n' % args)
    fileNew.flush()
    fileNew.close()
    I am getting the error :
    Problem invoking WLST - Traceback (innermost last):
    (no code object) at line 0
    File "D:\Oracle\Middleware\Oracle_SOA1\bin\SOADomainScript.py", line 11
    adminserverDir = File(directoryPath)
    ^
    SyntaxError: invalid syntax
    Do i need to set any jar in the classpath? Already jython.jar is available in the classapath.
    Thanks in advance.
    Regards,
    Subha

    Hi,
    I am trying to run WLST script to create SOA Domain in clustered environment.The script is as follows.
    import sys
    print "@@@ Starting the script ..."
    global props
    from wlstModule import *#@UnusedWildImport
    from java.io import FileInputStream
    from java.io import File
    #=======================================================================================
    # Create Boot Properties File
    #=======================================================================================
    def createBootPropertiesFile(directoryPath, username, password):
    adminserverDir = File(directoryPath)
    bool = adminserverDir.mkdirs()
    fileNew=open(directoryPath + '/boot.properties', 'w')
    fileNew.write('username=%s\n' % username)
    fileNew.write('password=%s\n' % password)
    fileNew.flush()
    fileNew.close()
    def createNodeManagerPropertiesFile(directoryPath, username, password):
    adminserverDir = File(directoryPath)
    bool = adminserverDir.mkdirs()
    fileNew=open(directoryPath + '/nm_password.properties', 'w')
    fileNew.write('username=%s\n' % username)
    fileNew.write('password=%s\n' % password)
    fileNew.flush()
    fileNew.close()
    def createAdminStartupPropertiesFile(directoryPath, args):
    adminserverDir = File(directoryPath)
    bool = adminserverDir.mkdirs()
    fileNew=open(directoryPath + '/startup.properties', 'w')
    args=args.replace(':','\\:')
    args=args.replace('=','\\=')
    fileNew.write('Arguments=%s\n' % args)
    fileNew.flush()
    fileNew.close()
    I am getting the error :
    Problem invoking WLST - Traceback (innermost last):
    (no code object) at line 0
    File "D:\Oracle\Middleware\Oracle_SOA1\bin\SOADomainScript.py", line 11
    adminserverDir = File(directoryPath)
    ^
    SyntaxError: invalid syntax
    Do i need to set any jar in the classpath? Already jython.jar is available in the classapath.
    Thanks in advance.
    Regards,
    Subha

  • Problem while creating script form - lang EN is not available in client 800

    Hi friends,
    I getting a problem while creating a script form in SE71.
    if I give the name of the script (zform1) and clicked on create then its giving an information message like " Form ZFORM1 language EN is not available in client 800".
    But if I use this form in the abap program its giving stop message "Form ZFORM1 language EN is not active and has no errors" and the control is coming out of the program.
    What could be the problem and how to solve it friends . Please help me.
    Thanks
    -Hima

    Hi There,,
    By default all the forms will be there in client 100, if you are using the exisiting form and making a Z copy of the same,, then first you will have to copy from the client 100 to 800.
    If you are creating the form right from the scratch,, you will that message,,but need now worry about that..
    go head and create the Zform, don't forget to activate the form, before calling in the driver program.
    In the driver program,, call the function modules to invoke the form and activate the driver program as well. then you are all set/
    Thanks-
    Rahul

  • Problem in creating a JDBC System on VC7.1 portal ( CE7.1 SP3)

    I have a problem in creating a JDBC System on VC7.1 portal (CE7.1 SP3)
    I get the following error:
    Test Details:
    The test consists of the following steps:
    1. Retrieve the default alias of the system
    2. Check the connection to the back-end application using the connector defined in this system object
    Results
    Default alias retrieved successfully
    Connection failed. Make sure user mapping is set correctly and all connection properties are correct.
    Could you please let me know if there are any guides on SAP Library; I was not able to find any documentation nor any threads discussing this on VC7.1
    Although, I saw this thread Can Visual Composer talk to/connect to any Database?..
    which says that VC7.1 can connect to SAP backend
    and web services only, and there is no direct connection to the db.
    Help needed please.

    Hi Dharmi
    Here is a quote of Dafna's post in [another thread in this forum|Re: Copy VC controls]
    CE7.1.1 will be released at September 2008 for ramp-up customers.
    There are many improvements and new capabilities in the new release of Visual Composer for CE7.1.1. Among the new features you can find:
    The missing features from Visual Composer 7.0 (Html view, portal Eventing support (EPCM), JDBC, Undo/Redo, and more..)
    Many layout & modeling improvements
    Additional ALV table functionality - export to Excel, switch to chart, configure ALV behavior at design time
    Integration of Visual Composer in Eclipse - additional entry point to the Visual Composer models from the NWDS. This integration provides the option to add a WD component (in case of missing functionality in Visual Composer), as a black box component to the Visual Composer model. Right-clicking the component will open the Web Dynpro perspective for creating/modifying the component.
    Regards,
       Shai

  • Problem in creating a build.xml for weblogic portal application

    Team ,
    I am facing problem in creating the build.xml using weblogic.BuildXMLGEN tool .
    a) Below is the structure of my portal application
    SrcCode
    --- .metadata (eclipse plugins folder)
    --- B2BApp ( Ear Content)
    --- b2bPortal ( portal related file(controllers,jsp)
    --- b2bsrc     (java src)
    b) Now I executed below utility to generate the build.xml "
    java weblogic.BuildXMLGen -projectName B2BApp -username weblogic -file build.xml -password welcome1 F:\srcCode"
    c) Based on the above step , build.xml got generated .
    d) when I execute "ant compile" target from the command prompt , I see the below exception
    ant compile
    Buildfile: build.xml
    compile:
    +[wlcompile] [JAM] Warning: failed to resolve class AbstractJspBacking+
    +[wlcompile] [JAM] Error: unexpected exception thrown:+
    +[wlcompile] com.bea.util.jam.internal.javadoc.JavadocParsingException: Parsing failure in F:\b2bNew\b2bPortal\src\portlets\b2b\dmr\Picker\PickerController.java at line 58.+
    e) I suspect , the problem is bcoz of classpath issues , as I generated build.xml donot have the references to dependent lib's.As build.xml looks like below :
    +<target name="compile" description="Only compiles B2BApp application, no appc">+
    +<wlcompile srcdir="${src.dir}" destdir="${dest.dir}">+
    +<!-- These referenced libraries were not found -->+
    +<!-- <library file="p13n-core-web-lib" /> -->+
    +<!-- <library file="jersey-web-lib" /> -->+
    +.....+
    +....+
    Please help me to reslove these issues .
    PS: I able to deploy the application using 10.3.2 weblogic workshop ( i.e inbuilt eclipse )

    i JaySen ,
    thanks for your response. As mentioned we added all the necessary library within the -librarydir but still we see the same error :
    +[JAM] Error: unexpected exception thrown:+
    com.bea.util.jam.internal.javadoc.JavadocParsingException: Parsing failure in F:\b2bNew\b2bPortal\src\portlets\typeAhead\TypeAheadController.java at line 70.  Most likely, an annotation is declared whose type has not been imported.
    at com.bea.util.jam.internal.javadoc.JavadocTigerDelegateImpl_150.getAnnotationTypeFor(JavadocTigerDelegateImpl_150.java:410)
    at com.bea.util.jam.internal.javadoc.JavadocTigerDelegateImpl_150.extractAnnotations(JavadocTigerDelegateImpl_150.java:176)
    at com.bea.util.jam.internal.javadoc.JavadocTigerDelegateImpl_150.extractAnnotations(JavadocTigerDelegateImpl_150.java:152)
    at com.bea.util.jam.internal.javadoc.JavadocClassBuilder.addAnnotations(JavadocClassBuilder.java:404)
    at com.bea.util.jam.internal.javadoc.JavadocClassBuilder.populate(JavadocClassBuilder.java:359)
    ===================
    a) this is a upgrade project [ upgrading from wlp 8.1.4 to 10.3.2 ]
    i.e we are using weblogic portal 10.3.2 version.
    b) Searched some sites/forums regarding the above error, and it says something related to "jwsc" ant task [ i.e while compiling a webservice(JWS) ], but we see this error while compiling a normal controller(jpf) class :(
    c) we are using "ant compile" target which internally calls wlcompile task , while executing wlcompile this error is thrown .
    Help Appreciated
    Thx,
    Sarat

  • Problem with creating new user in portal = portlet is not visible

    Hi,
    I've got a problem with creating new users in portal. In the Administer tab of the builder is the user portlet not visible.
    How can I make this portlet visible?
    Please Help
    thank you...
    Gilbert

    Hi..my problem slightly similar.
    I created one new user, and didn't select anything from "Public Groups Assignment" and "Privilege Assignment" for him.
    I expect the user will be a public user.
    But, when he try to logged in the portal,
    He cannot see all the PORTLETS related to database values..
    All he can see just LINKS -that all in my portal right now beside the report from database that the user cannot see :)
    So, what did i do wrong?
    Plz Advise, and thanks.

  • Problem in creating small box in sap script

    Hi,
    I am working on a sap script in which iwant to create a small on the right hand side of the footer of the script and also want to display the data in that box.
    plzzz provide me guidelines how to solve this problem.

    u can use the BOX command.
    The BOX command draws a box as per the specifications. The x , y co-ordinates are for the upper left corner with reference to the values in the position command. The Position command is used to set  x,y coordinates with respect to the start position.
    plz chk this link:
    how to display Lines and Boxes in SAP Script

  • Problems downloading and installing OS X Yosemite An error occurred while running scripts from the package

    Hi! I have problems downloading and installing OS X Yosemite.
    While downloading this message pops up:
    An error occurred while running scripts from the package \U201cwct8079783343594854923.pkg\U201d.
    and in /var/log/install.log i can see:
    MacBook-Pro installd[1086]: PackageKit: Install Failed: PKG: pre-install scripts for "com.apple.pkg.InstallMacOSX"\nError Domain=PKInstallErrorDomain Code=112 UserInfo=0x100193c00 "An error occurred while running scripts from the package “wct8079783343594854923.pkg”." {\n    NSFilePath = preinstall;\n    NSLocalizedDescription = "An error occurred while running scripts from the package \U201cwct8079783343594854923.pkg\U201d.";\n    NSURL = "#InstallMacOSX.pkg -- file://localhost/Users/username/Library/Application%20Support/AppStore/91504108 2/wct8079783343594854923.pkg#Distribution";\n    PKInstallPackageIdentifier = "com.apple.pkg.InstallMacOSX";\n}
    does anyone have an idea about this?
    thank you very much

    Mucked up installation. If the installer app is still in /Applications, delete it and start over.
    27" i7 iMac (Mid 2011) refurb, OS X Yo (10.10.2), Mavs, ML & SL, G4 450 MP w/10.5 & 9.2.2

  • Problem run emca -config dbcontrol db -repos create

    when tried to run emca -config dbcontrol db -repos create i choose oracle database SID: ORCL but when i write DBSNMP user pass: it shows me Invalid password.
    When i have tried to login in sqlplus with the same user: DBSNMP and my password it login me without porblem.
    I don't know where is the problem
    Details:
    OS: WIndows Server 2003
    Database version: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production With the Partitioning, OLAP and Data Mining options
    Thanks

    Hi,
    The possible cause for this issue are like,
    1. The 11g Database has a restricted password policy enforced. Passwords must be 8+ characters and are case sensitive during database creation.
    2. Invalid password provided
    3. Password file created with wrong password.
    As you said you are able to login from sqlplus, so please check with the 1st & 3rd options.
    Best Regards,
    Venkat

  • Problem in Creating the Transport using Export option on Portal

    Hi All,
    We have problem in creating the Transport Packaage using the Portal EXPORT option. Here are the details:
    When I tried to create a New Transport package on the Portal, It opens first page asking for the Package name, ID and suffix. After completing  the form, when NEXT or Finish button is clicked, the system goes on forever and does not show the next page at all.
    This is kind of Urgent as we were not able to transport the objects to QA system
    Your help in this reagrd will be well appriciated.
    Thanks and regards,
    Babu

    Hi All,
    We have problem in creating the Transport Packaage using the Portal EXPORT option. Here are the details:
    When I tried to create a New Transport package on the Portal, It opens first page asking for the Package name, ID and suffix. After completing  the form, when NEXT or Finish button is clicked, the system goes on forever and does not show the next page at all.
    This is kind of Urgent as we were not able to transport the objects to QA system
    Your help in this reagrd will be well appriciated.
    Thanks and regards,
    Babu

Maybe you are looking for

  • IPod Update 2006-06-28 taking too long

    I'm trying to update my iPod Nano using iPod Updater 2006-06-28 for Windows XP. I clicked on "Update" and waited for a while. I've been waiting for more than 30 minutes now and the update never ends... My iPod displays the message "Do not disconnect"

  • I took off my screen protector, and it left bubbles in the actual screen! How do I get rid of them?

    I put on the screen protector and noticed it had some bubbles so I peeled it back to fix it. Well, what I though was an air bubbles in the protector, was a bubble in the screen!! This WAS NOT there before. How do I get rid of the bubble that is in th

  • Problem publishing CS6 file in CC.

    Hi, I have a file that worked perfectly fine in Flash CS6 but after upgrading to Flash CC I'm getting several of these errors: The frame scripts of the symbol * have been ignored because a compiled clip contains a definition for *. To override the *

  • Printing with a USB printer using Airport Extreme and Vista

    I have a airport extreme and it prints fine with all of my Macs. I bought a VAIO installed with Vista and the lastest service pack. Here is what I have done * Installed Bonjour Printing software on the Windows Machine * Installed the print drivers on

  • Multiple message problems

    Hi everyone, I have made a change in the way the mailing list distributes postings to the list. Previously the Reply-To address was preset to [email protected] so that replies to posting would get sent to the list by default. I think, however, that t