Problem in loading metadata resources in 10.1.2 for developer

when the process invokes the mail service:
<invoke name="sendEMail" partnerLink="mailServicePL" portType="mail:MailService" operation="sendMessage" inputVariable="mailMSG"/>
the bpel reports the following error
<sendMessageFault xmlns="http://services.oracle.com/bpel/mail">
<part name="summary">
<summary>Account di posta account non trovato. Non è stato possibile trovare l'account di posta "test_account " nella directory dei metadati.</summary>
</part>
</sendMessageFault>
Translated into English: It was not possible to find the mail account "test_account" in the metadata directory.
The process uses the PL <partnerLink name="mailServicePL" partnerLinkType="mail:MailService" partnerRole="MailServiceProvider" myRole="MailServiceRequester"/>
in bpel.xml there is:
<partnerLinkBinding name="mailServicePL">
<property name="wsdlLocation">http://localhost:9700/orabpel/xmllib/MailService.wsdl</property>
</partnerLinkBinding>
In the D:\OraBPELPM_1\integration\orabpel\domains\default\metadata there is the MailService directory containing test_account.xml
Similar problem I had with JMSService
In ORABPEL PM v.2 it worked fine.
The 10.1.2 ver is coorectly patched.
So I don't understand what the matter is.
If you have any ideas please HELP.
Regards

I understand MailService is "deprecated". Is it still operating or is it "cancelled"?
Pls Oracle support to respond.
Thanks

Similar Messages

  • Problem with loading Metadata in 11.1.2.1

    Hi Experts,
    When I am trying to load metadata when changes made with Scenario dimension like set Y for Support Process Management to Actual I am getting error when loading the metadata like
    phase submission start year is out of range for this application while loading the metadata
    Please tell me what could be the reason
    Thanks in advance...

    Hi,
    You have an another Settings in same scenario dimension which needs to be corrected "PhasedSubStartYear", enable correctly this option correctly to the start year of your application.
    For Ex:- If you have started your application from 2012 while creating the application profile, please enable the same 2012 in the option "PhasedSubStartYear"
    in scenario dimension and try.
    Regards,
    Srikanth

  • Problem while loading metadata in IDX2

    Hi
    I tried to load metadata in IDX2 .I passed the parameters IDOC TYPE and SOURCE PORT .when i asked to continue it is showing me the that " <b>No RFC destination is maintained for the port</b> ".
    When I checked that particular port in IDX1 I am able to see that correct  RFC destination is  assigned to that port .
    Please help me in this case.
    With Regards
    C Sivakumar.

    hi.....siva
    execute tcode SM59 and check the logical systems & their login details are correct not.
    select REMOTE LOGON button.if ur details are correct then it displays that perticular screen.similarly u can test the reciever also.first u have to test the RFC Destination like this.Try it.
    regards,
    Naresh.K

  • Weird problem with loading data from an XML using a for loop

    Hi,
    I have a strange problem. I have encountered this thing many a times but still don't know the proper workaround for it.
    I am trying to load swf file, a video file or an image. They can be present on a local system or on a remote server also. All the entries corresponding to the files to be loaded is made in an XML file. I traverse through the nodes of the XML using a for loop. On the complete event of loader info, example:.
    loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
    I fill a container with the loaded data.
    My problem is when I am using for loop it doesn't works properly but if i use a statement like this:
    someFunc()
         if(i<arr.length())
         ... do something...
         loader.contentLoaderInfo.addEventListener(Event.COMPLETE, onComplete);
    private function onComplete(e:Event):void
    ... do something...
    i++;
    All files are loaded properly.
    I think this can be because the for loop processes pretty fast but the content takes time to load, which ultimately leads to some wierd results.
    Please let me know how can this thing be done correctly by using a for loop also.

    You don't want to use a for loop to load several items.  The way you almost appear to have it is the proper approach... load a file and use the completion of its loading to trigger loading the next file.

  • Problem of loading the MS SQL Server 2000 driver for JDBC

    Thanks for your reply.
    I have already tried to give the full class path of .jar files to the System and User Variables but received the same error. I am doing BCA and developing my very first Project on Java.
    Please, tell me one thing. When I had installed MS SQL Server 2000 at my system first time then the 3 JAR files were present in the lib folder and all my codings of connectivity were working properly. Then due to some reasons, I had to format C drive and installed the MS SQL Server 2000 again then in the lib folder the 3 JAR files were not there. How it has happened? Then, I installed the downloaded driver of MS SQL Server 2000 for JDBC 1.4 then the JAR files were installed in the related downloaded driver folder. I manually copied them to the lib folder of MS SQL Server and gave that path to the Classpath of System and User Variables, but it didn't work.
    I am not understanding the reason that The Software which worked previously is not working correctly in second time of installing.
    I am using command line to develop my stand-alone project. Please help me.

    Don't bother with the System CLASSPATH, more often than not, it is not even used.
    When running from an IDE, set the project's library preferences.
    When running from a web container/application server configure the applications libraries in the server/container, see it's documentation.
    When running an applet, configure the [ codebase and/or archive |http://java.sun.com/docs/books/tutorial/deployment/applet/html.html] tags properly.
    When running from the command line with the [ "-cp" |http://java.sun.com/javase/6/docs/technotes/tools/solaris/java.html] option, the System CLASSPATH is ignored.
    When running from the command line with the "-jar" option, both the System CLASSPATH path and the "-cp" option are ignored, configure the [manifest file|http://java.sun.com/docs/books/tutorial/deployment/jar/downman.html] properly.
    When running any other way, the System CLASSPATH might be used.

  • Problem of loading the MS SQL Server 2000 Driver for JDBC 1.4.1

    Thanks for your reply.
    I have already tried to give the full class path of .jar files to the System and User Variables but received the same error. I am doing BCA and developing my very first Project on Java.
    Please, tell me one thing. When I had installed MS SQL Server 2000 at my system first time then the 3 JAR files were present in the lib folder and all my codings of connectivity were working properly. Then due to some reasons, I had to format C drive and installed the MS SQL Server 2000 again then in the lib folder the 3 JAR files were not there. How it has happened? Then, I installed the downloaded driver of MS SQL Server 2000 for JDBC 1.4 then the JAR files were installed in the related downloaded driver folder. I manually copied them to the lib folder of MS SQL Server and gave that path to the Classpath of System and User Variables, but it didn't work.
    I am not understanding the reason that The Software which worked previously is not working correctly in second time of installing.
    I am using command line to develop my stand-alone project. Please help me.

    Don't bother with the System CLASSPATH, more often than not, it is not even used.
    When running from an IDE, set the project's library preferences.
    When running from a web container/application server configure the applications libraries in the server/container, see it's documentation.
    When running an applet, configure the [ codebase and/or archive |http://java.sun.com/docs/books/tutorial/deployment/applet/html.html] tags properly.
    When running from the command line with the [ "-cp" |http://java.sun.com/javase/6/docs/technotes/tools/solaris/java.html] option, the System CLASSPATH is ignored.
    When running from the command line with the "-jar" option, both the System CLASSPATH path and the "-cp" option are ignored, configure the [manifest file|http://java.sun.com/docs/books/tutorial/deployment/jar/downman.html] properly.
    When running any other way, the System CLASSPATH might be used.

  • I have a problem with loading the PNG image

    I have a problem with loading the PNG image from site. For ex. go to icefilms com and is starts to load png like crazy CPU is huge and you can not shut down Firefox at least a minute. This is not just in this site but whit any one whit lots of pictures.
    Image from firefox: Picture [http://img836.imageshack.us/img836/9910/7312011103147pm.jpg 1] [http://img28.imageshack.us/img28/8505/7312011103249pm.jpg 2] [http://img706.imageshack.us/img706/5615/7312011103348pm.jpg 3 ][http://img827.imageshack.us/img827/8483/7312011103533pm.jpg 4]
    This is my Task Manager [http://img217.imageshack.us/img217/5715/7312011103621pm.jpg 1]
    - I try safe mode, same thing
    -All addons and plugins are ok
    Any idea why is this so big problem.

    i did both of them, but still the while sending the mail the diolog box is not showing up and also the spelling and grammer does not do the spelling check. 
    This problem just started for about 3 to 4 days now.  earlier it was working normally.

  • RE: Problem of lack of resources ?

    We are also having problems similar to what you have described. I have
    not reported this to tech. support because it happens
    infrequently. Most of our problems happen when we are trying to update,
    integrate, and compile. Debug seems to be working fine.
    The strange thing to me is that my PC has 64 meg and I am allocating 54
    meg to Forte. I thing there are some internal problems with
    3.0 working on 95. I never had this problems on NT. Hopefully the next
    release will solve the problem.
    Kamran Amin
    Technical Leader, Software Engineering
    [email protected]
    203-459-7362 - CT, Trumbull
    Oxford Health Plans
    http://www.oxhp.com/
    From: Cristina Tomacelli[SMTP:[email protected]]
    Sent: Monday, November 03, 1997 6:06 AM
    To: [email protected]
    Subject: Problem of lack of resources ?
    Hi all,
    we are developing using Forte' 3.0.E on Windows 95 and Windows NT client,
    with 32 MB RAM. We are experiencing some strange behaviours. When we
    update, integrate, compile or debug from the client Forte', the client pc
    slows down terribly and frequently blocks at all. We can overcome the
    problem for update, integrate and compile if we use FSCRIPT, but we have no
    solution for the debugger.
    It has happened that we clicked on the debugger button and after 20 minutes
    it hadn't started yet ! (obviously we gave up). In this case specific, the
    application was built in Express and it WASN'T very big !
    If we try doing the same operations from a NT server with 128 MB RAM we
    have no problems.
    Is it a problem of resource lack ? What's the recommended platform /
    configuration ? Perhaps NT client with 64 MB RAM ?
    TIA
    Regards
    Cristina Tomacelli
    Cristina Tomacelli - CSI Piemonte
    Corso Unione Sovietica, 216 - 10134 TORINO - ITALY
    E-mail address: [email protected]
    Telephone Number: +39-11-3168847

    Cristina,
    What did you specify as memory flags when starting your Forte
    development workbench.
    We generally provide Forte with an object space of 16 to 24 MBytes.
    The command syntax looks something like this :
    ftexec -fi ct:%forte_root%\userapp\forte\cl0\forte -fm "(n:16000
    x:24000)" ...
    If you want to monitor how much of your object space is used and how
    often has the garbage collection mechanism to start reclaiming space,
    try this: trc:os:1:1.
    Hope this helps, Bernard.
    From: Cristina Tomacelli[SMTP:[email protected]]
    Sent: Monday, 03 November, 1997 12:06
    To: [email protected]
    Subject: Problem of lack of resources ?
    Hi all,
    we are developing using Forte' 3.0.E on Windows 95 and Windows NT client,
    with 32 MB RAM. We are experiencing some strange behaviours. When we
    update, integrate, compile or debug from the client Forte', the client pc
    slows down terribly and frequently blocks at all. We can overcome the
    problem for update, integrate and compile if we use FSCRIPT, but we have no
    solution for the debugger.
    It has happened that we clicked on the debugger button and after 20 minutes
    it hadn't started yet ! (obviously we gave up). In this case specific, the
    application was built in Express and it WASN'T very big !
    If we try doing the same operations from a NT server with 128 MB RAM we
    have no problems.
    Is it a problem of resource lack ? What's the recommended platform /
    configuration ? Perhaps NT client with 64 MB RAM ?
    TIA
    Regards
    Cristina Tomacelli
    Cristina Tomacelli - CSI Piemonte
    Corso Unione Sovietica, 216 - 10134 TORINO - ITALY
    E-mail address: [email protected]
    Telephone Number: +39-11-3168847

  • Problem loading metadata from ODI to HFM ( Error code: 0x80040154 [Class...

    Hi Experts
    I have an issue when I load metadata via ODI to HFM. I get this message:
    Error code: 0x80040154 [Class not registered
    com.hyperion.odi.common.ODIHAppException: Metadata load failed. Error code: 0x80040154 [Class not registered
    After some search on the net I see that this is due to a patch which is already been installed(ODI 10.1.3.5.5). The HFMDriver.dll is renamed as HFMDriver32.dll and HFMDriver64.dll rename as HFMDriver.dll.
    Patch 9377717: ORACLE DATA INTEGRATOR 10.1.3.6.0 PATCH
    1. I have reversed the HFM application TestApp into target for ODI and everything seems fine in the operator
    2. I have created a simple source flat file for the Account dimension
    3. I have created an interface to the Account dim. and verified the mapping with no errors
    4. The process stops when trying to Load the Metadata to HFM(Step 5 / of 7)
    5. When I search the log I see the Error code: 0x80040154 [Class not registered]
    Does anyone have any idea why the interface does not load the metadata?
    Brs
    Inge Andre
    Edited by: 819836 on Apr 14, 2011 12:49 PM

    This instructions given us by the support have fixed the problem on the first topic.
    1. Unregister the adapter by opening the command prompt and changing the path to
    C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\ RegSvcs.exe /u C:\Hyperion\products\FinancialDataQuality\SharedComponents\AdapterComponents\fdmAdapterCOMadmin\fdmAdapterCOMadmin.dll
    and:
    RegSvcs.exe /u C:\Hyperion\products\FinancialDataQuality\SharedComponents\AdapterComponents\fdmFM11xG5C\fdmFM11xG5C.dll
    Please verify the correct path to the dll's before proceeding
    2. Re-register the adapter using the 64 bit version of RegSvcs, C:\WINDOWS\Microsoft.NET\Framework64\v2.0.50727\RegSvcs.exe <PathToDLL> i.e. ..\Hyperion\products\FinancialDataQuality\SharedComponents\AdapterComponents\fdmFM11xG5C\fdmFM11xG5C.dll
    N.B. Do not re-register the ComAdmin.dll because that is not a 64 bit component.
    4. Open the FDM workbench and configure the adapter by right clicking the adapter -> Configure and re-entering the username and password.
    Regards.

  • Problem loading metadata with ODI : "Single sign on validation failed"

    Hi,
    When I load metadata in Planning using ODI, the load fails at the step "Prepare for loading" with this error message : "Single sign on validation failed".
    Can you help me please ?
    Thanks.
    Virgile.

    "com.hyperion.odi.planning.ODIPlanningException: Single sign on validation failed."
    Means you have put the incorrect account details in the topology manager, update the username/password
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Unable to Load Metadata (Error in shared.context.ContextLoader in startup)

    Hi,
    I am currently installing fixes on an environment, and every time a patch was installed the application server starts up. The application starts up successfully until I installed 8424662. I still don't know if this is the patch that causes the error, but here's the part of the log that states the error:
    - 2010-03-29 07:31:12,030 [Thread-1] ERROR (shared.context.ContextLoader) Unable to load metadata for package com.splwg.base.domain.common.masterConfiguration
    java.lang.NullPointerException
         at java.io.Reader.<init>(Reader.java:61)
         at java.io.InputStreamReader.<init>(InputStreamReader.java:55)
         at com.splwg.shared.context.PackageMetaInfoLoader.getManagedObjectDataAndExtractHashInfo(PackageMetaInfoLoader.java:53)
         at com.splwg.shared.context.PackageMetaInfoLoader.getContextEntities(PackageMetaInfoLoader.java:48)
         at com.splwg.shared.context.PackageMetaInfoLoader.read(PackageMetaInfoLoader.java:44)
         at com.splwg.shared.context.ContextLoader.loadFromStream(ContextLoader.java:90)
         at com.splwg.shared.environ.ContextManagedObjectSet.loadFromStream(ContextManagedObjectSet.java:120)
         at com.splwg.shared.environ.ContextManagedObjectSet.loadFromStream(ContextManagedObjectSet.java:107)
         at com.splwg.shared.environ.ContextManagedObjectSet.loadAllContextManagedObjects(ContextManagedObjectSet.java:72)
         at com.splwg.base.support.context.ContextFactory.loadManagedObjectForApplication(ContextFactory.java:194)
         at com.splwg.base.support.context.ContextFactory.buildContext(ContextFactory.java:106)
         at com.splwg.base.support.context.ContextFactory.buildContext(ContextFactory.java:90)
         at com.splwg.base.support.context.ContextFactory.createDefaultContext(ContextFactory.java:498)
         at com.splwg.base.web.startup.DeferredXAIStartup.run(DeferredXAIStartup.java:73)
         at java.lang.Thread.run(Thread.java:595)
    - 2010-03-29 07:31:14,873 [main] INFO (web.startup.SPLWebStartup) Application Context shutdown successfully
    Any help on this problem is greatly appreciated. Thank you so much!

    Patch 8424662 incorporates an entry in contextManagedObjects.xml that points to a class com.splwg.base.domain.common.masterConfiguration but this class is not yet present in spl-base.jar file. Patch 8711158 should be installed, since it contains this class.

  • Problem in reading a resource file form JAR

    Problem in finding a resource file from the jar.....
    I have my code in the following directory structure
    rootDir -
         libDir -
              XMLEntities.res
         modelDir -
              File1
              File2
              File3
    Step1 - I create a jar file with root as modelDir and with all its files.
    Step2 - I add XMLEntities.res also to the root of the jar
    If I run my application using
    java -classpath ;C:\aip_build\build_dm\rmi_server_files\dm.jar; model.data_model.ActivateDataManager
    My application which uses Xalan.jar (lyong under ext directory in jdk) does not find XMLEntiries.res.
    If I use my application as under without creating jar my application does find XMLEntites.res
    Can anyone tell me why the application can not find the XMLEntities.res inside jar?

    Sorry I missed one line............
    Problem in finding a resource file from the jar.....
    I have my code in the following directory structure
    rootDir -
    ----libDir -
    --------XMLEntities.res
    ----modelDir -
    --------File1
    --------File2
    --------File3
    Step1 - I create a jar file with root as modelDir and
    with all its files.
    Step2 - I add XMLEntities.res also to the root of the
    jar
    If I run my application using
    java -classpath
    ;C:\aip_build\build_dm\rmi_server_files\dm.jar;
    model.data_model.ActivateDataManager
    My application which uses Xalan.jar (lyong under ext
    directory in jdk) does not find XMLEntiries.res.
    If I use my application as under without creating jar
    my application does find XMLEntites.res
    java -classpath
    ;C:\aip_build\build_dm\rmi_server_files\;C:\aip_build\b
    ild_dm\rmi_server_files\lib
    model.data_model.ActivateDataManager
    Can anyone tell me why the application can not find
    the XMLEntities.res inside jar?try loading the resources as a InputStream
    something like :
    InputStream is = NameOfLoadingClass.class.getClassLoader().getResourceAsStream("XMLEntities.res");
    Hope this might help you in some way.

  • Bex Report Designer: Error while loading metadata

    hi experts,
    I am working with BI7 Bex Report Designer and we are using SP9. when i tried to load the Query in Report Designer its giving below error.
    Error while loading metadata.
    Check the Query and portal settings.(but the query is working fine in Analyzer).
    and its giving message class RSBOLAP, message number 018 and Description is java system error: incoming call is not authorized.
    when i double click the error its giving below error details.
    Diagnosis
    An error occurred in the BI components on the SAP J2EE Engine.
    System Response
    Procedure
    Contact your system administrator to have the error analyzed in detail.
    Procedure for System Administration
    Start the Visual Administrator, log on to the SAP J2EE Engine and choose "<J2EE_SID>" ->"Server" -> "Services" -> "Log Viewer".
    The file "defaultTrace.trc" includes detailed information about the error that occurred. In Windows, you can find this file in the Log Viewer under "Cluster <computer name>" -> "Server <server number>" -> "<drive>:\usr\sap\<SID>\JC<INSTANCE>\j2ee\cluster\server<NUMBER>\log". ". In Unix, the file is located under "/usr/sap/<SID>/JC<INSTANCE>/j2ee/cluster/server<NUMBER>/log".
    If the file does not include enough detail about the error, you can increase the log level to obtain more information. To do this, choose "<J2EE_SID>" -> "Server" -> "Services" -> "Log Configurator". On the "Locations" tab page, choose "com" -> "sap" -> "ip" -> "bi" -> "webapplications". Using the selection list on the right side of the screen, you can increase the log level, whereby "DEBUG" represents the log level with the most information. You can save your settings by choosing the "Save" icon. The change to the log level is active immediately. Once you have successfully analyzed the error, you should set the log level back to its default value using the appropriate pushbutton; continuous writing to the log file negatively affects the overall performance of the system.
    could you plz suggest me how to rectify the problem.
    regards
    vadlamudi

    Hi vadlamudi
    The error message RSBOLAP 018 means, that the ABAP stack can't communicate with the Java Stack.
    1) Please ensure, that the user, used for the Report Designer, is valid in the Portal too. Depending on the user management setup this means that there either needs to be the same user or an assigned user in the Portal.
    2) In case the user is valid, it means a basic misconfiguration according to note 937697. In this case please run the Support Desk Tool and ensure, that all checks are green. Please ensure, that the latest version of the Support Desk Tool is used.
    Regards,
    Janine

  • Help!  FCP X freezes at loading compressor resources

    I purchased compressor 4 and it is installed in my applications folder.  I went to restart FCP X and the splash screen for FCP X stays on the screen saying "loading compressor resources" and won't go away.  I can quit the program via Command-Q, but am unable to do anything else.  I have rebooted, wiped .plist files, but no luck...any ideas?

    I have FCP7 installed.  If that is the problem, then I am stuck with it for now.  I have a huge amount of legacy projects, which I need to keep. 
    It is such a strange error, because everything seems to load, the elements and projects are all showing and just at the end it seems to lose contact with the external hard drive, which is a WD firewire 800.  It actually still has a hold on it, because I can't dismount it at that point, because it says it is in use by FCPX.  I haven't tried to see if I connect it with usb the problem might go away, although I saw that as a suggestion. 
    Actually in its latest reincarnation, FCPX doesn't hang, it just says there are no projects or elements because the hard drive has disappeared from its list.  It sometimes works to then force quit fcpx, and tell it not to save the window settings and then restart it.  It seems almost random as to if it loads properly or not.  Doesn't matter if I am running 10.6.8 or 10.7. whatever.  It is not so uncommon a problem, because there are a lot of posts about it.  I haven't found the definitive post with a fix though.
    I am now thinking of duplicating the project to a differnt external drive and then dismounting the external drive I have been using. 

  • Error Loading Metadata while creating KPIs in SSAS

    Hi,
    i have created a cube for my local database. On opening the cube in the SSAS solution when i clicked on the calculations tab (and subsequently in the other tabs - KPI, Actions etc ) i get an error "error loading metadata: Either the user, DOMAIN\UserName, does not have access to the analysis services, or the database does not exist" in the metadata tab of the calculation window...
    I am using SQL Server 2005 SP2 with Windows Server 2003 on a 32-bit machine and currently connected as the admin on the box.
    I tried running the sample SSAS solution (SSAS samples from program files ) just to verify if there is some problem in my solution parameters but the error persists.
    All my sql server 2005 services are up and running (with the exception of SQL Active Directory helper and SSRS which i dont need!!!)
    Any help is appreciated ...
    Thanks
    Dev

    hi jwelch,
    yes the database i have used as the data source in SSAS is deployed on my local database engine and so is adventureworksDW (i am sorry, being new to SSAS, just to confirm if thats what you meant by the database deployment here or are you referring to some separate deployment for the Analysis Service)
    I have not defined any roles for the database and i am running the BIDS as a system admin.
    Thanks
    Dev

Maybe you are looking for