Quantcast
Channel: SCN : Unanswered Discussions - Service-Oriented Architecture (SOA) and SAP
Viewing all 360 articles
Browse latest View live

Restrict Delete access in SCC3 t-code

$
0
0


Hi,

 

Can anyone please advise on how can we remove delete access in SCC3 t-code, i want the users to only have Display access.

 

I have already adjusted S_DATASET object to have Read and Read with filter activity but still users have delete access.

 

Please advise.

 

Thanks,

Ravi.


WS-SECURITY

$
0
0

I had a question regarding WS-SECURITY and hope someone can direct me to a "How-To" document or give some further information...

 

Can SAP ERP perform outbound web service calls to web service providers - that require authentication using WS-SECURITY username/token for userid/password.

Web Service is not working after Upgrade SAP EHP6

$
0
0

Hi ,

Recently we upgraded SAP ECC 6.0 to EHP 6.

We have a custom web service which is consumed in  .NET Application to get the Sold To from Sales Order.

the service is working perfectly before upgrade and it is not working after upgrade to EHP6.

When I tested the Service in WS Navigator in SAP, it is working fine.

We raised a message to SAP and SAP analyze the Traces and confirm that the HTTP Request Header coming from .NET application is not having User ID and Password , so it is throwing exception from SAP as unauthorized.

But in service it is configuration as basic authentication and log on using user id and password and .NET application is calling service by passing user ID & Password.

 

Customer is not happy as it is working before Upgrade and SAP confirmed every thing fine in SAP, but the service is not working.

 

we did the below steps.

  1. Regenerated the configuration
  2. Re imported the Certificates
  3. Activated the service in SICF.

 

Please let me know if anybody have same problem or if any steps we are  missing.

 

thanks.

Uma

problem after removing the deprecated sapxmltoolkit.jar

$
0
0

hi there,

 

the code below works fine for our older projects.

now i have an new standalone project with jdk 1.6 and hibernate 4.2.3.

 

have to remove the sapxmltoolkit.jar because the nothing works anymore and it is deprecated with the recommendation use JDK instead.

 

after removing  i get an NoClassDefFoundError: com/sap/engine/lib/xml/util/NestedException(moore see below).

 

is there someone who has a clue what to do?

 

thanx in advance

ute

 

------------- code --------------------------------------------------------------------------------------------------------------------------

 

ManagedConnectionFactory mcf;

    IConnectionFactory cf = null;

    IConnectionSpec cs = null;

    IBIConnection connection = null;

 

    try {

      mcf = (ManagedConnectionFactory) Class.forName("com.sap.ip.bi.sdk.dac.connector.xmla.XmlaManagedConnectionFactory").newInstance();

      cf = (IConnectionFactory) mcf.createConnectionFactory();

      cs = cf.getConnectionSpec();

    } catch (Exception e) {

      throw new BIResourceException(Locale.getDefault(),

        Samples.SDK_SAMPLES_1210, e);

    }

 

    BIResourceProperties props =

      new BIResourceProperties(Helpers.class, ".xmla");

 

    // Collects information about the properties used to connect

    // to the data source.

    Enumeration propnames = props.propertyNames();

 

    while (propnames.hasMoreElements()) {

      String key = (String) propnames.nextElement();

 

      //out.println("<p>key:" + key + " prop:" + props.getProperty(key) + "</p>");

      cs.setPropertyValue(key, props.getProperty(key));

    }

   

    cs.setPropertyValue("UserName", Helpers.userName);

    cs.setPropertyValue("Password", Helpers.password);

    cs.setPropertyValue("URL", Helpers.url);

 

    try {

      // Establishes the connection.

      connection = (IBIConnection) cf.getConnectionEx(cs);

    } catch (Exception e) {

      throw new BIResourceException(Locale.getDefault(),

        Samples.SDK_SAMPLES_1100, e);

    }

 

 

 

 

------------- code end --------------------------------------------------------------------------------------------------------------------------

 

------------- exception --------------------------------------------------------------------------------------------------------------------------

 

Exception in thread "main" java.lang.NoClassDefFoundError: com/sap/engine/lib/xml/util/NestedException

    at java.lang.ClassLoader.defineClass1(Native Method)

    at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631)

    at java.lang.ClassLoader.defineClass(ClassLoader.java:615)

    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141)

    at java.net.URLClassLoader.defineClass(URLClassLoader.java:283)

    at java.net.URLClassLoader.access$000(URLClassLoader.java:58)

    at java.net.URLClassLoader$1.run(URLClassLoader.java:197)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)

    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)

    at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ServiceBase.getLPFactory(ServiceBase.java:71)

    at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ServiceBase.init(ServiceBase.java:98)

    at com.sap.ip.bi.sdk.dac.connector.xmla.standalone.MsXmlAnalysisImpl.<init>(MsXmlAnalysisImpl.java:11)

    at com.sap.ip.bi.sdk.dac.connector.xmla.impl.StandaloneProxy.<init>(StandaloneProxy.java:48)

    at com.sap.ip.bi.sdk.dac.connector.xmla.impl.Connection$ProxyWrapper.<init>(Connection.java:1703)

    at com.sap.ip.bi.sdk.dac.connector.xmla.impl.Connection.<init>(Connection.java:154)

    at com.sap.ip.bi.sdk.dac.connector.xmla.impl.Connection.connect(Connection.java:184)

    at com.sap.ip.bi.sdk.dac.connector.xmla.XmlaManagedConnection.<init>(XmlaManagedConnection.java:166)

    at com.sap.ip.bi.sdk.dac.connector.xmla.XmlaManagedConnectionFactory.createManagedConnection(XmlaManagedConnectionFactory.java:70)

    at com.sap.ip.bi.sdk.dac.connector.impl.BIConnectionManager.allocateConnection(BIConnectionManager.java:83)

    at com.sap.ip.bi.sdk.dac.connector.xmla.XmlaConnectionFactory.getConnectionEx(XmlaConnectionFactory.java:145)

    at bwDaten.Helpers.connectToXMLADatasource(Helpers.java:92)

    at bwDaten.BwConnection.process(BwConnection.java:151)

    at bwDaten.BwConnection.setzeBwDaten(BwConnection.java:33)

    at bundesstatitik.EinnahmenBwGrusi.erstelleEinnahmenMapGrusi(EinnahmenBwGrusi.java:53)

    at bundesstatitik.StatistikGrusi.erstelleGrusiStatistikGesamt(StatistikGrusi.java:90)

    at bundesstatitik.StatistikGrusi.erstelleGrusiStatistik(StatistikGrusi.java:51)

    at bundesstatitik.Bundesstatistik.starteStatistikGrusi(Bundesstatistik.java:79)

    at bundesstatitik.Bundesstatistik.generateStatistik(Bundesstatistik.java:54)

    at bundesstatitik.RunBundesstatistik.startBundesstatistik(RunBundesstatistik.java:139)

    at bundesstatitik.RunBundesstatistik.main(RunBundesstatistik.java:113)

Caused by: java.lang.ClassNotFoundException: com.sap.engine.lib.xml.util.NestedException

    at java.net.URLClassLoader$1.run(URLClassLoader.java:202)

    at java.security.AccessController.doPrivileged(Native Method)

    at java.net.URLClassLoader.findClass(URLClassLoader.java:190)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:306)

    at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:301)

    at java.lang.ClassLoader.loadClass(ClassLoader.java:247)

    ... 33 more

Empty parametar SoapAction in SAP WS wsdl

$
0
0

Hello everybody,

 

I have a web service in SAP, generated from a function module. Third party software which calls my web service expects the parameter SoapAction in wsdl file to be populated with a particular value, but when I generate the wsdl file from WSADMIN transaction, this parameter is empty.

Is it possible somehow to give it a value?

SAP BOXI 3.1 - Error in stdout.log

$
0
0

Hi all,

in the stdout.log file the following error occurs intermittently:

 

{ERROR} [/OpenDocument].[action] Thread [http-8080-Processor12];  Servlet.service() for servlet action threw exception

java.lang.IllegalStateException

at org.apache.catalina.connector.ResponseFacade.sendError(ResponseFacade.java:418)

at javax.servlet.http.HttpServletResponseWrapper.sendError(HttpServletResponseWrapper.java:117)

at com.businessobjects.sdk.credential.WrappedServletResponse.sendError(WrappedServletResponse.java:30)

at com.wedgetail.idm.sso.AbstractAuthenticator.writeAuthenticationChallenge(AbstractAuthenticator.java:1936)

at com.wedgetail.idm.sso.MechChecker.authenticate(MechChecker.java:147)

at com.wedgetail.idm.sso.AbstractAuthenticator.authenticate(AbstractAuthenticator.java:1444)

at com.wedgetail.idm.sso.AbstractAuthenticator.checkAuthenticationOnly(AbstractAuthenticator.java:1330)

at com.wedgetail.idm.sso.AbstractAuthenticator.checkAuthentication(AbstractAuthenticator.java:1139)

at com.wedgetail.idm.sso.AuthFilter.doFilter(AuthFilter.java:148)

at com.businessobjects.sdk.credential.WrappedResponseAuthFilter.doFilter(WrappedResponseAuthFilter.java:66)

at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)

at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)

at com.businessobjects.webutil.BrowserRenderingModeFilter.doFilter(BrowserRenderingModeFilter.java:20)

at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:202)

at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:173)

at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:213)

at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:178)

at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:126)

at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)

at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:107)

at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)

at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)

at org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)

at org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)

at org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)

at org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)

at java.lang.Thread.run(Thread.java:595)

 

 

it happens only when i launch the crystal report instead of the webi report is all good.

We have a SSO Vintela configuration and it works fine.

Recently we notice that the user sessions not release, so we have modified the tomcat configuration for webapps.

We have implemented the note SAP note:

 

 

  • 1886165 - How to terminate user
    session manually in XI 3.1 and BI 4.0
  • 1286471 - User session not released
    for Tomcat in SAP BusinessObjects Enterprise XI 3.x

 

with success, but the error still remain.

I search in SAP market place but I didn't find anything.

The only doubt is that I've the parameter "logontoken.enabled" set to "false" and I find
this note:

 

 

  • 1263840 - OpenDocument Single
    sign-on without logon token

 

 

But we didn't implement the resolution.

Any one has the same error? Any one has implemented the last note with success?

  

 

Let me
know,

 

 

Cheers

Paolo

Error during CATS web service call

$
0
0

Hello,

I am getting the following error while launching record working time application from SAP portal.

 

web service error.jpg

Did anyone encounter this error?

 

Thanks in advance!

 

S..

SOAP:14 - Unexpected element -el=definitions ns=http://schemas.xmlsoap.org/

$
0
0

Hello,

 

I have seen plenty of threads with this issue, but none of them helped me to resolve this. Hence posting.

 

Basically I am trying to consume an external webservice in ABAP.

 

I created Proxy service consumer classes based on the webservice wsdl file, and also created logical port successfully.

I have cross checked that Ping also is successful for the logical port created.

 

However, when I try to execute, the service consumer proxy giving the SOAP request XML using transaction se80. I get the below error

SOAP:14 - Unexpected element -el=definitions ns=http://schemas.xmlsoap.org/

And I do not get any response.

 

Appreciate for any inputs to resolve this issue.

 

A detailed error in SOMANAGER logs is as below.

A SOAP Runtime Core Exception occurred in method DESERIALIZE_HEADER of class CL_SOAP_MESSAGE_11 at position id 1 with internal error id 14 and error text Unexpected element -el=definitions ns=http://schemas.xmlsoap.org/wsdl/ (fault location is 2 )


Is esworkplace.sap.com gone?

$
0
0

Hi,

 

since a couple of days I am no longer able to reach esworkplace.sap.com.

Does anyone know if it was relocated or removed?

 

Thanks!

 

Cheers,

Hainer

HTTP 401 Error Occurs when Creating the Consumer Proxy

$
0
0

Hi experts,

 

I want to use some methods suplied by Microsoft Sharepoint's Web Service (Lists.asmx) in my ABAP program. So I followed steps illustrated by Amarnath Singanamala's post Consuming Microsoft SharePoint Web Services in SAP using Basic Authentication. But when I nearly reached the last step of  Creating a Consumer Proxy, I got an problem:

未命名.jpg

So I entered my Sharepoint Logon user name and password, but failed in the end. Could anyone tell me what the wrong is? Thanks a lot!

未命名2.jpg

 

Regards,

Shelwin

Error in Consuming external WSDL in ABAP

$
0
0

Dear Gurus,

 

Hop you all are well. I am trying to consume an external WSDL in ABAP (SE80- Service Consumer), but i am getting an error.

 

" Incorrect value: Unknown namespace http://schemas.xmlsoap.org/soap/encoding/ "

 

When i try the WSDL in XML spy and in SOAP UI, it works fine. Can somebody tell me what could be the problem.

 

Here is the screen shot of error.

 

error.JPG

 

I google this error and some says it is the problem in WSDL structure. But WSDL works fine in SOAP UI and XML Spy. Here is the WSDL

 

 

 

<?xml version="1.0" encoding="ISO-8859-1"?>

<definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://10.10.10.10/soap/WSDLTST" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://-.-.-.-/soap/WSDLTST">

  <types>

  <xsd:schema targetNamespace="http://10.10.10.10/soap/WSDLTST">

  <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>

  <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/"/>

  <xsd:complexType name="Product">

  <xsd:all>

  <xsd:element name="index" type="xsd:int"/>

  <xsd:element name="size" type="xsd:string"/>

  </xsd:all>

  </xsd:complexType>

  <xsd:complexType name="ProductArray">

  <xsd:complexContent>

  <xsd:restriction base="SOAP-ENC:Array">

  <xsd:attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="tns:Product[]"/>

  </xsd:restriction>

  </xsd:complexContent>

  </xsd:complexType>

  </xsd:schema>

  </types>

  <message name="Method1Request">

  <part name="Datum" type="xsd:string"/>

  <part name="Datum1" type="xsd:string"/>

  </message>

  <message name="Method1Response">

  <part name="return" type="tns:ProductArray"/>

  </message>

  <portType name="WSDLTSTPortType">

  <operation name="Method1">

  <documentation>bla bla bla</documentation>

  <input message="tns:Method1Request"/>

  <output message="tns:Method1Response"/>

  </operation>

  </portType>

  <binding name="WSDLTSTBinding" type="tns:WSDLTSTPortType">

  <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>

  <operation name="Method1">

  <soap:operation soapAction="http://10.10.10.10/abcd/SOAP-SERVER/lib/one.php/Method1" style="rpc"/>

  <input>

  <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://10.10.10.10/abcd/SOAP-SERVER/lib/one.php"/>

  </input>

  <output>

  <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://10.10.10.10/abcd/SOAP-SERVER/lib/one.php"/>

  </output>

  </operation>

  </binding>

  <service name="WSDLTST">

  <port name="WSDLTSTPort" binding="tns:WSDLTSTBinding">

  <soap:address location="http://10.10.10.10/abcd/SOAP-SERVER/lib/one.php"/>

  </port>

  </service>

</definitions>

 

 

Thanks in advance.

Error in Consuming WSDL in ABAP

$
0
0

Dear Gurus,

 

Hop you all are well. I am trying to consume an external WSDL in ABAP (SE80- Service Consumer), but i am getting an error.

 

" Incorrect value: Unknown namespace http://schemas.xmlsoap.org/soap/encoding/ "

 

When i try the WSDL in XML spy and in SOAP UI, it works fine. Can somebody tell me what could be the problem.

 

Here is the screen shot of error.

 

error.JPG

 

I google this error and some says it is the problem in WSDL structure. But WSDL works fine in SOAP UI and XML Spy. Here is the WSDL

 

 

 

<?xml version="1.0" encoding="ISO-8859-1"?>

<definitions xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:SOAP-ENC="http://schemas.xmlsoap.org/soap/encoding/" xmlns:tns="http://10.10.10.10/soap/WSDLTST" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/" targetNamespace="http://-.-.-.-/soap/WSDLTST">

  <types>

  <xsd:schema targetNamespace="http://10.10.10.10/soap/WSDLTST">

  <xsd:import namespace="http://schemas.xmlsoap.org/soap/encoding/"/>

  <xsd:import namespace="http://schemas.xmlsoap.org/wsdl/"/>

  <xsd:complexType name="Product">

  <xsd:all>

  <xsd:element name="index" type="xsd:int"/>

  <xsd:element name="size" type="xsd:string"/>

  </xsd:all>

  </xsd:complexType>

  <xsd:complexType name="ProductArray">

  <xsd:complexContent>

  <xsd:restriction base="SOAP-ENC:Array">

  <xsd:attribute ref="SOAP-ENC:arrayType" wsdl:arrayType="tns:Product[]"/>

  </xsd:restriction>

  </xsd:complexContent>

  </xsd:complexType>

  </xsd:schema>

  </types>

  <message name="Method1Request">

  <part name="Datum" type="xsd:string"/>

  <part name="Datum1" type="xsd:string"/>

  </message>

  <message name="Method1Response">

  <part name="return" type="tns:ProductArray"/>

  </message>

  <portType name="WSDLTSTPortType">

  <operation name="Method1">

  <documentation>bla bla bla</documentation>

  <input message="tns:Method1Request"/>

  <output message="tns:Method1Response"/>

  </operation>

  </portType>

  <binding name="WSDLTSTBinding" type="tns:WSDLTSTPortType">

  <soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>

  <operation name="Method1">

  <soap:operation soapAction="http://10.10.10.10/abcd/SOAP-SERVER/lib/one.php/Method1" style="rpc"/>

  <input>

  <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://10.10.10.10/abcd/SOAP-SERVER/lib/one.php"/>

  </input>

  <output>

  <soap:body use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/" namespace="http://10.10.10.10/abcd/SOAP-SERVER/lib/one.php"/>

  </output>

  </operation>

  </binding>

  <service name="WSDLTST">

  <port name="WSDLTSTPort" binding="tns:WSDLTSTBinding">

  <soap:address location="http://10.10.10.10/abcd/SOAP-SERVER/lib/one.php"/>

  </port>

  </service>

</definitions>

 

 

Thanks in advance.

When calling webservice from web browser: HTTP/1.1 415 Unsupported Media Type

$
0
0

We have created a Remote function module and developed the Web service for this RFC. We have given WSDL file and path to third party (sharepoint application) to consume.

Sharepoint team were successfully calling this web service and received the data from their server side. But when they call this web service from client side (web browser), they are getting below error message

 

HTTP/1.1 415 Unsupported Media Type

content-type: text/html

content-length: 0

server: SAP NetWeaver Application Server / ABAP 731

 

Is anybody across this issue and provide your expertise in this issue?

Do we need add any parameter in web service or SOAMANAGER to allow other formats such as html instead of xml?

 

Appreciate any feedback .

Thanks in advance.


Regards,

Suresh

web service timeout

$
0
0

When i communicate with external system using web service call, i can transafer 3500 record. if i run it for more than 3500 records it gives error "SOAP:1,023 SRT: Processing error in Internet Communication".

i tried to use SM59, HTTP connection to external server. current set up is ICM Default timeout..

 

I want to change but rfc destination is generated and i dont have option to change it to "no timeout" or specify timeout.

you help is appreciated. .

ABAP Web service

$
0
0

Hi Gurus,

 

I know we can consume a web service directly into SAP without PI. I would like to know how the securities/access works if I want to consume a web service from third party system. Can someone please throw some light on this.

 

Thanks,

Raj.


PDF file transfer using web service

$
0
0

Hi,

 

We are using ABAP web service (through function module) to transfer some data from ECC to a portal system which is Non-SAP system.

One of the requirement is to send Invoice print out in PDF format through web service?

Can we achieve that?

I know we can create a spool and convert that spool to PDF binary format using FM  CONVERT_OTFSPOOLJOB_2_PDF.

But once data is converted, I checked within SAP in debug mode, it is coming in some non-readable format.

 

WSDL file is not able to interpret that data for front end system and front end system is giving error "http/1.1 500 internal server error"

 

Any pointer on this will be highly appreciated.

 

Thanks

Puneet

Internet explorer getting hung when accessing SOAMANAGER

$
0
0

Hi Team,

 

Need your help to fix below issue

 

We have an issue with SOAMANAGER.When we execute the tocde soamanager in our BW development environment it opens the weblink in Internet explorer.Inital screen appears but when we try to navigate to  other tab or click on any link in the inital screen(system connection etc) we get error saying that this page has become unresponsive you may either wait or kill the page.

 

From here we are not able to proceed furthur .We have done same configuration in our pre-prod environment and it works fine

 

We have activated all the requires services and also checked note all settings seem to be fine

 

1936501 - Transaction SOAMANAGER does not work

 

I have attached the document with error screenshots .Please check and provide your inputs

 

Regards,

Murali

Error calling external web service from SAP

$
0
0

Hi,

 

I generated proxy object and logical port in order to call external web service from SAP. Proxy object is generated from local WSDL file. Also, I put web service endpoint URL in logical port call parameters.

When I test proxy object from SE80, I get an error which is in attached file.

I noticed that in input and output parameters of proxy object there is no 'CONTROLLER' component generated at any level. I suppose this caused the error, and if so, the actual problem is why this component didn't get generated. Is maybe the wsdl file (which is also attached) somehow uncompleted or something else could be a reason? Any help would be appreciated.

 

Tnx in advance.

How to consume a table returned from a sap webservice in c#.net

$
0
0

I'm working on a project where i have created a webservice in which a function module returns a table. But when i try to consume it in c#.net only header information is being consumed. I guess it is because webservice does not support table with header lines? I tried using table type as type of table in FM but i got the same result. Please help me.

Web service processing error; more details in the web service error log on provider side(UTC timestamp ''; Transaction ID '')

$
0
0

Hi Frinds,

 

I am working As a ABAPer, I am working now on system version 731.

 

I was created Web Service  by exposing a RFC function module same time created configuration  in SOAMANAGER . ater configuration i am testing through SOAP UI TOOL , but i am getting below error in soap ui response.

 

Please help me to resolve this issue.

 

My Pay load.

<soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope" xmlns:urn="urn:sap-com:document:sap:rfc:functions">

   <soap:Header/>

   <soap:Body>

      <urn:ZISV_TEST1>

         <PUT_OPPT_AGGREMENT>

            <MODE1>1</MODE1>

            <DATA>NARAYANA</DATA>

         </PUT_OPPT_AGGREMENT>

      </urn:ZISV_TEST1>

   </soap:Body>

</soap:Envelope>

 

Response

<env:Envelope xmlns:env="http://www.w3.org/2003/05/soap-envelope">

   <env:Header/>

   <env:Body>

      <env:Fault>

         <env:Code>

            <env:Value>env:Receiver</env:Value>

         </env:Code>

         <env:Reason>

            <env:Text xml:lang="en">Web service processing error; more details in the web service error log on provider side (UTC timestamp 20140501021028; Transaction ID BDD5D0E38A99F1EE9D5F0A4EAF320888)</env:Text>

         </env:Reason>

         <env:Detail/>

      </env:Fault>

   </env:Body>

</env:Envelope>

 

Regards

Nani

Viewing all 360 articles
Browse latest View live




Latest Images