Unable to find the Messages in the Message Tab in ExtnDef

Hi Folks,
When importing the WSDL file in the External Definition, I am unable to find the messages in the Messages tab and unable to find the messages in the Message Interface. Can anyone help me on this please.

Hi Amit Srivastava,
I am using the WSDL file which is given from Client/Customer. After importing this into Extn Defn, i can see there is no messages in the Message Tab and No messages in the External Definitions.
My current version of PI is 7.0 where i don't find the option for tools->importExterDefn. and when i am importing this in SOAP UI tool i can see all the messages.
Please let me know is there steps missing
Regards,
Madhu

Similar Messages

  • Mail was unable to find your reply to the message ".....

    I keep getting this message when I try to look for a reply from within mail by clicking on the reply arrow in the inbox that shows I've replied to the message:
    "Mail was unable to find your reply to the message "...." You may have deleted the message."
    https://skitch.com/jasondebruler/rshsf/mail
    This only happens when looking for sent items from my Exchange account. The feature works correctly on all of my gmail accounts.
    I have verified in the preferences that this account is set up (box is checked) to properly "Store sent messages on the server".
    Any insight would be appreciated. Thanks!

    Cheers for that. Yes they match,  the sent folders are the same both locally and on the web interface.  They both updating almost instantly when i send something. 
    The problem is when replying, although both sent folder views contain the sent item, the little reply arrow cannot link to replied sent item.  I have attached an image of the message:
    http://gallery.me.com/martinwhiting#100231/b&bgcolor=black

  • TS3276 Apple Mail cannot find replies or forwarded emails -- the little arrows on the left of the list of emails: "Mail was unable to find your reply to the message '[subject of message]'. You may have deleted the message."  I did not delete the message.

    Apple Mail cannot find replies or forwarded emails -- the little arrows on the left of the list of emails: "Mail was unable to find your reply to the message '[subject of message]'. You may have deleted the message."  I did not delete the message.  Bug in the program, or am I missing something?

    Of course they're in my Sent folder.  Then why can't Apple Mail find them?

  • TS3276 Mail was unable to find your reply to the message. You may have deleted the message.

    Mail was unable to find your reply to the message “subject”. You may have deleted the message.
    Using IMAP account. Just started happening last week.  Any suggestions?

    NO suggestions for fixing it Frank, but I'm having the same exact problem.  I have taken to copying all messages before sending them, and sending them twice.  What a pain in the ... um, neck!

  • "Mail was unable to find your reply to the message... You may have deleted the message."

    I'm experiencing some kind of corruption in Mail's ability to connect replies to messages.
    The error I'm starting to get says this:
    "Mail was unable to find your reply to the message... You may have deleted the message."
    And these emails are no longer threading like conversations and when you click on the little "read reply" arrow icon it can't find the reply.
    What could be up here please?!?!?
    Thanks!
    David

    CT,
    Thanks SO much for a reply.
    Yes it survives a restart, but i had no idea about this "Rebuild" option.
    Trying that now!
    Cheers!

  • Apple mail problem message reads - Account removal failed with error: "The operation couldn't be completed. Unable to find an account for the UID given.".

    Account removal failed with error: “The operation couldn’t be completed. Unable to find an account for the UID given.”.   - trying to remove account but get this message please help

    Try to remove the account in the Internet Accounts preference pane.

  • Type-mapping not working correctly, get "Unable to find a javaType for the xmlType" WARNING

    I'm manually creating a web-services.xml file, and using the autogen ant task to
    generate the codec XML/Java classes. The XML definition is provided by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG. The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service method
    that has a complex data type (non-built in data type) is not being deployed into
    the WebLogic server. But the other service method that simply takes a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    [web-services.xml]

    Hi JD,
    I spent a few cycles looking over your web-services.xml file, however I
    don't have any suggestions other that one that looks like you have
    already tried, at the top, in the <schema...>
    targetNamespace="urn:sap-com:document:sap:business"
    Making edits to these generated files can be tricky and my only
    suggestion is to create a small reproducer to run by our outstanding
    support team.
    A quick look at our problem database shows one issue (CR095109) related
    to a similar problem at deploy time that was fixed with 7.0SP3. Again,
    the support folks will be able to help focus in on the issue.
    Regards,
    Bruce
    JD wrote:
    >
    The first posting contains the wrong web-services.xml file. Please refer to this
    one instead.
    "JD" <[email protected]> wrote:
    I'm manually creating a web-services.xml file, and using the autogen
    ant task to
    generate the codec XML/Java classes. The XML definition is provided
    by SAP.
    The ant build.xml file:
    <project name="buildWebservice" default="stubgen">
    <target name="stubgen">
    <clientgen ear="C:\projects\RMIS\ifrrequests\RMIS.ear"
    packageName="com.aa.rmis.webservice.client"
    clientJar="C:\projects\RMIS\ifrrequests\rmisws-client.jar"
    autotype="False" />
    </target>
    <target name="all" depends="stubgen"/>
    </project>
    The problem is seen below in the output from Ant. Note the WARNINIG.
    The problem
    is that the xml type cannot be mapped to the Java type.
    C:\projects\RMIS\ifrrequests>ant -buildfile clientbuild.xml
    Buildfile: clientbuild.xml
    stubgen:
    [clientgen] Generating client jar for RMIS.ear ...
    [clientgen] WARNINIG: Unable to find a javaType for the xmlType:['urn:sap-com:do
    cument:sap:business']:PaymentRequest.Create. Make sure that you have
    registered
    this xml type in the type mapping
    [clientgen] Using SOAPElement instead
    [clientgen] Compiling 4 source files to C:\DOCUME~1\944377\LOCALS~1\Temp\rmisws-
    client.jar-836624340
    [clientgen] Building jar: C:\projects\RMIS\ifrrequests\rmisws-client.jar
    BUILD SUCCESSFUL
    Total time: 17 seconds
    The Java source that has the implementation of the service methods is
    simply:
    package com.aa.rmis.webservice;
    import com.aa.rmis.ifr.request.*;
    public class TestService
    public TestService()
    public int serviceRequest(PaymentRequestCreate request)
    System.out.println("Received serviceRequest message");
    return 0;
    public void testStringRequest(String request)
    The web-service.xml file is attached, which contains the schema for the
    SAP PaymentRequest.Create
    object definition.
    Another problem I have, which is probably related, is that the service
    method
    that has a complex data type (non-built in data type) is not being deployed
    into
    the WebLogic server. But the other service method that simply takes
    a String
    parameter is.
    The steps I took are:
    1. Get XML from SAP Interface Repository (IFR) for PaymentRequest
    2. Use ant task autogen to generate the request codec classes
    3. Create the web-services.xml file by inserting the schema definition
    and the
    mapping file created by the autogen task, and defining the operations
    4. Build web-services.war file that contains all autogen compiled class
    files,
    the web-services.xml file, and the service implementation class
    5. Build the ear file that holds the web service files
    6. Use the clientgen ant task to generate (included above) to generate
    the client
    jar file that should contain the proxy for both of the service methods
    Environment:
    * WebLogic 7.02
    * JDK 1.3.1_06
    * JBuilder 9 Enterprise
    * Ant 1.4
    Possible causes:
    * Namespace not being used correctly
    * copied verbatim the mapping xml file generated by autogen into
    the web-services.xml
    file
    * xml-schema part of web-services.xml might not be set correctly
    * operation definition might not be using the correct namespace
    * Classpath used for ant might not be right
    * Doubt this is the problem, but I'm out of other ideas
    * Set by using the setWLEnv.cmd file provided by WebLogic
    * Tried adding the generated classes directory for my project to
    the classpath,
    but did not work
    I've been referencing the Programming WebLogic Web Services document
    throughout
    this entire process. I must be missing something.
    Can anybody from BEA help me out with this problem?
    Thanks in advance.
    Name: web-services.xml
    web-services.xml Type: ACT Project (text/xml)
    Encoding: base64

  • Alert subscription data source module encountered errors while running: Alert subscription data source module was unable to find alerts that match the subscription because of database errors.

    Hi,    We recently started getting these errors a couple times a day.   There are 12 of them in total.     We also have exactly 12 subscriptions.   Does this indicate some db issue causing all of these
    to fail?
    Alert subscription data source module encountered errors while running: Alert subscription data source module was unable to find alerts that match the subscription because of database errors.
    The following error(s) were encountered:
    Exception Message: ExecuteScalar requires an open and available Connection. The connection's current state is closed.
    One or more workflows were affected by this.
    Workflow name: Subscription8b108a3e_4e3d_4fd0_b67e_cbfc21cd10b8
    Instance name: Alert Notification Subscription Server
    Instance ID: {E07E3FAB-53BC-BC14-1634-5A6E949F9230}
    Management group: A Company Management Group
    Thanks Lance

    Hi,
    Do you have hotfixes applied?
    http://blogs.technet.com/kevinholman/archive/2009/01/27/which-hotfixes-should-i-apply.aspx
    Also, I found a relevant thread for your reference.
    Alert subscription data source module encountered errors while running</u1:p>
    http://social.technet.microsoft.com/Forums/systemcenter/en-US/50557249-7f97-4b67-9729-f7088202385b/alert-subscription-data-source-module-encountered-errors-while-running?forum=operationsmanagergeneral</u1:p>
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Unable to find channel ID - using Test Message in RWB

    Hey all - we are using the Test Message tab of the RWB, and we get "Unable to find channel ID" as the response to our message being sent.  We are clueless what this means... since this is supposed to send straight into the engine, I'd expect something like "no interface determination" or sometimes similar - but we can't figure out what this error means.  This is the message we get, regardless of payload or interface chosen...  We even chose an interface that has already been tested & is running successfully into XI via the JMS adapter, so we know the actual path thru XI is valid. 
    Help is appreciated - I'm sure this is something silly we don't have set up that we need...

    We were hitting the Test tab after clicking the AF in RWB - you should choose the engine... it likes that much better. 

  • Alert subscription data source module was unable to find alerts that match the subscription because of database errors.

    We have been seeing this error in the Operations Manager Event Log for quite a while.
    Alert subscription data source module was unable to find alerts that match the subscription because of database errors.
     The following error(s) were encountered:
     Exception Message: ExecuteScalar requires an open and available Connection. The connection's current state is closed.
    One or more workflows were affected by this.  
    Workflow name: MMEA_1348391424 
    Instance name: aaa.bbb.com
    Instance ID: {88AED57C-5627-0C0B-E5C1-A9176A7E64CD} 
    Management group: SCOMr2
    I haven't been able to spot any network outage on the management servers, or the database servers to indicate a problem.  It usually happens at night, and when I look at the health explorer, the entity is healthy.
    Please would someone help me in finding the root cause of this issue and what can be done to avoid it.
    There were no backups running when this alert was generated.  As far as I'm aware, everything was idle.
    I would appreciate any help.
    Karan

     Exception Message: ExecuteScalar requires an open and available Connection. The connection's current state is closed.
    Based on the Error it seems the below for me
    1. Either SCOM is unable to connect to the operationsmanager / operationsmanagerDW for its transactions on subscriptions
    2. Or the SMTP server which your SCOM is using to relay emails has closed the connection.
    So my suggestion would be you check the above for issues.
    Gautam.75801
    There were no network hiccups that I can see.  Minimal disk activity.  I've looked for any signs of database load, and haven't seen anything that jumps out.
    Emails were going through just fine.  These alerts get emailed to me, and if the SMTP server is 'closed' SCOM is usually quite sensitive and alerts about that too.  I've seen it.
    KB

  • Nmew32rg.dll - Unable to find EM location in the registry : RegQueryValue f

    Hi All,
    I am getting below error while installing companions "10203_vista_w2k8_x86_production_companion.zip" (32-bit) (HTTP server) on Windows 2008 sp2 64-bit machine.
    .....CALL INTO REGISTRY.....
    DLL TO LOAD = \nmew32rg.dll
    DLL LOADED
    Unable to find EM location in the registry : RegQueryValue failed
    REGISTRY VALUE = nullThis happens only if I do installation from command line by using response file. From OUI interactive installer it is being installed properly.
    ORACLE_HOME (db) = C:\oracle\Database\oracleDB\
    ORACLE_HOME=C:\oracle\Database\oracleDB\OHS
    Companion disk:           C:\oracle\Oracle10g\companion
    Modified response file:   C:\oracle\Oracle10g\companion\oracle.companionCD.midtier.rsp
    Command to install:
    "C:\oracle\Oracle10g\companion\install\oui.exe" -silent -nowait -force -waitforcompletion FROM_LOCATION="C:\oracle\Oracle10g\companion\stage\products.xml" ORACLE_HOME=C:\oracle\Database\oracleDB\OHS ORACLE_HOME_NAME=oracle_10gOHSHome -responseFile C:\oracle\Oracle10g\companion\oracle.companionCD.midtier.rspThe machine already has "10204_vista_w2k8_x64_production_db.zip" database installed.
    Can you please suggest what additional things I need to take care to install companions using response file?

    Thanks Werner for reply !! I was really looking for any reply of my thread.
    I think it is useless to mention because something I did which is not supported,
    1. I installed "10204_vista_w2k8_x64_production_db.zip" database on w2k8 sp2 (64-bit) machine which is supported DB version for w2k8 environment.
    2. Companions are available for w2k8 64 bit but HTTP server is not there. It is only available in "10203_vista_w2k8_x86_production_companion.zip". This is a x86 (32-bit) setup and while doing interactive mode installation it is passing all prereq checks on x64 and not showing me any information to not to use this setup for x64. Also, it works fine after installation but not working in command-line installation.
    One last question,
    Will Oracle provide support on fixing this issue if I contact them or raise SR ?

  • The drop down menus in Photoshop CC 2014 are too small to read without using the magnifier.  They are OK in Photoshop CC.  I have been unable to find anyplace to adjust the font size.  I have Windows 7 Pro.  Looking at the Photoshop version history, it lo

    The drop down menus in Photoshop CC 2014 are too small to read without using the magnifier.  They are OK in Photoshop CC.  I have been unable to find anyplace to adjust the font size.  I have Windows 7 Pro.  Looking at the Photoshop version history, it looks like this problem comes and goes as Photoshop is updated.  It should be an easy fix.

    Try the Photoshop CC 2014 Preference experimental section 2X UI option

  • Unable to find domain controller for the specified domain. Please explicitly specify the domain controller.

    Im getting error "Unable to find domain controller for the specified domain. Please explicitly specify the domain controller."   when I try to create an AD connection for my User Profile Service.  The entire sharepoint environment is installed
    on one server.  That server has everyting on it, AD, SQL, Sharepoint, and its the domain controller. I cant figure out why this will not identify?Trevor Fielder

    Hi,
    Did you get this error when clicking on the Populate Containers button?
    If yes, please make sure that you have provide the domain credentials in the account name and password
    boxes below when entering the domain information. The account must be granted the replicating directory changes permission on the domain.
    You can refer to this blog:
    http://www.harbar.net/articles/sp2010ups.aspx
    Xue-Mei Chang

  • Unable to find a view for Broadcast Messages

    Hi Experts,
    We are using SAP CRM 2007. When we click on any broadcast message flashing at the bottom of IC Agent Screen, a small view opens where we have a drop down to display New/Read/Past messages. Also we have an option to mark a message as Read and it will not flash anymore at the bottom of the screen.
    Can anybody please provide me some guidance about this view as I need to modify some functionality in this view?
    Thanks and Regards,
    Rohit

    Hello Rohit,
    I checked with a developer named Hualin. The view name of the broadcast message details popup is Broadcast_popup.htm. Go to SE80. Open the BSP application CRMCMP_IC_FRAME. Then go Pages with Flow Logic directory, you can find this htm file. By the way, for the scrolling bar, the file is broadcast_bar.htm.
    Best regards,
    John

  • Unable to find MSAD users in the projects- Planning app- Access contol re..

    Hello,
    I have configured MSAD and I could see all the users and groups. Not just MSAD but also native users
    I was able to provision them and also access that application using that user.
    But I don't see those user list in Projects ->PLanning app->Access control report or when I choose a member and try to assign access.
    Could anyone please tell me where I am going wrong?
    Do I have to do anything else to have them appear?
    please suggest.
    Thanks a lot.

    This is what I see when I tried to do as you said
    C:\Hyperion\deployments\WebLogic9\bin>echo off
    JAVA Memory arguments: -Xms256m -Xmx512m
    WLS Start Mode=Production
    CLASSPATH=C:\Hyperion\common\CLS\9.3.1\lib\cls-9_3_1.jar;C:\Hyperion\common\SAP\
    lib;;;C:\bea\patch_weblogic910\profiles\default\sys_manifest_classpath\weblogic_
    patch.jar;C:\bea\jrockit90_150_04\lib\tools.jar;C:\bea\WEBLOG~1\server\lib\weblo
    gic_sp.jar;C:\bea\WEBLOG~1\server\lib\weblogic.jar;C:\bea\WEBLOG~1\server\lib\we
    bservices.jar;;C:\bea\WEBLOG~1\common\eval\pointbase\lib\pbclient51.jar;C:\bea\W
    EBLOG~1\server\lib\xqrl.jar;;C:\bea\WEBLOG~1\integration\lib\util.jar;
    PATH=C:\Hyperion\common\CSS\9.3.1\bin;C:\Hyperion\common\SAP\bin;;;C:\bea\patch_
    weblogic910\profiles\default\native;C:\bea\WEBLOG~1\server\native\win\32;C:\bea\
    WEBLOG~1\server\bin;C:\bea\jrockit90_150_04\jre\bin;C:\bea\jrockit90_150_04\bin;
    C:\Hyperion\AnalyticServices\bin;c:\oracle\client\10.1\bin;c:\oracle\client\10.1
    \jre\1.4.2\bin\client;c:\oracle\client\10.1\jre\1.4.2\bin;C:\Program Files\Suppo
    rt Tools\;C:\Program Files\Windows Resource Kits\Tools\;C:\WINDOWS\system32;C:\W
    INDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Intel\DMIX;C:\Program Files\3PA
    R\MPIO\;C:\monitor\Patrol3\bin;C:\Hyperion\common\CLS\9.3.1\bin\windows;C:\Hyper
    ion\AnalyticServices\bin;C:\bea\WEBLOG~1\server\native\win\32\oci920_8
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http:\\hostname:port\console *
    starting weblogic with Java version:
    java version "1.5.0_04"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.5.0_04-b05)
    BEA JRockit(R) (build R26.0.0-189-53463-1.5.0_04-20051122-2041-win-ia32, )
    Starting WLS with line:
    C:\bea\jrockit90_150_04\bin\java -jrockit -Xms256m -Xmx512m -Dhyperion.home=C:
    \Hyperion -Dweblogic.j2ee.application.tmpDir=C:\DOCUME~1\hyperion\LOCALS~1\Temp\
    4\hyperion -Dweblogic.security.SSL.trustedCAKeyStore="C:\bea\weblogic91\server\l
    ib\cacerts" -da -Dplatform.home=C:\bea\WEBLOG~1 -Dwls.home=C:\bea\WEBLOG~1\ser
    ver -Dwli.home=C:\bea\WEBLOG~1\integration -Dweblogic.management.discover=false
    -Dweblogic.management.server=http://localhost:7001 -Dwlw.iterativeDev=false -D
    wlw.testConsole=false -Dwlw.logErrorsToConsole= -Dweblogic.ext.dirs=C:\bea\patch
    weblogic910\profiles\default\sysextmanifest_classpath -Dweblogic.Name=Hyperio
    nPlanning -Djava.security.policy=C:\bea\WEBLOG~1\server\lib\weblogic.policy we
    blogic.Server
    <Mar 20, 2009 1:20:46 PM EST> <Info> <WebLogicServer> <BEA-000377> <Starting Web
    Logic Server with BEA JRockit(R) Version R26.0.0-189-53463-1.5.0_04-20051122-204
    1-win-ia32 from BEA Systems, Inc.>
    <Mar 20, 2009 1:20:50 PM EST> <Info> <Management> <BEA-141107> <Version: WebLogi
    c Server 9.1 Mon Dec 12 19:26:33 EST 2005 689178 >
    <Mar 20, 2009 1:20:52 PM EST> <Emergency> <Management> <BEA-141151> <The admin s
    erver could not be reached at http://localhost:7001.>
    <Mar 20, 2009 1:20:53 PM EST> <Info> <Configuration Management> <BEA-150018> <Th
    is server is being started in managed server independence mode in the absence of
    the admin server.>
    <Mar 20, 2009 1:20:53 PM EST> <Info> <WebLogicServer> <BEA-000215> <Loaded Licen
    se : C:\bea\license.bea>
    <Mar 20, 2009 1:20:53 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STARTING>
    <Mar 20, 2009 1:20:53 PM EST> <Info> <WorkManager> <BEA-002900> <Initializing se
    lf-tuning thread pool>
    <Mar 20, 2009 1:20:53 PM EST> <Notice> <Log Management> <BEA-170019> <The server
    log file C:\Hyperion\deployments\WebLogic9\servers\HyperionPlanning\logs\Hyperi
    onPlanning.log is opened. All server side log events will be written to this fil
    e.>
    <Mar 20, 2009 1:21:06 PM EST> <Notice> <Security> <BEA-090082> <Security initial
    izing using security realm myrealm.>
    <Mar 20, 2009 1:21:14 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STANDBY>
    <Mar 20, 2009 1:21:14 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to STARTING>
    Creating rebind thread to RMI
    Cache Control is :public,max-age=2592000
    <Mar 20, 2009 1:21:16 PM EST> <Warning> <Log Management> <BEA-170011> <The LogBr
    oadcaster on this server failed to broadcast log messages to the admin server. T
    he Admin server may not be running. Message broadcasts to the admin server will
    be disabled.>
    <Mar 20, 2009 1:21:17 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to ADMIN>
    <Mar 20, 2009 1:21:17 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to RESUMING>
    <Mar 20, 2009 1:21:17 PM EST> <Notice> <Server> <BEA-002613> <Channel "Default"
    is now listening on 170............:8300 for protocols iiop, t3, ldap, http.>
    <Mar 20, 2009 1:21:17 PM EST> <Notice> <Server> <BEA-002613> <Channel "Default[1
    ]" is now listening on 10............:8300 for protocols iiop, t3, ldap, http.>
    <Mar 20, 2009 1:21:17 PM EST> <Warning> <JMX> <BEA-149510>
    <Unable to establish
    JMX Connectivity with the Adminstration Server AdminServer at <JMXServiceURL:nul
    l>.>
    <Mar 20, 2009 1:21:17 PM EST> <Notice> <WebLogicServer> <BEA-000365> <Server sta
    te changed to RUNNING>
    <Mar 20, 2009 1:21:17 PM EST> <Notice> <WebLogicServer> <BEA-000360> <Server sta
    rted in RUNNING mode>
    java.rmi.ConnectException: Connection refused to host: 170...................; nested ex
    ception is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
    at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Ljava.lang.String;Ljava.rmi
    .Remote;)V(Unknown Source)
    at java.rmi.Naming.rebind(Naming.java:160)
    at com.hyperion.planning.HspJSHomeImpl$RebindTask.run()V(Unknown Source)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Ljava.net.InetAddress;II)V(Nat
    ive 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:364)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at java.net.Socket.<init>(Socket.java:365)
    at java.net.Socket.<init>(Socket.java:178)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
    SocketFactory.java:22)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
    SocketFactory.java:128)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
    ... 8 more
    java.rmi.ConnectException: Connection refused to host: 170...................; nested ex
    ception is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
    at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Ljava.lang.String;Ljava.rmi
    .Remote;)V(Unknown Source)
    at java.rmi.Naming.rebind(Naming.java:160)
    at com.hyperion.planning.HspJSHomeImpl$RebindTask.run()V(Unknown Source)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Ljava.net.InetAddress;II)V(Nat
    ive 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:364)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at java.net.Socket.<init>(Socket.java:365)
    at java.net.Socket.<init>(Socket.java:178)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
    SocketFactory.java:22)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
    SocketFactory.java:128)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
    ... 8 more
    java.rmi.ConnectException: Connection refused to host: 170......................; nested ex
    ception is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
    at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Ljava.lang.String;Ljava.rmi
    .Remote;)V(Unknown Source)
    at java.rmi.Naming.rebind(Naming.java:160)
    at com.hyperion.planning.HspJSHomeImpl$RebindTask.run()V(Unknown Source)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Ljava.net.InetAddress;II)V(Nat
    ive 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:364)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at java.net.Socket.<init>(Socket.java:365)
    at java.net.Socket.<init>(Socket.java:178)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
    SocketFactory.java:22)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
    SocketFactory.java:128)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
    ... 8 more
    Setting Arbor path to: C:\Hyperion\common\EssbaseRTC\9.3.1
    Setting HBR Mode to: 2
    HBR Logging Config File : HBRServer.properties
    2009-03-20 13:23:59,283 WARN [ACTIVE] ExecuteThread: '0' for queue: 'weblogic.ke
    rnel.Default (self-tuning)' com.hyperion.hbr.security.HbrSecurityAPI - Error ret
    rieving user by identity
    Embedded HBR initialized.
    [INFO] AuthChallengeProcessor - basic authentication scheme selected
    [INFO] AuthChallengeProcessor - basic authentication scheme selected
    [INFO] AuthChallengeProcessor - basic authentication scheme selected
    java.rmi.ConnectException: Connection refused to host: 170..............; nested ex
    ception is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
    at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Ljava.lang.String;Ljava.rmi
    .Remote;)V(Unknown Source)
    at java.rmi.Naming.rebind(Naming.java:160)
    at com.hyperion.planning.HspJSHomeImpl$RebindTask.run()V(Unknown Source)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Ljava.net.InetAddress;II)V(Nat
    ive 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:364)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at java.net.Socket.<init>(Socket.java:365)
    at java.net.Socket.<init>(Socket.java:178)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
    SocketFactory.java:22)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
    SocketFactory.java:128)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
    ... 8 more
    [Fri Mar 20 13:24:24 EST 2009] Planning successfully notified HBR repository.
    java.rmi.ConnectException: Connection refused to host: 170...........; nested ex
    ception is:
    java.net.ConnectException: Connection refused: connect
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574)
    at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185
    at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171)
    at sun.rmi.server.UnicastRef.newCall(UnicastRef.java:306)
    at sun.rmi.registry.RegistryImpl_Stub.rebind(Ljava.lang.String;Ljava.rmi
    .Remote;)V(Unknown Source)
    at java.rmi.Naming.rebind(Naming.java:160)
    at com.hyperion.planning.HspJSHomeImpl$RebindTask.run()V(Unknown Source)
    at java.util.TimerThread.mainLoop(Timer.java:512)
    at java.util.TimerThread.run(Timer.java:462)
    Caused by: java.net.ConnectException: Connection refused: connect
    at java.net.PlainSocketImpl.socketConnect(Ljava.net.InetAddress;II)V(Nat
    ive 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:364)
    at java.net.Socket.connect(Socket.java:507)
    at java.net.Socket.connect(Socket.java:457)
    at java.net.Socket.<init>(Socket.java:365)
    at java.net.Socket.<init>(Socket.java:178)
    at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirect
    SocketFactory.java:22)
    at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMaster
    SocketFactory.java:128)
    at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569)
    ... 8 more
    Edited by: [email protected] on Mar 20, 2009 11:36 AM

  • Unable to find Business Rules in the JDeveloper while creating new project

    Hi All,
    I am going through the chapter 9 Creating a Rule-enabled Non-SOA Java EE Application for JDevloper 11g. I am following the instruction given in the chapter.
    However I am unable to find a Business Rules category for creating a Business rules directory.
    Probably it has to be activated from somewhere.
    I tried searching its significance with JDev installation but haven't got anything.
    It seems very basic level problem, however...Please let me know if anybody knows how to solve it
    Thanks,
    Makarand.
    Edited by: user11223806 on Aug 12, 2009 7:48 AM

    Did you install the SOA extension for JDeveloper from the help->check for updates?

Maybe you are looking for