Component getServiceDescription() with WSDL imports

How are WSDL imports handled in JBI service descriptions? I was looking through several specifications OASIS and many of the WSDL definitions are broken into several files and use WSDL imports. According to the JBI spec,
"The document must not use the <wsdl:import> or <wsdl:include> elements (the document MUST be stand-alone)."
From this I gather it is up to a JBI component developer to merge existing WSDL specs together so that they can be represented by a WC3 Document object?
Also several of the OASIS specs have WSDL SOAP binding requirements. Since the SOAP binding component is not in the JBI spec is it optional that the binding allow component/SU deployer's to specify the precise bindings to the Services? How does open-esb handle it?

Aaron,
The JBI component developer must do the merge you mentioned. Quite often this is done at design-time, and deployed as part of the service unit, so the component itself has little or nothing to do to create the description.
The JBI specification does require each JBI implemenation to provide a WS-I 1.1-compliant SOAP binding.
A service engine only declares the "service-engine" type of endpoint for services provided; if it declares other endpoint types (say, a SOAP binding) it is meaningless from the JBI perspective.
To expose a service provided by an SE through the SOAP BC, normally an SU must be deployed to the BC (usually part of the SA that contains the SU for the SE).
More dynamic situations are possible: the BC could dynamically discover services, and expose them to external consumers using some sort of heuristic mapping. This dynamic approach remains, as far as I know, theoretical: no one has actually implemented such a BC. Controlling exposure of services is something that needs to be more carefully controlled, via design-time mechanisms and/or a registry/repository.

Similar Messages

  • BlazeDS with WSDL importer tool

    Hello I'm using BlazeDS with MXML tags and I manually declare
    the parameters passed to the webservice and this works fine. It is
    however a pain because I have complicated DTO's. An option would be
    to use the WSDL import tool which creates stubs and the objects. It
    would be so much faster to use these generated objects. Has anyone
    ever used this approach? Can it work? I can't seem to make it
    work...
    Thanks

    i have a group called let's say AandBGroup consisting of UserA and UserB. the wiki called AandBGroup is configured "private" and writable (only) by the group AandBGroup. just to be doubly sure that the reliance on group privs was not a complicating factor here, i also added privs for UserA and UserB explicitly.
    i have confirmed that both UserA and UserB can connect (via browser) and create pages in this the AandBGroup wiki.
    i have confirmed (about 50x) that i am entering valid usernames and passwords into the tool, at least based on my current understanding - i have tried using UserA's credentials and UserB's. no difference.
    as a test, i tried creating a new wiki that was publicly readable and writable and using that - still no change. i immediately get the same error message when i try to import.
    the only complicating factors i can think of are that i have SSL turned on on the new site. however, this seems like it would be taken care of by the fact that i specified the new site URL starting with "https://..." -- i.e. exactly what you would use to connect via a browser.
    one thing i've noticed: it seems as though a wiki can be created in multiple ways - either by creating a new group in the Server Preferences app and checking the "create group wiki..." button or by a user simply clicking the "create a new wiki" button from the browser. does it matter how target wiki was created? i checked and the AandBGroup wiki is linked if i look at the AandBGroup group settings in Server Preferences, so it doesn't seem like this should be an issue... but maybe i'm missing something.
    i am running the WikiImporter tool on the server. shouldn't matter, i don't think.

  • Issue with WSDL created for sender agreement

    Hi,
    Can you please help me why I am getting the erroe with WSDL that has been created from directory Sener agreement in PI 7.1 EHP1?
    My interface is a SOAP to file ASYNC scenario and we have been given 5 XSDs that are referencing one each other ,5 XSDs are imported successfully and referenced properly,no errors/issues found.
    Created all ESr and directory objects and I tried creating WSDL from sender agreement for my Source/outbound inteface that is created with XSDs in ESR.
    When I try to import WSDL into SOPA UI to validate ,the import process stuck for ever while trying to import "http://www.w3.org/2001/xml.xsd" and finally throws me error.
    After that I tried importing WSDL created in Directory into AltovaXML spy to created the webservice request,I am getting the following error""invalid XML Schema:"xml:lang" is already declared in the schema dcument C:|..my WSDL.
    Even our partner who wants to make Webservice calls using this WSDL,they are not able to develop their Webservices they are getting errors something related to schema not found /not defined etc.
    Please let me know,what might be the issue?I verified several times with my XSD imports and referencing properly and configuration objects.
    Thank you for your help in advance.
    Regards,
    Prem

    Hi Mark,
    I am not getting issue while displaying/Exporting  as WSDL in ESR.I am getting issue while trying import WSDL that is generated out of Service Interface into SOAP UI or Altova XML Spy.
    I don't think PI created the WSDl out of W3 standards.
    This is the error I am getting in XML Spy:
    File C:\Documents and Settings\Prem\Desktop\SI_XYZ_O.wsdl is not valid
         Invalid XML schema: ''xml:lang' is already declared.
              Error location: schema / attribute++
    and in SOAP UI:It is trying to import the WSDL and it stuck for ever while trying to import http://www.w3.org/2001/xml.xsd and never imprts the WSDL into SOAP UI project.
    Please let me know,if you have any ideas.
    Thank you,
    Prem.

  • Exporting HumanResources.Jobcandidate with SS Import/Export Wizard

    The default mapping results in execution errors.
    What is the correct setup for exporting the table to flat file from AdventureWorks2012?   Thanks.
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

    The table has an XML column.
    CREATE TABLE [HumanResources].[JobCandidate](
    [JobCandidateID] [int] IDENTITY(1,1) NOT NULL,
    [BusinessEntityID] [int] NULL,
    [Resume] [xml](CONTENT [HumanResources].[HRResumeSchemaCollection]) NULL,
    [ModifiedDate] [datetime] NOT NULL CONSTRAINT [DF_JobCandidate_ModifiedDate] DEFAULT (getdate()))
    Errors:
    - Pre-execute (Error)
    Messages
    Error 0xc020802e: Data Flow Task 1: The data type for "Destination - Candidate_csv.Inputs[Flat File Destination Input].Columns[Resume]" is DT_NTEXT, which is not supported with ANSI files. Use DT_TEXT instead and convert the data to DT_NTEXT using the data conversion component.
    (SQL Server Import and Export Wizard)
    Error 0xc0202094: Data Flow Task 1: Unable to retrieve column information from the flat file connection manager.
    (SQL Server Import and Export Wizard)
    Error 0xc004701a: Data Flow Task 1: Destination - Candidate_csv failed the pre-execute phase and returned error code 0xC0202094.
    (SQL Server Import and Export Wizard)
    Mapping:
    Kalman Toth Database & OLAP Architect
    SQL Server 2014 Design & Programming
    New Book / Kindle: Exam 70-461 Bootcamp: Querying Microsoft SQL Server 2012

  • Wsimport failure as my wsdl import files from different sources

    I have tried to generate java code from wsdl using mtosi 1.1 example I ahve found in the Apache CXF sample.
    For the sake of knowledge wsdl2java of cxf was able to generate everything fine.
    wsimport fails.
    Unfortunately it's a pain to post all the wsdl, because each different WSDL imports other schemas and wsdl separately.
    The example is to be found in the cxf samples dir or at the following url.http://sourceforge.net/project/showfiles.php?group_id=153083
    Does wsimport work when the bindig files and schemas are defined explicitly?
    trying using the -b option with all the binding files and schemas does not change anything.
    This is the main wsdl:
    mtosi_1.1\wsdl\transport\http\ManagedElementMgrSOAP_HTTP.wsdl
    <?xml version="1.0" encoding="UTF-8"?>
    <!-- TMF854 Version 1.0 - Copyright TeleManagement Forum 2005, 2006 -->
    <wsdl:definitions xmlns:tmf854WS="tmf854.v1.ws" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" targetNamespace="tmf854.v1.ws" name="TMF854-ManagedElementMgr-SOAP-HTTP">
         <wsdl:import namespace="tmf854.v1.ws" location="../../binding/soap_http/ManagedElementMgrSOAP.wsdl" />
         <wsdl:service name="ManagedElementMgr">
              <wsdl:port name="ManagedElementMgr" binding="tmf854WS:ManagedElementMgrSoapHTTPBinding">
                   <soap:address location="http://127.0.0.1/mtosi/v1/ManagedElementMgr" />
              </wsdl:port>
         </wsdl:service>
    </wsdl:definitions>I get this message:
    [ERROR] invalid extension element: "soap:header" (in namespace "http://schemas.xmlsoap.org/wsdl/soap/")

    I have posted this issue even in the netbeans issuezilla ( the defect appears in netbeans wizard as well).
    http://www.netbeans.org/issues/show_bug.cgi?id=122505
    from this url you can download the zip file containing the WSDL MTOSI specification I have tried to use.
    Every file contained into the directory I have used the mtosi_1.1\wsdl\transport\http\ is fine.

  • A datasheet component compatible with Microsoft Sharepoint Foundation 2010 is not installed error

    I have 2013 Office installed and using 2010 SharePoint Foundation.
    The button 'Datasheet View' is available on the site but when clicked on I get this error:
    The list cannot be displayed in Datasheet view for one or more of the following reasons:
    - A datasheet component compatible with Microsoft SharePoint Foundation is not installed.
    - Your Web browser does not support ActiveX controls.
    - A component is not properly configured for 32-bit or 64-bit support.
    I have installed and repaired the Office Suite already, ActiveX is enabled in the browser etc.
    I have also enabled the Microsoft Add-ons.
    Installed on Windows Server 2008 R2.
    How can I solve this issue?

    Hi,
    1. The Edit
    in Datasheet view functionality in SharePoint Server 2010 is not supported if you install
    64-bit Office 2013 client. The Edit in Datasheet functionality
    is available if you install 32-bit Office 2013 client
    http://technet.microsoft.com/en-us/library/ee681792.aspx
    2. Edit in data sheet view is not supported in 64 bit version of the i.e.
    If I understand correctly you are trying to access site from the Windows server 2008 R2, the default OS installation will have two browsers. Open internet explorer that doesn't have (64 bit) in the bracket. The one with 64bit is not supported
    http://office.microsoft.com/en-us/sharepoint-foundation-help/use-datasheet-view-in-64-bit-office-2010-HA101882420.aspx
    Regards Murali

  • I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the Component and Audio ports on my TV?

    I have an Retina display MacBook Pro with HMDI out port. I also have an HDMI to Component cable with Audio Plugs. How can I get HDMI out to work with this cable when plugged into the MacBook Pro and connected to the TVs Component and Audio in ports.

    Will not work.  To my knowledge, dual converting like that isn't supported.  The Mac must detect the connected video output device and that sort of info cannot be done across an analog component uni-directional connection.

  • Performance and usability problems with Illustrator imports

    I am usually an enthusiast advocate for Adobe Software. As a UI/Interaction designer I regularly showcase your products as a shining example.
    That's why I am somewhat frustrated about the Flash Catalyst Beta. I trust you guys to come out with SOMETHING GREAT eventually, but I have just spend an entire day with Catalyst and it was not particularly a joy. Couldn't you have released it a bit later to save me the frustration?
    Situation:
    - Medium size Adobe Illustrator CS4 import (10 screens/stages with 20-100 Illustrator objects per screen)
    - Target : 800x600 embedded UI for medical product
    - Illustrator file chosen as starting point
    Performance / reliability problems include
    - Crashing (Vista Core2Duo with 2gig of Ram)
    - Super poor performance (wait 8 seconds to hide/show a layer)
    - No show of thumbnail images anywhere
    - No matching of document size (exact 800x600 from Illustrator became 800x599)
    - Playing the file did not work
    Usability issues
    - Poor test display
    - Poor match with Illustrator file (things seem to be rendered differently!)
    - Window selecting does not work well
    - No hand tool
    - No ability to lock layers
    - Cluttered interface (Not enough space for the "stage"or what you call it)
    - No way to resize Illustrator elements from one of 9 edge/center points
    - etc. etc.
    Building a wireframe version from the ground up (with Illustrator import) seemed to work fine
    I played around with the MS Blend beta for a while, and while the basic concept of your product is much more clear, the execution of the MS product in the beta phase was lightyears ahead in terms of stability and usability
    I'm sure you can do better!
    Koen

    Koen,
         Thank you for the detailed feedback about the performance problems you have experienced and your thoughts about features you would like. Let me respond to each of your points
    Performance: We are aware that Catalyst doesn't perform well with large complex files. We have made many performance improvements since the current plublic beta, so you should find Catalyst more responsive with larger projects when the next beta is posted.
    Here are a few things you can do to work around the performance issues you are seeing with the current beta:
    - Consider rasterizing complex elements that don't need to scaled in Catalyst
    - In Catalst turn complex artwork into optimized graphics using the "Convert to optimized graphics" in the float HUD (heads up display panel)
    We have also found that particularly on Windows that Catalyst can run out of memory with large files. This area is also being worked on so stay tuned for the next beta.
    Features:
    - Poor test display [tv] Do you mean the design display doesn't match the appearance of the published project?
    - Poor match with Illustrator file (things seem to be rendered differently!) [tv] we have fixed a lot of bugs here. Expect this to improve a lot in the next beta
    - No hand tool - [tv] coming soon :-)
    - No ability to lock layers [tv] coming soon :-)
    - Cluttered interface (Not enough space for the "stage"or what you call it) [tv] Yes, Catalyst currently cannot dock/undock panels
    - No way to resize Illustrator elements from one of 9 edge/center points [tv] This is also a known limitation. I agree it is useful
    I hope the next beta comes closer to meeting your expectations. A lot of performance work and new features has been done since the last public posting, so look forward to beta II.
    - Ty

  • TA25361 I have a ton of documents and databases in AppleWorks v 6.0 that I can no longer open on my MacBook Pro.  Is there any way to recover this info?  Some documents can be opened and resaved with textedit, but not my database with all important addres

    I have a ton of documents and databases in AppleWorks v 6.0 that I can no longer open on my MacBook Pro.  Is there any way to recover this info?  Some documents can be opened and resaved with textedit, but not my database with all important addresses.

    I tried Peggy's List > Select All > Copy > Paste into an AW spreadsheet suggestion.
    In my case, pasting into the spreadsheet lost all text formatting (mostly text set to bold). The results of formulas were pasted, and checkboxes were pasted as "on" or "off". The DB did not contain any pop-up menus or radio buttons, but I expect they would transfer as a number showing the list position of the chosen item.
    Pasting the copied List view data into a Numbers table gave a result similar to that with AppleWorks. I selected B2 as the target cell (for top left cell of the pasted data) to avoid any effects of posting into a header row or column. Bold and regular text formatting looked the same as it had in AW's List view.
    Based on that, I'd slip the 'paste into an AppleWorks Spreadsheet step, and paste directly into a Numbers Table.
    Regards,
    Barry

  • How to scan my computer and external hard drives for pictures with out importing duplicates.

    how do i scan my computer and external hard drives for pictures with out importing duplicates.

    iPhoto doesn't scan anywhere. It imports files offered to it. If it spots a duplicate it will warn you.

  • Import collides with another import statement

    Suppose I have 2 packages, train and plane. Each package has a class called Engine. In addition, train.Engine and plane.Engine have nothing in common. In a 3rd class, I import both of these:
    import train.Engine;
    import plane.Engine;Doing so results in the following error:
    The import plane.Engine collides with another import statement
    How do I do this?

    One of these imports have to be commented. The imports are reside in the source code, not just in jar or other class path entries. If the imports are in different files then you'd browse the sources and find import with the same name but in different name spaces. This is happened if you you don't wanna add a big jar to the class path instead you created a class file with the same name because of huge references. And you just wanted route it out of the jar and possibly remove dependency.

  • PortalRuntimeException in Business Object document iview No portal component associated with the following context

    Hi all,
    We are stumped with a problem in our QA Enterprise Portal (7.3.1 Sp7) that throws a portal runtime error when we preview a Business Objects document iview.  The Business Objects Server versions are 4.0 SP5 and/or 4.1 SP3.
    The error is caught in the the defaultTrace file, /usr/sap/QNW/J00/j2ee/cluster/server0/log
    [EXCEPTION]
    com.sapportals.portal.prt.runtime.PortalRuntimeException: There is no portal component associated with the following context:
    pcd:portal_content/com.summit.SES_BI/com.summit.iviews/Daily_Margin
    at com.sap.portal.prt.component.PortalComponentContext.<init>(PortalComponentContext.java:93)
    Here is what we have tried
    * Confirmed the iviews exist in the PCD, by browsing to the content folders and right lick, preview on the iview.
    * Our PRD and DEV systems work correctly and are on same versions of EP Runtime and java. 7.3.1.7.0.201..
    * Occurs with all Businessobjects iviews from the QA portal and all doc types, webis, dashboards. Tried creating new iview.
    * Reapplied the com.sap.businessobjects.iviews.templates.epa to the Portal from t he BI 4.1 SP3 distribution
    * Deleted and recreated the BI portal system connector using the SAP BOBJ system template set path to http://bi-qas:8080/BOE
    * Set the embed key value in the BI system connector property and in the custom global.properties file, restarted tomcat and SIA services
    * Set permissions for everyone end user on the content folders and the BI system connector
    * Confirmed Single sign on configured correctly between BI and Portal
    * Confirmed that the QA BI server is configured correctly by directing the working DEV Portal to the QA BI server.
    * Performed actions in note 1709737
    We are certainly stuck and the defaultTrace file is not very informative.  Any suggestions are greatly appreciated
    Lee Lewis

    This is resolve with note 1615838  - SAP Netweaver Enterprise Portal 7.3 iView creation with BI 4.0 results in exceptions.
    The note includes a file portalapp.xml that need to be inserted into com.sap.businessobjects.iviews.par that is included in the BI server distribution.
    Then deploy the ear file.....
    Odd thing is that the note mentions 4.0 and we are on 4.1 SP3...
    Environment
    SAP BusinessObjects BI Platform 4.0 SP02 Patch 4 or lower
    SAP Netweaver Enterprise Portal 7.3
    Lee Lewis

  • I'm having trouble with video imported from my camera memory card.

    I'm having trouble with video imported from my camera memory card.The video breaks up and pixelizes when it's directly imported from the memory card. That makes the video useless. Why does this happen? It doesn't do that in any other video editing software. Thanks for the help.

    More info please:
    Type of camera?
    Was the card formatted in the camera doing the shooting?
    Type of files the camera is set to record?
    Al

  • Help! How do I create a document with an imported PDF in 300dpi using a FOGRA27 colour profile?

    I am a new Indesign user and I have been working with GIMP for the last year creating single colour print-ready PDFs. But now I need to create a document with a FOGRA27 CMYK colour profile and a resolution of at least
    How do I create a document with an imported PDF in 300dpi using a FOGRA27 colour profile?
    I can import the PDF by creating a new document and finding the PDF in places, but it's bad quality.
    The only colour profile I can find under View - Proof Setup is FOGRA39, but I need FOGRA27!
    Help help help, I need to get these files printed in two days!
    Thanks so much..
    xx

    Proof Colors doesn't change the file's color management, it just lets you see what the color values would look like if they are printed unchanged on different output devices. If you want to actually convert the color from one CMYK space to another, it's probably better to do that in Acrobat—Tools>Print Production>Convert Colors.
    There's very little difference between Fogra27 and Fogra39—Fogra27 allows more total ink 350 vs. 330.
    There's nothing you can do to improve the quality of low res images

  • Problems with VLM Import Utility

    Hello!
    We I are using NI Volume License Manager 3.0 together with NI Volume License Manager Import Utility for importing users data.
    The problem is that we can't import .xml data into VLM when the user types his name into Full Name field and his name contains characters like ČŠĆŽĐ čšćžđ. These characters are not correctly written into .xml file with VLM Import Utility and we have to manually replace them with Microsoft Expression Web before we can load .xml file into VLM server.
    Do you have better solution? Is there some new version of NI Volume License Manager Import Utility that correctly handles non English characters?
    Thank you
    Bojan Gergič
    Solved!
    Go to Solution.

    Hi
    Sorry for not having a god news. This issue is a known bug (You can refere to it by a number CAR - Corrective Action Request - #320545). Unfortunatelly, I have no knowledge about a workaround for this.
    Regards
    Barbara

Maybe you are looking for

  • Freezes when i connect ipad 2

    When i connect my IPad 2 to my itunes, it sync's and the freezes during the update.   Any suggestions how i can stop this from happening?

  • ITunes 8.02 cannot update iPod behind proxy

    I tried to update my iPod Touch today. I was able to start the download at home, but was unable to finish it. Came to the office, where we are behind a proxy server and iTunes gives the error: iTunes could not contact the iPod software update server

  • How to QA the RAC setup

    hi , EBS R12.1 + RAC OEL 5.4 We have just outsourced(thru Oracle local support) the installation/migration/conversion of our EBS R12.1 from single node to RAC. The setup/config is: apps tier is on node1(apps2), and the db tier (RAC) in on node2(rdbms

  • Planning_Partitions

    Hi ALl, We have 2 EPMA deployed Planning Apps. Budget1 & Plan1.......We need to create an EPMA Planning APP REPORT(Dummy Appjust for partition/Reports) & create transparent partition to both Budget1 & Plan1. The FR willpoint to REPORT App With this a

  • ADOBE AIR BEAT DETECTION

    I am writing an Air app that needs audio beat detection and I need some really great resources.  I am NOT trying to do something simple like make images twitch when there is a peak in an audio file.  I need to be able to identify both the beats and o