Import Network Model from Shapefile

Hello,
How to import shapefile of roads network (network data model) into oracle spatial? (Oracle+Spatial 10.2g)
http://www.oracle.com/technology/software/products/spatial/files/shape2sdojava.zip deals only with normal (non-network) spatial data..
Huge thanks!

Ok, putting together your help, I managed to get myself a network model, hurray! But after this script in the end (could you peep through it and tell if anything's missing), VALIDATE_NETWORK gives me this:
SDO_NET.VALIDATE_NETWORK('SHP_TABLE_NET')
No Link Geom Metadata!
How (where) would I insert that Link Geom Metadata? All I found is USER_SDO_GEOM_METADATA, but there is nowhere to insert Link data. Googled, too.
The script, together with instructions, in case you make a nice use of it ;):
* Import a Shapefile into Oracle Spatial as a normal vector map;
* (ISSIT POSSIBLE TO AVOID THIS STEP? PL/SQL .sql file script? But that with DDL restrictions, clumsy variable definitions in DERLARE section etc. drove me nuts and I gave up, just asking users to do simple Find/Replace..):
Replace all occurrences of SHP_TABLE (case sensitive, can be part of a word) in the script below with the table name of the imported map from Shapefile (copy all script from below to a text editor and perform that replace);
* Copy/Paste (in Linux: select text and then use middle mouse button or Shift+Insert to paste it in a console) the script line-by-line, follow any severe errors (ignore ones, when it writes that table cannot be dropped when it does not actually exist :) and the like).
-- delete any tables existing
EXECUTE SDO_NET.DROP_NETWORK('SHP_TABLE_NET');
DROP TABLE SHP_TABLE_PLINK$;
DROP TABLE SHP_TABLE_EDGE$;
DROP TABLE SHP_TABLE_NODE$;
DROP TABLE SHP_TABLE_LINK$;
DROP TABLE SHP_TABLE_FACE$;
-- delete any existing geometry layer
EXECUTE SDO_TOPO.DELETE_TOPO_GEOMETRY_LAYER('SHP_TABLE', 'SHP_TABLE_TOPO', 'FEATURE');
DROP TABLE SHP_TABLE_TOPO;
-- then drop existing topology
EXECUTE SDO_TOPO.DROP_TOPOLOGY('SHP_TABLE');
-- create new topology
EXECUTE SDO_TOPO.CREATE_TOPOLOGY('SHP_TABLE', 0.5);
-- insert the universal face for an empty topology
INSERT INTO SHP_TABLE_FACE$(face_id, boundary_edge_id, island_edge_id_list, island_node_id_list, mbr_geometry)
VALUES(-1, NULL, SDO_LIST_TYPE(), SDO_LIST_TYPE(), NULL);
-- create an Oracle table with a feature layer
DROP TABLE SHP_TABLE_TOPO;
-- note, do not create unique id (PRIMARY KEY) as the data in teleatlas.dbf is inconsistent
CREATE TABLE SHP_TABLE_TOPO(id NUMBER, feature SDO_TOPO_GEOMETRY);
--CREATE TABLE SHP_TABLE_TOPO(id number, type varchar2(1), feature SDO_TOPO_GEOMETRY);
-- register feature layer with topology
EXECUTE SDO_TOPO.ADD_TOPO_GEOMETRY_LAYER('SHP_TABLE', 'SHP_TABLE_TOPO', 'FEATURE', 'CURVE');
-- create updatable TOPO_MAP object and load the whole topology in cache
-- since we just created the topology, the cache will be empty
EXECUTE SDO_TOPO_MAP.DROP_TOPO_MAP('SHP_TABLE_MAP_CACHE');
EXECUTE SDO_TOPO_MAP.CREATE_TOPO_MAP('SHP_TABLE', 'SHP_TABLE_MAP_CACHE');
EXECUTE SDO_TOPO_MAP.LOAD_TOPO_MAP('SHP_TABLE_MAP_CACHE', 'true');
-- copy/paste everything in one go between BEGIN and COMMIT; (including):
-- this one will demand a considerable amount of time
BEGIN
FOR r IN (SELECT id, geometry FROM SHP_TABLE) LOOP
-- associate topological primitives with features
INSERT INTO SHP_TABLE_TOPO(id, feature)
VALUES(r.id,
SDO_TOPO_MAP.CREATE_FEATURE('SHP_TABLE',
'SHP_TABLE_TOPO',
'FEATURE',
r.geometry)
END LOOP;
END;
COMMIT;
-- commit topology changes
EXECUTE SDO_TOPO_MAP.COMMIT_TOPO_MAP;
EXECUTE SDO_TOPO_MAP.DROP_TOPO_MAP('SHP_TABLE_MAP_CACHE');
-- check how many primitives were converted (should be the same number as primitives in the DB)
SELECT COUNT(*) FROM SHP_TABLE_TOPO;
-- after an initial bulk load into an empty topology, initialize_metadata
EXECUTE SDO_TOPO.INITIALIZE_METADATA('SHP_TABLE');
-- check here what tables have been created:
SELECT table_name FROM user_tables WHERE table_name LIKE 'SHP_TABLE_%$';
CREATE TABLE SHP_TABLE_LINK$
AS SELECT edge_id AS link_id,
start_node_id,
end_node_id,
geometry
FROM SHP_TABLE_EDGE$;
-- FULL NETWORK:
--CREATE TABLE SHP_TABLE_PATH$(PATH_ID NUMBER,
-- PATH_NAME VARCHAR2(200),
-- PATH_TYPE VARCHAR2(200),
-- START_NODE_ID NUMBER NOT NULL,
-- END_NODE_ID NUMBER NOT NULL,
-- COST NUMBER,
-- SIMPLE VARCHAR2(1),
-- PATH_GEOMETRY MDSYS.SDO_GEOMETRY);
--CREATE TABLE roads_incompl_plink$(path_id number not null, link_id number not null, seq_no number not null);
--INSERT INTO USER_SDO_NETWORK_METADATA(
-- network, network_category, geometry_type,
-- node_table_name, node_geom_column,
-- link_table_name, link_geom_column, link_direction,
-- path_table_name, path_geom_column,
-- path_link_table_name)
-- VALUES(
-- 'SHP_TABLE_NET', 'SPATIAL', 'SDO_GEOMETRY',
-- 'SHP_TABLE_NODE$', 'GEOMETRY',
-- 'SHP_TABLE_LINK$', 'GEOMETRY', 'UNDIRECTED',
-- 'SHP_TABLE_PATH$', 'PATH_GEOMETRY',
-- 'SHP_TABLE_PLINK$');
-- MINIMAL NETWORK:
INSERT INTO USER_SDO_NETWORK_METADATA(
network, network_category, geometry_type,
node_table_name, node_geom_column,
link_table_name, link_geom_column, link_direction)
VALUES(
'SHP_TABLE_NET', 'SPATIAL', 'SDO_GEOMETRY',
'SHP_TABLE_NODE$', 'GEOMETRY',
'SHP_TABLE_LINK$', 'GEOMETRY', 'UNDIRECTED');
SELECT SDO_NET.VALIDATE_NETWORK('SHP_TABLE_NET') FROM DUAL;
COMMIT;

Similar Messages

  • Unable to Import RFC Models from CRM

    Hi Experts,
        I am unable to import adaptive RFC Models from CRM System,It is giving an error.Previously i imported Bapi from R/3 system and it is working fine. Is it that we can only import Bapi from R/3 system only i.e ABAP Backend.
    I am waiting for all your reply.

    hi
    check this
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/3fe9e790-0201-0010-f787-e2e78c559f38
    what content u want to get from bapi
    Organizational Model Transfer from R/3 to CRM
    bvr

  • Importing a model from a configurator to a custom table

    Hi,
    I'm new to Configurator.
    Can someone please advice in detail how to import all possible combinations from a model in the configurator to a custom table?
    I have created a custom table based on the items in the model.
    I have also written a CIO which displays all the possible combinations in a html page when a button is clicked.
    What i want is, how to connect to a database and import into the custom table.
    Any Help Appreciated.
    Thanks in advance.
    --PK                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    Hi,
    I read those documents (they are similar), but they don't say much about the web dynpro. There is another document saying I should add my class as an external jar to my project, but it still doesnt work. The errors I get are in the following classes:
    IPublic<Custom Controller>.java
    Internal<Custom Controller>.java
    The errors are:
    Clients (my class) cannot be resolved or is not a type
    gen_modelInstance cannot be resolved
    Any thoughts?
    Lionel

  • Error while importing BDC models to SharePoint from SAP

    Hi Team,
    I am facing error while importing the BDC models to SharePoint from SAP Duet environment. Please find the attached screen shot and text document for reference.
    Below are the tasks performed before importing the BDC models.
    1) SSL & STS certificated created in the SharePoint environment.
    2) Certificates are uploaded to the SAP duet environment.
    3) SSL certificate created in SAP duet environment is uploaded to Trust location in SharePoint central admin.
    Error while importing the BDC models manually through Central Admin.
    Application definition while import failed. The following error occurred: The BDC model file is not well-formed. Data at root level is invalid at. Line 1,position 1.
    C:\Program Files\Duet Enterprise\1.0>duetconfig/importbdc C:\Users\adm-in.itsupp
    ort\Desktop\Rahul\BDC\models.xml
    Starting import of models from C:\Users\adm-in.itsupport\Desktop\Rahul\BDC ...
    Attempting to import model: Account
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '48' and Position: '20'.
    Failed to import model: Account
    Attempting to import model: AccountDocumentStorageCategory
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: AccountDocumentStorageCategory
    Attempting to import model: AccountDocumentTypeStatus
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: AccountDocumentTypeStatus
    Attempting to import model: AccountDocuments
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: AccountDocuments
    Attempting to import model: AccountTitle
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '47' and Position: '20'.
    Failed to import model: AccountTitle
    Attempting to import model: BOM
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: BOM
    Attempting to import model: Contact
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: Contact
    Attempting to import model: ContactTitle
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '47' and Position: '20'.
    Failed to import model: ContactTitle
    Attempting to import model: CountryCode
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '48' and Position: '20'.
    Failed to import model: CountryCode
    Attempting to import model: CustomerInquiry
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '47' and Position: '20'.
    Failed to import model: CustomerInquiry
    Attempting to import model: CustomerInquiryItem
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '44' and Position: '20'.
    Failed to import model: CustomerInquiryItem
    Attempting to import model: CustomerInquiryPartner
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '44' and Position: '20'.
    Failed to import model: CustomerInquiryPartner
    Attempting to import model: CustomerQuotation
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '49' and Position: '20'.
    Failed to import model: CustomerQuotation
    Attempting to import model: CustomerQuotationItem
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '47' and Position: '20'.
    Failed to import model: CustomerQuotationItem
    Attempting to import model: CustomerQuotationPartner
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '47' and Position: '20'.
    Failed to import model: CustomerQuotationPartner
    Attempting to import model: Employee
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: Employee
    Attempting to import model: InquiryItemDocument
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '49' and Position: '20'.
    Failed to import model: InquiryItemDocument
    Attempting to import model: InquiryItemDocumentStorageCategory
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '45' and Position: '20'.
    Failed to import model: InquiryItemDocumentStorageCategory
    Attempting to import model: InquiryItemDocumentTypeStatus
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '45' and Position: '20'.
    Failed to import model: InquiryItemDocumentTypeStatus
    Attempting to import model: JobFunction
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '47' and Position: '20'.
    Failed to import model: JobFunction
    Attempting to import model: Product
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: Product
    Attempting to import model: ProductDocument
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '42' and Position: '20'.
    Failed to import model: ProductDocument
    Attempting to import model: ProductDocumentStorageCategory
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '45' and Position: '20'.
    Failed to import model: ProductDocumentStorageCategory
    Attempting to import model: ProductDocumentTypeStatus
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '45' and Position: '20'.
    Failed to import model: ProductDocumentTypeStatus
    Attempting to import model: QuotationItemDocument
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '45' and Position: '20'.
    Failed to import model: QuotationItemDocument
    Attempting to import model: QuotationItemDocumentStorageCategory
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: QuotationItemDocumentStorageCategory
    Attempting to import model: QuotationItemDocumentTypeStatus
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '46' and Position: '20'.
    Failed to import model: QuotationItemDocumentTypeStatus
    Attempting to import model: ReportTemplate
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '49' and Position: '20'.
    Failed to import model: ReportTemplate
    Attempting to import model: Role
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '65' and Position: '20'.
    Failed to import model: Role
    Attempting to import model: UserRoles
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '42' and Position: '20'.
    Failed to import model: UserRoles
    Attempting to import model: SAP.Office.DuetEnterprise.Workflow.UserSubscription
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '42' and Position: '20'.
    Failed to import model: SAP.Office.DuetEnterprise.Workflow.UserSubscription
    Attempting to import model: SAP.Office.DuetEnterprise.Workflow
    [ERROR] The remote certificate is invalid according to the validation procedure.
    Error was encountered at or just before Line: '45' and Position: '11'.
    Failed to import model: SAP.Office.DuetEnterprise.Workflow
    [WARNING] Duet Enterprise configuration utility has completed importing the BDC
    models but some models could not be imported. Review the logs for detailed infor
    mation on the errors which occurred during the import operation.
    Failed to import the following models -
    Account
    AccountDocumentStorageCategory
    AccountDocumentTypeStatus
    AccountDocuments
    AccountTitle
    BOM
    Contact
    ContactTitle
    CountryCode
    CustomerInquiry
    CustomerInquiryItem
    CustomerInquiryPartner
    CustomerQuotation
    CustomerQuotationItem
    CustomerQuotationPartner
    Employee
    InquiryItemDocument
    InquiryItemDocumentStorageCategory
    InquiryItemDocumentTypeStatus
    JobFunction
    Product
    ProductDocument
    ProductDocumentStorageCategory
    ProductDocumentTypeStatus
    QuotationItemDocument
    QuotationItemDocumentStorageCategory
    QuotationItemDocumentTypeStatus
    ReportTemplate
    Role
    UserRoles
    SAP.Office.DuetEnterprise.Workflow.UserSubscription
    SAP.Office.DuetEnterprise.Workflow
    C:\Program Files\Duet Enterprise\1.0>
    C:\Program Files\Duet Enterprise\1.0>
    Qucik response is much appreciated.
    Regards,
    Rahul Reddy.

    Take a look at this blog post,
    http://brainof-dave.blogspot.com/2008/08/remote-certificate-is-invalid-according.html
    Dimitri Ayrapetov (MCSE: SharePoint)

  • Import model from Designer looses domains

    Hello,
    I have tried to import a model from Oracle Designer into Oracle SQL Developer Data Modeler, and found that the domains where not imported. As a consequence all attributes defined by domains (most of ours) are defined by the domain "Unknown" after the import.
    How can I import the domains from Oracle Designer?
    Thank you,
    Carsten
    Edited by: ckhansen on Oct 15, 2009 9:49 PM
    Edited by: ckhansen on Oct 15, 2009 9:50 PM

    Hi Philip,
    I'm using OSDM build 570 with Designer version 10.1.2.0.2. The repository is not versioned. All the domains belong to the imported application system.
    This is the import log:
    Oracle SQL Developer Data Modeler Version: 2.0.0 Build: 570
    Oracle SQL Developer Data Modeler Import Log
    Date and Time: 2009-10-16 09:11:49
    Design Name: Oracle Designer (Read-Only)
    RDBMS: Oracle Database 10g
              All Statements:           105
              Imported Statements:      105
              Failed Statements:           0
              Not Recognized Statements:      0
    Cheers,
    Carsten

  • How to import network devices on ISE 1.2

    Hi, experts,
    I'm trying to import network devices on ISE 1.2.0.899
    so I downloaded the template and opened with notepad and wrote all the nessesarry information.
    and I tried to upload to ISE, and it just said import failed. no reason..
    does anyone know how to do it ?

    Hi jiyoung
    This import failed error might occur due to following reasons so please make sure that :
    You are not running two import jobs of the same resource type at the same time. For example, you cannot concurrently run two import jobs to import network devices from two different import files.
    More over please make sure that while configuring the network devices you are performing job from a super admin or network device admin group.
    Best Regards:
    Muhammad Munir
    Hi, experts,
    I'm trying to import network devices on ISE 1.2.0.899
    so I downloaded the template and opened with notepad and wrote all the nessesarry information.
    and I tried to upload to ISE, and it just said import failed. no reason..
    does anyone know how to do it ?

  • How to import eEPC model into BPEL model of JDeveloper

    Hello All,
    Can any buddy please help me,
    I need to import EPC model from Oracle BPA architecture 11g, to BPEL Process in JDeveloper 11g,
    i am using Oracle BPA Suite 11g with Oracle 11g Backend database, and i have installed JDeveloper 11g
    Thanks
    Milind

    Add classes12.jar to j2ee/home/lib directory.

  • OWB wont import new FKs from Designer

    After importing a model from Designer and validating I found a couple of tables with FK constraints that had been defined with no columns. No problem there, went back into Designer and fixed them up.
    Now though, for those tables, OWB will not acknowledge the existance of any foreign keys for them. Not even newly created ones!
    I have tried many things including deleting the tables from OWB and reimporting new but they still show no foreign keys despite the fact that they are clearly defiined in Designer.
    Any ideas?

    OK, I figured out what's going on. Things are worse than I first thought.
    I appears that whilst the tables are coming from a physical model, the relationships come from the logical model (perhaps via the "relationship" attribute of the foreign key constraints). That suggests that if you have created a physical model from scratch, or have changed the model generated from the logical model (as I have) then importing from Designer into OWB is not a suitable approach.
    Looks like I will have to generate DDL from Designer, run it into the database and then reverse engineer from there into OWB.

  • How to convert\import eEPC model to BPEL Process and used it in JDeveloper?

    Hello All,
    Can any buddy please help me,
    I need to import EPC model from Oracle BPA architecture 11g, to BPEL Process in JDeveloper 11g,
    i am using Oracle BPA Suite 11g with Oracle 11g Backend database, and i have installed JDeveloper 11g
    Thanks
    Milind

    Create a new SOA application, then create a project inside it, type should be SOA.
    Give Composite a name and select "Composite from BPA template" as Composite template.
    In the next window, you will see your BPA Server( otherwise create a new BPA connection) ,explore to your EPC model and double click to import it.
    thanks

  • I can import some songs from another computer but not others.  All the songs were purchased with the same apple id. Message says "...check connection to network..." Any ideas as to what could be causing this problem?

    Using home share, I can import some songs from my son's  computer but not others.  All the songs were purchased with the same apple id.  Err msg:"There was a problem downloading ... You do not have enouggh access privileges for this operation. Please check that the connection to the network is active and try again."  The network appears to be fine .  I can import other songs from his library.  The same songs cause me a problem each time I try.  My husband had no trouble importing the same songs I have trouble with. I get the same error message if I try to import the same songs from my husbands computer as well.  "Command I" appears to show the same protections on both the songs I can import & the ones I cannot.  My husband and son are both running OS 10.6, while I am running 10.7.  I think I had this problem even before I upgraded, but I am not certain.

    x0SiN0x:
    Welcome to Apple Discussions..
    My first suggestion is to Repair Disk. Here's how:
    Insert Installer disk and Restart, holding down the "C" key.
    Go to Installer menu (Panther and earlier) or Utilities menu (Tiger) and launch Disk Utility.
    Select your HDD (manufacturer ID) in the left panel.
    Select First Aid in the Main panel.
    (Check S.M.A.R.T Status of HDD at the bottom of right panel, and report)
    Click Repair Disk on the bottom right.
    If DU reports disk does not need repairs quit DU and restart.
    If DU reports errors Repair again and again until DU reports disk is repaired.
    If DU reports errors it cannot repair you will need to use a utility like Tech Tool Pro or Disk Warrior
    Please post back and let me know how that goes.
    Here are a few links that may help you to identify the issues:
    Resolving Disk, Permission, and Cache Corruption
    Tuning Mac OS X Performance
    Mac OS X System Maintenance
    Please don't hesitate to post back should you have further questions or comments, or with update.
    Good luck.
    cornelius

  • Import java class from model package

    I have a java class in model package.I create a managed bean in the view package and I want to import the first java class with "import model.class1" but this error "import model.class1 not found" is shown.What should I do?

    Hi,
    Why are you importing the Model classes to your backing bean? You should not be doing that. Instead, expose the method in model as client interface (whichever you want to call in the backing bean), create the method binding in your pagedef. Then, from the backing bean, you can execute the method programatically.
    -Arun

  • Import model from OWB repository

    We have an OWB repository with several 100 tables, mappings, etc. what we try to import but SQL Modeler seems to import nothing although it gives no errors.
    We've found that before importing all the OWB environment variables must be set.
    Which we did.
    Then it seems to connect to the repository, do some processing and returns but without any changes in the model.
    Did anyone import model from OWB successfully?
    We are using version 10.2 OWB and database.
    Bye,
    Gabor

    OK ive imported from Designer into OSDM just fine.
    Good. Glad this works.
    However things I dont like so far ...;)
    The properties palete can you make it like owb in that when i open it and change context in the browser it updates? I dont want to have to keep going show properties.
    In future releases User Interface will be adresses to be more intuitive and to be more SQL developer alike
    Pushing the OK button does not appear to do anything the properties window stays open so how is it different to apply?
    Sorry, but we don't understand. Pushing OK should work and should close the property window.
    Things I dont like... the number of clicks to see information ( no hotkeys or shortcuts  )
    Agree. In future releases User Interface will be adresses to be more intuitive and to be more SQL developer alike
    Next Early Adopter will have new dialog for entities and tables
    No drag n drop columns from 1 table to another. No right click on browser nodes to create keys etc No CTL drop no SHIFT drop
    You can drag columns
    an enhancement request will be created
    Why cant I reorder columns by moving them in the browser? Then I could move them visually. This also applies to property paletes if I have to go to the effort of highlighting a current row then why cant I just grab it and move it?
    You can reorder columns/attributes by the "up" and "down" arrows after you highlighted the column or attribute in their respective property window.
    an enhancement request will be created for doing this from the browser and the grabbing
    Appears to be no ability to set common properties over a number of attributes. If I select a number of columns I cant pull up a property pallete to set a common attribute on them.
    an enhancement request will be created
    I could not get the enginer to logical model to enable
    Should work. when you have the relational model, use the engineering to logical model icon (2 red arrows) or the design menu option and do engineer to logical model
    Otherwise looks promising
    Thank you!!
    Kind regards,
    René De Vleeschauwer
    SQL Developer Data Modeling team

  • Import RFC Model

    All,
      I'm using Sneak preview full java version. When I try to call SAP Function module from webdynpro Java via RFC Model, it's asking me to specify the SAP Server detail logon information.
    Can anyone help me what information i should give becos im using Sneak preview Java version...
    Thanks..
    BM

    Hi Bharathi
    If u want to import Adaptive RFC Models from ABAP backend u have two ways for importing the model
    1) single server : where u need to specify ABAP system creditials such as Application server name,client,system number for ABAP system available in ur Local Area Network
    2) Load Balancing : Here DropDown List is automatically populated with list of ABAP servers which are defined in ur SAP LOGON PAD . Actually NWDS picks up names of these servers from <b>saplogon.ini</b> file which stores all ABAP servers defined in ur SAP LOGON PAD
    so if u have entry for the required ABAP backend in ur SAP LOGON PAD then u can go for Load Balancing method in which most of the entries will be automatically populated from saplogon.ini file
    If u donot have SAP LOGON PAD or saplogon.ini file doesnot have entry for the ABAP server then u should go for single server mode for Importing RFC models
    Hope u Got the difference between the two methods now
    Regards
    Asif

  • Questions on the LRS network model.

    On page 6-26 of the "Oracle Spatial Topology and Network Data Models" documentation, the example shows that measures are recorded in the 'roads' table (i.e. the one with the geometry of the feature).
    1. Why in this example is 'null' used for Node 5 ('...automatically calculated and filled...') but not the others?
    2. Why in this example is measure even necessary? There is no link to the underlying route from this table (i.e. measures should only be recorded in the context of a given route).
    3. It seems like this measure is merely the offset from the starting vertex (not true LRS); do we have the wrong interpretation?
    On Page 6-30, the example shows that measures are recorded for each Node and each Link. We had envisioned nodes and links being separate from the route they play a role upon. For example, if the same node was part of two distinct routes, does this mean storing two rows in "road_nodes"? But they're the exact same location and the same node in our network. The same question applies to the 'road_links' table. If the answer is 'duplicate the rows' in nodes and links (once per route), why doesn't 10g Spatial record 'measure' in the "road_paths" table? Note that, on page 6-31, it says that it is '...for possible future use...'...
    This example also implies the rows in the roads table are replicated as the (m)easure of the geometry column would change based on the route involved? If this is not the case why store the measure in the geometry column at all?

    Hi,
    My name is Gary Wong, and the original poster was asking these questions on my behalf. I'd like to continue the thread below in-line....
    A: This is a basic LRS concept. You can have some NULL
    measure values, and LRS can compute the actual measure
    corresponding to a NULL value. This has nothing to do
    with Network modeling, so you can assume a valid
    measure value here for this example.So this was just an example showing both 'manually calculated and entered' and 'let Spatial figure it out'? As this is merely the offset from the starting point, wouldn't a user always use NULL to let Spatial figure it out? It seems like this model will always use whole links in a contiguous fashion, so when would the measure not be the cumulative total?
    2. Why in this example is measure even necessary? There
    is no link to the underlying route from this table
    (i.e. measures should only be recorded in the context
    of a given route).So in this model (and example), the entry in roads is the route itself? Other LRS models allow the re-use of a common route, so multiple entries in the roads table would reference the same route (in another table). A real-life example is a single straight road that has different names, or has different road surface, or road classifications.
    Folowing this example, if I wanted to spatially reference some other business attribution on an existing route, say R1, would I have to create another entry in roads and duplicate the data? Even if it has the same start/end locations and path?
    A: Measure is always an offset from the start vertex
    and this is true for any LRS system. I am not sure what
    you mean by "not true LRS".My mistake in using these words; there is no true LRS, just different models/implementations of it =8^). Other LRS systems can have a measure beginning, say 2.5 metres after the starting node (node, not vertex; I define a vertex as as one of co-ordinates defining the link, and node as a topologically significant vertex such as the start and end vertices).
    Hmmm, does this answer my first question above? If you wished to start a road (as per the example) slightly off of a node, would you enter a non-zero measure as the initial co-ordinate?
    Assuming I'm on the right track (i.e. cannot re-use a route), does anyone know if Oracle plans to implement this kind of LRS in 10g Spatial?
    I see a cryptic ".. for possible future use..." reference on page 6-31 regarding the create_path_table() and create_path_link_table() methods.
    Is this future use to allow multiple uses and references of a route?
    Thanks and sorry for the loooong email..
    gary

  • Error in creating Adaptive Webservice model from local wsdl file

    hi ,
         I am working on Netweaver7.1 CE. I am creating adaptive webservice model from local wsdl file which i have saved at location D:/subordinate WSDL WSDL By Raju/Manager.wsdl on my pc. I am able to bind context , build and deploy. But when i am running that webdynpro project m getting following error
      java.io.FileNotFoundException: /D:/subordinate WSDL WSDL By Raju/Manager.wsdl (No such file or directory)
    com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Exception was thrown in preprocessing phase of application session ApplicationSession(name=encryptappl.EncryptAppl, id=25f1f2e1a96411dd9d240050569630a5). The causing exception is nested. RID=25ef0cb0a96411dd91ce0050569630a5
      at com.sap.tc.webdynpro.clientserver.session.ClientSession.doPreprocessing(ClientSession.java:650)
      at com.sap.tc.webdynpro.clientserver.session.ClientSession.doProcessing(ClientSession.java:225)
      at com.sap.tc.webdynpro.clientserver.session.RequestManager.doProcessing(RequestManager.java:231)
      at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.delegateToRequestManager(AbstractExecutionContextDispatcher.java:205)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.DispatchHandlerForRequestManager.doService(DispatchHandlerForRequestManager.java:38)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.AbstractDispatchHandler.service(AbstractDispatchHandler.java:116)
      at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:93)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.ExecutionContextDispatcher.dispatchToRequestManager(ExecutionContextDispatcher.java:140)
      at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:93)
      at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:105)
      at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doContent(AbstractDispatcherServlet.java:87)
      at com.sap.tc.webdynpro.serverimpl.core.AbstractDispatcherServlet.doGet(AbstractDispatcherServlet.java:54)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:707)
      at javax.servlet.http.HttpServlet.service(HttpServlet.java:820)
      at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:66)
      at com.sap.engine.services.servlets_jsp.server.Invokable.invoke(Invokable.java:32)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:431)
      at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:289)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:387)
      at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:376)
      at com.sap.engine.services.servlets_jsp.filters.ServletSelector.process(ServletSelector.java:85)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
      at com.sap.engine.services.servlets_jsp.filters.ApplicationSelector.process(ApplicationSelector.java:160)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
      at com.sap.engine.services.httpserver.filters.WebContainerInvoker.process(WebContainerInvoker.java:67)
      at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
      at com.sap.engine.services.httpserver.filters.ResponseLogWriter.process(ResponseLogWriter.java:60)
      at com.sap.engine.services.httpserver.chain.HostFilter.process(HostFilter.java:9)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
      at com.sap.engine.services.httpserver.filters.DefineHostFilter.process(DefineHostFilter.java:27)
      at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
      at com.sap.engine.services.httpserver.filters.MonitoringFilter.process(MonitoringFilter.java:29)
      at com.sap.engine.services.httpserver.chain.ServerFilter.process(ServerFilter.java:12)
      at com.sap.engine.services.httpserver.chain.AbstractChain.process(AbstractChain.java:71)
      at com.sap.engine.services.httpserver.server.Processor.chainedRequest(Processor.java:309)
      at com.sap.engine.services.httpserver.server.Processor$FCAProcessorThread.run(Processor.java:222)
      at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
      at java.security.AccessController.doPrivileged(Native Method)
      at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:152)
      at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:247)
    Caused by: com.sap.tc.webdynpro.model.webservice.exception.WSModelRuntimeException: Exception on creation of service metadata for WSDL URL 'file:/D:/subordinate WSDL By Raju/Manager.wsdl' and service factory configuration 'null'
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:422)
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.readOperationsFromWSDL(WSModelInfo.java:372)
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadataInternal(WSModelInfo.java:342)
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadata(WSModelInfo.java:326)
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo$Cache.getModelInfo(WSModelInfo.java:199)
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getModelInfoFromCacheOrCreate(WSModelInfo.java:1034)
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getModelInfoFromCacheOrCreate(WSModelInfo.java:248)
      at com.sap.tc.webdynpro.model.webservice.gci.WSTypedModel.<init>(WSTypedModel.java:41)
      at com.apl.model.manager.Manager.<init>(Manager.java:44)
      at encryptappl.comp.EncryptApplComp.wdDoInit(EncryptApplComp.java:112)
      at encryptappl.comp.wdp.InternalEncryptApplComp.wdDoInit(InternalEncryptApplComp.java:126)
      at com.sap.tc.webdynpro.progmodel.generation.DelegatingComponent.doInit(DelegatingComponent.java:160)
      at com.sap.tc.webdynpro.progmodel.controller.Controller.initController(Controller.java:230)
      at com.sap.tc.webdynpro.progmodel.components.Component.initController(Component.java:249)
      at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:209)
      at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:513)
      at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.doPreprocessing(ClientApplication.java:1228)
      at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.delegateToApplicationDoPreprocessing(AbstractExecutionContextDispatcher.java:150)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.DispatchHandlerForAppPreprocessing.doService(DispatchHandlerForAppPreprocessing.java:35)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.AbstractDispatchHandler.service(AbstractDispatchHandler.java:116)
      at com.sap.engine.services.servlets_jsp.server.deploy.impl.module.IRequestDispatcherImpl.dispatch(IRequestDispatcherImpl.java:93)
      at com.sap.tc.webdynpro.serverimpl.wdc.sessionctx.ExecutionContextDispatcher.dispatchToApplicationDoPreprocessing(ExecutionContextDispatcher.java:100)
      at com.sap.tc.webdynpro.serverimpl.core.sessionctx.AbstractExecutionContextDispatcher.dispatch(AbstractExecutionContextDispatcher.java:75)
      at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.dispatch(ApplicationSession.java:507)
      at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.dispatch(ApplicationSession.java:527)
      at com.sap.tc.webdynpro.clientserver.session.ApplicationSession.doPreprocessing(ApplicationSession.java:233)
      at com.sap.tc.webdynpro.clientserver.session.ClientSession.doPreprocessing(ClientSession.java:647)
      ... 41 more
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.WebserviceClientException: GenericServiceFactory initialization problem. [Problem with WSDL file parsing. See nested message.]
      at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService_NewInstance(GenericServiceFactory.java:247)
      at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService_NewInstance(GenericServiceFactory.java:131)
      at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:124)
      at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:420)
      ... 67 more
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.ProxyGeneratorException: Problem with WSDL file parsing. See nested message.
      at com.sap.engine.services.webservices.espbase.client.ProxyGeneratorNew.loadWSDLapi(ProxyGeneratorNew.java:585)
      at com.sap.engine.services.webservices.espbase.client.ProxyGeneratorNew.generateAll(ProxyGeneratorNew.java:341)
      at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.loadProxy(DGenericServiceImpl.java:130)
      at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.<init>(DGenericServiceImpl.java:65)
      at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService_NewInstance(GenericServiceFactory.java:240)
      ... 70 more
    Caused by: com.sap.engine.services.webservices.espbase.wsdl.exceptions.WSDLException: /D:/subordinate WSDL By Raju/Manager.wsdl (No such file or directory)
      at com.sap.engine.services.webservices.espbase.wsdl.WSDLLoader.loadDOMDocument(WSDLLoader.java:140)
      at com.sap.engine.services.webservices.espbase.wsdl.WSDLLoader.load(WSDLLoader.java:91)
      at com.sap.engine.services.webservices.espbase.wsdl.WSDLLoader.load(WSDLLoader.java:80)
      at com.sap.engine.services.webservices.espbase.client.ProxyGeneratorNew.loadWSDLapi(ProxyGeneratorNew.java:579)
      ... 74 more
    Caused by: java.io.FileNotFoundException: /D:/subordinate WSDL By Raju/Manager.wsdl (No such file or directory)
      at java.io.FileInputStream.open(Native Method)
      at java.io.FileInputStream.<init>(FileInputStream.java:106)
      at java.io.FileInputStream.<init>(FileInputStream.java:66)
      at sun.net.www.protocol.file.FileURLConnection.connect(FileURLConnection.java:70)
      at sun.net.www.protocol.file.FileURLConnection.getInputStream(FileURLConnection.java:161)
      at java.net.URL.openStream(URL.java:1007)
      at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:201)
      at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:263)
      at com.sap.engine.lib.xml.parser.Parser.parse_DTDValidation(Parser.java:282)
      at com.sap.engine.lib.xml.parser.Parser.parse(Parser.java:293)
      at com.sap.engine.lib.xml.parser.DOMParser.parse(DOMParser.java:101)
      at com.sap.engine.lib.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:127)
      at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:146)
      at com.sap.engine.services.webservices.espbase.wsdl.WSDLLoader.loadDOMDocument(WSDLLoader.java:132)
      ... 77 more

    hi ,
    i tried to create model using url in address tab , but i am getting  error. This webservice is having authentication ,is this error bcoz of authentication????
    I am posting error below
    com.sap.tc.webdynpro.model.webservice.exception.WSModelRuntimeException: Exception on creation of service metadata for WSDL URL 'http://172.25.30.195:80/WebService/WebServiceApp.nsf/wsGetSuperior?OpenAgent' and service factory configuration '{DynamicProxy.ClassPath=D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.tc.cmi_10.0.0.080222130515/lib/com.sap.tc.cmi_api.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.exception_2.0.0.080222130515/lib/sap.comtcexceptionimpl.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.engine.webservices_2.0.0.080222130515/lib/sap.comtcblbasewebservices_libimpl.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.engine.webservices_2.0.0.080222130515/lib/sap.comtcbliqlibimpl.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.engine.webservices_2.0.0.080222130515/lib/sap.comtcbljkernel_bootimpl.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.engine.webservices_2.0.0.080222130515/lib/sap.comtcbljkernel_utilimpl.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.engine.webservices_2.0.0.080222130515/lib/sap.comtcjewebservices_apiimpl.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.engine.webservices_2.0.0.080222130515/lib/sap.comtcjewebservices_libimpl.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.engine.webservices_2.0.0.080222130515/lib/sap.comtcjewebservicesimpl.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.engine.webservices_2.0.0.080222130515/lib/sap.comtcsecwssecclientimpl.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.engine.webservices_2.0.0.080222130515/lib/sap.comtcsecwsseclibimpl.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.engine.webservices_2.0.0.080222130515/lib/sap.comtcsecwssecsrtlibimpl.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.dictionary.runtime_10.0.0.080222130515/lib/com.sap.dictionary.runtime.mod_api.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.dictionary.runtime_10.0.0.080222130515/lib/com.sap.dictionary.runtime.mod_core.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.dictionary.runtime_10.0.0.080222130515/lib/dictionary_mdi_util_api.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.dictionary.runtime_10.0.0.080222130515/lib/dictionary_mdi_util_core.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.dictionary.runtime_10.0.0.080222130515/lib/dictionary_runtime_mdi_api.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.dictionary.runtime_10.0.0.080222130515/lib/dictionary_runtime_mdi_core.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.dictionary.services_10.0.0.080118105715/lib/com.sap.dictionary.services_api.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.tssap.sap.libs.logging_2.0.0.080222130515/lib/sap.comtcloggingjavaimpl.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.tssap.sap.libs.xmltoolkit_2.0.0.080222130515/lib/sap.comtcsapxmltoolkitsapxmltoolkit.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.ext.libs.webservices_2.0.0.080222130515/lib/activation.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.ext.libs.webservices_2.0.0.080222130515/lib/jaxm-api.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.ext.libs.webservices_2.0.0.080222130515/lib/jaxrpc-api.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.ext.libs.webservices_2.0.0.080222130515/lib/jnet.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.ext.libs.webservices_2.0.0.080222130515/lib/jsse.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.ext.libs.webservices_2.0.0.080222130515/lib/mail.jar;D:/Program Files/SAP/IDE/CE/eclipse/plugins/com.sap.ext.libs.webservices_2.0.0.080222130515/lib/saaj-api.jar;, DynamicProxy.HTTPPassword=, DynamicProxy.HTTPUserName=, DynamicProxy.Javac.path=D:\Program Files\java\jdk1.5.0_12\bin\javac, DynamicProxy.TempDir=C:\DOCUME1\kavita\LOCALS~1\Temp\}'
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:414)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.readOperationsFromWSDL(WSModelInfo.java:372)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadataInternal(WSModelInfo.java:342)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadata(WSModelInfo.java:306)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.importMetadata(WSModelInfo.java:316)
         at com.sap.tc.webdynpro.model.webservice.modeltype.importer.ui.PageAWSRename.loadNameSpacesAndModelClasses(PageAWSRename.java:996)
         at com.sap.tc.webdynpro.model.webservice.modeltype.importer.ui.PageAWSLocalFileClient$5$1.run(PageAWSLocalFileClient.java:283)
         at org.eclipse.swt.widgets.RunnableLock.run(RunnableLock.java:35)
         at org.eclipse.swt.widgets.Synchronizer.runAsyncMessages(Synchronizer.java:123)
         at org.eclipse.swt.widgets.Display.runAsyncMessages(Display.java:3659)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3296)
         at org.eclipse.jface.operation.ModalContext$ModalContextThread.block(ModalContext.java:158)
         at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:326)
         at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:934)
         at com.sap.tc.webdynpro.model.webservice.modeltype.importer.ui.PageAWSLocalFileClient.getNextPage(PageAWSLocalFileClient.java:299)
         at org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDialog.java:813)
         at com.sap.ide.cmi.core.internal.newmodelwizard.NewModelWizardDialog.nextPressed(NewModelWizardDialog.java:66)
         at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:369)
         at com.sap.ide.cmi.core.internal.newmodelwizard.NewModelWizardDialog.buttonPressed(NewModelWizardDialog.java:88)
         at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:616)
         at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:227)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
         at org.eclipse.jface.window.Window.runEventLoop(Window.java:820)
         at org.eclipse.jface.window.Window.open(Window.java:796)
         at com.sap.ide.cmi.core.internal.services.CreationServiceUI.createModel(CreationServiceUI.java:76)
         at com.sap.ide.cmi.core.browser.actions.CreateModelAction.run(CreateModelAction.java:60)
         at com.sap.ide.tools.core.viewerfwk.internal.actions.BaseSelectionSingleAction.run(BaseSelectionSingleAction.java:39)
         at com.sap.ide.tools.core.viewerfwk.internal.actions.BaseSelectionAction.runInternal(BaseSelectionAction.java:78)
         at com.sap.ide.tools.core.viewerfwk.internal.actions.BaseSelectionAction.run(BaseSelectionAction.java:70)
         at org.eclipse.ui.actions.BaseSelectionListenerAction.runWithEvent(BaseSelectionListenerAction.java:168)
         at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545)
         at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490)
         at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402)
         at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
         at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
         at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
         at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
         at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
         at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
         at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
         at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
         at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
         at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
         at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
         at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
         at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)
         at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
         at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
         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:585)
         at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504)
         at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443)
         at org.eclipse.equinox.launcher.Main.run(Main.java:1169)
         at org.eclipse.equinox.launcher.Main.main(Main.java:1144)
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.WebserviceClientException: GenericServiceFactory initialization problem. [Problem with WSDL file parsing. See nested message.]
         at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService_NewInstance(GenericServiceFactory.java:247)
         at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService_NewInstance(GenericServiceFactory.java:91)
         at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService(GenericServiceFactory.java:84)
         at com.sap.tc.webdynpro.model.webservice.metadata.WSModelInfo.getOrCreateWsrService(WSModelInfo.java:412)
         ... 60 more
    Caused by: com.sap.engine.services.webservices.jaxrpc.exceptions.ProxyGeneratorException: Problem with WSDL file parsing. See nested message.
         at com.sap.engine.services.webservices.espbase.client.ProxyGeneratorNew.loadWSDLapi(ProxyGeneratorNew.java:585)
         at com.sap.engine.services.webservices.espbase.client.ProxyGeneratorNew.generateAll(ProxyGeneratorNew.java:341)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.loadProxy(DGenericServiceImpl.java:130)
         at com.sap.engine.services.webservices.espbase.client.dynamic.impl.DGenericServiceImpl.<init>(DGenericServiceImpl.java:65)
         at com.sap.engine.services.webservices.espbase.client.dynamic.GenericServiceFactory.createService_NewInstance(GenericServiceFactory.java:240)
         ... 63 more
    Caused by: com.sap.engine.services.webservices.espbase.wsdl.exceptions.WSDLException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XMLParser: Bad Attribute value: ' or " expected!(http://172.25.30.195:80/WebService/WebServiceApp.nsf/wsGetSuperior?OpenAgent, row:3, col:96)
         at com.sap.engine.services.webservices.espbase.wsdl.WSDLLoader.loadDOMDocument(WSDLLoader.java:140)
         at com.sap.engine.services.webservices.espbase.wsdl.WSDLLoader.load(WSDLLoader.java:91)
         at com.sap.engine.services.webservices.espbase.wsdl.WSDLLoader.load(WSDLLoader.java:80)
         at com.sap.engine.services.webservices.espbase.client.ProxyGeneratorNew.loadWSDLapi(ProxyGeneratorNew.java:579)
         ... 67 more
    Caused by: com.sap.engine.lib.xml.parser.NestedSAXParserException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XMLParser: Bad Attribute value: ' or " expected!(http://172.25.30.195:80/WebService/WebServiceApp.nsf/wsGetSuperior?OpenAgent, row:3, col:96)(http://172.25.30.195:80/WebService/WebServiceApp.nsf/wsGetSuperior?OpenAgent, row=3, col=96) -> com.sap.engine.lib.xml.parser.ParserException: XMLParser: Bad Attribute value: ' or " expected!(http://172.25.30.195:80/WebService/WebServiceApp.nsf/wsGetSuperior?OpenAgent, row:3, col:96)
         at com.sap.engine.lib.xml.parser.DOMParser.parse(DOMParser.java:139)
         at com.sap.engine.lib.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:127)
         at com.sap.engine.services.webservices.espbase.wsdl.WSDLLoader.loadDOMDocument(WSDLLoader.java:130)
         ... 70 more
    Caused by: com.sap.engine.lib.xml.parser.ParserException: XMLParser: Bad Attribute value: ' or " expected!(http://172.25.30.195:80/WebService/WebServiceApp.nsf/wsGetSuperior?OpenAgent, row:3, col:96)
         at com.sap.engine.lib.xml.parser.XMLParser.scanAttValue(XMLParser.java:1402)
         at com.sap.engine.lib.xml.parser.XMLParser.scanAttList(XMLParser.java:1576)
         at com.sap.engine.lib.xml.parser.XMLParser.scanElement(XMLParser.java:1719)
         at com.sap.engine.lib.xml.parser.XMLParser.scanContent(XMLParser.java:2449)
         at com.sap.engine.lib.xml.parser.XMLParser.scanElement(XMLParser.java:1848)
         at com.sap.engine.lib.xml.parser.XMLParser.scanContent(XMLParser.java:2449)
         at com.sap.engine.lib.xml.parser.XMLParser.scanElement(XMLParser.java:1848)
         at com.sap.engine.lib.xml.parser.XMLParser.scanContent(XMLParser.java:2449)
         at com.sap.engine.lib.xml.parser.XMLParser.scanElement(XMLParser.java:1848)
         at com.sap.engine.lib.xml.parser.XMLParser.scanContent(XMLParser.java:2449)
         at com.sap.engine.lib.xml.parser.XMLParser.scanElement(XMLParser.java:1848)
         at com.sap.engine.lib.xml.parser.XMLParser.scanDocument(XMLParser.java:2852)
         at com.sap.engine.lib.xml.parser.XMLParser.parse0(XMLParser.java:229)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parseAndCatchException(AbstractXMLParser.java:145)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:160)
         at com.sap.engine.lib.xml.parser.AbstractXMLParser.parse(AbstractXMLParser.java:261)
         at com.sap.engine.lib.xml.parser.Parser.parse_DTDValidation(Parser.java:282)
         at com.sap.engine.lib.xml.parser.Parser.parse(Parser.java:293)
         at com.sap.engine.lib.xml.parser.DOMParser.parse(DOMParser.java:101)
         ... 72 more

Maybe you are looking for

  • Changed Router - Can't Setup Wireless printing

    I recently changed my internet router. i did have my printer setup with wireless printing, now i cant connect to the new router.

  • Graphic issues - MacBook Pro 2007

    I was using my computer when all of a sudden it froze without warning. This is unusual, in the past the computer might stall for a sec but it would always unfreeze. I had to reboot, and upon logging in, this is what I see. Restarted a few times and i

  • Unable to compile

    declare a number; b varchar2(1) : 'c'; c varcha2(2) := 'XX'; d varchar2(2) := 'YY'; e varchar2(2); begin if a is null then b := 'c'; else b := 'd'; end if; execute immediate 'select ' || b || ' from dual ' into e; end; The above example uses a dynami

  • How do I resolve error code -54 when syncing

    Both myself and my partner have iPhones, when trying to sync to our new laptop both phones failed to sync due to unknown error code -54. Help ,,,

  • Troubleshooting Archiving

    Hi All, I am trying to archive my messages on my XI server and had used the pdf located at https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/402fae48-0601-0010-3088-85c46a236f50 . I have set up the archiving objects BC_XMB on t-code