Hopefully very easy question...html issue

I am new to Macs and websites, but I was doing OK with iWeb until I tried linking my Google calendar to my site, all that comes up is the html code not the web page. I know it must be somthing simple I am doing wrong but cannot work it out, any help would be greatly appreciated.
Thanks

Two things to keep in mind...1. No way to do this via iWeb directly, so it involves editing the published html files, and 2. Because iWeb republishes the html files whenever you update the your webpage, you will lose your changes and have to redo them to add your calendar back.
The general directions are as follows...
1. Decide where you want your calendar and know exactly what dimensions you need (from the iframes code that you received from google - 640x614)
2. Insert a text box onto your page and adjust its size to exactly your dimensions 640x614
3. Type in some uniquely identifiable text like, "GOOGLECALENDAR" without changing the font or anything else...just type it in.
4. Publish your page with iWeb.
5. Find the html file associated with your published page (either on your iDisk or in a folder depending on how you published) and open it in any text editor (like Microsoft Word, or Textedit, or anything). You may have to tell your text editor to ignore rich text or to show HTML source. Look in the preferences.
6. Scroll through the html file and locate your placeholder text, e.g. "GOOGLECALENDAR".
7. Replace the placeholder text with your html iframes code and save your page (not save as...just save)
That's it. You should see your Google calendar show up in Safari exactly where you placed the text box in iWeb.
Best of luck!

Similar Messages

  • Combobox --- very easy question

    How can I set numbers in a Combobox and assign them
    to a variable ?

    Very easy answer: RTFT
    http://web2.java.sun.com/docs/books/tutorial/

  • Very easy question about variables

    Can I convert float-variable to String-variable?

    Hi, a very easy way to convert almost anything is
    called "typecasting". It might sound difficult, but
    it isn't.
    You use it like this example
    > String outcome;
    Double input;
    input = 3.54789654587;
    Output = ""+input;
    That's not casting. It's implicit formatting.
    What it does is making an empty string and pasting
    your number behind it. VERY easy! You can do this
    with allmost every type of variables.What it's doing is creating a StringBuffer, appending an empty string to it, then appending the result of calling toString on the Double, which is itself a String. (Though things change a bit in jdk1.5.) It works because StringBuffer.append has versions for each primitive type, and toString exists for all Objects.
    One problem is that it's not efficient -- you're doing a lot of work behind the scenes to do something that can be done much more simply. But the bigger problem is that it's using operators in a roundabout way and with implicit results. So it's sort of a hack. "+" is the append operator for Strings (well it actually comes down to an implicit method call, or several). Putting the double on the right side of that also causes an implicit format. So you're implicitly formatting a value, and then appending it to nothing, to get a result. You're not actually meaning to append, you're meaning to format, but you're using an append operator.
    The more straightforward way to do it is simply to explicitly format it, using the methods already shown on this thread, or using java.text.DecimalFormat.

  • Very easy question - loading member list

    Very simple question.
    Do I have to make everyone log off of HFM before I load a member list?
    I had a typo in the member list that I didn't see until I want to do the yearly tax extract, now that I corrected it I want to load the member list, but I don't want to kick everyone off. Just curious to see if it is necessary or not.

    Good morning,
    When I make some changes in the objects (metadata, list, rules, etc.), usually the users, while refreshing, are notified that the application has changed and that it's necessary to log in again. So since it only takes 5 minutes to update the list, I would recommend doing it the first thing in the morning or after the workday.
    Cheers,
    Lu

  • Hopefully an easy question about arrays

    hi there
    is there any way of creating an array of objects that is of unspecified size at the time of creating and then add objects as and when they are read from a file?
    longer explanation:
    i am creating molecule visualization software. the molecule's structure is stored in a text file, ie each line has info on one atom ie 3d coords etc. i'm storing the molecule structure in an object (Molecule.java) which has an array (Structure[]) of atoms (Atom.java). obviously molecules can have any number of atoms in it and you don't know how many until you've gone through the whole file and counted. The only way i can think of doing it is to go through the whole file, coun the atoms, close the file, create the Molecule object with the structure array size of NoOfAtoms and then open the file again and add the atoms as i go through them again. however, i refuse to believe this is the most efficient way of doing it as i have to go throguh the same file twice which brings me back to my original question.
    as i said i'm hopeing there is a simple answer
    cheers

    Use a Collection . Use a Vector, ArrayList or even a Hashtable. You do not need to define the size of these objects and can add and remove Objects from them whenever you want

  • Hopefully an easy question :

    I am fairly new to Java, and I mostly copy and paste, and edit and learn as I go along. Now, the following script is for a slideshow. And all I want to know is how to include a 2nd image into the variable, so when the image in the slideshow changes, it changes a 2nd image simutaneously. (so, when image1.jpg or image2.jpg changes, it changes say, image1a.jpg, or image2a.jpg at the same time for example) If anyone can give me a quick hand, I'd appreciate it, thanks.
    <SCRIPT LANGUAGE="JavaScript">
    <!-- Begin
    prev1 = new Image (50,50);
    prev1.src = "Leftarrow.jpg";
    prev2 = new Image (50,50);
    prev2.src = "LeftarrowA.jpg";
    next1 = new Image (50,50);
    next1.src = "Rightarrow.jpg";
    next2 = new Image (50,50);
    next2.src = "RightarrowA.jpg";
    go1 = new Image (145,95);
    go1.src = "go.jpg";
    go2 = new Image (145,95);
    go2.src = "go2.jpg";
    maxPic = 2;
    p1 = new Image (250,250);
    p1.src = "image1.jpg";
    link1 = "link1.html";
    p2 = new Image (250,250);
    p2.src = "image2.jpg";
    link2 = "link2.html";
    count = 1;
    function next() {
    count++;
    if (count > maxPic) {
    count = 1;
    eval("document.p.src=p" + count + ".src");
    function back() {
    count--;
    if (count == 0) {
    count = maxPic;
    eval("document.p.src=p" + count + ".src");
    function link() {
    location.href=eval("link" + count);
    // End -->
    </script>

    maybe you should try a javascript forum.

  • Image locations (very easy question)

    How do I set the location of an image?
        public void mouseMoved(MouseEvent me)
             Point p=new Point(me.getX(), me.getY());
                targetter.setLocation(p.x, p.y);
             repaint();
        }targetter is the image
    It cannot resolve symbol: setLocation... how to do it right, so that the targetter moves along with the mouse?

    This is still a question.
    I checked the tutorials but couldnt find anything. Plz help

  • This is a very easy question.....

    Could you please check out this site? For some reason my applet won't load on my computer over the web. I don't get any error messages. All my files are in the same directory. Please see if you can view it. It uses Swing.
    http://www.angelfire.com/ok5/java/backgroundswing.html

    java console error:
    java.lang.NoClassDefFoundError: backGroundSwing$2
         at backGroundSwing.init(backGroundSwing.java:37)
         at sun.applet.AppletPanel.run(AppletPanel.java:344)
         at sun.plugin.navig.motif.MotifAppletViewer.maf_run(MotifAppletViewer.java:127)
         at sun.plugin.navig.motif.MotifAppletViewer.run(MotifAppletViewer.java:123)
         at java.lang.Thread.run(Thread.java:484)
    make sure the xxx$xxx.class files are present, otherwise jar all the class files and use the archive html tag

  • Very easy question - How to find out the first date of year

    Hi Experts,
    I have created Web Dynpro program. I have to set one field "start_date" as first date of year. For example if current date is 04/10/2009, then program should set value of field "start_date" as 01/01/2009.
    If suppose program is used on 12/12/2012, then program should set the value of "start_date" as 01/01/2012.
    Please peovide me some code.
    Regards,
    Gary

    Hi,
    This line should give you the current year.
    Calendar.getInstance().get(Calendar.YEAR);
    Prefix 01/01/ to this will give you the first day of that year.
    Thanks,
    Venkat

  • SQLPLUS multiple data entry. Very easy question for experts.

    Hi sorry to bother you again but is it the same method as in MySQL to enter multiple data at once?
    I am trying to save time by entering all the contents of a table all at once,
    For example;
    INSERT INTO Borrower (BorId, BorName, BorMaxBooks) VALUES (
    (001, 'Bob', 4),
    (002, 'James', 5),
    (003, 'Dave', 6);
    Please can you tell me where I cam going wrong and I promise I will shut up and go away.
    Thanks.

    i can! :)
    SQL> create table T
      2  (BorId varchar2(64),
      3  BorName varchar2(64),
      4  BorMaxBooks number)
      5  /
    Table created
    SQL> insert into t
      2  select '001', 'Bob', 4 from dual
      3  union all
      4  select '002', 'James', 5 from dual
      5  union all
      6  select '003', 'Dave', 6 from dual
      7  /
    3 rows inserted
    SQL> select * from t
      2  /
    BORID                                                            BORNAME                                                          BORMAXBOOKS
    001                                                              Bob                                                                        4
    002                                                              James                                                                      5
    003                                                              Dave                                                                       6
    SQL>

  • Very easy question, i think

    What's the best way to know if a certain row exist in a table given the primary key?
    The first i can think of it is as follow:
    ResultSet rs=statement.executeQuery("SELECT primary_key FROM tableX
    where primary_key=The_primary_key_i_look_for")
    boolean found=false;
    while (rs.next()) found=true
    return found
    Is there any other (efficient) way to do it?
    I use MS SQL Server 2000.
    Thanks

    Not much more efficent
    ResultSet rs=statement.executeQuery("SELECT primary_key FROM tableX
    where primary_key=The_primary_key_i_look_for")
    return rs.next();

  • Hopefully an easy question - how can I get a search/scroll bar to appear

    on the righthand side of my library?

    genius. it does appear to be hanging over. I'll change the res and see if I can get the whole screen on. fingers crossed. many thanks.

  • Just a very easy question ... Please help me ....

    Dear All Experts,
    I have installed WebLogic 10.3.3, RCU 11.1.1.3.2, Oracle SOA 11.1.1.3.0, IDAM 11.1.1.3.0 on Oracle Enterprise Linux Update 5. And I have also done the configuration by running config.sh for both WebLogic to create a oim domain and OIM to config the OIM Server and Design Console ( Remote Manager not configured yet. )
    I can start up the WebLogic, WebLogic Node Manager, oim_server1. Even though I get a lot of ERRORS *<Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>* , I can still log into the OIM as xelsysadm. However, when I try to create a organization, the following error occurred: java.lang.NoClassDefFoundError: com/thortech/xl/dataobj/tcEvent_ .
    Would any people help me please ...
    Thank you in advance
    Best regards,
    Xin
    [2010-08-27T12:43:53.912+02:00] [oim_server1] [ERROR] [] [XELLERATE.SERVER] [tid: [ACTIVE].ExecuteThread: '1' for queue: 'weblogic.kernel.Default (self-tuning)'] [userId: xelsysadm] [ecid: 0000Ien9NuUFw000jzwkno1CTqkw00002Q,0] [APP: oim#11.1.1.3.0] [dcid: 11d1def534ea1be0:5471d76:12ab28085ff:-7ffd-00000000000000d3] Class/Method: tcDataObj/eventPreInsert encounter some problems: com/thortech/xl/dataobj/tcEvent[[
    java.lang.NoClassDefFoundError: com/thortech/xl/dataobj/tcEvent_
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
         at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:303)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.ClassLoader.defineClass1(Native Method)
         at java.lang.ClassLoader.defineClass(ClassLoader.java:616)
         at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:124)
         at java.net.URLClassLoader.defineClass(URLClassLoader.java:260)
         at java.net.URLClassLoader.access$000(URLClassLoader.java:56)
         at java.net.URLClassLoader$1.run(URLClassLoader.java:195)
         at java.net.URLClassLoader.findClass(URLClassLoader.java:188)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:303)
         at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:308)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:296)
         at java.lang.ClassLoader.loadClass(ClassLoader.java:248)
         at java.lang.Class.forName0(Native Method)
         at java.lang.Class.forName(Class.java:247)
         at com.thortech.xl.dataobj.tcDataObj.runEvent(tcDataObj.java:2437)
         at com.thortech.xl.dataobj.tcDataObj.eventPreInsert(tcDataObj.java:2164)
         at com.thortech.xl.dataobj.tcACT.eventPreInsert(tcACT.java:107)
         at com.thortech.xl.dataobj.tcDataObj.insert(tcDataObj.java:578)
         at com.thortech.xl.dataobj.tcDataObj.save(tcDataObj.java:474)
         at com.thortech.xl.dataobj.tcTableDataObj.save(tcTableDataObj.java:2905)
         at com.thortech.xl.ejb.beansimpl.tcOrganizationOperationsBean.createOrganization(tcOrganizationOperationsBean.java:1222)
         at com.thortech.xl.ejb.beansimpl.tcOrganizationOperationsBean.createOrganization(tcOrganizationOperationsBean.java:1107)
         at Thor.API.Operations.tcOrganizationOperationsIntfEJB.createOrganizationx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy326.createOrganizationx(Unknown Source)
         at Thor.API.Operations.tcOrganizationOperationsIntfEJB_fb8pot_tcOrganizationOperationsIntfRemoteImpl.createOrganizationx(tcOrganizationOperationsIntfEJB_fb8pot_tcOrganizationOperationsIntfRemoteImpl.java:515)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
         at $Proxy140.createOrganizationx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:198)
         at $Proxy325.createOrganizationx(Unknown Source)
         at Thor.API.Operations.tcOrganizationOperationsIntfDelegate.createOrganization(Unknown Source)
         at oracle.iam.oimdataproviders.impl.OIMOrgDataProvider.create(OIMOrgDataProvider.java:179)
         at oracle.iam.platform.entitymgr.impl.EntityManagerImpl.createEntity(EntityManagerImpl.java:289)
         at oracle.iam.platform.entitymgr.impl.EntityManagerImpl.createEntity(EntityManagerImpl.java:237)
         at oracle.iam.platform.kernel.impl.EntityDefaultActionHandler.execute(EntityDefaultActionHandler.java:33)
         at oracle.iam.platform.kernel.impl.DefaultActionHandler.execute(DefaultActionHandler.java:41)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.iam.platform.kernel.impl.EventHandlerDynamicProxy.invoke(EventHandlerDynamicProxy.java:30)
         at $Proxy236.execute(Unknown Source)
         at oracle.iam.platform.kernel.impl.OrchProcessData.runActionEvents(OrchProcessData.java:1028)
         at oracle.iam.platform.kernel.impl.OrchProcessData.runEvents(OrchProcessData.java:637)
         at oracle.iam.platform.kernel.impl.OrchProcessData.executeEvents(OrchProcessData.java:220)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.resumeProcess(OrchestrationEngineImpl.java:664)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.process(OrchestrationEngineImpl.java:435)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.orchestrate(OrchestrationEngineImpl.java:381)
         at oracle.iam.platform.kernel.impl.OrchestrationEngineImpl.orchestrate(OrchestrationEngineImpl.java:334)
         at oracle.iam.identity.orgmgmt.impl.OrganizationManagerImpl.create(OrganizationManagerImpl.java:275)
         at oracle.iam.identity.orgmgmt.api.OrganizationManagerEJB.createx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.bea.core.repackaged.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:310)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.invokeJoinpoint(ReflectiveMethodInvocation.java:182)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:149)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.jee.spi.MethodInvocationVisitorImpl.visit(MethodInvocationVisitorImpl.java:37)
         at weblogic.ejb.container.injection.EnvironmentInterceptorCallbackImpl.callback(EnvironmentInterceptorCallbackImpl.java:54)
         at com.bea.core.repackaged.springframework.jee.spi.EnvironmentInterceptor.invoke(EnvironmentInterceptor.java:50)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.interceptor.ExposeInvocationInterceptor.invoke(ExposeInvocationInterceptor.java:89)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.doProceed(DelegatingIntroductionInterceptor.java:131)
         at com.bea.core.repackaged.springframework.aop.support.DelegatingIntroductionInterceptor.invoke(DelegatingIntroductionInterceptor.java:119)
         at com.bea.core.repackaged.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171)
         at com.bea.core.repackaged.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204)
         at $Proxy324.createx(Unknown Source)
         at oracle.iam.identity.orgmgmt.api.OrganizationManager_874ar_OrganizationManagerRemoteImpl.createx(OrganizationManager_874ar_OrganizationManagerRemoteImpl.java:362)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at weblogic.ejb.container.internal.RemoteBusinessIntfProxy.invoke(RemoteBusinessIntfProxy.java:84)
         at $Proxy190.createx(Unknown Source)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at org.springframework.aop.support.AopUtils.invokeJoinpointUsingReflection(AopUtils.java:307)
         at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:198)
         at $Proxy323.createx(Unknown Source)
         at oracle.iam.identity.orgmgmt.api.OrganizationManagerDelegate.create(Unknown Source)
         at oracle.iam.consoles.orgmgmt.tf.createorg.OrganizationCreateBean.createOrg(OrganizationCreateBean.java:253)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at com.sun.el.parser.AstValue.invoke(AstValue.java:157)
         at com.sun.el.MethodExpressionImpl.invoke(MethodExpressionImpl.java:283)
         at org.apache.myfaces.trinidad.component.MethodExpressionMethodBinding.invoke(MethodExpressionMethodBinding.java:46)
         at com.sun.faces.application.ActionListenerImpl.processAction(ActionListenerImpl.java:102)
         at org.apache.myfaces.trinidad.component.UIXCommand.broadcast(UIXCommand.java:190)
         at oracle.adf.view.rich.component.fragment.UIXRegion.broadcast(UIXRegion.java:148)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:97)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent$1.run(ContextSwitchingComponent.java:90)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent._processPhase(ContextSwitchingComponent.java:309)
         at oracle.adf.view.rich.component.fragment.ContextSwitchingComponent.broadcast(ContextSwitchingComponent.java:94)
         at oracle.adf.view.rich.component.fragment.UIXInclude.broadcast(UIXInclude.java:91)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.broadcastEvents(LifecycleImpl.java:812)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl._executePhase(LifecycleImpl.java:292)
         at oracle.adfinternal.view.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:177)
         at javax.faces.webapp.FacesServlet.service(FacesServlet.java:265)
         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.help.web.rich.OHWFilter.doFilter(Unknown Source)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.model.servlet.ADFBindingFilter.doFilter(ADFBindingFilter.java:191)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adfinternal.view.faces.webapp.rich.RegistrationFilter.doFilter(RegistrationFilter.java:97)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at oracle.adfinternal.view.faces.activedata.AdsFilter.doFilter(AdsFilter.java:60)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl$FilterListChain.doFilter(TrinidadFilterImpl.java:420)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl._doFilterImpl(TrinidadFilterImpl.java:247)
         at org.apache.myfaces.trinidadinternal.webapp.TrinidadFilterImpl.doFilter(TrinidadFilterImpl.java:157)
         at org.apache.myfaces.trinidad.webapp.TrinidadFilter.doFilter(TrinidadFilter.java:92)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.security.am.agent.wls.filters.OAMServletAuthenticationFilter.doFilter(OAMServletAuthenticationFilter.java:260)
         at oracle.security.am.agent.wls.filters.OAMValidationSystemFilter.doFilter(OAMValidationSystemFilter.java:133)
         at oracle.security.wls.oamagent.OAMAgentWrapperFilter.doFilter(OAMAgentWrapperFilter.java:121)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.iam.platform.auth.web.PwdMgmtNavigationFilter.doFilter(PwdMgmtNavigationFilter.java:115)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.iam.platform.auth.web.OIMAuthContextFilter.doFilter(OIMAuthContextFilter.java:100)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.adf.library.webapp.LibraryFilter.doFilter(LibraryFilter.java:159)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at oracle.dms.wls.DMSServletFilter.doFilter(DMSServletFilter.java:330)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.RequestEventsFilter.doFilter(RequestEventsFilter.java:27)
         at weblogic.servlet.internal.FilterChainImpl.doFilter(FilterChainImpl.java:56)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.doIt(WebAppServletContext.java:3684)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3650)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2268)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2174)
         at weblogic.servlet.internal.ServletRequestImpl.run(ServletRequestImpl.java:1446)
         at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
         at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    ]]

    And here is the log file when I start oim_server1.
    ** Setting up SOA specific environment...
    EXTRA_JAVA_PROPERTIES= -da:org.apache.xmlbeans...
    LD_LIBRARY_PATH=/u01/app/oracle/middleware/patch_wls1033/profiles/default/native:/u01/app/oracle/middleware/patch_oepe1033/profiles/default/native:/u01/app/oracle/middleware/patch_ocp353/profiles/default/native:/u01/app/oracle/middleware/patch_wls1033/profiles/default/native:/u01/app/oracle/middleware/patch_oepe1033/profiles/default/native:/u01/app/oracle/middleware/patch_ocp353/profiles/default/native:/u01/app/oracle/product/11.2.0/db_1/lib:/lib:/usr/lib:/u01/app/oracle/middleware/wlserver_10.3/server/native/linux/i686:/u01/app/oracle/middleware/wlserver_10.3/server/native/linux/i686/oci920_8:/u01/app/oracle/middleware/wlserver_10.3/server/native/linux/i686:/u01/app/oracle/middleware/wlserver_10.3/server/native/linux/i686/oci920_8:/u01/app/oracle/middleware/Oracle_SOA1/soa/thirdparty/edifecs/XEngine/bin
    USER_MEM_ARGS=-Xms512m -Xmx1024m
    ** End SOA specific environment setup
    ** SOA specific environment is already set, skipping...
    JAVA Memory arguments: -Xms512m -Xmx1024m
    WLS Start Mode=Development
    CLASSPATH=/u01/app/oracle/middleware/wlserver_10.3/server/ext/jdbc/oracle/11g/ojdbc6dms.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/user-patch.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/soa-startup.jar::/u01/app/oracle/middleware/patch_wls1033/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/middleware/patch_oepe1033/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/middleware/patch_ocp353/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/lib/tools.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/weblogic.jar:/u01/app/oracle/middleware/modules/features/weblogic.server.modules_10.3.3.0.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/webservices.jar:/u01/app/oracle/middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/u01/app/oracle/middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/oracle.soa.common.adapters_11.1.1/oracle.soa.common.adapters.jar:/u01/app/oracle/middleware/oracle_common/soa/modules/commons-cli-1.1.jar:/u01/app/oracle/middleware/oracle_common/soa/modules/oracle.soa.mgmt_11.1.1/soa-infra-mgmt.jar:/u01/app/oracle/middleware/Oracle_IDM1/oam/agent/modules/oracle.oam.wlsagent_11.1.1/oam-wlsagent.jar:/u01/app/oracle/middleware/oracle_common/modules/oracle.xdk_11.1.0/xsu12.jar:/u01/app/oracle/middleware/modules/features/weblogic.server.modules.xquery_10.3.1.0.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/db2jcc4.jar:/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/soa-infra:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/fabric-url-handler_11.1.1.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/quartz-all-1.6.5.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/oracle.soa.fabric_11.1.1/oracle.soa.fabric.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/oracle.soa.adapter_11.1.1/oracle.soa.adapter.jar:/u01/app/oracle/middleware/Oracle_SOA1/soa/modules/oracle.soa.b2b_11.1.1/oracle.soa.b2b.jar:/u01/app/oracle/middleware/Oracle_IDM1/server/lib/oim-manifest.jar:/u01/app/oracle/middleware/oracle_common/modules/oracle.jrf_11.1.1/jrf.jar:/u01/app/oracle/middleware/wlserver_10.3/common/derby/lib/derbyclient.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/xqrl.jar:/u01/app/oracle/middleware/patch_wls1033/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/middleware/patch_oepe1033/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/middleware/patch_ocp353/profiles/default/sys_manifest_classpath/weblogic_patch.jar:/u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/lib/tools.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/weblogic_sp.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/weblogic.jar:/u01/app/oracle/middleware/modules/features/weblogic.server.modules_10.3.3.0.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/webservices.jar:/u01/app/oracle/middleware/modules/org.apache.ant_1.7.1/lib/ant-all.jar:/u01/app/oracle/middleware/modules/net.sf.antcontrib_1.1.0.0_1-0b2/lib/ant-contrib.jar:/u01/app/oracle/middleware/Oracle_IDM1/server/client/oimclient.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/wlfullclient.jar:/u01/app/oracle/middleware/Oracle_IDM1/server/ext/jakarta-commons/commons-logging.jar:/u01/app/oracle/middleware/Oracle_IDM1/server/ext/spring.jar:/u01/app/oracle/middleware/wlserver_10.3/server/lib/webserviceclient+ssl.jar
    PATH=/u01/app/oracle/middleware/wlserver_10.3/server/bin:/u01/app/oracle/middleware/modules/org.apache.ant_1.7.1/bin:/u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/jre/bin:/u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/bin:/u01/app/oracle/middleware/wlserver_10.3/server/bin:/u01/app/oracle/middleware/modules/org.apache.ant_1.7.1/bin:/u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/jre/bin:/u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/bin:/u01/app/oracle/product/11.2.0/db_1/bin:/usr/sbin:/usr/kerberos/bin:/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/home/oracle/bin
    * To start WebLogic Server, use a username and *
    * password assigned to an admin-level user. For *
    * server administration, use the WebLogic Server *
    * console at http://hostname:port/console *
    starting weblogic with Java version:
    java version "1.6.0_17"
    Java(TM) SE Runtime Environment (build 1.6.0_17-b04)
    Oracle JRockit(R) (build R28.0.0-679-130297-1.6.0_17-20100312-2128-linux-ia32, compiled mode)
    Starting WLS with line:
    /u01/app/oracle/middleware/jrockit_160_17_R28.0.0-679/bin/java -jrockit -Xms512m -Xmx1024m -Dweblogic.Name=oim_server1 -Djava.security.policy=/u01/app/oracle/middleware/wlserver_10.3/server/lib/weblogic.policy -Dweblogic.security.SSL.trustedCAKeyStore=/u01/app/oracle/middleware/wlserver_10.3/server/lib/cacerts -Xverify:none -Xverify:none -da -Dplatform.home=/u01/app/oracle/middleware/wlserver_10.3 -Dwls.home=/u01/app/oracle/middleware/wlserver_10.3/server -Dweblogic.home=/u01/app/oracle/middleware/wlserver_10.3/server -Ddomain.home=/u01/app/oracle/middleware/user_projects/domains/oimdomain -Dcommon.components.home=/u01/app/oracle/middleware/oracle_common -Djrf.version=11.1.1 -Dorg.apache.commons.logging.Log=org.apache.commons.logging.impl.Jdk14Logger -Djrockit.optfile=/u01/app/oracle/middleware/oracle_common/modules/oracle.jrf_11.1.1/jrocket_optfile.txt -Doracle.domain.config.dir=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig -Doracle.server.config.dir=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/servers/oim_server1 -Doracle.security.jps.config=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/jps-config.xml -Djava.protocol.handler.pkgs=oracle.mds.net.protocol -Digf.arisidbeans.carmlloc=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/carml -Digf.arisidstack.home=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/arisidprovider -Dweblogic.alternateTypesDirectory=/u01/app/oracle/middleware/Oracle_IDM1/oam/agent/modules/oracle.oam.wlsagent_11.1.1,/u01/app/oracle/middleware/Oracle_IDM1/server/loginmodule/wls,/u01/app/oracle/middleware/oracle_common/modules/oracle.ossoiap_11.1.1,/u01/app/oracle/middleware/oracle_common/modules/oracle.oamprovider_11.1.1 -Dweblogic.jdbc.remoteEnabled=false -DOAM_POLICY_FILE=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/oam-policy.xml -DOAM_CONFIG_FILE=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/oam-config.xml -DOAM_PROXY_LOG=/u01/app/oracle/middleware/user_projects/domains/oimdomain/config/fmwconfig/oam_proxy_logging.properties -DOAM_ORACLE_HOME=/u01/app/oracle/middleware/Oracle_IDM1/oam -Doracle.security.am.SERVER_INSTNCE_NAME=oim_server1 -DCSS_TOOLKIT_LOC=/u01/app/oracle/middleware/Oracle_IDM1/oam/server/lib/csslib -Does.jars.home=/u01/app/oracle/middleware/Oracle_IDM1/oam/server/lib/oes-d8 -Does.integration.path=/u01/app/oracle/middleware/Oracle_IDM1/oam/server/lib/oeslib/oes-integration.jar -Does.enabled=true -Doracle.apm.home=/u01/app/oracle/middleware/Oracle_IDM1/apm/ -Djbo.server.internal_connection=jdbc/APMDBDS -Doracle.security.jps.policy.migration.validate.principal=false -Doracle.oaam.home=/u01/app/oracle/middleware/Oracle_IDM1/oaam/ -Doracle.oaam.home=/u01/app/oracle/middleware/Oracle_IDM1/oaam/ -Djava.awt.headless=true -DXL.HomeDir=/u01/app/oracle/middleware/Oracle_IDM1/server -Djava.security.auth.login.config=/u01/app/oracle/middleware/Oracle_IDM1/server/config/authwl.conf -da:org.apache.xmlbeans... -Dbpm.enabled=true -Dsoa.archives.dir=/u01/app/oracle/middleware/Oracle_SOA1/soa -Dsoa.oracle.home=/u01/app/oracle/middleware/Oracle_SOA1 -Dsoa.instance.home=/u01/app/oracle/middleware/user_projects/domains/oimdomain -Dtangosol.coherence.clusteraddress=227.7.7.9 -Dtangosol.coherence.clusterport=9778 -Dtangosol.coherence.log=jdk -Djavax.xml.soap.MessageFactory=oracle.j2ee.ws.saaj.soap.MessageFactoryImpl -Djava.protocol.handler.pkgs=oracle.mds.net.protocol|oracle.fabric.common.classloaderurl.handler|oracle.fabric.common.uddiurl.handler|oracle.bpm.io.fs.protocol -Dweblogic.transaction.blocking.commit=true -Dweblogic.transaction.blocking.rollback=true -Djavax.net.ssl.trustStore=/u01/app/oracle/middleware/wlserver_10.3/server/lib/DemoTrust.jks -Dem.oracle.home=/u01/app/oracle/middleware/oracle_common -Djava.awt.headless=true -Dbam.oracle.home=/u01/app/oracle/middleware/Oracle_SOA1 -Dums.oracle.home=/u01/app/oracle/middleware/Oracle_SOA1 -Dweblogic.management.discover=false -Dweblogic.management.server=http://oim11g.localdomain:7001 -Dwlw.iterativeDev=false -Dwlw.testConsole=false -Dwlw.logErrorsToConsole=false -Dweblogic.ext.dirs=/u01/app/oracle/middleware/patch_wls1033/profiles/default/sysext_manifest_classpath:/u01/app/oracle/middleware/patch_oepe1033/profiles/default/sysext_manifest_classpath:/u01/app/oracle/middleware/patch_ocp353/profiles/default/sysext_manifest_classpath weblogic.Server
    [WARN ] Use of -Djrockit.optfile is deprecated and discouraged.
    <Aug 27, 2010 2:59:17 PM CEST> <Info> <WebLogicServer> <BEA-000377> <Starting WebLogic Server with Oracle JRockit(R) Version R28.0.0-679-130297-1.6.0_17-20100312-2128-linux-ia32 from Oracle Corporation>
    <Aug 27, 2010 2:59:22 PM CEST> <Info> <Security> <BEA-090065> <Getting boot identity from user.>
    Enter username to boot WebLogic server:weblogic
    Enter password to boot WebLogic server:
    <Aug 27, 2010 2:59:29 PM CEST> <Info> <Management> <BEA-141107> <Version: WebLogic Server 10.3.3.0 Fri Apr 9 00:05:28 PDT 2010 1321401
    WebLogic Server WebService SSL Client 10.3 Fri Apr 9 00:05:28 PDT 2010 1321401 >
    <Aug 27, 2010 2:59:31 PM CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Aug 27, 2010 2:59:31 PM CEST> <Info> <WorkManager> <BEA-002900> <Initializing self-tuning thread pool>
    <Aug 27, 2010 2:59:32 PM CEST> <Notice> <LoggingService> <BEA-320400> <The log file /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/oim_server1.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 27, 2010 2:59:32 PM CEST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/oim_server1.log00016. Log messages will continue to be logged in /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/oim_server1.log.>
    <Aug 27, 2010 2:59:32 PM CEST> <Notice> <Log Management> <BEA-170019> <The server log file /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/oim_server1.log is opened. All server side log events will be written to this file.>
    Aug 27, 2010 2:59:38 PM oracle.iam.platform.auth.providers.wls.OIMAuthenticationProvider initialize
    INFO: Authentication module initialized
    Aug 27, 2010 2:59:38 PM oracle.security.am.agent.asdk.impl.aaaclient.AccessServerImpl initAAAClient
    INFO: Connection to OAM Server could not be established: Exception in connecting to server. Connection refused
    <Aug 27, 2010 2:59:41 PM CEST> <Notice> <Security> <BEA-090082> <Security initializing using security realm myrealm.>
    <Aug 27, 2010 2:59:43 PM CEST> <Notice> <LoggingService> <BEA-320400> <The log file /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/access.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <Aug 27, 2010 2:59:43 PM CEST> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/access.log00008. Log messages will continue to be logged in /u01/app/oracle/middleware/user_projects/domains/oimdomain/servers/oim_server1/logs/access.log.>
    <Aug 27, 2010 2:59:49 PM CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STANDBY>
    <Aug 27, 2010 2:59:49 PM CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to STARTING>
    <Aug 27, 2010 3:00:06 PM CEST> <Warning> <oracle.jps.upgrade> <JPS-06003> <Cannot migrate credential folder/key ADF/anonymous#oimBpelCredKey.Reason oracle.security.jps.service.credstore.CredentialAlreadyExistsException: JPS-01007: The credential with map ADF and key anonymous#oimBpelCredKey already exists..>
    Loading xalan.jar for XPathAPI.
    15:01:10 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] -
    ----------------- NEXAWEB SERVER LICENSE ------------------
    - Customer ID : 122
    - License type : Enterprise
    - Max unique IPs : unlimited
    - Max XUL sessions : unlimited
    - Max CPUs/server : unlimited
    - Clustering allowed : true
    - Expiration date : none
    Nexaweb Technologies Inc.(C)2000-2004. All Rights Reserved.
    Nexaweb Technologies Inc.
    10 Canal Park
    Cambridge, MA 02141
    Tel: 617.577.8100. Email: [email protected]
    15:01:11 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] - Clustering is OFF.
    15:01:11 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] - Servlet Engine: WebLogic Server 10.3.3.0 Fri Apr 9 00:05:28 PDT 2010 1321401 Oracle WebLogic Server Module Dependencies 10.3 Tue Mar 2 15:22:37 PST 2010 WebLogic Server WebService SSL Client 10.3 Fri Apr 9 00:05:28 PDT 2010 1321401
    15:01:11 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] - Servlet API Version: 2.5
    15:01:11 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] - Nexaweb Server Info = Nexaweb Server 3.3.1072
    15:01:11 INFO [[ACTIVE] ExecuteThread: '0' for queue: 'weblogic.kernel.Default (self-tuning)'] - Nexaweb Server initialized successfully.
    <Aug 27, 2010 3:01:22 PM CEST> <Warning> <oracle.iam.platform.utils> <IAM-0070017> <Unable to read the connection retry interval setting. Setting it to the default - 7 >
    <Aug 27, 2010 3:01:22 PM CEST> <Warning> <oracle.iam.platform.utils> <IAM-0070018> <Unable to read the connection retry attempts setting. Setting it to the default - 3>
    <Aug 27, 2010 3:01:25 PM CEST> <Warning> <org.apache.struts.config.impl.ModuleConfigImpl> <BEA-000000> <Overriding ActionForm of name selfRegistrationForm>
    <Aug 27, 2010 3:01:25 PM CEST> <Warning> <org.apache.struts.config.impl.ModuleConfigImpl> <BEA-000000> <Overriding ActionForm of name webAppSettingsForm>
    <Aug 27, 2010 3:01:25 PM CEST> <Warning> <org.apache.struts.config.impl.ModuleConfigImpl> <BEA-000000> <Overriding ActionForm of name selfRegTrackRequestForm>
    <Aug 27, 2010 3:01:25 PM CEST> <Warning> <org.apache.struts.config.impl.ModuleConfigImpl> <BEA-000000> <Overriding ActionForm of name provisionedResourcesForUserForm>
    <Aug 27, 2010 3:01:26 PM CEST> <Warning> <org.apache.struts.config.impl.ModuleConfigImpl> <BEA-000000> <Overriding ActionForm of name requestMoreInfoForm>
    <Aug 27, 2010 3:01:26 PM CEST> <Warning> <org.apache.struts.config.impl.ModuleConfigImpl> <BEA-000000> <Overriding ActionConfig of path /WebAdminHome>
    ADF Library non-OC4J post-deployment (millis): 324
    [EL Info]: 2010-08-27 15:01:46.014--ServerSession(289682207)--EclipseLink, version: Eclipse Persistence Services - 1.1.0.r3634
    [EL Info]: 2010-08-27 15:01:47.329--ServerSession(289682207)--file:/u01/app/oracle/middleware/Oracle_IDM1/modules/oracle.oes_11.1.1/jps-internal.jar-JpsDBDataManager login successful
    [EL Info]: 2010-08-27 15:01:57.322--ServerSession(262618610)--EclipseLink, version: Eclipse Persistence Services - 2.0.2.v20100323-r6872
    [EL Info]: 2010-08-27 15:01:57.596--ServerSession(262618610)--Server: WebLogic Server 10.3.3.0 Fri Apr 9 00:05:28 PDT 2010 1321401
    [EL Info]: 2010-08-27 15:01:57.85--ServerSession(262618610)--oim login successful
    *<Aug 27, 2010 3:01:58 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:58 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:58 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:59 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:59 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:59 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:59 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:01:59 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:00 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:01 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    *<Aug 27, 2010 3:02:02 PM CEST> <Error> <oracle.iam.platform.kernel.impl> <BEA-000000> <IAMPKR-78172>*
    <Aug 27, 2010 3:02:29 PM CEST> <Notice> <Log Management> <BEA-170027> <The Server has established connection with the Domain level Diagnostic Service successfully.>
    <Aug 27, 2010 3:02:30 PM CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to ADMIN>
    <Aug 27, 2010 3:02:30 PM CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RESUMING>
    <Aug 27, 2010 3:02:31 PM CEST> <Notice> <Server> <BEA-002613> <Channel "Default[1]" is now listening on fe80:0:0:0:a00:27ff:fe0d:25b2:14000 for protocols iiop, t3, ldap, snmp, http.>
    <Aug 27, 2010 3:02:31 PM CEST> <Notice> <Server> <BEA-002613> <Channel "Default[2]" is now listening on 127.0.0.1:14000 for protocols iiop, t3, ldap, snmp, http.>
    <Aug 27, 2010 3:02:31 PM CEST> <Notice> <Server> <BEA-002613> <Channel "Default[3]" is now listening on 0:0:0:0:0:0:0:1:14000 for protocols iiop, t3, ldap, snmp, http.>
    <Aug 27, 2010 3:02:31 PM CEST> <Notice> <Server> <BEA-002613> <Channel "Default" is now listening on 172.16.27.75:14000 for protocols iiop, t3, ldap, snmp, http.>
    <Aug 27, 2010 3:02:31 PM CEST> <Notice> <WebLogicServer> <BEA-000332> <Started WebLogic Managed Server "oim_server1" for domain "oimdomain" running in Development Mode>
    <Aug 27, 2010 3:02:34 PM CEST> <Notice> <WebLogicServer> <BEA-000365> <Server state changed to RUNNING>
    <Aug 27, 2010 3:02:34 PM CEST> <Notice> <WebLogicServer> <BEA-000360> <Server started in RUNNING mode>

  • Very Easy Question: How to view source code of JAR file

    Hi Experts,
    1) Can we can see the content of JAR file?
    2) How we can we see content of JAR file?
    3) I have with me JAR file. It is sap.compcui_gpoadp~ObjectAndDataProvider.JAR. I have to make some changes in the JAR file source code. How I can find the source code?
    I tried to see the source code using NWDS. However, I can not see the code.
    Regards,
    Gaurav

    >
    Gary wrote:
    > Can I make changes in the source code of JAR file? Can I make changes in the code?
    You cannot do this by simple repacking/rearchiving of JAR, because it contains special descriptor with fingerprint. In general, JAR is unmodifiable, however, you can create a new one with modified sources.
    You can try to import the JAR in some Java project in Eclipse, for example. Then make your changes and use the Eclipse's Export JAR wizard in order to repack the modified source Java files in a new JAR.
    >
    Gary wrote:
    > Can I rename the JAR file and still it will usable? Please confirm.
    I general, yes, the operation is allowed. However, you cannot do this with JAR deployed on some J2EE server or Portal, for example. Because there are references to it.
    >
    Gary wrote:
    > Please let me know if by any chance I can see the content of JAR file in NWDS.
    Yes, sure. Use Import from Archive wizard in Eclipse. Or add the JAR in the class path of some Java project and Eclipse will show you the content of it.
    BR, Sergei

  • 16x9 in idvd (very easy question)

    I got latest version of idvd, and want to make a dvd with 16x9 content. I choose to make the project widescreen, but I can't make idvd interpret my footage as 16x9. It will only play the content in 4x3 (even though the menu and everything is played correctly in 16x9). I can manually squeeze the footage on my tv, but I don't know how to do this on my mac.
    is this an insane bug ?
    Anders

    I have the same problem. I ripped my DV video in Final Cut Pro and exported it anomorph as QuickTime movie. When I put it in iDVD 6.0.1 it's not displayed properly
    Please help
    DV PAL, 720x576, 16,7 Mill colors, 16 bit Integer (Big Endian), Stereo, 48,000 kHz, 25fps

Maybe you are looking for

  • How to find registered e-mail address for my skype...

    Hello, I need your help, because I'm unable to find associated email address for my father's skype account. After changing his computer we are not able to login again. Is there an option to use registered phone number in order to veify his identity a

  • Data Recovery for Macbook Air when repair efforts failed

    My computer is unable to boot and stays on the gray screen. I've tried to repair my computer with every method up to disk utility but nothing will work, so I want to back up my computer if possible before reinstalling the software. I don't use time m

  • Editing Capture time

    Ok Chaps... I am new to LR... but have recently found a load of old family photos -  dating back to late 1800's and am going to start scanning them to share with the family....I can change the capture time using LR... (well done for reading the manua

  • Ipod camera connector with CANON 350D

    Hi everybody! I'm trying to connect camera connector with my photocamera but ipod continuosly tell me: "format non supported". I have set my 350D in PTP mode, as apple recommended in the compatibility list, but nothing changes. What can I do? tnx! Ma

  • HT1751 Can you share or lend a book to another iPad.

    Can you share or lend an iBook with another iPad?