Linking web services

I have a java application that essentially performs a lookup operation by creating objects and calling their methods. I want to deploy this as several web services so that each object is its own web service and is called by the other web services. I have been looking around but I can't seem to find the simple answer on how to call a web service with another web service. I am using JBOSS 5.0 for deployment.

I generated the artifacts using wsimport and whenever I call the web service on my server i get the following error...
java.lang.NoClassDefFoundError: com/sun/xml/stream/buffer/XMLStreamBuffer
     at com.sun.xml.ws.api.addressing.WSEndpointReference.<init>(WSEndpointReference.java:174)
     at com.sun.xml.ws.api.addressing.WSEndpointReference.<init>(WSEndpointReference.java:166)
     at com.sun.xml.ws.api.addressing.AddressingVersion.<init>(AddressingVersion.java:436)
     at com.sun.xml.ws.api.addressing.AddressingVersion.<init>(AddressingVersion.java:67)
     at com.sun.xml.ws.api.addressing.AddressingVersion$1.<init>(AddressingVersion.java:146)
     at com.sun.xml.ws.api.addressing.AddressingVersion.<clinit>(AddressingVersion.java:69)
     at com.sun.xml.ws.wsdl.parser.MemberSubmissionAddressingWSDLParserExtension.portTypeOperationInput(MemberSubmissionAddressingWSDLParserExtension.java:90)
     at com.sun.xml.ws.wsdl.parser.DelegatingParserExtension.portTypeOperationInput(DelegatingParserExtension.java:79)
     at com.sun.xml.ws.wsdl.parser.WSDLParserExtensionFacade.portTypeOperationInput(WSDLParserExtensionFacade.java:110)
     at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parsePortTypeOperationInput(RuntimeWSDLParser.java:734)
     at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parsePortTypeOperation(RuntimeWSDLParser.java:702)
     at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parsePortType(RuntimeWSDLParser.java:676)
     at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parseWSDL(RuntimeWSDLParser.java:319)
     at com.sun.xml.ws.wsdl.parser.RuntimeWSDLParser.parse(RuntimeWSDLParser.java:146)
     at com.sun.xml.ws.client.WSServiceDelegate.parseWSDL(WSServiceDelegate.java:263)
     at com.sun.xml.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.java:226)
     at com.sun.xml.ws.client.WSServiceDelegate.<init>(WSServiceDelegate.java:174)
     at com.sun.xml.ws.spi.ProviderImpl.createServiceDelegate(ProviderImpl.java:104)
     at javax.xml.ws.Service.<init>(Service.java:79)
     at com.ibm.wsm.samples.retail.ec.ecdb.EnterpriseCustomerDBService.<init>(EnterpriseCustomerDBService.java:46)
     at com.ibm.wsm.samples.retail.ec.EnterpriseCustomer.<init>(EnterpriseCustomer.java:67)
     at sun.reflect.NativeConstructorAccessorImpl.newInstance0(Native Method)
     at sun.reflect.NativeConstructorAccessorImpl.newInstance(NativeConstructorAccessorImpl.java:39)
     at sun.reflect.DelegatingConstructorAccessorImpl.newInstance(DelegatingConstructorAccessorImpl.java:27)
     at java.lang.reflect.Constructor.newInstance(Constructor.java:513)
     at java.lang.Class.newInstance0(Class.java:355)
     at java.lang.Class.newInstance(Class.java:308)
     at org.jboss.wsf.container.jboss50.invocation.InvocationHandlerJSE.getTargetBean(InvocationHandlerJSE.java:76)
     at org.jboss.wsf.container.jboss50.invocation.InvocationHandlerJSE.invoke(InvocationHandlerJSE.java:95)
     at org.jboss.ws.core.server.ServiceEndpointInvoker.invoke(ServiceEndpointInvoker.java:219)
     at org.jboss.wsf.stack.jbws.RequestHandlerImpl.processRequest(RequestHandlerImpl.java:474)
     at org.jboss.wsf.stack.jbws.RequestHandlerImpl.handleRequest(RequestHandlerImpl.java:295)
     at org.jboss.wsf.stack.jbws.RequestHandlerImpl.doPost(RequestHandlerImpl.java:205)
     at org.jboss.wsf.stack.jbws.RequestHandlerImpl.handleHttpRequest(RequestHandlerImpl.java:131)
     at org.jboss.wsf.common.servlet.AbstractEndpointServlet.service(AbstractEndpointServlet.java:85)
     at javax.servlet.http.HttpServlet.service(HttpServlet.java:717)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:290)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
     at org.jboss.web.tomcat.filters.ReplyHeaderFilter.doFilter(ReplyHeaderFilter.java:96)
     at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:235)
     at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:206)
     at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:235)
     at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:191)
     at org.jboss.web.tomcat.security.SecurityAssociationValve.invoke(SecurityAssociationValve.java:190)
     at org.jboss.web.tomcat.security.JaccContextValve.invoke(JaccContextValve.java:92)
     at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.process(SecurityContextEstablishmentValve.java:126)
     at org.jboss.web.tomcat.security.SecurityContextEstablishmentValve.invoke(SecurityContextEstablishmentValve.java:70)
     at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:127)
     at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:102)
     at org.jboss.web.tomcat.service.jca.CachedConnectionValve.invoke(CachedConnectionValve.java:158)
     at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:109)
     at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:330)
     at org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:829)
     at org.apache.coyote.http11.Http11Protocol$Http11ConnectionHandler.process(Http11Protocol.java:601)
     at org.apache.tomcat.util.net.JIoEndpoint$Worker.run(JIoEndpoint.java:447)
     at java.lang.Thread.run(Thread.java:619)This code works fine if run as a java application but produces the above error when placed inside a web service.
EnterpriseCustomerDBService ecdbs= new EnterpriseCustomerDBService();
EnterpriseCustomerDB ecdb = ecdbs.getEnterpriseCustomerDBPort();EDIT: One other thing that comes to mind is that I have a few different jres installed so it is possible that this may be the problem.
Edited by: jlankfo on Jul 7, 2009 12:33 PM

Similar Messages

  • Location of the JARs for BO Web services SDK

    Hi,
    I want to use the web services SDK to access the crystal reports on a crystal reports 2011 server. I added all the JARs in the  C:\Program Files (x86)\SAP BusinessObjects\SAP BusinessObjects Enterprise XI 4.0\java\lib folder but none of them contain classes from the com.businessobjects.dsws package which is root package for the web services SDK.
    My questions:
    Where are the JARs located  ?
    Is there sample code that excerices the usage of the BO BI 4.0 web services SDK ?
    Thanks

    Hi Asif,
    Please have a look over below link
    Web Services Sample Code: -
    [https://wiki.sdn.sap.com/wiki/display/BOBJ/JavaWebServicesSDKSamples|https://wiki.sdn.sap.com/wiki/display/BOBJ/JavaWebServicesSDKSamples]
    Web Services Developer Guide:
    [http://help.sap.com/businessobject/product_guides/boexir4/en/xi4_wssdk_dg_en.zip|http://help.sap.com/businessobject/product_guides/boexir4/en/xi4_wssdk_dg_en.zip]
    Getting Started with Web Service sdk:
    [http://wiki.sdn.sap.com/wiki/display/BOBJ/GettingStartedwiththeWebServicesSDK|http://wiki.sdn.sap.com/wiki/display/BOBJ/GettingStartedwiththeWebServicesSDK]
    Regards,
    Rameez

  • The Quest for Delivered Web Services

    Does anyone know of a way to find a list of delivered web services? I've been browsing the Interactive Services Repository (ISR) but am not seeing a way of determining which have been exposed (as delivered) as web services. I'm trying to take an inventory of what is delivered as part of defining a roadmap to SOA.
    I've also queried the psibwsdl table...which is empty.
    Any help is appreciated!

    Hi Asif,
    Please have a look over below link
    Web Services Sample Code: -
    [https://wiki.sdn.sap.com/wiki/display/BOBJ/JavaWebServicesSDKSamples|https://wiki.sdn.sap.com/wiki/display/BOBJ/JavaWebServicesSDKSamples]
    Web Services Developer Guide:
    [http://help.sap.com/businessobject/product_guides/boexir4/en/xi4_wssdk_dg_en.zip|http://help.sap.com/businessobject/product_guides/boexir4/en/xi4_wssdk_dg_en.zip]
    Getting Started with Web Service sdk:
    [http://wiki.sdn.sap.com/wiki/display/BOBJ/GettingStartedwiththeWebServicesSDK|http://wiki.sdn.sap.com/wiki/display/BOBJ/GettingStartedwiththeWebServicesSDK]
    Regards,
    Rameez

  • Java to consume web service

    Hi All,
    I have Web service to IDoc Scenario.
    I have implemented it successfully and tested in MicroSoft InfoPath.
    Now i need to develop java client to consume this web service.
    Can anyone help me to give sample code.
    I have tried a lot and searched a lot on net but no luck.
    Regards,
    Manisha

    Now i need to develop java client to consume this web service.
    Can anyone help me to give sample code.
    Is it that you need to develop a UI or something to consume the WS?...If yes then this blog will be of your interest:
    /people/riyaz.sayyad/blog/2006/05/10/consuming-xi-web-services-using-web-dynpro-150-ui-design-part-iii
    If you want to know about WS development in JAVA then check this link:
    Web Services Development in Java [original link is broken]
    Regards,
    Abhishek.

  • Can I Include an xml-stylesheet Link in a Java Web-Service?

    The ability to easily create a SOAP-based web-service from a Java class using JDev's built in "Java Web Service" wizard is great.
    From an "Ajax enablement" perspective, I see tremendous value in having the ability to specify an XSL url in the call to that web-service, so that the server will insert an <?xml-stylesheet .../> link to the specified URL prior to the SOAP message that it returns. That way, different callers to the web-service could render the same SOAP response differently (via an XSL transformation performed on the client-side via the XSL they've specified).
    Is there already an undocumented way to do this with an Oracle "Java Web Service" that I am not aware of? If not, adding that capability would be trivial for Oracle, and it would add tremendous value to developers using Oracle's "Java Web Service" capability.

    Hi Chris,
    I take it you are using the RESTful API method to GET the data. In that case you shoul be able to perform a http POST from your js code in order to update the controls.
    This could be done as form components are updated, or after a submit button is pressed (I'm sure you are familiar with this part).
    Please see here for more information: http://zone.ni.com/reference/en-XX/help/371361J-01​/lvhowto/build_web_service/
    I hope this helps.

  • Web Service calling a Stored Procedure thru a DB Link

    hi guys,
    I'm getting this error ORA-02064: distributed operation not supported when I invoke my Web service. My scenario is more like the #3 below. How can I simplify update when what I'm invoking is just inserting a record in a table.
    - USER A calls, a procedure owned by USER B (w/c inserts to table X)
    - USER A have insert, update rights to TABLE X owned by USER B
    - USER A have execute rights to the procedure owned by USER B
    - USER A does the calling by Callable statement
    e.g. begin B.runme@dblink(?,?); end;
    - USER B is an Oracle ERP SCHEMA user, USER A is just another oracle schema but not of any Oracle apps
    - USER B runme Procedure have a COMMIT statement inside and an OUT parameter.
    I have no problems in making this code run when procedure being called is not thru dblink.
    I'm really have no other idea how to fix this. except for using a different user maybe B or C that logs to the same DB without using any other DB link.
    I'm guessng, maybe Web Service does not allow such call which uses a DB link.
    Help anyone?
    below is the ORA explanation.
    ORA-02064: distributed operation not supported
    Cause: One of the following unsupported operations was attempted:
    1. array execute of a remote update with a subquery that references a dblink, or
    2. an update of a long column with bind variable and an update of a second column with a subquery that both references a dblink and a bind variable, or
    3. a commit is issued in a coordinated session from an RPC procedure call with OUT parameters or function call.
    Action: simplify remote update statement

    You can check this example.

  • Creation of web service of the timesten application ( linking problem )

    Hi ,
    i have created the C application ( cardVerifyTxn.c accessing timesten db ) as dll.
    I have compiled it and linked it .I want to deploy it as a web service in apache axis server .
    Compilation and linking of service file ( ie CardVerifyTxn_svc.c )
    Compilation OK .obj file created .
    But on inking it's having problem . I will copy and paste the commands i used .
    C:\Program Files\Microsoft Visual Studio\VC98\Bin>cl.exe /D "WIN32" /D "_WINDOWS" /D "_MBCS" /D "AXIS2_DECLARE_EXPORT" /D "AXIS2_SVR_MULTI_THREADED" /w /nologo /I %AXIS2C_HOME%\include /c C:\Dev-Cpp\MAPI\CardVerifyTxn_svc.c
    its creating obj file .
    Now im linking using VC++ linker.
    C:\Program Files\Microsoft Visual Studio\VC98\Bin>link.exe /nologo /LIBPATH:%AX
    S2C_HOME%\lib axutil.lib axiom.lib axis2_parser.lib axis2_engine.lib /DLL Ver
    ficationCardDetail.dll /OUT:cardVerify.dll CardVerifyTxn_svc.obj
    o/p
    D:\axis2c\lib\VerificationCardDetail.dll : fatal error LNK1136: invalid or corr
    pt file
    Whether the syntax of the link command is right ? I have to link the obj file with a dll (ie my timesten appication ) , also with static libraries like *.lib(plz luk in the command)
    I know it's not relevant to timesten , problem with the usage of Link command
    ( in VC++) .
    plz suggest the right command .
    Thanks
    sanal

    Well, I'm not an expert on this but my experience is that you cannot link a DLL directly into another DLL or even into a .EXE. You need to create an 'import library' which is a .LIB file that contains definitions of all the entry points into the DLL and then link that .LIB into the DLL or .EXE. Then the DLL will be dynamically loaded at run time.
    If I recall correctly (it is a long time since I have done this) you can create the import library at the time you create the DLL by including the /IMPLIB directive on the link command that you use to create the original DLL.
    Hope that is some help...
    Chris

  • Help NeEDED. How to link to soap web service from objective c

    Hello , HELP
    I'm trying to connect to a SOAP based web service using objective C as my programming language. Although the little bit of information on the Apple Dev centre documents is should be straight forward, im struggling like **.
    What im trying to do is connect via a small username and password text-box plus 'login' button from interface builder to
    https://api.betfair.com/global/v3/BFGlobalService.wsdl and parameter called login.
    then pass it my username and password from the interface text-boxes plus a few other standard set bits of information which are required.
    in turn the soap request will pass back a session token which i need to store.
    I've tried using WSMakestubs, which builds successfully the classes, but when calling them method nothing happens.

    Hello Etresoft
    Thanks again for coming back to me.. I would like to add that maybe on my first thread i wasn't as clear on what i was asking for, and also what avenues have have stepped down before asking for help.. Believe me i hate nothing more than not being able to resolve something myself. I'm currently reading 'another' programming in cocoa book by Arron Hillgrass, although he touches on the web service call to a Amazon web service example, he doesn't go into detail about how to actually do this.
    So again thank you for trying to help me.. its greatly appreciated.
    Ok back to the subject, and your response below.. I will try and be as informative as i can.
    I'm want to create a application using the interface builder which has a username and password textfield plus a button called <login>..
    On entering the username and password and pressing the login button, i was to send a request to the a .wdsl (SOAP) web service and login.! the webservice in return will send back a session token, which i need to store for further web service calls.
    In xcode i have been trying now for 1 week..!!! and the more i read up on how to make the Soap request call the more i fail to understand if this is simple or complex.
    * A bit more info if i may, on clicking the login button i need to send information to the below address as a soap type request.
    https://api.betfair.com/global/v3/BFGlobalService.wsdl
    i need to also tell the request the method name which is loginreq
    and also i need to pass these parameters in the request.
    username (from textfield)
    password (from textfield)
    productId = '82'
    vendorsoftwareId = '0'
    locationId = '0'
    ipAddress = '0'
    The stage I've got to is, I've used wsmakestubs and I've tried 'wdsl2objc' to create the classes required. I have then created a app controller class and a interface build app with the textfields and login button. I have then linked up the textfields and button to the nsobject appcontroller with a action ibaction loginreq etc. On build and go the app builds without error's but fails to do anything when i press the login button.. (more i think about this the more i think its either two things, one im not passing the parameters and two im not invoking the loginreq method from the class.)
    I feel like im wading in treacle and getting nowhere fast.!
    All i would like is for some help from someone to point me the correct direction..
    Im thinking that with all the Soap web services out there in the WWW, this must now be a easy thing to do in xcode. Im starting to think im stupid..
    Thanks again for you Help
    Regards
    Iain Smith
    [email protected]

  • Failed to retrieve data from the database/invalid argument provided when employing link between two web services datasources

    Post Author: vpost
    CA Forum: Data Connectivity and SQL
    I am trying to join information from two related web services within CR XI. I have successfully set up the web services as data sources have been able to get to the point where I get good data back. However, when I try to pull in certain fields, I get an error that says "Failed to retrieve data from the database/invalid argument provided". Here's the scenario:
    The web services are structured as follows:Web Service 1 (Artist) has attributes of Artist Name and Date of Birth.Web Service 2 (CD) has attributes of CD Title and Release Date. Underneath each CD are songs, each of which have a Song Title and Artist Name.
    I have defined both web services and defined a link between Artist.Artist Name and CD/Song.Artist Name. I am able to run a report with Song Title and Date of Birth that crosses web services. I am able to run another report with Song Title and CD Title that crosses the different levels in the second web service. However, if I add CD Title to the first report or Date of Birth to the second (both of which effectively force CR to employ the link between the two web services AND the CD/Song hierarchical structure in the second web service, I get the aforementioned error.
    Any assistance understanding how multiple web services can be linked in this manner would be greatly appreciated.
    Thanks in advance.

    Post Author: Mike Wright
    CA Forum: Data Connectivity and SQL
    Not sure about your exact situation, but having similar problem with another application and have tracked down to security. Added user to group Domain Admin and it works fine. It appears to be accessing a subdirectory which it does not have permission to use and then times out and returns the "invalid....". Seems that once the query just over a certain size (and I'm not sure what triggers this) it needs to make use of temparory file disk, intead of ram.
    I'm still trying to track down which temporary it's trying to uses - so if you have any ques.
    cheers

  • Web Services Activity Insert problem with linking to child contact records

    Hi - I am trying to use WS 2.0 to insert a new activity and link it to a list of contacts. I have converted this from WS 1.0. It works fine without the contact linking code but fails with the following message when linking to the contact records...
    Update operation on integration component 'Activity' failed because no matching record in business component 'Action' with search specification '[Description] = "Test2"' could be found.(SBL-EAI-04403)
    Here is a simplified version of the code in question...
    activity2.Activity act = new activity2.Activity();
    act.Url = cs.crmSessionUrl;
    activity2.ActivityInsert_Input input = new activity2.ActivityInsert_Input();
    input.ListOfActivity = new activity2.ListOfActivityData();
    input.ListOfActivity.Activity = new activity2.ActivityData[1];
    input.ListOfActivity.Activity[0] = new activity2.ActivityData();
    input.ListOfActivity.Activity[0].Subject = "Test2";
    input.ListOfActivity.Activity[0].Activity = "Task";
    input.ListOfActivity.Activity[0].Status = "Completed";
    input.ListOfActivity.Activity[0].Type = "Email";
    input.ListOfActivity.Activity[0].DueDate = DateTime.Parse( DateTime.Now.ToString("M/d/yyyy HH:mm:ss"));
    input.ListOfActivity.Activity[0].AccountId = "AEGA-BGV8Z9";
    input.ListOfActivity.Activity[0].ListOfContact = new activity2.ListOfContactData();
    input.ListOfActivity.Activity[0].ListOfContact.Contact = new activity2.ContactData[1];
    input.ListOfActivity.Activity[0].ListOfContact.Contact[0] = new activity2.ContactData();
    input.ListOfActivity.Activity[0].ListOfContact.Contact[0].Id = "AEGA-CCMEWM";
    activity2.ActivityInsert_Output output = act.ActivityInsert(input);
    Any suggestions would be great!

    Try using execute instead.
    <soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/"
    xmlns:ns="urn:crmondemand/ws/ecbs/activity/10/2004"
    xmlns:xsd="http://www.w3.org/2001/XMLSchema"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:wsse="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-wssecurity-secext-1.0.xsd"
    xmlns:data="urn:/crmondemand/xml/Activity/Data">
    <soapenv:Header>
    <wsse:Security>
    <wsse:UsernameToken>
    <wsse:Username>yourusername</wsse:Username>
    <wsse:Password Type="http://docs.oasis-open.org/wss/2004/01/oasis-200401-wss-username-token-profile-1.0#PasswordText">yourpassword</wsse:Password>
    </wsse:UsernameToken>
    </wsse:Security>
    </soapenv:Header>
    <soapenv:Body>
    <ns:ActivityExecute_Input>
    <data:ListOfActivity lastpage="?" recordcount="?">
    <data:Activity operation="insert">
    <Subject>Test7</Subject>
    <AccountId>AALA-5KC0OV</AccountId>
    <Type>Email</Type>
    <Status>Completed</Status>
    <Activity>Task</Activity>
    <data:ListOfContact>
    <data:Contact >
    <data:Id>AALA-5851K0</data:Id>
    </data:Contact>
    </data:ListOfContact>
    </data:Activity>
    </data:ListOfActivity>
    </ns:ActivityExecute_Input>
    </soapenv:Body>
    </soapenv:Envelope>
    <SOAP-ENV:Envelope xmlns:SOAP-ENV="http://schemas.xmlsoap.org/soap/envelope/" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
    <SOAP-ENV:Body>
    <ns:ActivityExecute_Output xmlns:ns="urn:crmondemand/ws/ecbs/activity/10/2004">
    <ListOfActivity xmlns="urn:/crmondemand/xml/Activity/Data">
    <Activity>
    <ModifiedDate>2012-06-07T01:00:09Z</ModifiedDate>
    <CreatedDate>2012-06-07T01:00:09Z</CreatedDate>
    <ModifiedById>AALA-583LBZ</ModifiedById>
    <CreatedById>AALA-583LBZ</CreatedById>
    <ModId>1</ModId>
    <Id>AALA-5TG95O</Id>
    <CreatedBy>Web Services Administrator, 06/06/2012 18:00:09</CreatedBy>
    <ModifiedBy>Web Services Administrator, 06/06/2012 18:00:09</ModifiedBy>
    <ListOfContact>
    <Contact>
    <ModifiedDate>2012-03-19T20:19:55Z</ModifiedDate>
    <CreatedDate>2012-03-05T21:43:14Z</CreatedDate>
    <ModifiedById>AALA-583LBZ</ModifiedById>
    <CreatedById>AALA-583LBZ</CreatedById>
    <ModId>79</ModId>
    <Id>AALA-5851K0</Id>
    <CreatedBy>Web Services Administrator, 03/05/2012 13:43:14</CreatedBy>
    <ModifiedBy>Web Services Administrator, 03/05/2012 13:43:14</ModifiedBy>
    </Contact>
    </ListOfContact>
    </Activity>
    </ListOfActivity>
    </ns:ActivityExecute_Output>
    </SOAP-ENV:Body>
    </SOAP-ENV:Envelope>

  • Publishing BC4J Components as a Web Services Link????

    Hi,
    can someone give us the link about the tutorial
    "Publishing BC4J Components as a Web Services" for Jdeveloper 10g?
    Thanks

    I copied your question and pasted it to Google. And here is the link
    http://www.oracle.com/technology/tech/webservices/htdocs/series/pattern/
    To use Google for your search, type www.google.com in a web browser URL field. You will be amazed what you find by using it
    Frank

  • Novice for web services any link for powerpoint lectures slide for webse

    i want to start with web services using my knowledge of java
    can any one send me a link for the powerpoint slide show to learn webservices i visited deitel but slides are not available
    appricate our concerns
    thanks

    Hm..I actually don't know what exactly you are looking for, but if you want to learn this web-related stuff, it wouldn't hurt if you check the tutorial first:
    http://java.sun.com/docs/books/tutorial/

  • Why so many broken links under otn regarding db web services????

    on this page
    http://www.oracle.com/technology/sample_code/tech/java/jsp/dbwebservices.html
    these are broken:
    1. Oralce 9i database web services
    http://www.oracle.com/technology/tech/webservices/htdocs/dbwebservices/Database_Web_Services.pdf
    2. Basic Web service Call-out using PL/SQL UTL_HTTP
    http://www.oracle.com/technology/tech/webservices/htdocs/samples/dbwebservice/DBWebServices_PLSQL.html
    3. Publish PLSQL as a web service using JDEveloper
    http://www.oracle.com/technology/tech/webservices/htdocs/series/plsql/index.html
    4. Use Oracle 9iAQ with JMS for Web Services
    http://www.oracle.com/technology/tech/webservices/htdocs/series/jms/
    (so EVERY Tutorial results in a 404)

    two of the links at the bottom of this page are broken:
    http://www.oracle.com/technology/products/jdev/howtos/10g/WS_LoadJava/LoadJava_HowTo.html

  • Web Services (Catalog Links) seems to be dead

    Sorry for the bad formating but the forum did not allow anything to format
    Hi experts,
    I'm facing an strange problem within our SRM 7 Portal integration.
    When I open the transaktion "shopping" to display all anabled web services/catalogues it's looks alll normal.
    But when clicking on the link of an web service there happens nothing. There is no difference at the behavior when clicking the internal SRM MDM Catalog link or an external punch out catalog link.
    When typing the URL of the catalog manually in the browser the page opens as intended.
    I did a http trace so see what happens when i'm clicking one of the links. But now I have some data I can't read. So maybe you can help me to find out the defect.
    Edited by: Rico Scharm on Feb 16, 2010 5:58 PM

    Here is the Trace Data:
    ADRESS DATA:
    00:09:45.299     0.069     1763     4943     POST     200     text/xml     https://mpgsrmdev.mpg.orga.de:8443/sap/bc/webdynpro/sapsrm/wda_l_fpm_gaf/;sap-ext-sid=OhB9kX6PcHIKc*BT5s59Og--a3k76*GA5DabEhHwpacEcA--?sap-contextid=SID%3aANON%3aMPGSRMDEV_S15_00%3a4ocZXKryvS2WaXra0dWl0sFAWktQFxenORqKLgeM-NEW
    HEADER
    (Request-Line)     POST /sap/bc/webdynpro/sapsrm/wda_l_fpm_gaf/;sap-ext-sid=OhB9kX6PcHIKcBT5s59Og--a3k76GA5DabEhHwpacEcA--?sap-contextid=SID%3aANON%3aMPGSRMDEV_S15_00%3a4ocZXKryvS2WaXra0dWl0sFAWktQFxenORqKLgeM-NEW HTTP/1.1
    Host     mpgsrmdev.mpg.orga.de:8443
    User-Agent     Mozilla/5.0 (Windows; U; Windows NT 5.1; de; rv:1.9.0.10) Gecko/2009042316 Firefox/3.0.10
    Accept     text/html,application/xhtml+xml,application/xml;q=0.9,/;q=0.8
    Accept-Language     de-de,de;q=0.8,en-us;q=0.5,en;q=0.3
    Accept-Encoding     gzip,deflate
    Accept-Charset     ISO-8859-1,utf-8;q=0.7,*;q=0.7
    Keep-Alive     300
    Connection     keep-alive
    Content-Type     application/x-www-form-urlencoded; charset=UTF-8
    Referer     https://mpgsrmdev.mpg.orga.de:8443/sap/bc/webdynpro/sapsrm/wda_l_fpm_gaf/;sap-ext-sid=OhB9kX6PcHIKcBT5s59Og--a3k76GA5DabEhHwpacEcA--
    Content-Length     172
    Cookie     SAPWP_active=1; SAPPORTALSDB0=urn%253Acom.sapportals.appdesigner%253Aframework%2526isPersonalizeMode%3Dfalse; MYSAPSSO2=AjExMDAgAA1wb3J0YWw6UlNUT0xMiAATYmFzaWNhdXRoZW50aWNhdGlvbgEABlJTVE9MTAIAAzAwMAMAA1c2OAQADDIwMTAwMjE2MTYwMgUABAAAAAgKAAZSU1RPTEz%2FAQUwggEBBgkqhkiG9w0BBwKggfMwgfACAQExCzAJBgUrDgMCGgUAMAsGCSqGSIb3DQEHATGB0DCBzQIBATAiMB0xDDAKBgNVBAMTA1c2ODENMAsGA1UECxMESjJFRQIBADAJBgUrDgMCGgUAoF0wGAYJKoZIhvcNAQkDMQsGCSqGSIb3DQEHATAcBgkqhkiG9w0BCQUxDxcNMTAwMjE2MTYwMjI0WjAjBgkqhkiG9w0BCQQxFgQUZH45Jcp1XEYPdSGem83vModAe3cwCQYHKoZIzjgEAwQvMC0CFBTRRtn4Nd9RrsJ9d2r5aIdWq5j2AhUApndso5qHevXdOeVHMKjLJi3hKYs%3D; JSESSIONID=(J2EE5962500)ID0535623050DB10446789244228800476End; sap-usercontext=sap-language=DE&sap-client=100
    Pragma     no-cache
    Cache-Control     no-cache
    Edited by: Rico Scharm on Feb 16, 2010 5:59 PM

  • Community Links Intrinsic web service

    I want to make a webservice similar to "Web Service for Community Links", but with user preferences and Admin preferences. Is there a way the change the existing webservice? Or should I make a fresh web service?

    The Community Links Portlet is an intrinsic portlet which is tied to the Community Knowledge Directory, so you'd need to modify the UI source code (where this intrinsic portlet is implemented) if you wanted to have user preferences and admin preferences. I'd recommend against this because community preferences are used to map the links in the community links portlet to a folder in the community knowledge directory, and I'm not sure where you could create the folders if you were using this feature on a per user basis. What exactly are you looking to do?

Maybe you are looking for

  • Wifi connection bad since upgrade to 10.4.10  FIXED!!!!!!

    I HAVE FIXED THE PROBLEM!!!!! Here's what I did: 1) Download Pacifist http://www.versiontracker.com/dyn/moreinfo/macosx/12743 2) Download airport extreme update 2007-002 3) Download 10.4.9 combo update 4) Go to /system/library/extensions and copy app

  • How to submit page by hitting "enter" in a text field - Solution

    Hi, I had this problem yesterday and thought it may come in handy for others who run into the same issue. My page had 2 text fields. Upon hitting enter in either of the boxes I wanted the page to submit. When only 1 text field was present it worked,

  • IWeb default page address is wrong

    I have recently updated wy web pages including deleting an old page. Everything has published fine. When I enter the default address for my site as suggested in the iWeb help, http://web.mac.com/[user name] "...insert your user name where it says 'us

  • EBS R12 migration hp ux to linux

    Hi, Can anyone suggest me any documents for EBS R12.0.6 DB 10.2.0.3 migration from HP ux to Linux Thanks in advance Phani

  • Enhancing Multimedia

    Environment -VMware vSphere 5.5 running Windows Server 2012 R2 Session hosted Desktops. Clients are a mixture of Windows XP and 7, and 8 along with some IGEL Linux based Thin Terminals. How can I maximise the performance when it comes to graphics and