10.13.4, Cannot lookup BPEL domain. The BPEL domain "default" cannot be

After Upgrading to SOA 10.13.4 we get this Error. We are using OLITE Database. Meta Link Note 419713.1 Suggest Updating Version_Server Table. How do I Update When The Database is Olite .
(How Do I login into Datatbase and Perform Update)
SQL> update version_server set GUID='2.0.4';
SQL> commit;

If you don't know how to login then you have also probably missed the post install scripts, if you have upgraded to 10.1.3.4 they should have been run before the upgrade.
The login command prompt is found oracle_home/bpel/bin/polsql.cmd
if you use ESB there are scripts for that as well
login for esb I always for get but ists under integration and I think sql. You will find it.
oracle_home/integration/sql/
I would run the actual scripts as they should also perform the version update,
oracle_home/bpel/system/database/scripts
make sure you run the once for olite.
cheers
James

Similar Messages

  • Why is the LookUp object in the Flow Task of my SSIS package going red (and not working) ? Sql Server 2008 R2

    I have been working with the Sql Server 2008 R2 SSIS Tutorial at
    https://msdn.microsoft.com/en-us/library/ms170419(v=sql.105).aspx
    --specifically -- Lesson 1.  I have been having some problems with this lesson where the source data from the samples download doesn’t exactly match the data described in the tutorial, and the tables in the tutorial are different from what
    is contained in AdventureWorksDW (tutorial refers to DimTime – AdventureWorksDW contains DimDate and no DimTime).  
    So, after futzing in BI with this tutorial  so that I can at least get it to run in Debug – it errors out on the 2<sup>nd</sup> LookUp object.
    Rather than looking for a fix to the problem(s) that I am having between the tutorial and the stuff I downloaded in the samples --
     I want “Adapt” the tutorial so I can use the stuff I downloaded and hopefully learn how to use SSIS with the elements (source data and tables) that are present on my workstation. 
    Here is a description of what is going on for me – which I really don’t understand what is going on in BI – based on the images below – like what columns (from what tables) are they associating to in the OleDB Destination? 
    Note:  the sql in the LookUps here is the sql that I copied from the tutorial. 
    I probably need to modify these sql statements – so -- the help I am requesting is to make the required modifications/changes
     so that I can adapt this tutorial with the stuff that’s on my workstation.
    I downloaded the samples and the AdventureWorksDW mdf for Sql Server 2008 R2. 
    It turns out that in the tutorial it wants me to select a DimTime table, but the version of the AdventureWorksDW db does not contain a DimTime table. 
    Instead, it contains a DimDate table.  So I tried adapting DimDate for the tutorial. 
    Additionally, the sample data file -- SampleCurrencyData.txt -- has slightly different data types than the types described in the tutorial, so I selected data types for the columns in the datasource text file that would work in BI would to
    connect column from source data file to the table.
    After finishing all the steps for Lesson 1 -- when I tried debugging the package – and it error'd out on  the 2<sup>nd</sup> Lookup object whichwent red.
      I edited the lookups and the sample Ole DB Destination to "ignore on fail” and I did all
     green but the FactCurrencyRate table is not being populated -- as described in the tutorial, so I reset the on error back to default (Fail on error option).   And based on this tutorial -- I believe FactCurrencyRate
    table is the table which is supposed to be populated with the data from SampleCurrencyData.txt?
    In the sample data file that downloaded with all the samples  I removed all the data from the text file except for 6 rows, so instead of the original 1100 or so rows, I have only 6 rows of data in the source data file (just to keep things
    simple for debugging for now).  I did not modify the data itself. 
    Here is what the (raw) data contained in SampleCurrencyData.txt looks like (from the samples that I downloaded from codeplex) – it’s supposed to be 4 columns of data – float, nvarchar, datetime, float:
    0.281690141       USD      
    6/26/2004 0:00  0.281713948
    0.281690141       USD      
    6/27/2004 0:00  0.281642539
    0.281690141       USD      
    6/28/2004 0:00  0.281761573
    0.283286119       USD      
    6/29/2004 0:00  0.283221933
    0.283286119       USD      
    6/30/2004 0:00  0.283358363
    0.281690141       USD      
    7/1/2004 0:00     0.281682206
    Below are images of my BI Layout for Lesson 1 from this tutorial -- the FlatFile and configurations for On Fail Error, A Flow task, the 2 LookUps (CurrencyKey and DataKey), the OleDB Destination configuration, the Design view of the associated tables and
    the Debug Run of Lesson 1, and the following error messages. My goal is to figure out what is going on in BI for this tutorial.
    Error: 0xC020901E at Extract Sample Currency Data, Lookup Datakey [51]: Row yielded no match during lookup.
    Error: 0xC0209029 at Extract Sample Currency Data, Lookup Datakey [51]: SSIS Error Code DTS_E_INDUCEDTRANSFORMFAILUREONERROR. 
    The "component "Lookup Datakey" (51)" failed because error code 0xC020901E occurred, and the error row disposition on "output "Lookup Match Output" (53)" specifies failure on error. An error occurred on the specified
    object of the specified component.  There may be error messages posted before this with more information about the failure.
    Error: 0xC0047022 at Extract Sample Currency Data, SSIS.Pipeline: SSIS Error Code DTS_E_PROCESSINPUTFAILED. 
    The ProcessInput method on component "Lookup Datakey" (51) failed with error code 0xC0209029 while processing input "Lookup Input" (52). The identified component returned an error from the ProcessInput method. The error is specific
    to the component, but the error is fatal and will cause the Data Flow task to stop running. 
    There may be error messages posted before this with more information about the failure.
    --this is the flat file
     -- SampleCurrencyData.txt (which only contains 6 data rows for my purposes)
    --and here is where I assign the data types for the colums of -- SampleCurrencyData.txt
    This is the first LookUp Object -- LookUp Currency Key – The DB contains DimCurrency table. 
    I copied the sql from the tutorial here.
    I actually have a DimCurrency table in my copy of AdventureWorksDW. 
    Here’s the design view of DimCurrency and a sample of the data contained in DimCurrency and the On Fail configuration
    I actually have a DimCurrency table in my copy of AdventureWorksDW. 
    Here’s the design view of DimCurrency and a sample of the data contained in DimCurrency and the On Fail configuration
    --Here is what the data looks like in the DimCurrency table
    --2<sup>nd</sup> LookUp object  -- LookUp Data Key – this is the LookUp
     where BI errors out on Debug
    --it appears this lookup is referencing the DimDate table – which I DO have in the DB.
    --I can’t find the following sql in the tutorial, so I suppose BI added the sql (did it?)
    --Here's how I configured for On Error
    --Here is DimDate table in Design view
    --Here is a sample of the original data contained in DimData
    OleDB Destination
    --Here is where I get lost a bit – what is going on in the destination here?
    --Here's my On Error configuraino
    --and here is the FactCurrencyRate table
    --and here is a sample of the data contained in FactCurrencyRate
    Rich P

    Thank you for your reply.  I changed the error handling as you suggested on the 2nd lookup to redirect to unmatched rows.  Now I get all greet.  I don't have the conditional split as in your diagram.  But also, nothing appears to have
    happened in the DB.  Aren't the rows in my text file supposed to be added to the FactCurrencyRate table?
    How do I get a conditional split?
    Rich P
    OK, sorry I forgot to reply you back.
    Conditional Split was just dummy task. Ignore it.
    Manipulate the data in such way that you get matching records.
    Inside Source, for first 2 rows I put the dates which are available in DimDate.
    1.00010001,ARS,7/1/2005 0:00,0.99960016
    1.00010001,ARS,2/5/2006 0:00,1.001001001
    1.00020004,ARS,9/5/2001 0:00,0.99990001
    1.00020004,ARS,9/6/2001 0:00,1.00040016
    1.00050025,ARS,9/7/2001 0:00,0.99990001
    1.00050025,ARS,9/8/2001 0:00,1.001001001
    Then in OLE DB Destination, I loaded the rows to TestFactTable.
    (Now, you don't even need NO MATCH OUTPUT as there are matching records here)
    Cheers,
    Vaibhav Chaudhari
    [MCTS],
    [MCP]

  • How do I find the lookup history in the dictionary come with OSX 10.6?

    I have spent couple of days to find out how to get the lookup history in the dictionary but with no luck.
    The dictionary come with the OS X is brilliant. For the purpose of review the words I have lookup before, I guess there must be a way to check the history, as every time when u put the '<' button on the application, u will be able to find the words u searched recently. I wonder where the app keeps those information, so I can copy them out to a list.
    Thanks a lot!

    For all the machines that are the same, set one up the way you want and use Firewire cable between two iMac's.
    Hold T boot the second iMac into Firewire Traget Disk Mode, it's boot drive appears on the desktop of the first iMac.
    Next install Carbon Copy Cloner on the first iMac, talk with them about a volume license as your going to need it.
    Use the default CCC setting and CCC the first iMac to the second iMac's boot drive. All accounts, programs and data on the second iMac will be erased for what's on the first iMac.
    Now take those two iMac's and CCC to 2 more iMac's, then those 4 to 4 others, and that 8 to 8 others and so forth. Should be done in a day.
    On each machine your going to have to setup a different named account for each machine if they are going to be networked, the process above is for main Admin user, programs and OS X transfer.
    This method only works via the exact same model/year of Mac's, won't work if they are different, for that you setup a new one and clone that to similar machines of the model/year.
    If your uncertain, look under Apple menu about this Mac > more info for a model like "iMac 4,1" for instance.
    Good Luck

  • Could not lookup PortalManagerHome in the JNDI tree using EJB reference java:comp/env/ejb/PortalManager

    Hi
    I am just a starter on WLPortal.
    I have created a barebone Application from scratch. I have synchronized it properly
    from EBCC to WLP. But When I am trying to access the home page of my application,
    I am getting from stack trace -
    <Nov 6, 2002 5:37:59 PM IST> <Error> <PortalAppflow> <Could not lookup PortalManagerHome
    in the JNDI tree using EJB reference java:comp/env/ejb/PortalManager.
    javax.naming.NameNotFoundException: Unable to resolve comp/env/ejb/PortalManager
    Resolved: 'comp/env' Unresolved:'ejb' ; remaining name 'PortalManager'
    at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:802)
    at weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:209)
    at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:173)
    at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:181)
    at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:181)
    at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:323)
    at weblogic.jndi.factories.java.ReadOnlyContextWrapper.lookup(ReadOnlyContextWrapper.java:36)
    at weblogic.jndi.internal.AbstractURLContext.lookup(AbstractURLContext.java:124)
    at javax.naming.InitialContext.lookup(InitialContext.java:350)
    at com.bea.p13n.util.JndiHelper.lookupNarrow(JndiHelper.java:96)
    at com.bea.portal.appflow.PortalAppflowHelper.<clinit>(PortalAppflowHelper.java:64)
    at com.bea.portal.appflow.servlets.internal.PortalWebflowServlet.init(PortalWebflowServlet.java:78)
    at javax.servlet.GenericServlet.init(GenericServlet.java:258)
    at weblogic.servlet.internal.ServletStubImpl.createServlet(ServletStubImpl.java:700)
    at weblogic.servlet.internal.ServletStubImpl.createInstances(ServletStubImpl.java:643)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:588)
    at weblogic.servlet.internal.ServletStubImpl.getServlet(ServletStubImpl.java:368)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:242)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:215)
    at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:112)
    at jsp_servlet.__index._jspService(__index.java:92)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:304)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2459)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2039)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    >
    <Nov 6, 2002 5:37:59 PM IST> <Error> <HTTP> <[WebAppServletContext(19695286,FirstWebApp,/FirstWebApp)]
    Servlet failed with Exception
    java.lang.NullPointerException:
    at com.bea.portal.appflow.PortalAppflowHelper.createPortalManager(PortalAppflowHelper.java:82)
    at com.bea.portal.appflow.servlets.internal.PortalWebflowServlet.setupPortalRequest(PortalWebflowServlet.java:187)
    at com.bea.portal.appflow.servlets.internal.PortalWebflowServlet.doGet(PortalWebflowServlet.java:99)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:215)
    at weblogic.servlet.jsp.PageContextImpl.forward(PageContextImpl.java:112)
    at jsp_servlet.__index._jspService(__index.java:92)
    at weblogic.servlet.jsp.JspBase.service(JspBase.java:27)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:265)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:304)
    at weblogic.servlet.internal.ServletStubImpl.invokeServlet(ServletStubImpl.java:200)
    at weblogic.servlet.internal.WebAppServletContext.invokeServlet(WebAppServletContext.java:2459)
    at weblogic.servlet.internal.ServletRequestImpl.execute(ServletRequestImpl.java:2039)
    at weblogic.kernel.ExecuteThread.execute(ExecuteThread.java:139)
    at weblogic.kernel.ExecuteThread.run(ExecuteThread.java:120)
    When I decompiled the class PortalAppflowHelper, I found a static block in it,
    which was as under-
    static
    debug = Debug.getInstance(com.bea.portal.appflow.PortalAppflowHelper.class);
    try
    if(debug.ON)
    debug.out("Looking up PortalManagerHome using EJB reference java:comp/env/ejb/PortalManager");
    portalManagerHome = (PortalManagerHome)JndiHelper.lookupNarrow("java:comp/env/ejb/PortalManager",
    com.bea.portal.manager.ejb.PortalManagerHome.class);
    if(debug.ON)
    debug.out("Successfully retrieved PortalManagerHome " + portalManagerHome);
    catch(Exception e)
    PortalAppflowLogger.errorFindingPortalManagerHome("java:comp/env/ejb/PortalManager",
    e);
    I have checked the PortalManager's JNDI name on WLConsole. Its ${APPNAME}.BEA_portal.PortalManager.
    Should I change it?
    When I tried to change it, I started getting other weird errors.
    Thanks
    Neeraj Hans

    Neeraj -
    The Portal framework code (including PortalAppflowHelper) uses ejb
    references to find the PortalManager (and other EJBs) from servlets and
    taglibs; that is what is signified by the java:comp/env/... name.
    Since you built your webapp from scratch (instead of using the portal
    wizard), you will need to make sure the you have the appropriate
    <ejb-ref> entries in your web.xml, and the corresponding
    <ejb-reference-description> entries in your weblogic.xml. By default,
    you will need at least mappings for:
    - ejb/PortalManager
    - ejb/UserManager
    - ejb/GroupManager
    - ejb/PipelineExecutor
    - ejb/EventService
    See either the resulting webapp from using the portal wizard or
    BEA_HOME/weblogic700/samples/portal/sampleportalDomain/beaApps/sampleportal/sampleportal/WEB-INF
    for example syntax.
    Greg
    Neeraj Hans wrote:
    Hi
    I am just a starter on WLPortal.
    I have created a barebone Application from scratch. I have
    synchronized it properly
    from EBCC to WLP. But When I am trying to access the home page of my
    application,
    I am getting from stack trace -
    <Nov 6, 2002 5:37:59 PM IST> <Error> <PortalAppflow> <Could not lookup
    PortalManagerHome
    in the JNDI tree using EJB reference java:comp/env/ejb/PortalManager.
    javax.naming.NameNotFoundException: Unable to resolve
    comp/env/ejb/PortalManager
    Resolved: 'comp/env' Unresolved:'ejb' ; remaining name 'PortalManager'
    at <stack trace lines snipped>
    When I decompiled the class PortalAppflowHelper, I found a static
    block in it,
    which was as under-
    static
    debug =
    Debug.getInstance(com.bea.portal.appflow.PortalAppflowHelper.class);
    try
    if(debug.ON)
    debug.out("Looking up PortalManagerHome using EJB
    reference java:comp/env/ejb/PortalManager");
    portalManagerHome =
    (PortalManagerHome)JndiHelper.lookupNarrow("java:comp/env/ejb/PortalManager",
    com.bea.portal.manager.ejb.PortalManagerHome.class);
    if(debug.ON)
    debug.out("Successfully retrieved PortalManagerHome "
    + portalManagerHome);
    catch(Exception e)
    PortalAppflowLogger.errorFindingPortalManagerHome("java:comp/env/ejb/PortalManager",
    e);
    I have checked the PortalManager's JNDI name on WLConsole. Its
    ${APPNAME}.BEA_portal.PortalManager.
    Should I change it?
    When I tried to change it, I started getting other weird errors.
    Thanks
    Neeraj Hans

  • How to populate the main table and the lookup's at the same time

    Hi ,
       What I have with me is the XML files which contain the data from the material master and the excel sheet which talks about the mapping . it basically tells me which field of the main table maps to which field of which segment in the IDOC and also the name of the table and the field in the R3 system .
    I wish to use this info to populate the data in the material repository .
    - How can I populate the data in the lookup table at the same time when I am populating the main table ? I have only the XML's that correspond to the main table . I don't have seperate data for the lookup tables .
    - Can I use the standard maps available for import in the business content of material repository in MDM ?
    - If the answer to the second question is NO then I think i can create the maps and save them for future use .
    Regards
    Deepak Singh

    Hi, Deepak
    >>> - How can I populate the data in the lookup table at the same time when I am populating the main table ? I have only the XML's that correspond to the main table . I don't have seperate data for the lookup tables .
    I don't think you can populate both main table and all fields of lookup tables at the same time, i.e. using same map. You can consider 2 options to upload all information you have:
    1) If your XML file contains data you would like to upload to lookup tables, you can upload it to MDM lookup tables with several maps using same XML and choosing different sections of that XML corresponding to different MDM lookup tables.
    2) Also you can upload main table simultaneously with lookup table entries (using same map), but in this case new lookup table entries will only contain display field values that you mapped. To do this you should use 'Add' value mapping functionality for fields that you mapped to lookup tables.
    >>>- Can I use the standard maps available for import in the business content of material repository in MDM ?
    1) In case you have material master repository delivered by SAP and you use XML files which structure corresponds to SAP predelivered XSD schemas then you can use these maps undoubtedly.
    2) If your repository is based on SAP predelivered, but you changed it ,you should adjust these maps due to differences in repository structure and  XML files structure.
    3) If you created your repository from scratch you should consider option of making your own import maps.
    Regards,
    Vadim Kalabin

  • CSV Lookup to validate the .TXT file

    Hi All,
    I am trying to validate the input file's A.txt customerID to other existing B.txt files CutomerID. Once if the input file matches the target files customerID then I am going write this output file as C.txt file.
    Hope we can do this with the help of CVS Lookup. If we need to use the CVS Lookup what all are the thing need to setup and how I need to create a .java file in NWDS or just any text editor I can achieve this? And I can import it in the Imported Achieves in ESR.
    We can do this using the UDF.
    I checked all the below links and I am not clear about this.
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417300)ID1453571650DB01760580483263408018End?blog=/pub/wlg/2800
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417300)ID1453571650DB01760580483263408018End?blog=/pub/wlg/2926
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417300)ID1453571650DB01760580483263408018End?blog=/pub/wlg/2781
    I checked with other blog too and they are importing some java .jar file as a DRIVER  in the Imported Archive. Where can I get that DRIVER.jar file to import it in to my Imported Archive in ESR.
    Please can any one throw the light on it. Thanks for all you inputs.
    Thanks,
    Jane F.
    Edited by: Jane Fraga on Oct 7, 2009 5:12 PM

    Hi Ramesh,
    Yes I can understand that, their is no CSV Lookup. Instead of that in this examples they are using the JDBC Lookup and check the CSV or txt file.
    Can you check this blog:
    http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=(J2EE3417300)ID1453571650DB01760580483263408018End?blog=/pub/wlg/2800
    He is using the DRIVER file in the Imported Archives in ESR. Name of the imported file is DRIVERS.
    [Message from the above blog:
    Once we have the Driver we have to import that jar file in the Imported Archive area available in the Integration Repository.
    Once we have imported this file now we can consider the CSV file as a Database table and access it in the Mapping program using a simple user-defined java program. ]
    Thanks,
    Jane F.

  • Limit the time of lookup and make the method to throw an Exception

    When I connect from
    Client
    Remote Desktop Client
    Server:
    SUN JAVA SYSTEM APPLICATION SERVER 9.0
    Initial Context object is initialized as per below coding,
    System.setProperty("org.omg.CORBA.ORBInitialHost", prop.getProperty("hostName"));
    System.setProperty("org.omg.CORBA.ORBInitialPort", prop.getProperty("portNumber"));
    InitialContext ctx = new InitialContext();
    while .lookup("globalJndiNameForSessionBean") method is invoked on the InitialContext object and if the server is not available, it is throwing non stop error.
    Please tell me wether I have to add any other Properties to limit the time of lookup and make the method to throw an Exception after two or three second, if the server is not available.

    What do you mean by 'non-stop error'? This can only happen if your code goes into a non-stop loop.
    The default TCP connect timeout is about 75 seconds, which in some circumstances is too long, but two or three seconds definitely isn't long enough. Ten to twenty would be more like it.
    I'm not aware of any system properties that limit the ORB connect timeout but then I'm not aware where the existing J2SE ORB system properties are documented. If anybody has ever found this please let us know.

  • Lookup field to the same list - bug in IE

    Hi!
    I have a list and lookup field refers to the same list. If I add items with the same name, then the dropdown list for this field on the new\edit form stops functioning in IE.
    Unable to get property 'split': null or undefined​ 
    core.js line 2...
    In other browser everything ok. So, it seems bug in IE.
    May be there some fix? Please advice

    Hi,
    Per my understanding, there is a lookup field in the current list which lookup a filed in the same list. When add item with same name as the previous item, new/edit
    form stop functioning in IE.
    What version of IE in use in your environment?
    I tried to reproduce this issue in IE 8+ versions, it turns out that all works without issue:
    List view page:
    NewForm page:
    Feel free to reply if there any progress.
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • BPEL designer default relative URI when importing wsdl

    I'm using BPEL designer 10.1.3.1.0 The designer generated a reference service wsdl file "MyServiceRef.wsdl" that imports the service "MyService.wsdl" I intended to use.
    The import line reads like:
    <import namespace="http://my.namespace/" location="../public_html/WEB-INF/wsdl/MyService.wsdl"/>
    When deploying the BPEL project, I got error that "Failed to read wsdl", in which the deploying process looked for the wsdl file at location
    <BPEL HOME>\domains\default\tmp\.bpel_ProjectName_ff8d276f54525c078b0828ce6f764002.tmp
    I tried to modify the line to use the full URI to point to the correct location but it wouldn't compile. Can someone help point out what is wrong?
    Thanks,
    Wen

    1. The web service "MyService" was generated using BPEL designer's wizard: New -> Business Tier -> Java Web Services (There's one java class compiled within the project.)
    2. When I was adding the service into my BPEL flow, jdeveloper automatically generated the reference "MyServiceRef" as mentioned in the first post. This reference service imports MyService, at relative URI as correctly described in the import statement.
    3. Compiling the BPEL ->success
    4. Deploying BPEL, somehow it looks for MyService.wsdl at a wrong location
    MyService.wsdl
    <definitions
    name="MyService"
    targetNamespace="http://my.target/"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:tns="http://my.target/"
    xmlns:soap12="http://schemas.xmlsoap.org/wsdl/soap12/"
    xmlns:mime="http://schemas.xmlsoap.org/wsdl/mime/"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    >
    <types>
    <schema xmlns="http://www.w3.org/2001/XMLSchema">
    <import namespace="http://my.namespace/FlowName" schemaLocation="FlowName.xsd"/>
    </schema>
    <schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="http://my.target/"
    elementFormDefault="qualified" xmlns:tns="http://my.namespace/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:soap11-enc="http://schemas.xmlsoap.org/soap/encoding/">
    <import namespace="http://my.namespace/FlowName" schemaLocation="FlowName.xsd"/>
    <element name="Demo_ServiceElement">
    <complexType>
    <sequence>
    <element name="String_1" type="string" nillable="true"/>
    <element name="String_2" type="string" nillable="true"/>
    </sequence>
    </complexType>
    </element>
    <element name="Demo_ServiceResponseElement">
    <complexType>
    <sequence>
    <element name="result" type="string" nillable="true"/>
    </sequence>
    </complexType>
    </element>
    </schema>
    </types>
    <message name="MyService_Demo_Service">
    <part name="parameters" element="tns:Demo_ServiceElement"/>
    </message>
    <message name="MyService_Demo_ServiceResponse">
    <part name="parameters" element="tns:Demo_ServiceResponseElement"/>
    </message>
    <portType name="MyService">
    <operation name="Demo_Service">
    <input message="tns:MyService_Demo_Service"/>
    <output message="tns:MyService_Demo_ServiceResponse"/>
    </operation>
    </portType>
    <binding name="MyServiceSoapHttp" type="tns:MyService">
    <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
    <operation name="Demo_Service">
    <soap:operation soapAction="http://oracle.crm.dnbconnect//Demo_Service"/>
    <input>
    <soap:body use="literal"/>
    </input>
    <output>
    <soap:body use="literal"/>
    </output>
    </operation>
    </binding>
    <service name="MyService">
    <port name="MyServiceSoapHttpPort" binding="tns:MyServiceSoapHttp">
    <soap:address location="http://130.35.75.232:8888/QuickStartWrkspc-DnBFlow-context-root/MyServiceSoapHttpPort"/>
    </port>
    </service>
    </definitions>
    Error:
    #### Deployment incomplete. ####
    BUILD FAILED
    D:\work\jdevhome\jdev\mywork\QuickStartWrkspc\FlowName\build.xml:79: A problem occured while connecting to server "localhost" using port "8888": bpel_FlowName_1.0.jar failed to deploy. Exception message is: ORABPEL-05215
    Error while loading process.
    The process domain encountered the following errors while loading the process "FlowName" (revision "1.0"): Failed to read wsdl.
    Error happened when reading wsdl at "D:\product\10.1.3.1\OracleAS_1\bpel\domains\default\tmp\.bpel_FlowName_1.0_ff8d276f54525c078b0828ce6f764002.tmp\MyServiceRef.wsdl", because "Error reading import of file:/D:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/.bpel_FlowName_1.0_ff8d276f54525c078b0828ce6f764002.tmp/MyServiceRef.wsdl: Failed to read wsdl file at: "file:/D:/product/10.1.3.1/OracleAS_1/bpel/domains/default/tmp/public_html/WEB-INF/wsdl/MyService.wsdl", caused by: java.io.FileNotFoundException. : D:\product\10.1.3.1\OracleAS_1\bpel\domains\default\tmp\public_html\WEB-INF\wsdl\MyService.wsdl (The system cannot find the path specified)".
    Make sure wsdl exists at that URL and is valid.

  • [Error] No value found in the Gateway. Default value in the repository is used.

    Hi All,
    I am new to Siebel and installed Siebel 8.1.1.11 on RHEL 5.5 (64 bit). Everything is fine Siebel server and gateway server are up and running but i am unable to open login page.
    Login Error : The server you are trying to access is either busy or experiencing difficulties. Please close the Web browser, open a new browser window, and try logging in again.[15:36:09]
    Siebel Server log file error :
    GenericLog
    GenericError
    1
    00006c5c52eb6e6f:0
    2014-01-31 13:06:04
    (sccnmsys.cpp (1306) err=2883609 sys=0) SBL-SCC-00025: No value found in the Gateway. Default value in the repository is used.
    GenericLog
    GenericError
    1
    00006c6352eb6e6f:0
    2014-01-31 13:06:04
    (sccnmsys.cpp (1306) err=2883609 sys=0) SBL-SCC-00025: No value found in the Gateway. Default value in the repository is used.
    GenericLog
    GenericError
    1
    00006c6452eb6e6f:0
    2014-01-31 13:06:04
    (sccnmsys.cpp (1306) err=2883609 sys=0) SBL-SCC-00025: No value found in the Gateway. Default value in the repository is used.
    GenericLog
    GenericError
    1
    00006c6552eb6e6f:0
    2014-01-31 13:06:04
    (sccnmsys.cpp (1306) err=2883609 sys=0) SBL-SCC-00025: No value found in the Gateway. Default value in the repository is used.
    GenericLog
    GenericError
    1
    00006c6652eb6e6f:0
    2014-01-31 13:06:04
    (sccnmsys.cpp (1306) err=2883609 sys=0) SBL-SCC-00025: No value found in the Gateway. Default value in the repository is used.
    GenericLog
    GenericError
    1
    00006c7152eb6e6f:0
    2014-01-31 13:06:04
    (sccnmsys.cpp (1306) err=2883609 sys=0) SBL-SCC-00025: No value found in the Gateway. Default value in the repository is used.
    GenericLog
    GenericError
    1
    00006c8052eb6e6f:0
    2014-01-31 13:06:04
    (sccnmsys.cpp (1306) err=2883609 sys=0) SBL-SCC-00025: No value found in the Gateway. Default value in the repository is used.
    GenericLog
    GenericError
    1
    00006c8152eb6e6f:0
    2014-01-31 13:06:04
    (sccnmsys.cpp (1306) err=2883609 sys=0) SBL-SCC-00025: No value found in the Gateway. Default value in the repository is used.
    GenericLog
    GenericError
    1
    00006c9052eb6e6f:0
    2014-01-31 13:06:04
    (sccnmsys.cpp (1306) err=2883609 sys=0) SBL-SCC-00025: No value found in the Gateway. Default value in the repository is used.
    GenericLog
    GenericError
    1
    00006c9152eb6e6f:0
    2014-01-31 13:06:04
    (sccitems.cpp (310) err=2555932 sys=0) SBL-SCM-00028: Key not found
    GenericLog
    GenericError
    1
    00006c9152eb6e6f:0
    2014-01-31 13:06:04
    (sccconfg.cpp (2149) err=2555932 sys=0) SBL-SCM-00028: Key not found
    I can connect to Siebel Server manager using command as : srvrmgr /g 192.168.0.163 /e Sieb81 /u SADMIN /p SADMIN
    ODBC connectivity is also ok  and i can connect as : ./odbcsql /source Sieb81_DSN /u SADMIN /p SADMIN
    While installing Siebel i had left one step i .e.. creation of siebenv.sh using CreateSiebSrvrEnvScript because i got error when executed this script as :
    Execution command : ./CreateSiebSrvrEnvScript /u01/siebel/ses/siebsrvr  192.168.0.163:2320 ENU Oracle
    Error : cp: cannot copy a directory, '/u01/siebel/ses/siebsrvr/locale/' , into itself , '/u01/siebel/ses/siebersrvr/locale/C/locale'
    Please suggest me what to do because if i want to configure again the same issue with CreateSiebSrvrEnvScript.
    Message was edited by: Prabhakar2991

    Hi Prameela,
    You can see all application objects are online and running. One more thing I have also checked ODBC is also working fine. I mean , user SADMIN can connect using ODBC.
    =====================================================================================================================================
    [oracle@siebel163 siebsrvr]$ srvrmgr /g 192.168.0.163 /e Sieb81 /u SADMIN /p SADMIN
    Siebel Enterprise Applications Siebel Server Manager, Version 8.1.1.11 [23030] LANG_INDEPENDENT
    Copyright (c) 1994-2012, Oracle. All rights reserved.
    The Programs (which include both the software and documentation) contain
    proprietary information; they are provided under a license agreement containing
    restrictions on use and disclosure and are also protected by copyright, patent,
    and other intellectual and industrial property laws. Reverse engineering,
    disassembly, or decompilation of the Programs, except to the extent required to
    obtain interoperability with other independently created software or as specified
    by law, is prohibited.
    Oracle, JD Edwards, PeopleSoft, and Siebel are registered trademarks of
    Oracle Corporation and/or its affiliates. Other names may be trademarks
    of their respective owners.
    If you have received this software in error, please notify Oracle Corporation
    immediately at 1.800.ORACLE1.
    Type "help" for list of commands, "help <topic>" for detailed help
    Connected to 1 server(s) out of a total of 1 server(s) in the enterprise
    srvrmgr> list components
    SV_NAME     CC_ALIAS                   CC_NAME                                              CT_ALIAS         CG_AL                       IAS        CC_RUNMODE   CP_DISP_RUN_STATE  CP_STARTMODE  CP_NUM_RUN_TASKS  CP_MAX_TASKS  CP_ACTV_MTS_PROCS  CP_MAX                       _MTS_PROCS  CP_START_TIME        CP_END_TIME  CC_INCARN_NO  CC_DESC_TEXT
    siebelsrvr  BusIntBatchMgr             Business Integration Batch Manager                   BusSvcMgr        EAI                                    Batch        Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  BusIntMgr                  Business Integration Manager                         BusSvcMgr        EAI                                    Batch        Not Online         Auto          0                 20            0                  1                                        2014-01-29 02:48:30
    siebelsrvr  SCCObjMgr_enu              Call Center Object Manager (ENU)                     AppObjMgr        CallC                       enter      Interactive  Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  CustomAppObjMgr_enu        Custom Application Object Manager (ENU)              CustomAppObjMgr  EAI                                    Interactive  Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  DQMgr                      Data Quality Manager                                 Dqmgr            DataQ                       ual        Batch        Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  EAIObjMgr_enu              EAI Object Manager (ENU)                             EAIObjMgr        EAI                                    Interactive  Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  InfraEAIOutbound           EAI Outbound Server                                  BusSvcMgr        EAI                                    Batch        Not Online         Auto          0                 20            0                  1                                        2014-01-29 02:48:30
    siebelsrvr  EIM                        Enterprise Integration Mgr                           EIM              EAI                                    Batch        Online             Auto          0                 5                                                                         2014-01-29 02:48:30
    siebelsrvr  FSMSrvr                    File System Manager                                  FSMSrvr          Syste                       mAux       Batch        Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:25
    siebelsrvr  GenTrig                    Generate Triggers                                    GenTrig          Workf                       low        Batch        Online             Auto          0                 1                                                                         2014-01-29 02:48:30
    siebelsrvr  JMSReceiver                JMS Receiver                                         EAIJMSRcvr       EAI                                    Batch        Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  MqSeriesAMIRcvr            MQSeries AMI Receiver                                EAIRcvr          EAI                                    Background   Online             Auto          0                 20                                                                        2014-01-29 02:48:30
    siebelsrvr  MqSeriesSrvRcvr            MQSeries Server Receiver                             EAIRcvr          EAI                                    Background   Online             Auto          0                 20                                                                        2014-01-29 02:48:30
    siebelsrvr  MSMQRcvr                   MSMQ Receiver                                        EAIRcvr          EAI                                    Background   Online             Auto          0                 20                                                                        2014-01-29 02:48:30
    siebelsrvr  SMQReceiver                SMQ Receiver                                         EAIRcvr          EAI                                    Background   Online             Auto          0                 20                                                                        2014-01-29 02:48:30
    siebelsrvr  SServiceObjMgr_enu         Self Service Object Manager (ENU)                    AppObjMgr        CallC                       enter      Interactive  Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  ServerMgr                  Server Manager                                       ServerMgr        Syste                       m          Interactive  Running            Auto          2                 20                                                                        2014-01-29 02:48:20
    siebelsrvr  SRBroker                   Server Request Broker                                ReqBroker        Syste                       m          Interactive  Running            Auto          25                100           1                  1                                        2014-01-29 02:48:20
    siebelsrvr  SRProc                     Server Request Processor                             SRProc           Syste                       mAux       Interactive  Running            Auto          2                 20            1                  1                                        2014-01-29 02:48:25
    siebelsrvr  SvrTblCleanup              Server Tables Cleanup                                BusSvcMgr        Syste                       mAux       Background   Running            Auto          1                 1                                                                         2014-01-29 02:48:25
    siebelsrvr  SvrTaskPersist             Server Task Persistance                              BusSvcMgr        Syste                       mAux       Background   Running            Auto          1                 1                                                                         2014-01-29 02:48:25
    siebelsrvr  AdminNotify                Siebel Administrator Notification Component          AdminNotify      Syste                       mAux       Batch        Online             Auto          0                 10            1                  1                                        2014-01-29 02:48:25
    siebelsrvr  SCBroker                   Siebel Connection Broker                             SCBroker         Syste                       m          Background   Running            Auto          1                 1                                                                         2014-01-29 02:48:20
    siebelsrvr  WorkActn                   Workflow Action Agent                                WorkActn         Workf                       low        Background   Online             Auto          0                 5                                                                         2014-01-29 02:48:30
    siebelsrvr  WorkMon                    Workflow Monitor Agent                               WorkMon          Workf                       low        Background   Online             Auto          0                 5                                                                         2014-01-29 02:48:30
    siebelsrvr  WfProcBatchMgr             Workflow Process Batch Manager                       BusSvcMgr        Workf                       low        Batch        Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  WfProcMgr                  Workflow Process Manager                             BusSvcMgr        Workf                       low        Batch        Not Online         Auto          0                 20            0                  1                                        2014-01-29 02:48:30
    siebelsrvr  WfRecvMgr                  Workflow Recovery Manager                            BusSvcMgr        Workf                       low        Batch        Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  eChannelCMEObjMgr_enu      eChannel Power Communications Object Manager (ENU)   AppObjMgr        Commu                       nications  Interactive  Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  eCommunicationsObjMgr_enu  eCommunications Object Manager (ENU)                 AppObjMgr        Commu                       nications  Interactive  Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  eCommWirelessObjMgr_enu    eCommunications for Wireless Object Manager (ENU)    AppObjMgr        Commu                       nications  Interactive  Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  eCustomerCMEObjMgr_enu     eCustomer Power Communications Object Manager (ENU)  AppObjMgr        Commu                       nications  Interactive  Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  eEnergyObjMgr_enu          eEnergy Object Manager (ENU)                         AppObjMgr        Commu                       nications  Interactive  Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  eMediaObjMgr_enu           eMedia Object Manager (ENU)                          AppObjMgr        Commu                       nications  Interactive  Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  eEnergyOGCObjMgr_enu       eOil Gas & Chemicals  Object Manager (ENU)           AppObjMgr        Commu                       nications  Interactive  Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  eSalesCMEObjMgr_enu        eSales Power Communications Object Manager (ENU)     AppObjMgr        Commu                       nications  Interactive  Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    siebelsrvr  eServiceObjMgr_enu         eService Object Manager (ENU)                        AppObjMgr        CallC                       enter      Interactive  Online             Auto          0                 20            1                  1                                        2014-01-29 02:48:30
    37 rows returned.
    srvrmgr>
    =======================================================================================================================================
    Please suggest me what to do.
    Thanks
    Prabhakar

  • Server 2012 R2 VDI with profile disks not using domain default profile

    I'm testing a VDI environment running on Windows Server 2012 R2. The VMs in the pool are running Windows 7.
    I've enabled profile disks for my test pool. I also have a domain default profile (stored under netlogon) that is used when creating profiles for new users.
    I've found that when a new user logs into the VDI pool, the domain default user profile is not being used to create the new profile. Can this be changed?

    Hi,
    I also have a domain default profile (stored under netlogon) that is used when creating profiles for new users.
    Place default profile under netlogon share doesn’t enable users to use it as their default user profiles, which only shares the profile contents to users who have access permissions.
    If you want to customize default user profile, please refer to this article below:
    Customize the Default User Profile by Using CopyProfile
    https://technet.microsoft.com/en-us/library/hh825135.aspx
    Best Regards,
    Amy
    Please remember to mark the replies as answers if they help and un-mark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]

  • Can new PWA views be created whereby a filter can be set and associate to the view by default? (Project Server 2013 ONLINE)

    My main question is: Can new PWA views be created whereby a filter for that view can be set, and associate to the view by default? (Project Server 2013 ONLINE)? and can I have a filter set to filter on person logged on to...
    In previous versions of Project Server, when CREATING a PWA view, we were able to apply/ define a filter for that view.  Does not seem like it is the case in Project Server 2013 Online.  And if I remember, we could also use the URL Guid_view_id. 
    Please confirm; and / or tell me how-to.
    What I was hoping to do is the following... Given that our standard that we have adopted for reporting time is 'My Timesheets' (fyi, Single Mode Entry=ON), we have some resources who have others who do it on their behalf via 'My Tasks' (ie., accomplished
    by using the 'Assignment Owner' field, accordingly).  Therefore, when entering time on someone else's behalf within 'My Tasks', we like to present the user that is logged in only the tasks that they are are assigned to update on others' behlaf.
    I know that there is another more elegant approach to doing this which may be to use the Delegation feature. But since we are trying to stick to Sharepoint Security mode for now, this is not an option for the time being.
    Any help appreciated would be greatly appreciated.
    \Spiro Theopoulos PMP, MCITP. Montreal, QC (Canada)

    Hi Spiro,
    1- You still can define in Project Online a filter in the view settings, it is located just above the category setting. Here is a screenshot of the summary project center view:
    2- The view GUID is not anymore in the URL, since the URL triggers an action only on the webpart and not on the whole page. I agree this is annoying since it was great to send a URL with a specific view.
    3- Concerning the access to my timesheet versus my task, I'm not sure to get a full understanding but on a general way, it is much more easy to deal with those situation using categories which you cannot do with the SP permission mode.
    Hope this helps,
    Guillaume Rouyre, MBA, MVP, P-Seller |

  • Farm Remote App 2012 R : Your system administrator does not allow the use of default credentials to log on to Work Resources

    Hi
    Here is the situation:
    I have a Farm with 3 servers W2012R2 in a Domain
    Server1                           Server 2                                  
    Server3
    RDSession Host            RDSession Host                            
    RDSession Host
    Connection Broker        Connection Broker (Passive)
    RD Web Access
    2 DNS Alias : - poc.mydomain.local (Use for the RD Web Access and points to Server1
                        -poccb.mydomain.local (Use for the Connection Broker and points to Server1)
    I have setup the Connection broker in HA with Server2 as Passive Server : DNS Round Robin poccb.mydomain.local (Server1)
    The certificate Manager has generated 2 CA certificates :
    - 1 for the RD Web Acc (poc.mydomain.local
    -1 for Connection Broker SSO and for publishing
    I have created 1 Group Policy for these 3 servers and 1 GP for my client Windows 7 SP1.
    Server GPO :
    Computer/Administrative Templates/Windows Components/Remote Desktop Services/Remote Desktop Session Host/Security
    Always prompt for password upon connection=Disabled
    Require use of specific security layer for remote (RDP) connections : SSL (TLS 1.0)
    Set client connection encryption level : High Level
    Client GPO
    Computer/Administrative Templates/System/Credentials Delegation = Allow delegating default credentials (Concatenate OS defaults with input above)
    TERMSRV/POCCB.mydomain.local
    I use no Gateway and in my collection,I have activated SSL (Like in my Server GPO)
    I have now problem with SSO.
    Connection with remote desktop client with server name = poccb.mydomain.local
    Your system administrator does not allow you the use of default credentials to log on to the remote computer poccb.mydomain.local because its identity is not fully verified
    If in my client GPO I add the physical name of the 3 servers, it works :
    TERMSRV/Server1
    TERMSRV/Server2
    TERMSRV/Server3
    Open RDP Files with server name = poccb.mydomain.local
    if my connection broker connects me on Server1 , no problem
    But If I arrive on Server2 & Server 3=
    Your system administrator does not allow the use of default credentials to log on to Work Resources
    I have searched on internet. No result for " to log on to Work Resources"
    Any idea ? Thanks for your help

    Hi,
    Thank you for posting in Windows Server Forum.
    Firstly check that, your user is using domain\username to enter the credential in the dialog box.
    Now for a try, you can edit .rdp file with notepad and just place “enablecredsspsupport:i:0” line in it, save it an launch to check whether you are facing same issue.
    As you are using windows 7 then upgrade to RDP 8.1. Also as you have already enter the FQDN name of server under “Allow delegating default credentials”. For a try please enable and configure for all the remaining settings as follow and check the result.
    Start / Run / gpedit.msc / Computer Configuration / Administrative Templates / System / Credentials Delegation, and make sure you have the following four options enabled and configured:
    Allow Delegating Default Credentials with NTLM-only Server Authentication
    Allow Delegating Default Credentials
    Allow Delegating Saved Credentials
    Allow Delegating Saved Credentials with NTLM-only Server Authentication
    Finally, open a command prompt and use “gpupdate /force” command to apply the policy directly.
    More information:
    Remote desktop credentials did not work
    Hope it helps!
    Thanks.
    Dharmesh Solanki

  • How to set the user's Default joboptions directory?

    Hello Experts,
    When we installed Acrobat Pro 8.x on our Win XP Pro systems our systems were NOT in a Windows Domain.  At that time the default location for user-created/customized joboptions files was:
    C:\Documents and Settings\<Username>\Application Data\Adobe\Adobe PDF\Settings
    where <Username> is the name of the LOCAL Windows user.
    A few years ago we migrated to a Windows Domain and converted our LOCAL users to domain users and disabled, but did not delete, the LOCAL user's account.  We did not remove the LOCAL user's Documents and Settings directory structure either.
    Our users now log into a DOMAIN rather than the LOCAL account.
    As a result of that process the user's Documents and Settings directory structure changed to;
      C:\Documents and Settings\<Username.DOMAINNAME>
    where DOMAINNAME is, of course, our Windows Domain Name.
    Now we are beginning to use Acrobat Distiller joboptions and I notice that when Acrobat/Distiller goes to save a user-created/customized joboptions file the default location has remained;
      C:\Documents and Settings\<Username>\Application Data\Adobe\Adobe PDF\Settings
    which is NOT the user who is logged in
    Acrobat/Distiller should use the Documents and Settings directory of the user who is actually logged in which is;
      C:\Documents and Settings\<Username.DOMAINNAME>\Application Data\Adobe\Adobe PDF\Settings
    This anomaly has created some confusion and appears to have created a dependency of the old LOCAL user's Documents and Settings directory preventing us from deleting it.
    Question:
    How can we force Acrobat/Distiller to use the Documents and Settings directory of the logged in user (eg: the Domain user)?
    In other words, how do we set the user's default joboptions directory?
    Pointers/tips/and tricks are most welcome.

    if the user is the one running the program, you can always get the home directory using System.getProperties ("user.home");
    If you are trying to get the properties of another user, you could try using setProperties to change the user name first, before getiting the home directory, but it probably won't work because of the security manager. You could read the /etc/passwd file and parse the path out, but once again, the user of the code would have to have appropriate permission.

  • Why must I set the AD as "default user store " when use Kerberos scheme ???

    Hi ,
    I am using kerberos scheme to authenticate user by OAM after user logged into the AD domain . It works well when there is only 1 AD domain ,for I can set that AD as the default identity store so that OAM can find user from the store and set the header .
    But when there are two totally different AD domains with different users , there will be a question. That is , I can only set one AD domain as the default identity store. So when I use the other AD domain to visit webgate protected resource, OAM notice me the the user/password error. But if the AD user exist in both AD domains, it will be OK, because the user mapping is finished correctly.
    logs here:
    [2011-07-26T22:19:18.599+08:00] [oam_server1] [ERROR] [OAMSSA-20040] [oracle.oam.user.identity.provider] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: cbefca7cded5e992:3fca7bfd:131657b3817:-8000-0000000000000c19,0] [APP: oam_server] Could not modify user attribute for user : sAMAccountName, attribute : smicer, value : {2} .
    [2011-07-26T22:19:18.600+08:00] [oam_server1] [ERROR] [] [oracle.oam.engine.authn] [tid: [ACTIVE].ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: <anonymous>] [ecid: cbefca7cded5e992:3fca7bfd:131657b3817:-8000-0000000000000c19,0] [APP: oam_server] Failure getting users by attribute : sAMAccountName, value : smicer.[[
    oracle.security.am.engines.common.identity.provider.exceptions.IdentityProviderException: OAMSSA-20016: Failure getting users by attribute : sAMAccountName, value : smicer.
         at oracle.security.am.engines.common.identity.provider.impl.UserProviderImpl.getUsersByAttribute(UserProviderImpl.java:342)
         at oracle.security.am.engines.common.identity.provider.impl.IdentityProviderImpl.getUsersByAttribute(IdentityProviderImpl.java:656)
         at oracle.security.am.engines.common.identity.provider.impl.OracleUserIdentityProvider.getUsersByAttribute(OracleUserIdentityProvider.java:288)
         at oracle.security.am.engine.authn.internal.executor.KerberosModuleExecutor.execute(KerberosModuleExecutor.java:254)
         at oracle.security.am.engine.authn.internal.executor.AuthenticationSchemeExecutor.execute(AuthenticationSchemeExecutor.java:94)
         at oracle.security.am.engine.authn.internal.controller.AuthenticationEngineControllerImpl.validateUser(AuthenticationEngineControllerImpl.java:261)
         at oracle.security.am.engines.enginecontroller.AuthnEngineController.authenticateUser(AuthnEngineController.java:669)
         at oracle.security.am.engines.enginecontroller.AuthnEngineController.processEvent(AuthnEngineController.java:294)
         at oracle.security.am.controller.MasterController.processEvent(MasterController.java:354)
         at oracle.security.am.controller.MasterController.processRequest(MasterController.java:517)
         at oracle.security.am.controller.MasterController.process(MasterController.java:457)
         at oracle.security.am.pbl.PBLFlowManager.delegateToMasterController(PBLFlowManager.java:209)
         at oracle.security.am.pbl.PBLFlowManager.handleBaseEvent(PBLFlowManager.java:147)
         at oracle.security.am.pbl.PBLFlowManager.processRequest(PBLFlowManager.java:107)
         at oracle.security.am.pbl.transport.http.AMServlet.handleRequest(AMServlet.java:168)
         at oracle.security.am.pbl.transport.http.AMServlet.doPost(AMServlet.java:133)
         at oracle.security.am.pbl.transport.http.AMServlet.doGet(AMServlet.java:673)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:183)
         at weblogic.servlet.internal.RequestDispatcherImpl.invokeServlet(RequestDispatcherImpl.java:523)
         at weblogic.servlet.internal.RequestDispatcherImpl.forward(RequestDispatcherImpl.java:253)
         at oracle.security.am.pbl.transport.http.CredCollectServlet.getCredentials(CredCollectServlet.java:148)
         at oracle.security.am.pbl.transport.http.CredCollectServlet.doPost(CredCollectServlet.java:84)
         at oracle.security.am.pbl.transport.http.CredCollectServlet.doGet(CredCollectServlet.java:71)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:227)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:125)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:300)
         at weblogic.servlet.internal.TailFilter.doFilter(TailFilter.java:26)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.am.agent.wls.filters.OAMServletAuthenticationFilter.doFilter(OAMServletAuthenticationFilter.java:265)
         at oracle.security.am.agent.wls.filters.OAMValidationSystemFilter.doFilter(OAMValidationSystemFilter.java:133)
         at oracle.security.wls.oamagent.OAMAgentWrapperFilter.doFilter(OAMAgentWrapperFilter.java:120)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.jps.ee.http.JpsAbsFilter$1.run(JpsAbsFilter.java:111)
         at java.security.AccessController.doPrivileged(Native Method)
         at oracle.security.jps.util.JpsSubject.doAsPrivileged(JpsSubject.java:313)
         at oracle.security.jps.ee.util.JpsPlatformUtil.runJaasMode(JpsPlatformUtil.java:413)
         at oracle.security.jps.ee.http.JpsAbsFilter.runJaasMode(JpsAbsFilter.java:94)
         at oracle.security.jps.ee.http.JpsAbsFilter.doFilter(JpsAbsFilter.java:161)
         at oracle.security.jps.ee.http.JpsFilter.doFilter(JpsFilter.java:71)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.servlet.DMSServletFilter.doFilter(DMSServletFilter.java:136)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.wrapRun(WebAppServletContext.java:3715)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3681)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:120)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2277)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2183)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1454)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:209)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:178)
    Caused by: oracle.security.idm.ObjectNotFoundException: No User found matching the criteria
         at oracle.security.idm.providers.stdldap.util.DirectSearchResponse.initSearch(DirectSearchResponse.java:174)
         at oracle.security.idm.providers.stdldap.util.NonPagedSearchResponse.<init>(NonPagedSearchResponse.java:52)
         at oracle.security.idm.providers.stdldap.util.NonPagedSearchResponse.<init>(NonPagedSearchResponse.java:43)
         at oracle.security.idm.providers.stdldap.util.LDAPRealm.searchUsers(LDAPRealm.java:489)
         at oracle.security.idm.providers.stdldap.LDIdentityStore.search(LDIdentityStore.java:274)
         at oracle.security.idm.providers.stdldap.LDIdentityStore.searchUsers(LDIdentityStore.java:367)
         at oracle.security.am.engines.common.identity.provider.impl.UserProviderImpl.getUsersByAttribute(UserProviderImpl.java:314)
         ... 57 more
    It seems OAM must set the AD as "default user store " , and only if so , AD domain users can login to webgate protected resources by kerberos .
    So, how can I make 2 AD available together ? Can you kindly give some advice? It will be very appreciated.
    Thanks !!

    1) Should my setup be defaulting to 32-bit compilersYes. On Solaris compilers generate 32-bit code by default
    2) I have read that adding -m64 to the compile command will make it 64-bit, is this accurate?It will make compiler produce 64-bit binaries.
    Compiler itself will stay 32-bit ;-)
    3) Is there a way to set the compilers to default to 64-bit so that the user doesn't have to specify -m64?No. At least no compiler-specific way. Only UNIX general tricks (shell alias, shell script etc)
    4) Does everyone just use -m64 and forget about it?Yep. They have no choice

  • How to make the current value default programmatically

    How to make the current value default programmatically

    Open a VI reference to the desired VI and use invoke mode with method: "Make current values default".
    The VI cannot be running, so you need to set it from a different VI. (It also means, it cannot set itself.)
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • What is happening to my website in iWeb? Why does it look like a blog all of a sudden?

    What is happening to my website in iWeb?  Why does it look like a blog all of a sudden?  Was there some kind of notification that I missed?

  • The fixes dont work, can anybody help????

    I would be really grateful for someone's help. I have a Sony Vaio Media Center PC (XL301) and it came installed with Vista as the operating system. I am unable to play anything from sites that require the most up todate flash player; i.e. bbc iplayer

  • CIF: Vendor transfer

    Hi All: I have been trying to send Vendors over to APO thru CIF, I could see a bunch but couple of them just dont get across. I tried sending them alone in a seperate Integration model I get the same message that (vendor) <b>location does not exist</

  • Updating Flex 2 to 3 will pay off?

    Hi, Sorry, but I did not find any information about this. If I buy version 2 of Flex, migration to version will pay off? Thanks in advance for your answer. Regards, Dexys

  • Will not sleep + snow leopard

    so, I just backed up to my time capsule... I did an erase and install and installed just snow leopard... MBP would sleep. restored from backup, MBP went to sleep several times and this worked for several hours (approximately 5-6). now after taking an