Examples of INTERNAL


Examples of org.omg.CORBA.INTERNAL

                {
                    reset();
                }
                catch( java.io.IOException e )
                {
                    throw new INTERNAL("should never happen: " + e.toString());
                }
                return new ApplicationException( id, this );
            }
            case ReplyStatusType_1_2._SYSTEM_EXCEPTION:
            {
View Full Code Here

Examples of org.omg.CORBA.INTERNAL

            return (CodecFactory) orb.resolve_initial_references("CodecFactory");
        }
        catch (org.omg.CORBA.ORBPackage.InvalidName e)
        {
            logger.error("unexpected error", e);
            throw new INTERNAL(e.toString());
        }
    }
View Full Code Here

Examples of org.omg.CORBA.INTERNAL

    }


    public Connection create_connection (ProtocolProperties props)
    {
        throw new INTERNAL ("DIOP Connection not implemented");
    }
View Full Code Here

Examples of org.omg.CORBA.INTERNAL

    public Listener create_listener (ProtocolProperties props,
                                     int stacksize,
                                     short base_priority)
    {
        throw new INTERNAL ("DIOP Listener not implemented");
    }
View Full Code Here

Examples of org.omg.CORBA.INTERNAL

            info.add_ior_component_to_profile (tc, TAG_INTERNET_IOP.value);
        }
        catch (Exception e)
        {
            logger.error("unexpected exception", e);
            throw new INTERNAL(e.toString());
        }
    }
View Full Code Here

Examples of org.omg.CORBA.INTERNAL

            }
        }
        catch (Exception e)
        {
            logger.error("unexpected exception", e);
            throw new INTERNAL(e.toString());
        }
    }
View Full Code Here

Examples of org.omg.CORBA.INTERNAL

               {
                   return  idToIDL(id());
               }
               catch ( org.omg.CORBA.TypeCodePackage.BadKind bk )
               {
                   throw new INTERNAL("should never happen");
               }
           }
           case   TCKind._tk_void: return "void";
           case   TCKind._tk_string: return "string";
           case   TCKind._tk_wstring: return "wstring";
           case   TCKind._tk_array:
           {
               try
               {
                   return idlTypeName(content_type()) + "[]";
               }
               catch ( org.omg.CORBA.TypeCodePackage.BadKind bk )
               {
                   throw new INTERNAL("should never happen");
               }
           }
           case   TCKind._tk_long: return "long";
           case   TCKind._tk_ulong: return "ulong";
           case   TCKind._tk_longlong: return "long long";
           case   TCKind._tk_ulonglong: return "ulong long";
           case   TCKind._tk_ushort: return "ushort";
           case   TCKind._tk_short: return "short";
           case   TCKind._tk_float: return "float";
           case   TCKind._tk_double: return "double";
           case   TCKind._tk_fixed:
           {
               try
               {
                   return "fixed <" + fixed_digits() + "," + fixed_scale()  + ">";
               }
               catch ( org.omg.CORBA.TypeCodePackage.BadKind bk )
               {
                   throw new INTERNAL("should never happen");
               }
           }
           case   TCKind._tk_boolean: return "boolean";
           case   TCKind._tk_octet: return "octet";
           case   TCKind._tk_char: return "char";
           case   TCKind._tk_wchar:
           {
               return "wchar";
           }
           case   TCKind._tk_any:
           {
               return "any";
           }
           case   TCKind._tk_sequence:
           {
               try
               {
                   return "sequence <" + idlTypeName(content_type()) + ">";
               }
               catch ( org.omg.CORBA.TypeCodePackage.BadKind bk )
               {
                   throw new INTERNAL("should never happen");
               }
           }
           default:
           {
               return "* no typeName for TK " + kind().value() + " *";
 
View Full Code Here

Examples of org.omg.CORBA.INTERNAL

                typeCode = typeCode.content_type();
            }
        }
        catch (org.omg.CORBA.TypeCodePackage.BadKind bk)
        {
            throw new INTERNAL("should never happen");
        }
        return typeCode;
    }
View Full Code Here

Examples of org.omg.CORBA.INTERNAL

        {
            write( bos, 0, size());
        }
        catch( IOException e )
        {
            throw new INTERNAL("should not happen: " + e.toString());
        }

        return bos.toByteArray();
    }
View Full Code Here

Examples of org.omg.CORBA.INTERNAL

                    }
                }
            }
            catch(org.omg.CORBA.TypeCodePackage.BadKind e)
            {
                throw new INTERNAL("should never happen");
            }

            if (id != null)
            {
                final org.omg.CORBA.TypeCode cached;
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.