How to deploy a webservice created with weblogic 7.0 on weblogic 6.1

Hi,
I've a created a webservice , deployed and tested it on weblogic 7.0.
I want to deploy this webservice on weblogic 6.1. Do I need to deploy the .ear
file created as an application on weblogic 6.1 and no other changes?
I tried deploying the .ear as an application on weblogic 6.1, however when I try
to access the webservice from my client application I get the following exception:
java.net.ConnectException: Connection refused: connect
     at java.net.PlainSocketImpl.socketConnect(Native Method)
     at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:320)
     at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:133)
     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:120)
     at java.net.Socket.<init>(Socket.java:273)
     at java.net.Socket.<init>(Socket.java:100)
     at weblogic.webservice.binding.soap.HttpClientBinding.createSocket(HttpClientBinding.java:420)
     at weblogic.webservice.binding.soap.HttpClientBinding.createSocket(HttpClientBinding.java:398)
     at weblogic.webservice.binding.soap.HttpClientBinding.send(HttpClientBinding.java:247)
     at weblogic.webservice.core.handler.ClientHandler.handleRequest(ClientHandler.java:34)
     at weblogic.webservice.core.HandlerChain.handleRequest(HandlerChain.java:131)
     at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:421)
     at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:363)
     at weblogic.webservice.core.rpc.StubImpl._invoke(StubImpl.java:225)
     at examples.webservices.basic.statelessSession.HelloWorldEJBPort_Stub.registerRequest(HelloWorldEJBPort_Stub.java:33)
     at webservice.client.RegisterRequest.registerRequestWebService(RegisterRequest.java:177)
     at webservice.client.RequestRegistrationWindow$WebServiceAction.actionPerformed(RequestRegistrationWindow.java:182)
     at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1450)
     at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1504)
     at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:378)
     at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250)
     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:216)
     at java.awt.Component.processMouseEvent(Component.java:3715)
     at java.awt.Component.processEvent(Component.java:3544)
     at java.awt.Container.processEvent(Container.java:1164)
     at java.awt.Component.dispatchEventImpl(Component.java:2593)
     at java.awt.Container.dispatchEventImpl(Container.java:1213)
     at java.awt.Component.dispatchEvent(Component.java:2497)
     at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2451)
     at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2216)
     at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2125)
     at java.awt.Container.dispatchEventImpl(Container.java:1200)
     at java.awt.Window.dispatchEventImpl(Window.java:914)
     at java.awt.Component.dispatchEvent(Component.java:2497)
     at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
     at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:131)
     at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:98)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
     at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)
Any idea on this...

http://e-docs.bea.com/wls/docs61/webServices/index.html
I believe there are examples in the kit too.
Vinkal wrote:
Thanks Don.
Can you provide me some links guding how to create a webservice on weblogic 6.1
Don Ferguson <[email protected]> wrote:
That's not going to work. 7.0 is a major rewrite of the web services
container, and it is not possible to create the web service on 7.0 and
deploy it on 6.1.
-Don
Vinkal wrote:
Hi,
I've a created a webservice , deployed and tested it on weblogic 7.0.
I want to deploy this webservice on weblogic 6.1. Do I need to deploy
the .ear
file created as an application on weblogic 6.1 and no other changes?
I tried deploying the .ear as an application on weblogic 6.1, however
when I try
to access the webservice from my client application I get the following
exception:
java.net.ConnectException: Connection refused: connect
     at java.net.PlainSocketImpl.socketConnect(Native Method)
     at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:320)
     at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:133)
     at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:120)
     at java.net.Socket.<init>(Socket.java:273)
     at java.net.Socket.<init>(Socket.java:100)
     at weblogic.webservice.binding.soap.HttpClientBinding.createSocket(HttpClientBinding.java:420)
     at weblogic.webservice.binding.soap.HttpClientBinding.createSocket(HttpClientBinding.java:398)
     at weblogic.webservice.binding.soap.HttpClientBinding.send(HttpClientBinding.java:247)
     at weblogic.webservice.core.handler.ClientHandler.handleRequest(ClientHandler.java:34)
     at weblogic.webservice.core.HandlerChain.handleRequest(HandlerChain.java:131)
     at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:421)
     at weblogic.webservice.core.DefaultOperation.invoke(DefaultOperation.java:363)
     at weblogic.webservice.core.rpc.StubImpl._invoke(StubImpl.java:225)
     at examples.webservices.basic.statelessSession.HelloWorldEJBPort_Stub.registerRequest(HelloWorldEJBPort_Stub.java:33)
     at webservice.client.RegisterRequest.registerRequestWebService(RegisterRequest.java:177)
     at webservice.client.RequestRegistrationWindow$WebServiceAction.actionPerformed(RequestRegistrationWindow.java:182)
     at javax.swing.AbstractButton.fireActionPerformed(AbstractButton.java:1450)
     at javax.swing.AbstractButton$ForwardActionEvents.actionPerformed(AbstractButton.java:1504)
     at javax.swing.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:378)
     at javax.swing.DefaultButtonModel.setPressed(DefaultButtonModel.java:250)
     at javax.swing.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:216)
     at java.awt.Component.processMouseEvent(Component.java:3715)
     at java.awt.Component.processEvent(Component.java:3544)
     at java.awt.Container.processEvent(Container.java:1164)
     at java.awt.Component.dispatchEventImpl(Component.java:2593)
     at java.awt.Container.dispatchEventImpl(Container.java:1213)
     at java.awt.Component.dispatchEvent(Component.java:2497)
     at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2451)
     at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2216)
     at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2125)
     at java.awt.Container.dispatchEventImpl(Container.java:1200)
     at java.awt.Window.dispatchEventImpl(Window.java:914)
     at java.awt.Component.dispatchEvent(Component.java:2497)
     at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
     at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:131)
     at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:98)
     at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
     at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)
Any idea on this...
[att1.html]

Similar Messages

  • How to deploy or extract component with WDA extension in portal

    hi masters
            how to deploy or extract component with WDA extension in portal?
    thanks and reagrds
    johny

    do you want to integrate WDA in portal?
    just create an WDA iview
    Thanks
    Bala Duvvuri

  • Why iCloud only allows store documents created by Pages, Numbers or Key Note ? How can I "iCloud" documents created with Word Mac or Excel mac??

    Why iCloud only allows store documents created by Pages, Numbers or Key Note ? How can I "iCloud" documents created with Word Mac or Excel mac??

    Oscar66 wrote:
    Why iCloud only allows store documents created by Pages, Numbers or Key Note ? How can I "iCloud" documents created with Word Mac or Excel mac??
    iwork for ios accepts for upload and also happily opens all your Microsoft office files, from Office97 standard doc/xls/ppt to the 2011 versions of docx,xlsx,pptx and various other of these format extensions.
    Notice : the upload feature in www.icloud.com is only active if you in fact own these apps on your iPhone/Pad/pod. it is not a feature of iWork for the Mac ( iwork09 ) which itself is not icloud capable at all.

  • How many statements can be created with one connection?

    how many statements can be created with one connection?

    and on available memory. At some point, even were the database to allow an infinite number, you'd run out of memory.

  • Problems deploying ear file created with ant build script

    Hi All,
    I'm using Jdeveloper 11G and Weblogic 10.3. When I build my application and run it within Jdeveloper, it works fine. However, we have a requirement to run ANT build script and create a deployable .ear file that can be manually deployed to any Weblogic Server.
    I created my ant build script and it compiles/builds fine - the .ear file looks good. However, when I attempt to deploy it, it fails with
    javax.faces.webapp.FacesServlet for servlet Faces Servlet could not be loaded because the requested class was not found in the classpath .
    java.lang.ClassNotFoundException: javax.faces.webapp.FacesServlet.
         at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:551)
         at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1985)
         at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1959)
         at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1878)
         at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3153)
         Truncated. see log file for complete stacktrace
    >
    <Nov 2, 2011 2:43:43 PM MDT> <Error> <Deployer> <BEA-149265> <Failure occurred in the execution of deployment request with ID '1320266599219' for task '3'. Error is: 'weblogic.application.ModuleException: [HTTP:101216]Servlet: "Faces Servlet" failed to preload on startup in Web application: "###"
    I am not sure how to tell weblogic where to find the classes needed. I have a pretty huge classpath used when compiling - should I be putting the classpath in the manifest (?) - I don't think I should need to include the .jar files manually in the .ear file - since all the libraries should already be available in weblogic - or is that a misconception?
    Please help!!

    I answered my own question -
    I had to manually add the following to the WEB-INF/lib to get the error to go away:
    ${ORACLE_HOME}/modules/javax.jsf_1.1.0.0_1-2.jar and
    ${ORACLE_HOME}/oracle_common/modules/oracle.jsf_1.2.9/glassfish.jsf_1.0.0.0_1-2-15.jar and
    ${ORACLE_HOME}/oracle_common/modules/oracle.jsf_1.2.9/glassfish.jstl_1.2.0.1.jar
    that solved my problem. However, I think it'd be great if I could somehow just specify (in the weblogic-application.xml maybe?) that my application is using the above modules without having to copy the jar files into my WEB-INF/lib - any suggestions?
    Thanks

  • How many website can I create with iWeb?

    How many different webpages can I create with iWeb? I just created a site to show friends a slide show from a recent trip, but I need to create another webpage that will have video on it. It would be a totally different subject matter. I do have a .MAC account and not sure if I need to do anything with that so I can have more webpages.
    I guess what I am saying is that I am going to need different URL's for the webpages I am going to need to create and want to know how many you can have or create using iWeb.

    You can have multiple websites, each with multiple pages depending on the need. To make managing multiple sites easier, take a look at iWebSites. The limiting factor, as was pointed out, is the available space on your iDisk. I use iWebSites to manage multiple sites.. It lets me create multiple sites and multiple domain files.
    If you have multiple sites in one domain file here's the workflow I used to split them into individual site files with iWebSites. Be sure to make a backup copy of your Domain.sites files before starting the splitting process.
    This lets me edit several sites and only republish the one I want.
    Do you Twango?

  • How to know the PO  Created with RFQ or Not..??

    Hi MM Gurus,
    How to know the purchase order created with one quotation or not. because when i am trying to create PO with /ME21N through DOcumen Overview on. there is list of Quotation. i created PO with XYZ quotation. and after creation of PO i am trying to create another PO with another quotation but in that list still XYZ quotation is Displying. so how to knows once PO cretd with Quotation or not. . and I dont wanted to disply quotation once created Po.
    Thanks in Advance.
    N.A.Reddy

    Hi Pradeep. Thanks for the mail.
    the problem is ....with *quotation...*
    How to know the purchase order created with one quotation or not.
    because when i am trying to create PO with /ME21N through DOcumen Overview on. there is list of Quotation.
    I created PO with XYZ quotation. and after creation of PO i am trying to create another PO with another quotation but in that list still XYZ quotation is Displying.
    so how to knows once PO cretd with Quotation or not. .
    and I dont wanted to disply quotation once created Po.
    Thanks in Advance.
    N.A.Reddy

  • How to find which profiles created with SU02 have a specific company code

    We just added another company code.
    We have company code 10 & 20
    We're trying to find out which profiles created with SU02 have company code 0010 or * for BUKRS
    I know that you can get that information with SUIM for field text BUKRS and it will show you all the roles or I can browse table agr_1252,
    But how do I get the same information for profiles created with SU02
    I just want to make sure that users that have company code 0010 cannot access company code 0020 and vice versa
    Thanks a lot in advance, this will be very helpful for me
    Thanks again
    Joe

    Hello Joe,
    Solution is to be found in SUIM->Profiles by complex selection criteria. In the selectin screen uncheck the field 'Generated Profiles'
    (t-code=S_BCE_68001409)
    Total Questions:         58 (34 unresolved)
    Please clean up your threads....
    Thread locked as per forum rules.
    b.rgds, Bernhard

  • HT204394 how to rename a document created with iwork pages

    how do one rename a document created with iwork pages?

    So the "Rename" command is not supposed to work?  It is a dead link and crashes Pages.
    Where did Pages save the file that I wanted to put into the folder of related documents.  Please bring back "save as" or ask where we want the file saved.  How else can I find it later?

  • [CS6] How can I move shapes (created with paths)?

    [CS6]
    I created shapes with the pen tool.
    Then I selected the path selection tool and selected a path.
    Clicked right mouse key, choosed "Fill Path..." or "Fill Subpath"
    (don't know what it means). After filling with a color I get an object in
    the form of the path and I can move the path to another place.
    But I can't move the object in the shape of the path.
    I can't move it with "Path selection tool" because it's no path.
    Then I tried the "Move Tool" but I also can't select the object with it
    instead the whole canvas is moving.
    How can I select and move shapes which were
    created with the pen tool?

    You've drawn a Path then filled a region of a pixel layer.
    To make Shape layers, use the Pen Tool in "Shape" mode set in the Options bar.
    If you really do want to draw a Path and use it to create moveable pixel shape then do the fill with an empty layer targeted.

  • How to deploy OA-Framework files with ACMP 4.0 into $OA_JAVA?

    Hello All,
    this time I need your help. I am trying to package an OA-Framework patch with some custom objects in it. I have also AM.xml and VO.xml files as usual.
    When I choose the default xml file type within Customization Manager Package definition, I am getting this file deployed to XX_TOP. The other type alternatives are not relevant for OAF at all.
    How to deploy to $OA_JAVA?
    Has someone solved this topic already?
    Kr, Volker

    Hi Junaid,
    It would be helpful to others trying to do the same if you would post the error messages you are getting here. Then we can work through it so others can see the resolution.
    If the dep guide does not work for you then I'm sure the JSF team would like to know that too and make sure to update it so that it will work better for others in the future.

  • How to eliminate windows partition created with bootcamp

    Instrucdtions for how to eliminate a windows partition created with bootcamp.  thanks

    Go back and reread and open the application you used.
    though most Mac Pro owners choose to dedicate a drive to Windows.
    Even Disk Utility will remove and then stretch the adjoining partiton it is best to use Boot Camp Assistant.
    Best place to ask, Boot Camp forum, of course.

  • How do I delete sites created with iWeb and posted with .mac after a format

    I am confused about how to delete a couple of sites that I created with iWeb and posted with my .mac after I did a format reload?
    I have tried everything. The original files are not on my MacBook Pro because of the format.
    I also see them in my idisc, but I is my understanding that on my MacBook Pro that I can delete the files, but they are hosted online. On the online idisk I cannot delete them because there is no option. Please help!!!

    Using the file menu in Finder:
    Go/iDisk/My iDisk/Web/Sites/iWeb/YourSitesAreHere
    Highlight selected files and Command/Delete. You will receive a drop down asking you if you are sure; click OK and the files/sites will be deleted immediately from the iDisk.
    Mark

  • How to deploy the native dll with the applet package by Sun Java Plugin

    I have an applet which use some native methods. I have written code for the native dll, but I don't know how to deploy the DLL with the applet jar file for Sun Java Plugin. What parameter do i should pass to System.loadLibrary()? I think the solution should don't care which browser used by the end client. How to do it? How to deal with the applet security problem?
    Thank for any comment!

    I have a similar problem.
    Trying to use the javax.comm package requires that the user have the win32com.dll located on their machine.
    I have solved the problem by using a signed applet that allows me to write the dll to the clients machine and then run the code but ideally I would like to run the code without writing the dll to the users machine...i.e. I want to load the dll directly through the applet in the same way the class files are loaded forthe applet are loaded without copying them to the clients machine. After trying everything I have come to the conclusion that it is NOT possible. The calls loadLibrary and load both require that the dll reside on the clients machine. If anyone has had a different experience please rebut this.
    Rob

  • How do I add .swf created with Photoshop web gallery to Dreamweaver page.?

    I've used Photoshop CS3 to create a Flash Web Gallery. I put that folder in my site root in dreamweaver, but when I add the .swf to the webpage- it only shows as a white box. Even when I press "play" nothing happens. What else needs to be done? All of the files created with the .swf are also already in the root directory

    That would seem to be a question for the DW forum
    http://www.adobe.com/cfusion/webforums/forum/index.cfm?forumid=12

Maybe you are looking for

  • Model View

    Would it be natural to have the Views in the Designer interface bind to variables and actions in a single location, so that all data, including available actions, data, instance variables, and P-list variables, etc are in one location and one Interfa

  • Newbie - setting up small home network

    I'm hoping to get some advice & suggestions. I'm basically a newbie at teching w/macs - I've done some pc teching over the years and am a MS Office wiz. I'm helping an artist friend out with their home office set up after a bad experience with a Comp

  • Safari 2.0.3 GIF animation

    I downloaded all the updates yesterday (10.4.4, Quicktime 7.0.4, and iTunes 6.0.3). I've noticed a problem that has cropped up in Safari 2.0.3 and any browser that uses Safari's rendering engine such as Shiira. Certain animated GIFs do not display co

  • Error using Detail-preserving Upscale module in After Effects

    I'm wanting to try and use the upscale module to upscale a video from 1080p to 4k, but it keeps crashing. Whenever I try, it'll seem to be trying for a few minutes, but then I get the error message "After Effects can't continue: An output module stop

  • Purchase Requisition Error

    Hello , I am having issues with Purchase requisition. 1)  When i am creating a requisition without an account assingment it is allowing me to save the requisition as the requisition is not routed to proper queue for release.So is there any config to