Tranport for  Integration Gateway.

Hi All,
        I have one query on the transporting the Application that has been developed on Integration Gateway with SOAP as backend.
As per SAP Note 1931374 They say that Desitnation assignment cannot be done on the Gateway management and should be done at the eclipse @ the time of development itself. If that is the case then how we can do transportation from Dev to QA? Any suggestions on this.
Also i could not see any option to export the project and import into another system can any one throw light on this.
cc: SAP Mobile Platform Developer Center
Thanks
-Arun

Hi Arun,
Your assessment is right. Unfortunately, there is no easy way to both changing the endpoint for the SOAP service or deploying the project without using the Eclipse based design-time. However, rest assured that we are aware of the issues and already planning to address them soon.
Regards,
Mustafa.

Similar Messages

  • Create Operation with Integration Gateway for SOAP Webservices

    Dear All,
    Has anyone used the create operation for Soap Webservices for SMP 3.0 to invoke a POST into the system using OData and Integration Gateway.
    Can you please help with the steps.
    Thanks,
    Best Regards,
    Rakshit Doshi

    I tried the same sometime back but faced some issues. Then i came to know about one known issue.
    Reference
    Rgrds,
    JK

  • Schema Data Type in SOAP Web Service while using Integration Gateway in SMP 3.0

    Hi Experts,
    I was working on Integration gateway component of SMP 3.0.3 where we can have oData services which connect to different data source from SMP and finally we have to consume from SMP. Here I have an SOAP Web service where there is Schema Data type which is an xml structure and because of that while doing the data modelling with Design time tools I am not able to map the properties as there aren't any as only the parent level Schema type is available in the SOAP Web Services. Please see the below image for reference :
    So now I have 2 inputs no problems for design as such then I have the schema for that which comes as a output response which is where I am facing the issue as we don't have that Data Structure itself so how are we going to map that. I have seen some thin possibilities with Custom Scripts with SMP SP06 where this will help us to process the request and response at runtime with JS/Groovy. So needed some lights on this schema data type on Integration Gateway component of SMP 3.0.3 which we are planning to upgrade to SP06 as well so it will be a good starting point for this as well
    Also have concerned my good friend Rakshit Doshi for this as well.
    Regards,
    Fenil.

    Hi All,
    Sorry for the late response guys was stuck somewhere else and so couldn't reply to this, see I have below response in SOAP UI
    There if we see we have the schema as the whole structure being defined under which we have all the child elements, am also posting the raw response from the soapUI below for better understanding
    <soap:Envelope xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
       <soap:Body>
          <GetMSUserLoginDetailsResponse xmlns="http://tempuri.org/">
             <GetMSUserLoginDetailsResult>
                <xs:schema id="MemberDetails" xmlns="" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
                   <xs:element name="MemberDetails" msdata:IsDataSet="true" msdata:UseCurrentLocale="true">
                      <xs:complexType>
                         <xs:choice minOccurs="0" maxOccurs="unbounded">
                            <xs:element name="Table">
                               <xs:complexType>
                                  <xs:sequence>
                                     <xs:element name="RECID" type="xs:string" minOccurs="0"/>
                                     <xs:element name="FNAME" type="xs:string" minOccurs="0"/>
                                     <xs:element name="LNAME" type="xs:string" minOccurs="0"/>
                                     <xs:element name="CUSTNO" type="xs:decimal" minOccurs="0"/>
                                     <xs:element name="MEMTYP" type="xs:decimal" minOccurs="0"/>
                                     <xs:element name="MEMTYPENAME" type="xs:string" minOccurs="0"/>
                                     <xs:element name="CUSTTYP" type="xs:decimal" minOccurs="0"/>
                                     <xs:element name="EMAIL" type="xs:string" minOccurs="0"/>
                                     <xs:element name="MEMPASSWORD" type="xs:string" minOccurs="0"/>
                                     <xs:element name="ISDEBIT" type="xs:decimal" minOccurs="0"/>
                                     <xs:element name="PARENTID" type="xs:string" minOccurs="0"/>
                                     <xs:element name="CHILDOF" type="xs:string" minOccurs="0"/>
                                     <xs:element name="CUSTTYP1" type="xs:string" minOccurs="0"/>
                                     <xs:element name="ZONEID" type="xs:int" minOccurs="0"/>
                                     <xs:element name="EMAILFOOTERDETAIL" type="xs:string" minOccurs="0"/>
                                  </xs:sequence>
                               </xs:complexType>
                            </xs:element>
                            <xs:element name="Table1">
                               <xs:complexType>
                                  <xs:sequence>
                                     <xs:element name="ErrorCode" type="xs:string" minOccurs="0"/>
                                     <xs:element name="ErrorDesc" type="xs:string" minOccurs="0"/>
                                  </xs:sequence>
                               </xs:complexType>
                            </xs:element>
                         </xs:choice>
                      </xs:complexType>
                   </xs:element>
                </xs:schema>
                <diffgr:diffgram xmlns:msdata="urn:schemas-microsoft-com:xml-msdata" xmlns:diffgr="urn:schemas-microsoft-com:xml-diffgram-v1">
                   <MemberDetails xmlns="">
                      <Table diffgr:id="Table1" msdata:rowOrder="0">
                         <RECID>97101-101-0000057069</RECID>
                         <FNAME>Fenil</FNAME>
                         <LNAME>Doshi</LNAME>
                         <CUSTNO>1042231</CUSTNO>
                         <MEMTYP>42</MEMTYP>
                         <MEMTYPENAME>Management</MEMTYPENAME>
                         <CUSTTYP>8</CUSTTYP>
                         <EMAIL>[email protected]</EMAIL>
                         <MEMPASSWORD>as</MEMPASSWORD>
                         <PARENTID>97101-101-0000057069</PARENTID>
                         <CUSTTYP1>Zone</CUSTTYP1>
                         <ZONEID>2</ZONEID>
                         <EMAILFOOTERDETAIL><![CDATA[<strong></strong><br />]]></EMAILFOOTERDETAIL>
                      </Table>
                      <Table1 diffgr:id="Table11" msdata:rowOrder="0">
                         <ErrorCode>100</ErrorCode>
                         <ErrorDesc>Login Successful.</ErrorDesc>
                      </Table1>
                   </MemberDetails>
                </diffgr:diffgram>
             </GetMSUserLoginDetailsResult>
          </GetMSUserLoginDetailsResponse>
       </soap:Body>
    </soap:Envelope>
    So we have the data but as a xml Structure which is nothing but schema and is my Eclipse while mapping while defining response type it gives me just an schema as the property.
    Regards,
    Fenil.

  • Cant configure the node of my Integration Gateway

    So I've been trying to get web services exposed from my test PeopleSoft Installation so that they can be used by another PeopleSoft Installation. After some reading and searching I found that I have to configure the Integration Broker in order to do that. From there I've been trying for a while now (unsuccessfully as you can imagine) to configure the Integration Gateway of my PeopleTools installation. Right now I can ping my Integration Gateway which comes back with...
    PeopleSoft Integration Gateway
    PeopleSoft Listening Connector
    Tools Version : 8.53
    Status:ACTIVE
    and from there I can load the connectors, of which there are 11 different ones. After that I go to "Gateway Setup Properties", log in, and from there I have everything filled out with the following...
    Gateway Default App. Server_
    App Server URL: <the machinename>:<the port#>
    User ID: PS
    Password: <the password>
    Tools Release: 8.53
    Domain Password: <none>
    Virtual Server Node: <none>
    PeopleSoft Nodes_
    Node Name: PSFT_HR
    App Server URL: <the machinename>:<the port#>
    User ID: PS
    Password: <the password>
    Tools Release: 8.53
    Domain Password: <none>
    After that, I try to ping the node but it always errors with the following and I have no idea why...
    PeopleSoftTargetConnector - The appserver may be down.  Check Appserver URL or Domain Password.
    The problem is that I know I have the right URL and that the AppServer is running because I can see it's status in Command Prompt after running PSADMIN.EXE and navigating to the status of the server (not to mention I'm able to log into it). I've also looked at the "Configuration Status" in "Main Menu > PeopleTools > Integration Broker > Integration Network" and got checks on "Gateway Configured" and "Domain Active" but there's an X next to "Node Network Not Configured" which I'm not sure why it's there so if somebody could explain that to me, that'd be really helpful.
    So from "Node Network", I can see all the nodes and can see the node that I'm trying to use for the Integration Gateway, "PSFT_HR", that has checks in the boxes under everything except "Remote Gateway Node". After I click on the PSFT_HR node I can see the "Node Definitions" tab that has the Authentication set to "Password", the password set to what I'm entering with the "Gateway Setup Properties", the "Default User ID" set to "PS" and everything after that (Hub Node, Master Node, etc.) is blank. The check-boxes next to "Default Local Node", "Local Node", "Active Node", and "Segment Aware" are checked.
    In the "Connectors" tab I've tried pinging the node but came up with the same error from before. Also, towards the bottom there's a line that says "This connector does not have properties. Use Gateways Page to setup." where I log in to the "Gateway Setup Properties" again, the same info is used from before, and pinging the node gives the same error. As for the other tabs "Portal", "WS Security", and "Routings" I haven't done anything with them as I never read anything that said I needed too.
    Also, as a side note, every time I try to ping the node the application stops responding even after I click cancel or try to click the "x" on the window. I cant do anything until it times out and gives me the error so if somebody could tell me how to change that or stop it from happening, that'd also be really helpful in saving time with troubleshooting this issue
    I hope this wasn't too long with TOO MUCH information (or quotation marks) but I thought I'd get everything I've got right now out the way since I've tried a lot of different things and may get some suggestions that I've already found/tried up until now. I feel like it's something small that I'm missing (because that's always the case) so hopefully one of you can remedy my situation.
    Thanks a lot for any help/suggestions (even if I've tried them, but I'll try them again in case something changes because computers work that way :/ ).
    Edited by: 1006417 on May 17, 2013 10:59 AM
    Fixed the typos with "machinename:port#" to fit the overall naming convention I used.

    Since you didn't provide the "machinename" I'm wondering if that's your problem... you mention hanging while pinging... that sounds like name lookup or port connectivity problems, as if the gateway is waiting for something to time out in that arena. For communicating to yourself, depending on your config, that setting should match exactly whats in the <PS_HOME/PS_CFG_HOME>/webserv/peoplesoft/applications/peoplesoft/PORTAL.war/WEB-INF/psftdocs/ps/configuration.properties psserver line. Now if you created a domain just for PUBSUB it would need to match the jolt port for that domain (not the WSL). Since your logging in online already, we know the configuration.properties file has a good value, if your trying a different domain, I'd try switching back to using your domain for servicing online requests and try again.
    I recommend looking at Nicolas's write up on this topic, it's very detailed.
    http://gasparotto.blogspot.com/2013/05/integration-network-workcenter-853.html you may need to reference his 8.52 version for some pre-reqs as well but the link is in the 8.53 one. Also look for answers in the log file <PS_HOME/PS_CFG_HOME>/webserv/peoplesoft/applications/peoplesoft/PSIGW.war/errorLog.html (if you took default weblogic domain name). I just went through this process on a fresh demo 8.53 demo install and was able to start pinging the node after only a few steps. they were,
    1. define the gateway
    2. load the connectors
    3. define the default and additional node
    4. verified the PS user was able to logon (originally the password was expired)
    5. set the auth type to Password for the node I was using.
    6. success on ping, interestingly enough I didn't even have PUBSUB processes running yet, node network and active domain both show not configured at this time
    On your node network not getting the green check, look on the Node Network status page just below the title, there is a check box for Secure Keystore Value Defined. Is that checked? If not it needs to be. You probably need to set the secureFileKeystorePassword to your keystore password. The default is still password, you can change this from the Advanced Properties Page link of the Gateway Setup Properties page. Use the encryption tool because the password can't be clear text, it has to be saved encrypted to work. Then go back to the node network page and see if it's cleared up. I mentioned this briefly in a write I did on Unified Navigation http://remotepsadmins.com/2013/03/04/peoplesoft-unified-navigation-with-peoplesoft-applicatations-portal-interaction-hub. Nicolas's 8.52 write up has screenshots and such though he does it prior to showing that it will prevent configuration from passing. I've also seen in properly configured systems you may need to just save this page without changes to populate some data, but that was on upgrading to 8.52, i would expect 8.53 would not need that.
    continuing on, I did exactly what I just mentioned, and I've got a configured node network.
    i just bounced the domain, adding the PUB/SUB servers, and activating them on the Domain Status page. I've now got green lights across the board and I can still ping successfully. I used no domain password, but I also verified that none was set in the psappsrv.cfg file. I just hit the Network Integration Status button on my system and got the Status check successful message.
    Let us know how it goes.
    Edited by: RCC on May 17, 2013 1:13 AM
    Fixed a typo and changed a sentence to make it more clear

  • Technical system for integration server

    hi all
    what are the steps involved in creating a technical system for integration server?what is the role of RZ70 in creating technical system for integration server?
    regards
    bhasker.

    Hi
    Technical systems should be registered by calling transaction RZ70 in technical system. Activate the profile & excute the job.
    Make sure that you have provided correct SLD Host name & Gateway (Either central or local on XI).
    Once you execute this function a default background job will be scheduled which will run after every 12 Hrs.
    Cheers
    Rakesh

  • Using Function Import in Integration Gateway

    Hello Experts,
    Jitendra Kansal
    Midhun VP
    Andreas Wegmann
    Rakshit Doshi
    I am trying to use Function import for  Functions in Oracle DB.
    There is no option to bind datasource for Function import in oData Modelling.
    How Function imports can be used?
    Please Suggest.
    Regards
    Manish

    Hi Manish,
    As of now, IGW doesn't support function import. Enabling Database Content as OData Services - Data Integration using Integration Gateway - SAP Library
    CC: Bjoern Woppmann
    Regards,
    JK

  • Integration Gateway External System Contact Error

    Hi,
    I have to use Integration Broker to Build an inbound interface and to integrate Inventory with Third Party system. It is an ASynchronous Service Operation.
    I am using the PSFT_EP as local node for Peoplesoft and I have created an External node and used the HTTPTARGET as the connector for that external
    But the ping node is failed for the external node. The error is Integration Gateway External System Contact Error 158,10721. When I copy the URL present in the HTTPTARGET connector and open it in the new tab. The message I am getting is "ACTIVE"
    Edited by: 1010088 on Jun 5, 2013 3:00 PM

    Please review following notes on MOS:
    E-IB:Unable to ping node external server External System Contact Error [ID 637183.1]
    https://support.oracle.com/epmos/faces/DocContentDisplay?id=637183.1
    Integration Broker: Cannot ping external node [ID 622030.1]
    https://support.oracle.com/epmos/faces/DocContentDisplay?id=622030.1

  • Integration Gateway - JDBC - Character Encoding Issue

    Hello,
    I'm using SMP 3.0 SP06 and I'm getting data from MS SQL using JDBC interface and I can get all data successfully.
    The problem is:
    there is a column in database contain "Arabic" data "right-to-left" language.
    and when executing the OData service, for example, if the data in arabic is "هذه للتجربة" it is getting to me "هذه للتجربة"
    I think this is the same data but in a different encoding/decoding.
    Do you have any idea ?
    Thanks
    Hossam

    By the way, I have checked it again it is working fine when requesting data in XML format "default"
    The problem occurs only when requesting the service with format parameter "?$format=json"
    and it is even working fine when calling it from "Advanced REST client"
    so I think it is just a problem in the browser while displaying the data, specially chrome as it is working fine with IE, as chrome is displaying json files as plain text without any formatting or decoding, but IE is saving the file on PC and if I tried to open it by notepad++ I find data correctly decoded.
    It seems it is not an SMP nor Integration gateway issue, sorry for confusing

  • SMP 3.0 Integration Gateway as SOA?

    Guys, Most important component of SMP 3.0 we call them Integration gateway. Does it solve real enterprise problems of connection to variety of customer's back-ends such as RDMS, connection to their portal apps as back-end, connection to BI tools as back-end? Real enterprise headache is since many years for their varying purposed adopted many back-ends which includes databases and they have developed some sort of enterprise portal which they normally operate on computer.
    Question here is Does Integration Gateway allows connection to all back-ends discussed above? Doe it also allows to combine multiple back-ends given above and have capability in any of the SMP 3.0 component where we customize the business logic and finally get something out of SMP 3.0/All Back-ends(combined business logic) which we use it on mobile?
    Service Oriented Architecture capabilities in SMP 3.0 Integration Gateway? it it just a java lean/web server to consume ready made business logic and make it available in form or OData to Mobiles?
    Everyone is invited to answer my questions.This question was asked to SAP but could not get any answer unfortunately.
    Regards,
    Mayur

    Guys, Most important component of SMP 3.0 we call them Integration gateway. Does it solve real enterprise problems of connection to variety of customer's back-ends such as RDMS, connection to their portal apps as back-end, connection to BI tools as back-end? Real enterprise headache is since many years for their varying purposed adopted many back-ends which includes databases and they have developed some sort of enterprise portal which they normally operate on computer.
    Question here is Does Integration Gateway allows connection to all back-ends discussed above? Doe it also allows to combine multiple back-ends given above and have capability in any of the SMP 3.0 component where we customize the business logic and finally get something out of SMP 3.0/All Back-ends(combined business logic) which we use it on mobile?
    Service Oriented Architecture capabilities in SMP 3.0 Integration Gateway? it it just a java lean/web server to consume ready made business logic and make it available in form or OData to Mobiles?
    Everyone is invited to answer my questions.This question was asked to SAP but could not get any answer unfortunately.
    Regards,
    Mayur

  • Doc for Integrating Panasonic TDA100 and Panasonic KX-TD 12/32 with CUCM

    I need Doc for Integrating Panasonic TDA100 and Panasonic KX-TD 12/32 with CUCM 8.6
    Appreciate your support

    Hi Paolo,
    I also need to integrate a Panasonic PANASONIC Ref. KX-TDE100 - Version 5.0, with a CUCM 8.6.2, I'd like to do it with SIP trunks since the Panasonic has the capability to do it.
    I do have on my scenario this equipment:
    CUP 8.6.2
    CUCM 8.6.2
    IOS Gateway: Cisco IOS Software, C2900 Software (C2900-UNIVERSALK9-M), Version 15.2(2)T1 with voice service voip enabled.
    What do you think should work better,
    a) Use Gateway as CUBE
    c) User CUP as SIP Proxy
    Is there any other better solution?
    Please let me know your comments and if you have a link for any documentation regarding your answer.
    Thks,

  • Error:Unable to reserve .lok file for Integrated WLS server (DefaultServer)

    Hi,
    I am having jdev 11.1.1.1.0.
    Many times I get following error while running my application pages:
    Unable to reserve the .lok file for Integrated WLS server (DefaultServer). Typically this is because another instance of this server is already running in the WLS domain.
    The only way out is to close jdev, delete system11.1.1.1.33.54.07 folder and open jdev again.
    Why is this error dialog shown? Is there any permanent solution?
    TIA

    Thanks for quick reply!
    As suggested in the given thread, I logged into the weblogic console http://127.0.0.1:7101/console/ as 'weblogic' user.
    On the left hand side in the 'View changes and restarts' section, no pending changes are shown. It shows following text:
    Configuration editing is enabled. Future changes will automatically be activated as you modify, add or delete items in this domain.
    Please advise. I can share the application.zip if needed.
    Thanks

  • What technical components are needed for integration of SAP BI and BO?

    Hello,
    What technical components are needed for integration of SAP BI and BO?

    Hi,
    you need to setup a BOBJ server (eg. BusinessObjects Enterprise XI 3.1 or BO Edge 3.1) and then install the BusinessObjects integration Kit for SAP on the same machine your BOBJ server runs.
    In order to build reports you can either use Crystal Reports (eg Install Crystal Report Designer 2008 V1 if you have an XI 3.1 server installed), WebIntelligence (Install the Business Objects XI 3.1 Client Tools in order to be able to build universes), BusinessObjects Voyager or XCelsius. Please note that you have to always install the BOBJ integration Kit for SAP (should be the same version as your server and client installation) on your clients AFTER you installed one or more of the above client tools.
    Please take again a look at the following link for more detailed information (from Ingo) on this:
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a00ee3b2-5283-2b10-f1bf-8c6413e0898f]
    Regards,
    Stratos

  • What are the Infotypes required for integrating Payroll for Latin America?

    Hi,
    Can anyone tell me the Country Specific Infotypes for Implementing Payroll for Latin America? Also Please let me know the Infotypes required for integrating FI & CO modules with Payroll.

    Hi,
    Can anyone tell me the Country Specific Infotypes for Implementing Payroll for Latin America? Also Please let me know the Infotypes required for integrating FI & CO modules with Payroll. Also I need to implement the Payroll for Latin America including ESS and MSS. How do I Integrate?
    Regards,
    Kavitha

  • "Posting with reference to pur. order only possible for integrated whse"

    When I try posting GR with mvmt type 101 wrt PO  I am receiving the error “Posting with reference to pur. order only possible for integrated whse”
    The scenario is  storage lcation is maintained  with the external warehouse management .
    Is there anything i need to maintain warehouse as decentralised one or should i need to maintain any moment types or is there anything else i should maintain in the customisation.
    Kindly guide me regarding this as I am new to WM ,Thanks in advance.

    Hi ,
    In my case i have not maintained as decentralised one.
    also the thing is  there is no warehouse house  data managed over here .the requirement is when connected to extended warehouse  the system has to create inspection lot after the GR has done ,
    whereas in normal scenario everything is normal,
    can you please suggest what should be done in this case.
    Also if possible can you please tell me what from the scratch so that it will be helpful to come through .

  • Step by Step procedure for Integration of B0 with BI 7.0, Portal

    Hi,
    My key concerns include integration with SAP Portal, which I did not find in instalaltion guide.
    Please advice on step by by Procedure for BO with BI 7.0 starting with the right version of BO to be installed.
    1. Which version compatible with BI 7.0 SP 12, LATER TO BE UPGRADED TO sp 16
    2. Source of data will be BI and reports will be using BO.
    3. What are components to be installed
    4. Prerequisites for Integration with BI AND SAP Portal.
    5.Steps for Integration with BI 7.0
    6. Steps for Integration with SAP Portal- Where to get the sample iviews. What to do for connction between Portal and BO - this i didnt find in installation guide
    Thanks,
    Harish

    HI,
    here the items:
    SAP Side:
    - all machines have to be in the same domain
    - BI has to trust the portal
    - BI has to accept SSO tickets
    - EP has to generate SSO tickets
    BusinessObjects:
    - SAP Authentication has to be configured
    - BI system should be configured has default system in the options of the SAP authentication
    - authentication.default parameter in the web.xml for InfoView has to be set to secSAPR3
    - BusinessObjects has to be in the same domain
    EP side:
    - in the system landscape configure the Crystal Enterprise Server Properties for your BI system
    - import the portal iview template that is part of the SAP Integration Kit
    - create a new iView
    Ingo

Maybe you are looking for

  • How do I merge different music libraries on the same computer. I have Iphone and an ipod

    I have an Iphone and my wife has ipod nano. We both have different music libraries. Itunes on my mac doesnot allow the merging of libraries. Is there a way of doing so without lossing the music

  • The ABAP/4 Open SQL array insert results in duplicate database records

    Hi, Iam getting following error : The ABAP/4 Open SQL array insert results in duplicate database records. Error in ABAP application program. The current ABAP program "SAPLV60U" had to be terminated because one of the statements could not be executed.

  • List of songs missing, playback unaffected.

    Hey folks, just bought a new mac, moved all my music over, and things worked fine yesterday. Today, itunes is empty. Upon opening, the portion of the window that ought to have the song list is blank. If the itunes store is opened, things appear norma

  • Numbering photos in iPhoto for Toast6Lite

    In creating a Slideshow I change the order of some photos in an Album to better tell the story. Then I have changed the titles, in the new order, to 001, 002, etc. in the 'Information' section. But when I move these photos into ToastLite or to the De

  • How to install JRockit 5.0 Linux

    Hi, How can I install JRockit 5.0 R26 JRE or JDK for Linux x86/32bit? All that I see when starting the installer is: "Extracting 0%..................... 100%" and then nothing..... I see the jrockit process active, but nothing happens.