Expecting Object?

The error happens on the following pages:
www.crystalhoyt.com/solo.html
Error Message: line 69 which is </head>
www.crystalhoyt.com/trailer.html
Error Message: Line 78 which is </tr>
www.crystalhoyt.com/shopping.html
Error Message: Line 69 which is </head>
www.crystalhoyt.com/tour.html
Error Message: Line 492 which reads <td align='center'
class="calendarEven style6 style10 style13"><a href='
http://www.ticketmaster.com/artist/762365'
target='_blank'><img src
Please advise

> www.crystalhoyt.com/solo.html
> Error Message: line 69 which is </head>
Here's line 69 -
<td><a href="solo.html" target="_top"
onclick="MM_nbGroup('down','group1','solo','',1)"
onmouseover="MM_nbGroup('over','solo','images/navigation/solo_f2.jpg','',1)"
onmouseout="MM_nbGroup('out')"><img
src="images/navigation/solo_f2.jpg"
alt="solo" name="solo" border="0" id="solo"
onload="MM_nbGroup('init','group1','solo','images/navigation/solo.jpg',1)"
/></a></td>
Note that this line calls the MM_nbGroup function, which is
missing from the
head of your page. That's what the error is about. I'm
betting it's the
same on each page.
Note also that once you clear that error message, and scroll
to the menu,
you get the error for each menu rollover. That kinda nails
it.
By the way, that navbar function is beyond 'long in the
tooth' and should be
removed from the product. It does nothing for you that simple
rollovers
wouldn't do, other than to take up additional space on the
page.
Finally, I'm not quite sure how to fix the problem, other
than to rip out
the navbar and replace it with simple rollovers. It's been SO
long since I
used that function, I can't remember if you can edit one,
once it has been
placed on the page. If you can, then just edit it, and then
close the edit
pane, without doing anything. That will force DW to write the
required js
back into the page.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com
- Template Triage!
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
http://www.macromedia.com/support/search/
- Macromedia (MM) Technotes
==================
"tkatcher" <[email protected]> wrote in
message
news:[email protected]...
> The error happens on the following pages:
>
> www.crystalhoyt.com/solo.html
> Error Message: line 69 which is </head>
>
> www.crystalhoyt.com/trailer.html
> Error Message: Line 78 which is </tr>
>
> www.crystalhoyt.com/shopping.html
> Error Message: Line 69 which is </head>
>
> www.crystalhoyt.com/tour.html
> Error Message: Line 492 which reads <td
align='center' class="calendarEven
> style6 style10 style13"><a
> href='
http://www.ticketmaster.com/artist/762365'
> target='_blank'><img src
>
> Please advise
>

Similar Messages

  • Expected Object Reference?

    Hello,
    I am attempting to create my own version of modelsupport2.dll's parallel UUT dialog.  (It will use the TestStand Sync Manager to enqueue requests just like the existing Parallel model's parallel UUT dialog does.)  I am faced with a couple issues right off the bat that don't make a whole lot of sense to me.
    For one thing, despite the fact that my dialog box (written in VB .NET by the way) is initialized in a sub-sequence of the TestUUTs execution entry point that is configured to run in a separate thread, the TestUUTs sequence still hangs around and waits for the dialog box to close before continuing on.  (This is clearly a problem since the whole point is to have the main thread continually process requests while the dialog box on a separate thread is busy enqueuing requests...)  Does anyone have any idea why that could be happening?  Maybe other sequence settings that I'm not aware of?
    Another problem I'm having (although I wasn't initially having this problem) is the following error message: "Expected Object Reference, found Object Reference".  The error code shows "-17308; Specified value does not have the expected type".  This happens in the .NET action step in which I call my .NET assembly to create the object representing the dialog.  The object reference specified for the create object call is a parameter called CustomDialogRefParam - a parameter of type Object Reference.  The TestUUTs execution entry point has a CustomDialogRef local variable of the same type, and it passes it by reference to the Run UUT Info Dialog subsequence...  The idea was that the Run UUT Info Dialog subsequence would create the object, and from that point on, it would be available to the TestUUTs sequence.  Is there anything fundamentally wrong with this idea, or does anyone have any suggestions as to what may be causing this sort of error?
    Thanks for any suggestions.  Let me know if I need to clarify anything.

    Hello,
    Thanks for the feedback.  I actually fixed the problem with the thread not operating independently, (although I can't say I'm completely sure why I needed to do what I did).  The function call that starts the dialog is passed the sequence context from TestStand.  In order to allow TestStand to continue I had to set the sequence context's thread to the "externally suspended" state.  I can now get it to work in a very simple fashion.  (Basically, all it does is open up and wait for the user to click the exit button.  When that happens, the dialog uses the sync manager component to enqueue the appropriate requests to cause TestStand to stop all test sockets and exit the "process dialog requests" consumer loop.  Only problem I have now, is that for some reason, if I put a break point in the sequence after the dialog has been initialized, execution on the main thread stops as expected, but then attempting to step into, step over, or continue cause it to just hang.  (I can't even terminate the process - I have to actually close TestStand entirely.)  So long as I don't pause execution though, it runs flawlessly.
    I'm still stuck on the passing of the .NET object reference though.  Oddly enough, it seems to work if I reference the object reference in a subsequence using the following syntax:
    RunState.Caller.Locals.CustomDialogRef
    But if I try to create an object reference parameter and pass the custom dialog ref by reference, it still fails with this strange "type mismatch"...  I still can't find any solution that works for accessing the object reference from sequences that are started on a separate execution...  Maybe I can store the reference in a station global...  I hate using globals though - it goes against my idea of good programming.
    Anyway, thanks again, and any additional suggestions are certainly appreciated.

  • Expected object reference found execution

    I have a .NET DLL that has a method that takes as a by reference parameter an object of type NationalInstruments.TestStand.Interop.API.Execution. In TestStand 4.2.1 this worked fine if I passed it RunState.Execution.
    Now in TestStand 2010 I get an error in TestStand that the method expected an object reference, but found an execution. An execution is what I want is what the method is describing. So, why does this not work?
    Anyone have any ideas?
    Thanks.
    Solved!
    Go to Solution.

    Hi Skeptical,
    This is a known backwards compatibility issue introduced in TestStand 2010 and will be fixed in a future release.
    That said, it doesn't really make sense for the parameter to be byref (i.e. in/out) in this case because the Execution interface is already a reference data type. Thus, passing it byref implies that the method has the possibility of replacing the object which RunState.Execution points to with a different Execution object which most likely is not something the method would ever do.
    So as a workaround you can do one of the following:
    1) Change the prototype of the method (or add a new overload) to take the execution parameter by value (i.e. in only), which is likely what the author of the code really intended anyway.
    Or
    2) Create a local variable of type Object Reference, and assign RunState.Execution to it before your call to the method, and then pass the local variable for the byref parameter.
    Please let us know if you have any questions or if the workarounds are not sufficient for you.
    Hope this helps,
    -Doug

  • Methods of expection object

    Where can I find a list of methods of the implicit "exception" object?
    Thanks

    If you mean the "exception" scripting variable available in a JSP error page then, according to the JSP spec, it refers to an instance of java.lang.Throwable which is also documented in the API.

  • Null and empty string not being the same in object?

    Hello,
    I know that null and empty string are interpreted the same in oracle.
    However I discovered the strange behaviour concerning user defined objects:
    create or replace
    TYPE object AS OBJECT (
    value VARCHAR2(2000)
    declare
    xml xmltype;
    obj object;
    begin
    obj := object('abcd');
    xml := xmltype(obj);
    dbms_output.put_line(xml.getStringVal());
    obj.value := '';
    xml := xmltype(obj);
    dbms_output.put_line(xml.getStringVal());
    obj.value := null;
    xml := xmltype(obj);
    dbms_output.put_line(xml.getStringVal());
    end;
    When creating xml from object, all not-null fields are transformed into xml tag.
    I supposed that obj.value being either '' or null will lead to the same result.
    However this is output from Oracle 9i:
    <OBJECT_ID><VALUE>abcd</VALUE></OBJECT_ID>
    <OBJECT_ID><VALUE></VALUE></OBJECT_ID>
    <OBJECT_ID/>
    Oracle 10g behaves as expected:
    <OBJECT><VALUE>abcd</VALUE></OBJECT>
    <OBJECT/>
    <OBJECT/>
    However Oracle 9i behaviour leads me to the conclusion that oracle
    must somehow distinguish between empty string and null in user defined objects...
    Can someone clarify this behaviour?
    Thus is it possible to test if object's field is empty or null?

    However Oracle 9i behaviour leads me to the conclusion that oracle
    must somehow distinguish between empty string and null in user defined objects...
    Can someone clarify this behaviour?
    Thus is it possible to test if object's field is empty or null?A lot of "fixes" were done, relating to XML in 10g and the XML functionality of 9i was known to be buggy.
    I think you can safely assume that null and empty strings are treated the same by Oracle regardless. If you're using anything less than 10g, it's not supported any more anyway, so upgrade. Don't rely on any assumptions that may appear due to bugs.

  • Object type for multiple/text/unrestricted property

              Hi,
              Does anybody know what's the object type for multiple/text/unrestricted property.
              I tried to use um:setproperty tag to set the value of a multiple/text/unrestricted
              type property in jsp. I got the following error if the object type I use is ArrayList:
              javax.transaction.TransactionRolledbackException: Transaction: '995540362044_8798'
              rolled back due to EJB exception:
              java.rmi.RemoteException: EntityPropertyManagerImpl.insertTypeSpecificValue():
              caught ClassCastException. The reason might be because the type of the passed
              value does not mismatch the property type stored in schema information. Expected
              object type is: 3 and the object type was: java.util.ArrayList
              Does anybody know what's this type 3 object?
              Br,
              -Niyue Chen
              

    Hi All,
    I need to convert the amount value in comma to dot say 1000,00 to 1000.00.Any function module is there to convert it.After converting it i need to pass this value as exporting parameter to a function module having data type as character(lenght 13).
    Thnks
    Deb

  • How do I write objects over a SocketChannel?

    Using the regular Socket class we can pass objects over sockets like this.
    Socket s = new Socket("127.0.0.1", 80);
    ObjectOutputStream out = new ObjectOutputStream(s.getOutputStream());
    out.writeObject(new Object());
    Now, I've looked through the documentation on the new Channel classes and have only seen ways to pass bytes over the channel, not an entire object. Is there an easy way to pass an entire object over a channel? Am I just missing an appropriate wrapper that adds this functionality?
    Thanks,
    Dave

    This code will help you converting an Object to a byte[]:
    //Object to send MUST implement Serializable
    SerializedObject anObject = new SerializedObject();
    //byte[] needed to send
    byte[] aByteArray = null;
    //the conversion
    java.io.ByteArrayOutputStream aByteArrayOutputStream = new java.io.ByteArrayOutputStream();
    java.io.ObjectOutputStream aObjectOutputStream = new java.io.ObjectOutputStream(aByteArrayOutputStream);
    aObjectOutputStream.writeObject(anObject);
    aObjectOutputStream.close();
    aByteArray = aByteArrayOutputStream.toByteArray();
    //When you receive the Object you should reverse the conversion
    //byte[] reveived from InputStream
    byte[] aReceivedByteArray;
    //Expected Object
    SerializedObject theExpectedObject = null;
    //the conversion
    java.io.ByteArrayInputStream aByteArrayInputStream = new java.io.ByteArrayInputStream(aReceivedByteArray);
    java.io.ObjectInputStream aObjectInputStream = new java.io.ObjectInputStream(aByteArrayInputStream);
    theExpectedObject = aObjectInputStream.readObject();
    That's one way to do it.
    You should watch out with Serializable object when sending it to another OS or JRE-version.

  • Object comparision with equals()

    hi all ..
    i have stuck in a problem I'm testing a small system where there are 4 classes mainly an abstract parent class and two other sub classes and a client Class ,respectively ,Vehicle, Car , Van and Manager. In my "Manager" class there is a method [setCarier()] that checks whether the object that is passed to the method is a "Car "or "Van" and do something accordingly. code is given bellow
    note: there is another method[returnRegNo()] in the Vehicle class that returns the registration number.
    1 public void setCarier(Vehicle v) throws NullPointerException
    2 {
    3 if(v.equals(null))throw new NullPointerException("Reffering to a null value");
    4 if(v.equals(new Car(v.returnRegNo())))
    5 {  // do something}
    6 else{ // do something else}
    7 }
    problem : is it wrong if i try to compare my unpredicted Vehicle object i.e "v" with the expected object i.e Car using equals() method, as i have done in the 4th line. Because when i try to test this method in junit by giving an instance of Car and using assertEquals() method it reports bellow description
    expected:<Availability: AVAILABLE Registration NO xc45ghy Max Weight: 500 Type of the Vehical: Car> but was:<null>
    but if i use v instanceof Car the testing works properly. please kindly explain me whats wrong with this equals() method.

    Hello Chandima,
    I'm not sure what you are trying to accomplish, but checking whether a is of type B is generally discouraged. Maybe you should introduce an enum:
    public abstract class Vehicle {
         public enum Type {
              CAR, VAN;
         public abstract Type getType();
         /* further Vehicle code */
    public class Car extends Vehicle {
         public Type getType() {
              return Vehicle.Type.CAR;
    }As a side note: Line 3 of your code is confusing. When you encounter a NullPointerException, you don't expect it to be thrown explicitly. If you feel you have to compare to null then throw an IllegalArgumentException or use an assert statement:
    if(v == null) {
         throw new IllegalArgumentException("v = " + v);
    // or
    assert v != null : "v = "+ v;EDIT: changed getType() to abstract, makes way more sense.. ;)
    With kind regards
    Ben
    Edited by: BenSchulz on Jan 29, 2008 11:51 AM

  • Object is not an instance of declaring class

    Hi All,
    I am having an issue with reflection invoking a method. I have looked up the error I am getting but cannot see why my code is throwing it. As I understand it, the error thinks I am invoking a method on the wrong instance of an expected object, but clearly my code shows I am passing the same class.
    The call to field.getName() will return capitalised variables Id and Description, so that when "get" is prepended, getId and getDescription are formed. Neither method takes arguments.
    I have placed a log statement gm= to find out whether the Method object has been captured, and it has. I get getId logged to the console. All fine so far until a call is made to invoke. Clearly my passed lineItemClass is causing a problem but I am not sure why, this class afterall does have getId. Have also tried changing the lineItemClass param to lineItem which is an actual instance found earlier in my code but this throws ClassCastException, even though that too has getId.
    Your help appreciated!
    try {
    Object[] args = {};
    Class[] paramTypes = {};
    Class lineItemClass = lineItem.getClass();
    Method getMethod = lineItemClass.
    getDeclaredMethod("get" + field.getName(), paramTypes);                    
    System.out.println("gm=" + getMethod.getName());
    Object value = getMethod.invoke(lineItemClass, args);
    } catch (Exception e) {
    System.out.println("error on getFieldValue " + field.getName() + " " + e.getMessage());
    }

    You cannot overload a method with a different return type only, in this case invoke can only return an Object.
    What reflection does for you is ensure that if the actual method invoked returns a primitive, that the equivalent Number type or Boolean is returned.
    Number is the superclass of all primitive wrappers except Boolean, which is the wrapper for the boolean primitive type.
    What reflection also does for you is ensure that although parameter values must be objects that the correct type is used in a method invocation so a method that expects an int will be invoked with a parameter of type Integer, Method.invoke ensures that the Integer value is converted to an int before the method actually is called.

  • RE:Object Brokers

    We have developed a number of applications using ObjectBroker both
    to callout from Forte and callin to Forte from 'C', Visual Basic etc.
    It is quite easy to do this once you get the hang of all the steps
    involved in advertising a Forte service object as an ObjectBroker
    server.Forte does a lot of this automatically.
    There are some limitations wrt to passing datatypes like
    arrays since by default ObjectBroker expects objects as parameters
    and one cannot pass a Forte object directly.
    But we have used workarounds and have been able to
    get even Visual Basic clients do all the things a Forte client does
    (when talking to a Forte server).
    Call-out is even easier since Forte generates all the interface stuff
    needed to access functions in the ObjectBroker server code.
    - Arvind.
    Arvind Kumar Krishnaswamy
    Digital/Forte Software Products Group
    Digital Equipment Corporation
    1800,Harrison Street,Suite 1700,
    Oakland.CA 94612
    Tel : 510-251-6537
    Fax : 510-251-6531

    Alex,
    I think the new method Craig proposed
    PersistenceManager.newObjectIdInstance(...) is the API that you want to
    go from stringifiedObjectId to an ObjectId. It is possible however that
    we may have to post and pre process the stringifiedObjectId to make it
    happy with various protocols that we might want to pass it through.
    David

  • Expected: java.io.ByteArrayInputStream@2a4983 but was: java.io.BufferedInp

    Hi,
    The error I am facing is-
    expected:<java.io.ByteArrayInputStream@2a4983> but was:<java.io.BufferedInputStream@406199>
    Actully I am writing the Junit test cases. I am using
    InputStream im = this.getClass().getResourceAsStream("Mol_File.mol");     
    and that's return me BufferedInputStream, and I need to convert this to ByteArrayInputStream.
    If you guys any idea how can i convert this, then please provide me some sample code.
    I am doing a lot of googling but not found the desired result.
    Thanks
    Devesh

    It's quite obvious from the error message.
    You've told JUnit to check whether two objects are equal. The expected object is a ByteArrayInputStream, but what you actually gave it was a BufferedInputStream.
    I suspect you really wanted to open both streams and compare the contents? If so, you'll need to do that by hand.
    Also, opening external resources (such as files) is considered a bad idea in unit tests.

  • ...is not abstract and does not override abstract method compare

    Why am I getting the above compile error when I am very clearly overriding abstract method compare (ditto abstract method compareTo)? Here is my code -- which was presented 1.5 code and I'm trying to retrofit to 1.4 -- followed by the complete compile time error. Thanks in advance for your help (even though I'm sure this is an easy question for you experts):
    import java.util.*;
       This program sorts a set of item by comparing
       their descriptions.
    public class TreeSetTest
       public static void main(String[] args)
          SortedSet parts = new TreeSet();
          parts.add(new Item("Toaster", 1234));
          parts.add(new Item("Widget", 4562));
          parts.add(new Item("Modem", 9912));
          System.out.println(parts);
          SortedSet sortByDescription = new TreeSet(new
             Comparator()
                public int compare(Item a, Item b)   // LINE CAUSING THE ERROR
                   String descrA = a.getDescription();
                   String descrB = b.getDescription();
                   return descrA.compareTo(descrB);
          sortByDescription.addAll(parts);
          System.out.println(sortByDescription);
       An item with a description and a part number.
    class Item implements Comparable     
          Constructs an item.
          @param aDescription the item's description
          @param aPartNumber the item's part number
       public Item(String aDescription, int aPartNumber)
          description = aDescription;
          partNumber = aPartNumber;
          Gets the description of this item.
          @return the description
       public String getDescription()
          return description;
       public String toString()
          return "[descripion=" + description
             + ", partNumber=" + partNumber + "]";
       public boolean equals(Object otherObject)
          if (this == otherObject) return true;
          if (otherObject == null) return false;
          if (getClass() != otherObject.getClass()) return false;
          Item other = (Item) otherObject;
          return description.equals(other.description)
             && partNumber == other.partNumber;
       public int hashCode()
          return 13 * description.hashCode() + 17 * partNumber;
       public int compareTo(Item other)   // OTHER LINE CAUSING THE ERROR
          return partNumber - other.partNumber;
       private String description;
       private int partNumber;
    }Compiler error:
    TreeSetTest.java:25: <anonymous TreeSetTest$1> is not abstract and does not over
    ride abstract method compare(java.lang.Object,java.lang.Object) in java.util.Com
    parator
                public int compare(Item a, Item b)
                           ^
    TreeSetTest.java:41: Item is not abstract and does not override abstract method
    compareTo(java.lang.Object) in java.lang.Comparable
    class Item implements Comparable
    ^
    2 errors

    According to the book I'm reading, if you merely take
    out the generic from the code, it should compile and
    run in v1.4 (assuming, of course, that the class
    exists in 1.4). I don't know what book you are reading but that's certainly incorrect or incomplete at least. I've manually retrofitted code to 1.4, and you'll be inserting casts as well as replacing type references with Object (or the erased type, to be more precise).
    These interfaces do exist in 1.4, and
    without the generics.Exactly. Which means compareTo takes an Object, and you should change your overriding method accordingly.
    But this raises a new question: how does my 1.4
    compiler know anything about generics? It doesn't and it can't. As the compiler is telling you, those interfaces expect Object. Think about it, you want to implement one interface which declares a method argument type of Object, in several classes, each with a different type. Obviously all of those are not valid overrides.

  • Error Connecting to database URL jdbc:oracle:oci:@rmsdbtst as user rms13 java.lang.Exception:UnsatisfiedLinkError encountered when using the Oracle driver

    Trying to Install RMS application 13.2.2 and I get past the pre-installation checks and when I get to the Data Source details and enter the data source details with the check box checked to validate the schema/Test Data Source I get the following error:
    Error Connecting to database URL jdbc:oracle:oci:@rmsdbtst as user rms13 java.lang.Exception:UnsatisfiedLinkError encountered when using the Oracle driver. Please check that the library path is set up properly or switch to the JDBC thin client oracle/jdbc/driver/T2CConnection.getLibraryVersioNumber()
    Checks performed:
    RMS Application code location and directory contents:
    [oracle@test-rms-app application]$ pwd
    /binary_files/STAGING_DIR/rms/application
    [oracle@test-rms-app application]$ ls -ltr
    total 144
    -rw-r--r-- 1 oracle oinstall   272 Dec 7  2010 version.properties
    -rw-r--r-- 1 oracle oinstall   405 Jan 16 2011 expected-object-counts.properties
    -rw-r--r-- 1 oracle oinstall   892 May 13 2011 ant.install.properties.sample
    -rw-r--r-- 1 oracle oinstall 64004 Jun  6  2011 build.xml
    drwxr-xr-x 9 oracle oinstall  4096 Jun 16 2011 rms13
    drwxr-xr-x 3 oracle oinstall  4096 Jun 16 2011 installer-resources
    drwxr-xr-x 3 oracle oinstall  4096 Jun 16 2011 antinstall
    drwxr-xr-x 2 oracle oinstall  4096 Jun 16 2011 ant-ext
    drwxr-xr-x 5 oracle oinstall  4096 Jun 16 2011 ant
    -rw-r--r-- 1 oracle oinstall 11324 Dec 18 09:18 antinstall-config.xml.ORIG
    -rwxr-xr-x 1 oracle oinstall  4249 Dec 18 10:01 install.sh
    drwxr-xr-x 4 oracle oinstall  4096 Dec 18 10:06 common
    -rw-r--r-- 1 oracle oinstall 16244 Dec 19 10:37 antinstall-config.xml
    -rw-r--r-- 1 oracle oinstall   689 Dec 19 10:37 ant.install.log
    [oracle@test-rms-app application]$
    Application installation:
    [oracle@test-rms-app application]$ ./install.sh
    THIS IS the driver directory
    Verified $ORACLE_SID.
    Verified SQL*Plus exists.
    Verified write permissions.
    Verified formsweb.cfg read permissions.
    Verified Registry.dat read permissions.
    Verified Java version 1.4.2.x or greater. Java version - 1.6.0
    Verified Tk2Motif.rgb settings.
    Verified frmcmp_batch.sh status.
    WARNING: Oracle Enterprise Linux not detected.  Some components may not install properly.
    Verified $DISPLAY - 172.16.129.82:0.0.
    This installer will ask for your "My Oracle Support" credentials.
    Preparing installer. This may take a few moments.
    Your internet connection type is: NONE
    Integrating My Oracle Support into the product installer workflow...
         [move] Moving 1 file to /binary_files/STAGING_DIR/rms/application
    Installer preparation complete.
    MW_HOME=/u01/app/oracle/Middleware/NewMiddleware1034
    ORACLE_HOME=/u01/app/oracle/Middleware/NewMiddleware1034/as_1
    ORACLE_INSTANCE=/u01/app/oracle/Middleware/NewMiddleware1034/asinst_1
    DOMAIN_HOME=/u01/app/oracle/Middleware/NewMiddleware1034/user_projects/domains/rmsClassDomain
    WLS_INSTANCE=WLS_FORMS
    ORACLE_SID=rmsdbtst
    JAVA_HOME=/u01/app/oracle/jrockit-jdk1.6.0_45-R28.2.7-4.1.0
    Launching installer...
    To make sure I have connectivity from the app server to the database (on a database server) here are the steps followed:
    [oracle@test-rms-app application]$ tnsping rmsdbtst
    TNS Ping Utility for Linux: Version 11.1.0.7.0 - Production on 19-DEC-2013 10:41:40
    Copyright (c) 1997, 2008, Oracle.  All rights reserved.
    Used parameter files:
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = test-rms-db.vonmaur.vmc)(PORT = 1521)) (CONNECT_DATA = (SERVER = DEDICATED) (SID = rmsdbtst)))
    OK (0 msec)
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ sqlplus rms13@rmsdbtst
    SQL*Plus: Release 11.1.0.7.0 - Production on Thu Dec 19 10:46:18 2013
    Copyright (c) 1982, 2008, Oracle.  All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL> exit
    Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ ping test-rms-db
    PING test-rms-db.vonmaur.vmc (192.168.1.140) 56(84) bytes of data.
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=1 ttl=64 time=0.599 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=2 ttl=64 time=0.168 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=3 ttl=64 time=0.132 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=4 ttl=64 time=0.158 ms
    64 bytes from test-rms-db.vonmaur.vmc (192.168.1.140): icmp_seq=5 ttl=64 time=0.135 ms
    --- test-rms-db.vonmaur.vmc ping statistics ---
    5 packets transmitted, 5 received, 0% packet loss, time 4001ms
    rtt min/avg/max/mdev = 0.132/0.238/0.599/0.181 ms
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ uname -a
    Linux test-rms-app.vonmaur.vmc 2.6.18-128.el5 #1 SMP Wed Jan 21 08:45:05 EST 2009 x86_64 x86_64 x86_64 GNU/Linux
    [oracle@test-rms-app application]$
    [oracle@test-rms-app application]$ cat /etc/*-release
    Enterprise Linux Enterprise Linux Server release 5.3 (Carthage)
    Red Hat Enterprise Linux Server release 5.3 (Tikanga)
    [oracle@test-rms-app application]$
    The database is created and all the batch file scripts have been successfully deployed.  Now working on the application server.  The  Weblogic server is installed and 11g forms and reports are installed successfully.
    Any help would be helpful.
    Thanks,
    Ram.

    Please check MOS Notes:
    FAQ: RWMS 13.2 Installation and Configuration (Doc ID 1307639.1)

  • Authorization issue to execute query via analyzer

    Dear,
    We are experiencing an authorization issue that we can not solve...
    We have grant to user the expected objects to execute query (S_RS_COMP & S_RS_COMP1) and the central objects like S_GUI, S_USER_AGR.
    When we test in RESCEADMIN, everything is fine. We can execute the query.
    When we test it in the analyzer, the variable screen does not pop-up and we get the error message:
    "There is no variable in the workbook, which allows user input"
    Does anybody have a direction to help us to orientate our investigation?
    Many thanks,
    Rodolphe

    Hello,
    What is the basic settings you have in the Query Properties basic setting tab
    Try making it mandatory
    Regards
    Nitin Bhatia

  • Training and Event Management: Start Workflow after PV15 is finished

    I need to start a workflow when transaction PV15 (Follow Up Business Event) is finished for a business event. As I saw in event trace there is no standard BO event created when finishing the follow up. So obviously I have to do it manually. But I also didn't find a BAdI or user exit which can be used for it. Has anyone an idea how to solve this problem? If there is no solution for it I will eventually use a job who checks new follow up flags for business events. But maybe there is a better way?
    Regards,
    Robert

    Well, I really thought these transactions could be helpful. But I'm not yet sure if they could solve the problem. Transaction PV15 changes infotype 1026 (field FLUPX - Indicator: business event follow-up processing completed). That's what I'm interested in. So I'm not sure if Infotype 1001 with subtype A025 with activity as ACER is responsive to finishing PV15. Therefore I added a new entry in SWEHR3 for infotype 1026 and update operation using my own delegated business object Z_PDOTYPEE with the new event POSTPROCESSINGSTARTED. Additionally I wrote a check function module to be sure that the workflow is started only in case IT1026->FLUPX is set. But I don't know what kind of object key will be used when calling event POSTPROCESSINGSTARTED of business object Z_PDOTYPEE. Maybe the key of IT1026? Does anyone know that? In fact the key seems to be different to the expected object key of my business object. When finishing transaction PV15 for a business event the new check function module was called but execution fails with a very strange object key and a very strange error message. What else can I do to solve it?
    Regards,
    Robert

Maybe you are looking for

  • Error while deploying app on Tomcat 6.0

    Hi All, As per https://blogs.oracle.com/dana/entry/how_to_deploy_a_11g_adf_applic_1 , I tried to deploy ADF web app on Tomcat 6.0, but I was blocked by following errors. Env: Jdev 11.1.1.6.0 Tomcat 6.0.36 Catalina.log 2013-4-16 10:29:58 oracle.adf.mb

  • How to upload files (.doc./.pdf) to the database?

    Hello, I know this question was raised several times before but the answers don't really make me happy. I have a table with a BLOB-column for the documents (different mime-types) and a varchar2(100)-column for the mime type. I edited the form in navi

  • Input field in report output

    HI EXPERTS,                I am taking input from user in my report output then I wil save it to my ztable. For taking input I have used follwing code. WRITE : /1 SY-VLINE,                          (5) ITAB-WERKS CENTERED,                          SY

  • Font Organisation

    I recently decided that it was time to tidy up my mac and get rid of old software to free up space. During my spring clean I added more fonts that I had meant to do ages ago. Since doing so I have caused myself more bother instead of creating a faste

  • Using UTL_I18N.ESCAPE_REFERENCE still results in XML Parsing Failed'

    Trying to create an RSS feed from a list of newly delivered library materials, and it's all working except for one record with a Turkish character in it. I am trying to convert that value into AL32UTF8 (the database is UTF8) in the XMLElement call, b