Connecting SAP XI to Websphere Commerce server via SOAP

Hi, I hope you can help...
I am currently attempting to connect to Websphere Commerce server 6.0.0.6 from SAP XI 3.0 using web services. Websphere Commerce has standard services for loading products that we would like to automate from SAP ECC. I have created the interface using an async/sync bridge in BPM.
Matmas IDoc (Async) --> ProcessCatalogEntry (Sync Request) --> AcknowledgeCatalogEntry (Sync Response) --> ALEAUD IDoc (Async).
This is working to an extent and I have a request and response in the message monitor
However, in the response message I am receiving an authorisation failure as the webservice requires the following in the SOAP header:
  <soapenv:Header>
  <wsse:Security soapenv:mustUnderstand="1"
    xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wsswssecurity-secext-1.0.xsd">
      <wsse:UsernameToken>
        <wsse:Username>xxxxxxxx</wsse:Username>
        <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wssusername-token-profile1.0#PasswordText">xxxxxxxx
         </wsse:Password>
       </wsse:UsernameToken>
     </wsse:Security>
   </soapenv:Header>
From reading several posts I  used the nosoap method to achieve this. I checked the "Do not use SOAP envelope"
in my receiver SOAP channel. I downloaded the SOAP Envelope XSD and added to it to include my additional header and body elements.
However, this is not working and I receive the following message in the monitor:
SOAP: Response message contains an error XIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP Internal Server Error
I also created an XSLT to add the required SOAP header but was unsure how to use this as part of a synchronous process...
If you can, could you please advise me on how to resolve this issue...
Many thanks,
Pete
Edited by: Pete White on Feb 4, 2010 11:49 AM

Hello Thomas,
thanks for your answer. We are already on SP19. Starting and stopping is reacting but only with the above mentioned errors.
I think, that the classnames are OK because with a little Java JMS Testprogramm with the same parameters from the channeldefinition we can connect to the BEA Server. So this should be OK.
Kind regards
Manfred Schmidt-Voigt

Similar Messages

  • SAP XI and WebSphere Application Server v6

    Hello,
    has anyone made integration projects between SAP XI and WebSphere App Server v6 using JMS?
    Thanks for any feedback
    Jens

    WebSphere is not a Sun Microsystems product.
    It does not make sense to ask questions here, about a third party product,
    particularly when that third party is such a large organization.
    Can you describe what guidance you have received from IBM ?
    They would be the best source of all nuances on their own product.
    They created it.
    They've undoubedly installed it once or twice.
    They are expected to be prepared to answer questions about it.

  • Connection between SMD Agent and SMD server via SAProuter

    In our scenario, we have to setup the connection between SMD agent and SMD server(solution manager server) via saprouter. But during the installation of SMD agent, we can only specify the hostname of the managing system, we have no place to add saprouter string(/H/..../H/). I I am not sure if we could connect the agent and server via saprouter, if so how to do it?
    Hope someone can give us your precious advices on this issue.
    Karl

    Perfect; and thanks for your response. I found this help page for developers to implement P4 support over SAP router: http://help.sap.com/saphelp_nw73/helpdata/en/48/2992d7ad8758d7e10000000a421937/content.htm
    But in the SM Diagnostics Setup options I can set up only a direct HTTP adresses and have no options to set up connections over a sap router to P4 ports directly. I can at the moment only solve my problems with NAT or firewall rules.
    And also the diagnostic agent setup has no options to config a proxy or sap router. I found yesterday a blog on sdn side with screenshots of the setup with all available connection opetions to SLD... sry I can not post this link today.
    This is an official statment of SAP from the current version of SMD guide; it is also possible but why not from the beginning???:
    In some network conficurations, the Diagnostics agent has to connect to the Managing system though a SAP router.
    This feature will be fully supported in Solution Manager 7 Ehp2 (7.02).
    In order to enable this feature in Ehp1, please contact the Diagnostics Agent support team to get information on how to
    setup the agent and on which patch level you can perform the installation.
    This thread were a long time not answared; proxy and routing connections are mostly stepmotherly handled by SAP; this is also a problem by set up of automatic RFC generations in SMSY; why there are in the setup assitents no options to set up the router string.
    I have absolutly no comprehension for this in year 2011. All this technics are good known and long time tested.
    In this case the f**k has provoked an answare to this thread and this is what I expected; but sorry for my style You are right I could also writh why the heck
    FAQ:
    SMD root side on SDN: http://service.sap.com/diagnostics
    SM FAQ: http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/4e49dbea-0c01-0010-91bd-f0b61388c9ae
    SM Setup Home: http://wiki.sdn.sap.com/wiki/display/SMSETUP/Home
    SM Diagnostic Troubleshooting Guide: https://websmp201.sap-ag.de/~sapdownload/002007974700000409092009E/DiagAgent_TroubleShooting.pdf
    SMD Candidate Setup: http://wiki.sdn.sap.com/wiki/display/SMSETUP/Diagnostics+Agents

  • InDesign Server (via SOAP) -- Returning Binary Data: Possible or Not?

    is it possible to return binary data to soap client?
    given: myFile = File('MyFancyJpeg.jpg');
    I want to return either a base64 encoded, or hex result back to the SOAP client. (filetype, above, is totally arbitrary, by the way)
    Is InDesign server capable of something like this?

    I think so. See ww-ids-soap.pdf in the SDK. You can return to the client any value you want; the value is typed in the SOAP response. An example from that pdf of a mixed-type array response:
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope
        xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/"
        xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xmlns:xsd="http://www.w3.org/2001/XMLSchema"
        xmlns:IDSP="http://ns.adobe.com/InDesign/soap/">
        <SOAP-ENV:Body>
            <IDSP:RunScriptResponse>
                <errorNumber>0</errorNumber>
                <scriptResult>
                    <data xsi:type="IDSP:List">
                        <item><data xsi:type="xsd:string">1</data></item>
                        <item><data xsi:type="xsd:string">2</data></item>
                        <item><data xsi:type="xsd:long">10</data></item>
                        <item><data xsi:type="xsd:long">12</data></item>
                    </data>
                </scriptResult>
            </IDSP:RunScriptResponse>
        </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    Jeff

  • Can't connect to Report Server via Management Studio

    Hi,
    I have a local installation of SQL Server 2005 (Developer Edition) on XP Professional SP2, with Reporting Services, Integration Services, and Analysis Server installed.
    I can connect to Integration Services and Analysis Server via the SQL Server Management Studio, but not to the Report Server. I can access and use the Report Server installation via http://localhost/Reports and http://localhost/ReportServer, and everything checks out on the Reporting Services Configuration tool, so the server appears to be working fine.
    I've uninstalled/re-formatted/reinstalled the services (with all default options, and services running as "Local Service"), but always end up with the following error when connecting to Report Server via Management Studio:
    The request failed with HTTP status 503: Service Unavailable. (Microsoft.SqlServer.Management.UI.RSClient) ------------------------------
    Program Location:
       at Microsoft.SqlServer.ReportingServices2005.RSConnection.GetSecureMethods()
       at Microsoft.SqlServer.ReportingServices2005.RSConnection.IsSecureMethod(String methodname)
       at Microsoft.SqlServer.ReportingServices2005.RSConnection.ValidateConnection()
       at Microsoft.SqlServer.Management.UI.RSClient.RSClientConnection.CreateConnection(String connectionString)
       at Microsoft.SqlServer.Management.UI.RSClient.RSConnectionInfo.CreateConnectionObject()
       at Microsoft.SqlServer.Management.UI.RSClient.RSConnectionInfo.RSTypeImpl.GetConnectionObject(UIConnectionInfo ci)
       at Microsoft.SqlServer.Management.UI.ConnectionDlg.RSType.GetConnectionObject(UIConnectionInfo ci)
       at Microsoft.SqlServer.Management.UI.VSIntegration.ObjectExplorer.ObjectExplorer.ValidateConnection(UIConnectionInfo ci, IServerType server)
       at Microsoft.SqlServer.Management.UI.ConnectionDlg.Connector.ConnectionThreadUser()
    Any hints would be appreciated...
    Thanks,
    /vijayan

    Here is the report server log:
    <Header>
      <Product>Microsoft SQL Server Reporting Services Version 9.00.2047.00</Product>
      <Locale>en-US</Locale>
      <TimeZone>AUS Eastern Standard Time</TimeZone>
      <Path>C:\Program Files\Microsoft SQL Server\MSSQL.3\Reporting Services\LogFiles\ReportServerService__06_22_2006_09_34_56.log</Path>
      <SystemName>COUNTD2</SystemName>
      <OSName>Microsoft Windows NT 5.2.3790 Service Pack 1</OSName>
      <OSVersion>5.2.3790.65536</OSVersion>
    </Header>
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing ConnectionType to '0'  as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing IsSchedulingService to 'True'  as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing IsNotificationService to 'True'  as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing IsEventService to 'True'  as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing PollingInterval to '10' second(s) as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing WindowsServiceUseFileShareStorage to 'False'  as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing MemoryLimit to '60' percent as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing RecycleTime to '720' minute(s) as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing MaximumMemoryLimit to '80' percent as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing MaxAppDomainUnloadTime to '30' minute(s) as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing MaxQueueThreads to '0' thread(s) as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing IsWebServiceEnabled to 'True'  as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing MaxActiveReqForOneUser to '20' requests(s) as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing MaxScheduleWait to '5' second(s) as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing DatabaseQueryTimeout to '120' second(s) as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing ProcessRecycleOptions to '0'  as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing RunningRequestsScavengerCycle to '60' second(s) as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing RunningRequestsDbCycle to '60' second(s) as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing RunningRequestsAge to '30' second(s) as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing CleanupCycleMinutes to '10' minute(s) as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing DailyCleanupMinuteOfDay to default value of '120' minutes since midnight because it was not specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing WatsonFlags to '1064'  as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing WatsonDumpOnExceptions to 'Microsoft.ReportingServices.Diagnostics.Utilities.InternalCatalogException,Microsoft.ReportingServices.Modeling.InternalModelingException'  as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing WatsonDumpExcludeIfContainsExceptions to 'System.Data.SqlClient.SqlException,System.Threading.ThreadAbortException'  as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing SecureConnectionLevel to '0'  as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing DisplayErrorLink to 'True'  as specified in Configuration file.
    ReportingServicesService!library!4!22/06/06-09:34:57:: i INFO: Initializing WebServiceUseFileShareStorage to 'False'  as specified in Configuration file.
    ReportingServicesService!resourceutilities!4!22/06/06-09:34:57:: i INFO: Reporting Services starting SKU: Enterprise
    ReportingServicesService!resourceutilities!4!22/06/06-09:34:57:: i INFO: Evaluation copy: 0 days left
    ReportingServicesService!runningjobs!4!22/06/06-09:34:57:: i INFO: Database Cleanup (NT Service) timer enabled: Next Event: 600 seconds.  Cycle: 600 seconds
    ReportingServicesService!runningjobs!4!22/06/06-09:34:57:: i INFO: Running Requests Scavenger timer enabled: Next Event: 60 seconds.  Cycle: 60 seconds
    ReportingServicesService!runningjobs!4!22/06/06-09:34:57:: i INFO: Running Requests DB timer enabled: Next Event: 60 seconds.  Cycle: 60 seconds
    ReportingServicesService!runningjobs!4!22/06/06-09:34:57:: i INFO: Execution Log Entry Expiration timer enabled: Next Event: 59102 seconds.  Cycle: 86400 seconds
    ReportingServicesService!runningjobs!4!22/06/06-09:34:57:: i INFO: Memory stats update timer enabled: Next Event: 60 seconds.  Cycle: 60 seconds
    ReportingServicesService!runningjobs!4!22/06/06-09:34:57:: i INFO: SQM timer timer enabled: Next Event: 62702 seconds.  Cycle: 86400 seconds
    ReportingServicesService!library!8!22/06/06-09:34:58:: i INFO: Catalog SQL Server Edition = Enterprise
    ReportingServicesService!crypto!8!22/06/06-09:34:58:: i INFO: Initializing crypto as user: OBJECTIVEWARE\s.count
    ReportingServicesService!crypto!8!22/06/06-09:34:58:: i INFO: Exporting public key
    ReportingServicesService!crypto!8!22/06/06-09:34:58:: i INFO: Performing sku validation
    ReportingServicesService!crypto!8!22/06/06-09:34:58:: i INFO: Importing existing encryption key
    ReportingServicesService!dbpolling!8!06/22/2006-09:34:58:: EventPolling polling service started
    ReportingServicesService!dbpolling!8!06/22/2006-09:34:58:: NotificationPolling polling service started
    ReportingServicesService!dbpolling!8!06/22/2006-09:34:58:: SchedulePolling polling service started
    ReportingServicesService!dbpolling!8!06/22/2006-09:34:58:: UpgradePolling polling service started
    ReportingServicesService!dbpolling!b!22/06/06-09:34:58:: NotificationPolling heartbeat thread started.
    ReportingServicesService!dbpolling!a!22/06/06-09:34:58:: EventPolling heartbeat thread started.
    ReportingServicesService!dbpolling!c!22/06/06-09:34:58:: Polling started
    Here is the IIS log:
    #Software: Microsoft Internet Information Services 6.0
    #Version: 1.0
    #Date: 2006-06-21 00:00:21
    #Fields: date time s-sitename s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) sc-status sc-substatus sc-win32-status
    2006-06-21 00:00:21 W3SVC1 203.166.122.177 GET /iisstart.htm - 80 - 203.166.122.223 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727;+InfoPath.1) 200 0 64
    #Software: Microsoft Internet Information Services 6.0
    #Version: 1.0
    #Date: 2006-06-21 03:50:53
    #Fields: date time s-sitename s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) sc-status sc-substatus sc-win32-status
    2006-06-21 03:50:53 W3SVC1 203.166.122.177 POST /ReportServer/ReportService2005.asmx - 80 - 203.166.122.218 - 200 0 0
    2006-06-21 03:51:15 W3SVC1 203.166.122.177 POST /ReportServer/ReportService2005.asmx - 80 - 203.166.122.218 - 500 0 0
    2006-06-21 03:51:15 W3SVC1 203.166.122.177 POST /ReportServer/ReportService2005.asmx - 80 - 203.166.122.218 - 200 0 0
    2006-06-21 03:51:31 W3SVC1 203.166.122.177 POST /ReportServer/ReportService2005.asmx - 80 - 203.166.122.218 - 500 0 0
    2006-06-21 03:51:31 W3SVC1 203.166.122.177 POST /ReportServer/ReportService2005.asmx - 80 - 203.166.122.218 - 500 0 0
    #Software: Microsoft Internet Information Services 6.0
    #Version: 1.0
    #Date: 2006-06-21 07:51:41
    #Fields: date time s-sitename s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) sc-status sc-substatus sc-win32-status
    2006-06-21 07:51:41 W3SVC1 203.166.122.177 GET /iisstart.htm - 80 - 203.166.122.223 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727;+InfoPath.1) 200 0 64
    #Software: Microsoft Internet Information Services 6.0
    #Version: 1.0
    #Date: 2006-06-21 23:38:59
    #Fields: date time s-sitename s-ip cs-method cs-uri-stem cs-uri-query s-port cs-username c-ip cs(User-Agent) sc-status sc-substatus sc-win32-status
    2006-06-21 23:38:59 W3SVC1 203.166.122.177 GET /Reports - 80 - 203.166.122.177 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727) 301 0 0
    2006-06-21 23:39:16 W3SVC1 203.166.122.177 GET /Reports/Home.aspx - 80 - 203.166.122.177 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727) 302 0 0
    2006-06-21 23:39:25 W3SVC1 203.166.122.177 GET /Reports/Pages/Folder.aspx - 80 - 203.166.122.177 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727) 500 0 0
    2006-06-21 23:39:25 W3SVC1 203.166.122.177 GET /Reports/js/ReportingServices.js - 80 - 203.166.122.177 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727) 200 0 64
    2006-06-21 23:39:25 W3SVC1 203.166.122.177 GET /Reports/styles/ReportingServices.css - 80 - 203.166.122.177 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727) 200 0 64
    2006-06-21 23:39:25 W3SVC1 203.166.122.177 GET /Reports/images/blank.gif - 80 - 203.166.122.177 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727) 200 0 64
    2006-06-21 23:39:25 W3SVC1 203.166.122.177 GET /Reports/images/48error.jpg - 80 - 203.166.122.177 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727) 200 0 64
    2006-06-21 23:40:11 W3SVC1 203.166.122.177 GET /Reports - 80 - 203.166.122.177 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727) 301 0 0
    2006-06-21 23:40:11 W3SVC1 203.166.122.177 GET /Reports/Home.aspx - 80 - 203.166.122.177 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727) 302 0 0
    2006-06-21 23:40:13 W3SVC1 203.166.122.177 GET /Reports/Pages/Folder.aspx - 80 - 203.166.122.177 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727) 500 0 0
    2006-06-21 23:41:26 W3SVC1 203.166.122.177 GET /Reports/home.aspx - 80 - 203.166.122.177 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727) 302 0 0
    2006-06-21 23:41:28 W3SVC1 203.166.122.177 GET /Reports/Pages/Folder.aspx - 80 - 203.166.122.177 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.2;+SV1;+.NET+CLR+1.1.4322;+.NET+CLR+2.0.50727) 500 0 0
    2006-06-21 23:43:52 W3SVC1 203.166.122.177 GET /reports - 80 - 203.166.122.218 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+.NET+CLR+1.1.4322;+InfoPath.1;+.NET+CLR+2.0.50727) 301 0 0
    2006-06-21 23:43:52 W3SVC1 203.166.122.177 GET /reports/Home.aspx - 80 - 203.166.122.218 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+.NET+CLR+1.1.4322;+InfoPath.1;+.NET+CLR+2.0.50727) 302 0 0
    2006-06-21 23:43:53 W3SVC1 203.166.122.177 GET /reports/Pages/Folder.aspx - 80 - 203.166.122.218 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+.NET+CLR+1.1.4322;+InfoPath.1;+.NET+CLR+2.0.50727) 500 0 0
    2006-06-21 23:43:54 W3SVC1 203.166.122.177 GET /Reports/js/ReportingServices.js - 80 - 203.166.122.218 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+.NET+CLR+1.1.4322;+InfoPath.1;+.NET+CLR+2.0.50727) 200 0 64
    2006-06-21 23:43:54 W3SVC1 203.166.122.177 GET /Reports/styles/ReportingServices.css - 80 - 203.166.122.218 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+.NET+CLR+1.1.4322;+InfoPath.1;+.NET+CLR+2.0.50727) 200 0 64
    2006-06-21 23:43:54 W3SVC1 203.166.122.177 GET /Reports/images/blank.gif - 80 - 203.166.122.218 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+.NET+CLR+1.1.4322;+InfoPath.1;+.NET+CLR+2.0.50727) 200 0 64
    2006-06-21 23:43:54 W3SVC1 203.166.122.177 GET /Reports/images/48error.jpg - 80 - 203.166.122.218 Mozilla/4.0+(compatible;+MSIE+6.0;+Windows+NT+5.1;+SV1;+.NET+CLR+1.1.4322;+InfoPath.1;+.NET+CLR+2.0.50727) 200 0 64
    Thanks,
    Roshan.

  • Problems connecting via SOAP

    I am currently trying to connect to our OCS server via SOAP.
    The example scripts in the documentation (Java-example for the RemoteLoginManager, p.10 of the Content Services Application Developer's Guide ) and the ones in the SDK sadly dont work.
    We tracked it down to http://jira.atlassian.com/browse/JRA-7321 to be the likliest cause for that.
    The returned envelope while trying to connect contains TWO attributes of identical name causing a SaxException client-side.
    Any insight on if we did a misconfiguration?
    Any tips on how to connect to OCS via SOAP the simplest way?
    Thanks,
    Kristian

    Hi Matt,
    you are right - we are using SOAPpy / ZSI and the duplicated attributes are
    exactly like the issue on apache.org.
    We are just trying to figure out which AXIS version is running on the
    server and will post it as soon as we know :)
    Our SOAP envelopes look like this:
    outgoing: --------------------------------------------------
    <?xml version="1.0" encoding="UTF-8"?>
    <SOAP-ENV:Envelope SOAP-ENV:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance" xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/1999/XMLSchema">
    <SOAP-ENV:Body>
    <ns1:login xmlns:ns1="http://xmlns.oracle.com/content/ws" SOAP-ENC:root="1">
    <username xsi:type="xsd:string">zope_user</username>
    <password xsi:type="xsd:string">zope_passwd</password>
    </ns1:login>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>
    incoming:--------------------------------------------------------------
    <?xml version="1.0" encoding="UTF-8"?>
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/1999/XMLSchema" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance">
    <soapenv:Body>
    <ns1:loginResponse soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xmlns:ns1="http://xmlns.oracle.com/content/ws">
    <loginReturn soapenc:arrayType="ns1:NamedValue[3]"
    xsi:type="soapenc:Array" xsi:type="ns1:ArrayOfNamedValue"
    xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <loginReturn href="#id0"/>
    <loginReturn href="#id1"/>
    <loginReturn href="#id2"/>
    </loginReturn>
    </ns1:loginResponse>
    <multiRef id="id0" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns2:NamedValue" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns2="http://xmlns.oracle.com/content/ws">
    <name xsi:type="ns3:string" xmlns:ns3="http://www.w3.org/2001/XMLSchema">LOGIN_USER</name>
    <value href="#id3"/>
    </multiRef>
    <multiRef id="id2" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns4:NamedValue" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns4="http://xmlns.oracle.com/content/ws" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
    <name xsi:type="ns5:string" xmlns:ns5="http://www.w3.org/2001/XMLSchema">TRANSACTION_TIMEOUT</name>
    <value xsi:type="soapenc:int">120</value>
    </multiRef>
    <multiRef id="id1" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns6:NamedValue" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns6="http://xmlns.oracle.com/content/ws" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
    <name xsi:type="ns7:string" xmlns:ns7="http://www.w3.org/2001/XMLSchema">SESSION_TIMEOUT</name>
    <value xsi:type="soapenc:int">1800</value>
    </multiRef>
    <multiRef id="id3" soapenc:root="0" soapenv:encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" xsi:type="ns8:Item" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns8="http://xmlns.oracle.com/content/ws" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/">
    <id xsi:type="ns9:long" xmlns:ns9="http://www.w3.org/2001/XMLSchema">150408</id>
    <name xsi:type="ns10:string" xmlns:ns10="http://www.w3.org/2001/XMLSchema">kristian</name>
    <requestedAttributes xsi:type="ns8:ArrayOfNamedValue" xsi:null="true" xmlns:xsi="http://www.w3.org/1999/XMLSchema-instance"/>
    <type xsi:type="ns11:string" xmlns:ns11="http://www.w3.org/2001/XMLSchema">USER</type></multiRef>
    </soapenv:Body>
    </soapenv:Envelope>
    thanks,
    kristian

  • Error Connecting to SAP server via JCO

    Hi,
      When i tried to connect SAP server using JCO its giving error "Fatal error User name or password incorrect" .But with the same username and password i'm able to login to the SAP system with SAP logon pad. My username contains only numeric,does this have any significance?
    Thanks,
    Bala

    Bala
    type of username is not significant if it is correctly entered as same as entered in SAP Logon Tool.
    U should configure the JCO Interface properly with connection details
    SAP Server
    SAP Client
    SAP System Number
    SAP User Name
    SAP Password
    Execution - True
    Also every fields are very case sensitive, so hv deep look at every field with correction.
    Pls tell me the LastErrorMessage using Tracer as follows SAPJCOInterface_0.LastErrorMessage
    Regards
    Som

  • MS Commerce Server integration with SAP CRM (incl. Middleware question)

    Hi,
    We're investigating on how to possibly connect a MS eCom solution (MS Commerce Server) to a SAP CRM backend.
    With the correct middleware and some Bapi's this would probably be do-able solution I guess, but does anyone have info on standard setups for this?
    - Standard Bapi's to use?
    - Middleware to be used (will XI do it all or do we need a 3th party middleware solution)?
    - Are any of the standard MS eCom screens aligned with what's in the SAP Badi's?
    - What about pricing information - is the info returning from the IPC valid for MS eCom display?
    Anyway - if anybody has any ideas or experience around this - feel free to reply.
    Thanx!

    HI Arno,
    I asked our CRM guys but because we are doing workforce management and that required server based integration..
    Do you have any idea for that ?

  • MS Commerce Server integration with SAP CRM

    Hi,
    We're investigating on how to possibly connect a MS eCom solution (MS Commerce Server) to a SAP CRM backend.
    With the correct middleware and some Bapi's this would probably be do-able solution I guess, but does anyone have info on standard setups for this?
    - Standard Bapi's to use?
    - Middleware to be used (will XI do it all or do we need a 3th party middleware solution)?
    - Are any of the standard MS eCom screens aligned with what's in the SAP Badi's?
    - What about pricing information - is the info returning from the IPC valid for MS eCom display?
    Anyway - if anybody has any ideas or experience around this - feel free to reply.
    Thanx!

    Thanks Baskar for your reply
    Can you please endorse if the following activities are needed to perform for its implementation
    1. Using MS EPM SDK, create mapping data (XML)
    2. Windows Synchronization Service to detect changes in MS EPM
    3. SAP PI / XI for web-services
    4. BAPIs to update SAP PS project
    The same goes to sync SAP PS with MS EPM  in reverse order.
    Plus, is there standard implementation document available as provided to integrate MS EPM with cProjects?
    There are many forum posts for which all replies are related to knowledge sharing, possibility and idea sharing. I don't find any post related to its actual implementation.
    Regards
    Nayab

  • NCO3 - Connection with Message Server via SapRouter fails

    Hello @all,
    i have successfully used nco3 as client (.net framework 3.5 / VS 2008) with an application server connection via saprouter.
    But i tried several ways to connect to a message server via saprouter without luck.
    The parameters i used to connect:
            parameters(RfcConfigParameters.Name) = "Test"
            parameters(RfcConfigParameters.MaxPoolSize) = Convert.ToString(5)
            parameters(RfcConfigParameters.IdleTimeout) = Convert.ToString(10)
            parameters(RfcConfigParameters.User) = ...
            parameters(RfcConfigParameters.Password) = ...
            parameters(RfcConfigParameters.Client) = "100"
            parameters(RfcConfigParameters.Language) = "DE"
            parameters(RfcConfigParameters.MessageServerHost) = ...
            parameters(RfcConfigParameters.SystemID) = ...
            parameters(RfcConfigParameters.LogonGroup) = "USER"
            parameters(RfcConfigParameters.SAPRouter) = ...
    I always get an SAP.Middleware.Connector.RfcCommunicationException with following exception details:
    InnerException     Nothing
    Message     ""
    Source     "sapnco_utils"
    StackTrace     bei SAP.Middleware.Connector.CpicConnection.getASfromMS(Dictionary`2 options)
       bei SAP.Middleware.Connector.CpicConnection.parseConnParameters(Dictionary`2 options)
       bei SAP.Middleware.Connector.CpicConnection.ConnectAsClient(Dictionary`2 options)
       bei SAP.Middleware.Connector.RfcConnection.ConnectAsClient(RfcConfigParameters options)
       bei SAP.Middleware.Connector.RfcConnectionPool..ctor(RfcDestination d, Boolean forRepositoryCalls, String uniqueKey)
       bei SAP.Middleware.Connector.RfcConnectionManager.GetClient(RfcDestination destination, Boolean forRepository)
       bei SAP.Middleware.Connector.RfcDestination.GetClient(Boolean forRepository)
       bei SAP.Middleware.Connector.RfcDestination.Ping()
    Because of empty error message I don't know what to do. It seems that nco3 can't get the application server from the message server, but why? The connection via the old nco2 (VS 2003) works and also if i try to connect with the saplogon ocx from sapgui (some short code in vb6) the connection is established.
    Anyone can help me???
    Thanks a lot.

    parms.Add(RfcConfigParameters.MessageServerHost, "192.168.0.1");
                    parms.Add(RfcConfigParameters.SystemID, "MGF");
                    parms.Add(RfcConfigParameters.GatewayHost, "192.168.0.1");
                    parms.Add(RfcConfigParameters.SAPRouter, "/H/145.145.150.240/H/");
                    parms.Add(RfcConfigParameters.User, "mysapuser");
                    parms.Add(RfcConfigParameters.Password, "********");
                    parms.Add(RfcConfigParameters.Client, "200");
                    parms.Add(RfcConfigParameters.Language, "en");
                    parms.Add(RfcConfigParameters.PoolSize, "5");
                    parms.Add(RfcConfigParameters.MaxPoolSize, "10");
                    parms.Add(RfcConfigParameters.IdleTimeout, "6000");
    I guess you are missing RfcConfigParameters.GatewayHost parameter. Try code snippet given above.
    Regards,
    Ahmed Brohi

  • Connection from DP to SAP PI 7.11 via SOAP/https failed

    Hello Guys,
    we have a problem with connection from DP to SAP PI via SOAP/https.
    DP send a request and get a timeout. timeout is 2 or 3 minutes.
    DP and SAP PI authentificated with certificates.
    Our Problems:
    DP get now failure code
    in commnication channel monitoring in RWB from SAP PI I see no entry, no error
    in java default trace I see no error.
    What could be the Problem? What must we configure for https communication via SOAP Adapter?
    Which Log get me some information?
    Thanks and regards
    Martin

    Hi Neetesh,
    I have check all, but it resolved not my problem.
    I will describe my scenario again:
    scenario:
    syncronous request from system A over DataPower ->SAP PI to SAP system.
    communication DataPower to PI: SOAP over https
    DataPower located in other network zone.
    port is activated in firewall.
    called URL from DataPower:
    https://<host>:5<instance number>01/XISOAPAdapter/MessageServlet?
    channel=:<business system>:<interface>
    Problem:
    authentication looks like ok. No error in ICM Trace, in default java
    trace login from DataPower IP-adress ok.
    but no message is to see in the communication channel.
    no message in the adapter engine, no message in the integration engine
    DataPower get a timeout. (Timeout 2  minutes)
    we find no error, but also no message
    What could be the error? And where find I some information in SAP PI.
    Thanks and regards
    Martin

  • RSA1 DB Connection from SAP BW to external SQL Server databas.

    Hello,
    I am trying to connect our SAP BW system with SQL Server Source System through DB Connect in transaction RSA1.
    Our BW system is running on Windows and MaxDB platform, therefore have I already added the latest dbmssslib.dll library to the kernel for SQL Server.
    But the connection does not work anyhow, I recieve the error "Database error -1 at CON > [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does > exist or access denied." and I am quite sure that my input parameters are correct.
    Therefore I wonder if someone has run into a similar problem and what the problem could be?
    Best Regards,
    Niklas Sandstedt

    Hi,
    I am sorry that my case was assigned to wrong forum.
    That should now have been corrected, however my problem still remains unsolved in one of our systems.
    I found note 178949, which fixed the problem in one system. But even though the system setup seems to be identical, the two systems appears different.
    The following has been done for both systems:
    1. Upgraded kernel to 701 version 111 and added dbmssslib.dll and dbmssslib.pdb files
    2. Created Logical system in BD54.
    3. Tried to create DB connection in transaction DBACOCKPIT.
    In the third step, the setup fails and I receive the following error message when I test the connection:
    Database error -1 at CON > [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not > exist or access denied.
    Database error -1
    All profile parameters AL11-directories also seems to be correct in both systems, so both should find the dbmssslib.dll file.
    One issue that I see is in DBACOCKPIT, the checkbox for "SAP Systems with basis release" is unchangeble and marked. This however, I think was changed in the other system automatically when the connection was established successfully.
    Has anyone run into the same problem?
    Best Regards,
    Niklas Sandstedt

  • Can't connect SAP BW via Live Office and Crystal Report

    Hi all,
    I got error when I tried to refreh with connection refresh button in below environment.
    Does anyone know the cause of this problem?
    <System Configuration in my environment>
    SAP BI Bex Query(Data Source) --> Crystal Report(in Infoview) --> Live Office --> Xcelsius
    <Error>
    LO 26608 (under Enterprise Authentication)
    LO 02010 (under SAP Authentication *1)
    *1 I followed the instruction of below blog.
    /people/ingo.hilgefort/blog/2008/10/07/businessobjects-and-sap-part-2-of-4--creating-a-xcelsius-dashboard-on-top-of-sap-bi
    <Environment>
    Xcelsius 2008 SP1 Fix Pack 3
    Crystal Report 2008
    Live Office XI 3.1 Version 12.1.0.882
    SAP BI 7.0 (SAPKW 70016)
    Regards,
    Hiroyasu

    Hi,
    Thanks for your response. Please see below answers to your question:
    When you say that you are not able to connect from Word Live office to server - in this are you able to see Live Office tab in word document?
    Yes, I can see the Live Office tab. When I try to connect to the server to insert a crystal report I get the message "constructor exception (error: WSE 99999) Unknown error "-1""
    Did the installation process was done properly?
    As far as I am aware, yes.
    Which version of Live office you are using? because it will help to proceed further.
    LIVE OFFICE XI 3.1 (version 12.1.0.882)
    Where exactly you are not getting the Crystal Reports Options? Are you facing any error message?If Yes then what is the error message.
    Please see above
    Are you able to login to server successfully?
    I can in Excel in Live office but not in Word. As per the first message, I cannot see an option in Crystal to publish a crystal report. Do you know how I can do this? As I understand I need to publish it to the server and then Live Office will be able to see it.
    Regards
    Asha.

  • Internal server error while connecting SAP's customer financial fact sheet with iOS device

    Hi all,
    I am trying to connect SAP's customer financial fact sheet latest ( version 3.7)   with iOS phone/iPAD (version 7.1) but it shows internal server error,
    when trying to connect  Neither "Gateway (direct)" nor "SMP Cloud" enabled with port 80/443.
    On other hand my android devices with this app is working ok.
    Trace Log is below:
    2014-09-11 11:27:58.298 Debug Communication error: Error Domain=HTTPRequestErrorDomain Code=11 "INTERNAL SERVER ERROR" UserInfo=0x15eef620 {NSLocalizedDescription=INTERNAL SERVER ERROR}
    2014-09-11 11:27:58.295 Debug Request http://server:8010/url t finished with error Error Domain=HTTPRequestErrorDomain Code=11 "INTERNAL SERVER ERROR" UserInfo=0x15eef620 {NSLocalizedDescription=INTERNAL SERVER ERROR}
    response <?xml version="1.0" encoding="utf-8"?><error xmlns:xsi="http://www.w3.org/2001/XMLSchema-Instance"><code>HTTP/500/E/Internal Server Error</code><message> Call of service /sap/opu/odata/sap/fincustfactsheet terminated because of an error. The following error text was processed in system NQT : The ASSERT condition was violated.The error occurred on the application server . The termination type was: RABAX_STATE.If the termination type is RABAX_STATE, you will find more information on the cause of termination in system NQT in transaction ST22. If the termination type is ABORT_MESSAGE_STATE, you will find more information on the cause of termination on the application server  in transaction SM21. If the termination type is ERROR_MESSAGE_STATE, you can search for further information in the trace file for the work process in transaction ST11 on the application server . You may also need to analyze the trace files of other work processes. If you do not yet have a user ID, contact your system adminmistrator. </message></error>
    2014-09-11 11:27:58.286 Debug [ERROR] 500:INTERNAL SERVER ERROR/Location:-[ODPRequest startSynchronous] + 1427
    2014-09-11 11:27:56.239 Debug DE:Using SUP Manual User
    2014-09-11 11:27:56.238 Debug DE:Get svcDoc URL http://server:8010/url
    2014-09-11 11:27:56.216 Debug DE:startSAPODataRequest CompanyCodeCollection
    2014-09-11 11:27:56.204 Debug DE:SAPODataAccess dealloc CompanyCodeCollection
    2014-09-11 11:27:56.198 Debug DE:CustomerCardsViewController refresh
    2014-09-11 11:27:52.600 Debug Logging/Tracing on
    2014-09-11 11:27:19.792 Debug Communication error: Error Domain=HTTPRequestErrorDomain Code=11 "INTERNAL SERVER ERROR" UserInfo=0x193f3060 {NSLocalizedDescription=INTERNAL SERVER ERROR}
    2014-09-11 11:27:19.787 Debug Request http://server:8010/url  finished with error Error Domain=HTTPRequestErrorDomain Code=11 "INTERNAL SERVER ERROR" UserInfo=0x193f3060 {NSLocalizedDescription=INTERNAL SERVER ERROR}
    response <?xml version="1.0" encoding="utf-8"?><error xmlns:xsi="http://www.w3.org/2001/XMLSchema-Instance"><code>HTTP/500/E/Internal Server Error</code><message> Call of service /sap/opu/odata/sap/fincustfactsheet terminated because of an error. The following error text was processed in system NQT : The ASSERT condition was violated.The error occurred on the application server. The termination type was: RABAX_STATE.If the termination type is RABAX_STATE, you will find more information on the cause of termination in system NQT in transaction ST22. If the termination type is ABORT_MESSAGE_STATE, you will find more information on the cause of termination on the application server  in transaction SM21. If the termination type is ERROR_MESSAGE_STATE, you can search for further information in the trace file for the work process in transaction ST11 on the application server . You may also need to analyze the trace files of other work processes. If you do not yet have a user ID, contact your system adminmistrator. </message></error>
    2014-09-11 11:27:19.768 Debug [ERROR] 500:INTERNAL SERVER ERROR/Location:-[ODPRequest startSynchronous] + 1427
    2014-09-11 11:27:12.717 Debug timeout
    2014-09-11 11:27:12.681 Debug timeintervalinminutes: 23506917 timeoutInterval: 0
    2014-09-11 11:27:12.679 Debug applicationGoesToForeground
    Can anyone help me how to troubleshoot this error?
    Any help will be highly appreciated.
    Thanks
    Mahesh

    are these LUNs shared or standalone?
    I don't think it's really wise to have more than one DSM on the same server, so you're mixing the EVA and 3par DSMs and on 2003...
    other than ensuring that HBA firmware and drivers are all up to date and DMS drivers are at the latest, not much else you can do from the host side...maybe update the storport.sys driver to the latest for that OS
    are you sure that the HBAs are in fact supported/compatible with both storage back-ends? what about their driver/firmware/DSM versions - some SANs are very picky when it comes to this stuff, check the interop matrixes to find out
    overall, if you don't need SAN connection to one of these storage back-ends, I suggest you get rid of it and its DSM

  • Error in creating new DB Server connection for DB2 in Websphere 5.1.2

    I am getting the a error messagebox containing the following message
    IWAS0126E Problems encountered while trying to establish connection Con1,
    Reason: 'A communication error has been detected. Communication protocol
    being used:{0}. Communication API being used: {1}. Location wehere the
    error was detected: {2}. Communication function detecting the error: {3}.
    Protocol specific error codes(s) {4}, {5}, {6}. TCP/IP SOCKETS Reply.fill()
    InputStream.read() socket closed (code=) * 0'
    while creating a new DB Server connection from Websphere Application Developer 5.1.2.
    I am using
    Vendor Type: DB2 Universal Database v8.1
    JDBC Driver: IBM DB2 Universal Driver
    It need host name, port, Database name, userid, password to be specified.
    But, a connection can be established fine, if I am trying it from a simple Java program with JDBC with the exactly same parameters.
    However I am able to create a new DB server connection using APP Driver
    i.e.
    vendor type as "DB2 Universal Database Express v8.1" and Driver as "IBM DB2 APP DRIVER". No host name or port need to be specified in this case.
    But, if the database is in different machine then it will be a problem.

    Caused by: java.net.ConnectException: Connection refused
    Is the Oracle application server running?

Maybe you are looking for

  • Moving to an external Ethernet Drive - Libraries and Photos are a mess - Cant Find Images

    I am in the process of wanrting to consolidate my LR3 files to an 2TB external ethernet drive (connected via airport extreme).  First, are there any issue with using the networked drive.  I've heard that there may be. Second, my libraries and photos

  • Tabs without using panel tabbed

    i have to create a page with multiple tabs on top of the page without using panel tabbed, since multiple users cannot work in panel tabbed. i have created fragments for indivudual tabs. included fragments in a bounded task flow. connected all fragmen

  • Best way to handle Exceptions?

    Hi there, I have to deal with some exceptions and wondered if I could get some advice on best practice. I am writing an application that accesses Lotus Domino, and in some parts of the code I have to handle NotesException. This is a class that is par

  • Small question related to Unix and ABAP

    Hi Guys, I had a new SAP ABAP requirment in which they are asking for unix shell scripting. I am just wondering as what unix shell scripting has to do in SAP ? Please throw some light on this.... Regards, Tushar.

  • Why doesn't Safari 7.0.4 open pages in my Mac?

    I am with problems to open some sites in the SAFARI - version 7.0.4 (last update). I verified that the problems occur in sites that do not change criptografadas information (HTTP). Does somebody have idea of as to decide this problem? Grateful! J.J.