JavaWSTutorial SJSAS helloword deployed but not wsdl??!

Hello,
i am new to the topic of WS, so i try it with the javawstutorial20 and sjsas9.0.
But i stuck on page 20 of 283, which is quite frustrating.
My problem is: I deployed the example service helloservice succesfully.
it is displayed in the application server, but when i try to test the wsdl, which should be displayed at: http://localhost:8080/helloservice/hello?WSDL
I just get: The requested resource () is not available.
Can someone of you help me? I already try for ours to solve this and its so frustrating... :-(
thank you anyway
peter from cologne - germany
Message was edited by:
Nuke
Ah, i forgot to mention, that the wsdl file is visible from the admin webinterface.
Message was edited by:
Nuke

You are right, there were several errors.
It started with this Info:
Timestamp:
06.06.2007 01:30:00.625
Log Level:
INFO
Logger:
javax.enterprise.resource.webservices.jaxws.server.http
Name-Value Pairs:
ThreadID=15;ThreadName=Timer-3;
Record Number:
54
Message ID:
Complete Message
wsdl cannot be found from DD or annotation. Will generate and publish a new WSDL for SEI endpoints.
And then these errors:
Log Entry Detail
Details
Timestamp:
06.06.2007 01:30:00.640
Log Level:
SEVERE
Logger:
javax.enterprise.resource.webservices.jaxws.server.http
Name-Value Pairs:
ThreadID=15;ThreadName=Timer-3;_RequestID=4fb7b9d7-eef7-4c72-a358-f41b32e72163;
Record Number:
55
Message ID:
WSSERVLET11
Complete Message
failed to parse runtime descriptor: java.lang.TypeNotPresentException: Type javax.xml.bind.annotation.AccessType not present
java.lang.TypeNotPresentException: Type javax.xml.bind.annotation.AccessType not present
     at sun.reflect.generics.factory.CoreReflectionFactory.makeNamedType(CoreReflectionFactory.java:98)
     at sun.reflect.generics.visitor.Reifier.visitClassTypeSignature(Reifier.java:107)
     at sun.reflect.generics.tree.ClassTypeSignature.accept(ClassTypeSignature.java:31)
     at sun.reflect.annotation.AnnotationParser.parseSig(AnnotationParser.java:370)
     at sun.reflect.annotation.AnnotationParser.parseEnumValue(AnnotationParser.java:407)
     at sun.reflect.annotation.AnnotationParser.parseMemberValue(AnnotationParser.java:278)
     at sun.reflect.annotation.AnnotationParser.parseAnnotation(AnnotationParser.java:222)
     at sun.reflect.annotation.AnnotationParser.parseAnnotations2(AnnotationParser.java:69)
     at sun.reflect.annotation.AnnotationParser.parseAnnotations(AnnotationParser.java:52)
     at java.lang.Class.initAnnotationsIfNecessary(Class.java:3031)
     at java.lang.Class.getAnnotation(Class.java:2989)
and a lot more.

Similar Messages

  • WDJ application deployed but not listed

    Hi experts,
    we've upgraded our AS Java running the Portal and a custom WDJ application from NW7.02 to NW7.40
    I expected some problems with the custom application but not the kind we've ran into. We did not do any recompilation of any kind just to see what would happen. The application actually deploys fine according to the logs (both from telnet as well as from NWDS) but it's nowhere to be found. I've deployed both the .ear as well as the generated .SDA file. In both cases the deployement log show "Success".
    I can see the application in the telnet LIST_APP command (status: started) but it doesn't show in the list of the WDJ applications in the WD Content Administration, nor in the Portal Content section for WDJ applications.
    Any ideas what could have happened?
    Much obliged
    Marcel Rabe

    i think you are wasting time.
    if the app is not migrated how you can expect it to be working....

  • Custom Report - Show Deployed, But Not Installed, Security Updates

    I'm trying to create a custom report that will show all patches that have been deployed, but have not been installed for a particular collection. Any ideas?

    Answered my own question.
    This will pull all Security Updates that have been Deployed but are still Required (not installed) for the All Systems collection (SMS00001). You can directly modify the code to limit it to the All Servers or All Workstations depending on your site code. You
    can also change the CategoryInstanceName filter to see different Update Classifications.
    select distinct
    sys.Name0,
    ui.BulletinID as BulletinID,
    ui.ArticleID as ArticleID,
    ui.Title as Title,
    catinfo.CategoryInstanceName as Vendor,
    catinfo2.CategoryInstanceName as UpdateClassification,
    CASE ((ui.IsDeployed))
    When 0 Then 'No'
    Else 'Yes' End as 'Deployed',
    CASE((ui.Severity))
    When 2 Then 'Low'
    When 6 Then 'Moderate'
    When 8 Then 'Important'
    When 10 Then 'Critical'
    Else 'NA' End as 'Severity'
    from v_UpdateComplianceStatus css
    join v_UpdateInfo ui on ui.CI_ID=css.CI_ID
    join v_R_System sys on css.ResourceID=sys.ResourceID
    join v_ClientCollectionMembers ccm on ccm.ResourceID=sys.ResourceID
    join v_CICategories_All catall on catall.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo on catall.CategoryInstance_UniqueID = catinfo.CategoryInstance_UniqueID and catinfo.CategoryTypeName='Company'
    join v_CICategories_All catall2 on catall2.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo2 on catall2.CategoryInstance_UniqueID = catinfo2.CategoryInstance_UniqueID and catinfo2.CategoryTypeName='UpdateClassification'
    where css.Status=2
    and ccm.CollectionID='SMS00001'
    and ui.isDeployed=1
    and catinfo2.CategoryInstanceName='Security Updates'
    and catinfo.CategoryInstanceName = 'Microsoft'
    order by sys.Name0, ui.ArticleID
    select distinct
    sys.Name0,
    ui.BulletinID as BulletinID,
    ui.ArticleID as ArticleID,
    ui.Title as Title,
    catinfo.CategoryInstanceName as Vendor,
    catinfo2.CategoryInstanceName as UpdateClassification,
    CASE ((ui.IsDeployed))
      When 0 Then 'No'
      Else 'Yes' End as 'Deployed',
    CASE((ui.Severity))
      When 2 Then 'Low'
      When 6 Then 'Moderate'
      When 8 Then 'Important'
      When 10 Then 'Critical'
      Else 'NA' End as 'Severity'
    from v_UpdateComplianceStatus css
    join v_UpdateInfo ui on ui.CI_ID=css.CI_ID
    join v_R_System sys on css.ResourceID=sys.ResourceID
    join v_ClientCollectionMembers ccm on ccm.ResourceID=sys.ResourceID
    join v_CICategories_All catall on catall.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo on catall.CategoryInstance_UniqueID = catinfo.CategoryInstance_UniqueID and catinfo.CategoryTypeName='Company'
    join v_CICategories_All catall2 on catall2.CI_ID=ui.CI_ID
    join v_CategoryInfo catinfo2 on catall2.CategoryInstance_UniqueID = catinfo2.CategoryInstance_UniqueID and catinfo2.CategoryTypeName='UpdateClassification'
    where css.Status=2
    and ccm.CollectionID='SMS00001'
    and ui.isDeployed=1
    and catinfo2.CategoryInstanceName='Security Updates'
    and catinfo.CategoryInstanceName = 'Microsoft'
    order by sys.Name0, ui.ArticleID

  • SOA 10.1.3 - DocumentReview sample deployed but not initialized

    Hi,
    I deployed successfully the DocumentReview sample with ant (failed with JDeveloper - see my previous post). But, I can't see it on the BPEL console (Cannot find the specified instance)...
    Can you help me?
    Cyryl

    Every time the process has a workflow, the process is successfully deployed but can not be seen on BPEL console !
    Some ideas?
    Cyryl

  • ADF application deployed but not able to process any events on Tomcat

    Hie
    Somehow i m able to deploy an ADF application on tomcat 5.5. I am able to see the pages. But nothing is working. That is on click of submit button it does not call the the method written in the bean (assigned to action property of the button).
    All is working fine when run withi jdev. Also i dont see any kind of log messages while clicking the submit.
    So i m not able to figure out wht is really going wrong. In my apps i have used just ADF faces. There is not ADF-model..
    regards
    Vik

    Hello Praveen,
    If I understand correctly the scenario is File -- XI -- RFC and you do not see any message in SXMB_MONI.
    I would test the Sender File Adapter first before going to RFC. If the file is picked up and sent to Int Server you would see a corresponding message in SXMB_MONI.
    I would first check the Sender File Comm Channel in Comm Channel Monitoring and ensure the file id being picked up.
    In case this is not working you would get the exact error in the File Comm Channel. If this channel is working fine and you see a message id for the picked up file but the corresponding message Id is not available in SXMB_MONI, I would have a look at the queues if they are registered properly in SMQR or check if messages are stuck in any queue using SMQ1 and SMQ2 transactions. Please do the following steps and I am sure the scenario would work.
    In case you find the problem and are not able to resolve it please post it here and I can suggest something.
    Please award points if this post helps you.
    Thanks and Best Regards,
    Kanwal

  • BPM Process deployed but not listed in Applications in BPM Workspace

    Any idea on this? It seems to be deployed correctly based on the JDeveloper logs, and it seems I've set the organization settings to include the user/s I'm testing with. Have I missed something?

    Check either roles and participants correctly created and assigned

  • Report Generation working on Dev machine but not on Deployment + Lessons learned

    I don't do deployments very often with Teststand. But I have to say, I learned a lot from this one from trial and error and help from the message board. I have got my deployment to final work (almost) with these lessons learned:
    1. Create a base installer for the engines and drivers, that way if you need to update it is much smaller.
    2. Dont install Teststand before Labview on a new development machine (not related to this deployment but I did learn that)
    3. Don't have your Testexec window open, alter the Station Globals, then close the window. It just puts them back to the old version (probably my biggest problem).
    4. Paths are extemely important.
    I think I have figured it out with much time involved and kept notes of what I have done for future. The ONLY issue I have left is this below. My dev machine works as it should but when I deploy, it does not. FYI- I manually copied over Station Globals, Process model, and Testexec. DO I need something else?
    I create serial numbers for my UUT's in the proceses model. It all works fine in development. The serial numbers are generated and the UUT filename is titled [023232232].txt and changes per unit. The path for example lets say is C:\Users\Ryan\Desktop\temp.  A logfile is generated for each and put in that folder.
    When I deploy, it does something different. Instead of putting the files into the temp folder, it errors out saying it is in use. If I delete the temp folder, it creates a file called "temp" which contains my text logfile. This file just keeps getting overwritten.
    Any ideas on this?

    Hi SimpleJack,
    One way you can ensure that the Report Options you want to have stay with your sequence file is to actually override them using a Sequence File Callback.  I have attached a link to a KnowledgeBase article that walks you through how to add the ReportOptions callback to your sequence and programmatically set the options that you would normally set by going to Configure»Report Options from the Sequence Editor.  
    Also, to ensure that the correct Process Model is being used with your sequence file after distributing, you can set the Process Model within the Sequence File Properties.  This can be found by going to Edit»Sequence File Properties, and then going to the Advanced tab.  I have attached a screenshot of this window below, as well.  From here, you can set the Model Option to Require Specific Model, which especially comes in handy if you are using your own custom Process Models.
    I hope this helps, SimpleJack!  Have a great day!
    How Can I Programmatically Enable or Disable Database Logging or Report Generation?
    Taylor G.
    Product Support Engineer
    National Instruments
    www.ni.com/support

  • FTP to fieldpoint works in development environment but not in deployed app?

    I have developed a VI which employs FTP to upload data files created by another application
    embedded on a FieldPoint, not altogether unlike the "Redundant Datalogger" example VI found
    in the NI Developer Zone. Unlike that example, I am not employing DataSockets, Citadel
    database functionality or any other DSC functionality which I know or suspect does not work
    in a deployed application without the DSC Run-Time Engine.
    This VI works fine when I run it in the LabVIEW Development System (Full + RT + DSC), but
    when I deploy the VI as a standalone application FTP (at least) appears to quit working.
    I don't have the specific error code -- my VI re-interprets FTP errors to a novice-
    friendly "check the LAN connection and/or FieldPoint power" warning and I will have to
    modify the code to extract better diagnostics. I will also not be able to probe further
    until I can get back to the fieldpoint, which is happily running its little app in a little
    one-room water plant in the mountains. Meanwhile, is there something more fundamental (and
    obvious to the veterans) which I am overlooking?
    This application employs DSC security features and I have deployed it bundled with the
    associated DSC files per the DSC manual instructions. All of that is apparently working fine;
    the stand-alone just won't FTP to the fieldpoint while the development copy will.
    Bob Miller
    P.S. This VI also employs TCP to continuously communicate control and status info with the
    fieldpoint, but the VI gives up on the link when FTP fails and never tries to open the TCP
    path.

    I will answer my own query for any casual readers. I dragged my
    notebook and my carcass up into the mountains last night to attempt
    to diagnose the problem. One word answer:
    Firewall.
    The Symantec firewall on the PC had been configured to allow Labview
    to access the network via TCP (which FTP is built on), but not an
    application named "Water Plant Watchdog". Reconfiguring the firewall
    (a two-minute job) fixed the problem.
    NI embeds a lot of "Disable Windows firewall" messages in the LabVIEW
    installer and/or documentation. This is an issue for a standalone PC
    connected to a fieldpoint and a dial-up ISP. So the firewall (and the
    LabVIEW application) must be managed to allow each other to do their
    job. Fortunately Symantec (Norton)'s firewall seems flexible enough.
    Bob

  • HT200241 Can Apple Configurator deploy and modify Apple TV iOS 6.0 settings? For instance, what if I wanted to submit a 'reset all settings' command, but not a 'factory restore'?

    Can Apple Configurator deploy and modify Apple TV iOS 6.0 settings? For instance, what if I wanted to submit a 'reset all settings' command, but not a 'factory restore'?

    Did you follow the instructions here:
    http://support.apple.com/kb/HT4367
    Pay attention to differences in power connection depending on whether or not you have AppleTV2 or AppleTV 3.
    Also some microUSB leads don't seem to work - try another if you can. Disconnect superfluous USB device/hubs too if possible.
    AC

  • Fixed headers while scrolling works fine in bids but not when deployed to reportserver

    Hi, I am using SQL Server 2008 R2 & deploying a report to reportserver with fixed headers while scrolling, this works fine in bids but not when deployed to reportserver. We are IE 9.
    Thanks in advance...............
    Ione

    Hi ione721,
    Since you have identified the 2 xml files are identical, according to my knowledge, there maybe a compatibility issue with IE 9 and SSRS 2008 R2, so I suggest that you could run the report in compatibility mode. Please make sure you have turned on Compatibility
    View in Internet Explorer 9 by following steps:
    When Internet Explorer recognizes that a webpage is not compatible, you will see the Compatibility View button on the Address bar. Try clicking it.
    When Compatibility View is turned on, the button changes from an outline to a solid color when you view the page.
    The following screenshots are for your reference:
    If you have any questions, please feel free to let me know.
    Best Regards,
    Wendy Fu

  • Deployment Error: DCs get activated but not deployed

    Hello All,
    I am new to NWDI. I did some code modifications in my DC. When i check in my activity, it gets activated, but not getting deployed. At first i was getting authentication problem, that is resolved now. Now i get this CMS log:
    20140819135816 Info :Aug 19, 2014 1:58:16 PM Info: com.sap.ASJ.dpl_api.001023 Deployment of [name: 'abc', vendor: 'XXXX.com' (sda)] finished.
    20140819135816 Info :Aug 19, 2014 1:58:16 PM Info: com.sap.ASJ.dpl_api.001052 +++ Deployment of session ID [467] finished with status [Error] +++. [[ deployerId=7 ]] [[#49: 4.031 sec]] [
    20140819135816 Info :===== Summary - Deploy Result - Start =====
    20140819135816 Info :------------------------
    20140819135816 Info :Type | Status : Count
    20140819135816 Info :------------------------
    20140819135816 Info :> SCA(s)
    20140819135816 Info :> SDA(s)
    20140819135816 Info :- [Aborted] : [1]
    20140819135816 Info :------------------------
    20140819135816 Info :------------------------
    20140819135816 Info :Type | Status : Id
    20140819135816 Info :------------------------
    20140819135816 Info :> SCA(s)
    20140819135816 Info :> SDA(s)
    20140819135816 Info :- [Aborted] : name: 'abc', vendor: 'XXXX.com',
    20140819135816 Info :------------------------
    20140819135816 Info :===== Summary - Deploy Result - End =====
    20140819135816 Info :]
    20140819135816 Info :end of log
    20140819135816 Info :End deployment:
    20140819135816 Info :
    20140819135816 Info :Summary of deployment
    20140819135816 Info :==> deployment finished for abc (103) with rc=12
    20140819135816 Info :deployment finished for buildspace: NDI_NDITK080_D
    Thanks.

    Dear Pranay
    manual deployment can be done in two ways
    1. right click your dc in the studio ->Development Components->Deploy .
    before doing this , in your studio go to windows->preference->sap j2ee engine -> fill the message server host and message server port i.e on selecting deploy it will ask for password , enter sdm password and your ear file will be deployed.
    message server host --> host entry or IP address of the server to which you want to deploy and
    message server port - > ask the basis person to give the port or else you can check via
    http://serverhost:portno/index.html -- > click on system information --> it will prompt for user id and password .. fill the crendentials if you have and you will find the message port info in the top left corner. for more info refere the below link.
    http://scn.sap.com/thread/1443866 -- to get message server port go through this link
    2. you can take the ear file from your dc , in nwds studio open Navigator, expand the dc then dril down to gen->default->deploy -> here ear file will be available , copy the ear file and give that to your basis guys to deploy directly from SDM.
    or follow this link
    http://scn.sap.com/thread/1884858 .
    Regards
    Govardan

  • Appv 5.0 on Windows 2008 R2: package working, but not anymore when deployed

    Hi,
    Please advise on howto troublehsooting a package that works fine when locally installed on a windows 2008 server but not anymore when sequenced and deployed to another terminal server.
    J.
    Jan Hoedt

    Are there any error codes displayed or in the eventlog?
    Is the sequencer machine identical as the client where the package is started? 
    Is KB2984972 installed on the client?
    What version of App-V do you use?
    Did you install the the application in the PVAD or in the VFS?
    Related topics:
    Package will not run
    AppV Application will not start
    App-V package won't start

  • Network Stream On PXI W/RTOS works in debug but not deployed

    I have a new problem, recently my network streams have decided to not work.
    I have a PXI with a 8102 controller running the NI RTOS, If I run the program on the PXI from in the development environment they work as expected, however if I build the exe and run as startup the communicating program times out, the target (PXI) is unresponsive.
    This has work previously, we had a power outage and I had to re-format the PXI HD and re-install the RTOS, I do believe it is back to the original state before the power issue software wise, but as stated my network streams seem to be unresponsive as an app
    Networks Streams 1.1 loaded according to MAX
    any ideas?  The fact that it work like a champ in debug, but not as an exe is very frustrating, especially since it was all working beautifully before the power outage.
    oh yeah, using REAL-TIME 11.0.1 and labview 2011 SP1
    TIA

    The Sub VI is setting up and controlling the 2536 Switch and 6133 capture cards based on the command recieved by the Vi from the host program.
    It also talks with the 7811
    I thought that I was using slot numbers to reference the cards before the corruption, but now it is device numbers,.
    I was playing around in MAX and it caused labview to crash if I tried to view the block diagram of the subvi.
    I changed everything back in MAX and now the App is running - that is I can now establish a network stream with it and comunicate with the 7811, my data captures however seems to not be working and cause the PXI to go off in the weeds, the CPU loads go up and stay up and I can't re-establish the network streams without a reboot.
    I just took a look at MAX while the PXI is in lala land, it has little red x's next to the 6133's and 2536

  • BPEL SCA: XML-20129: (Error) Namespace prefix 'ui' used but not declared.

    SOASuite 11g
    Oracle Weblogic Server 10.3.3
    Oracle Solaris on SPARC (64-bit) 10
    Database: Oracle Server - Enterprise Edition 10.2.0.5
    When I start the SOA domain server, I find the following in the log file:
    <Feb 25, 2011 10:41:23 AM CET> <Error> <org.apache.commons.digester.Digester> <BEA-000000> <Parse Error at line 9 column 79: <Line 9,
    Column 79>: XML-20129: (Error) Namespace prefix 'ui' used but not declared.
    org.xml.sax.SAXParseException: <Line 9, Column 79>: XML-20129: (Error) Namespace prefix 'ui' used but not declared.
    at oracle.xml.parser.v2.XMLError.flushErrorHandler(XMLError.java:422)
    at oracle.xml.parser.v2.XMLError.flushErrors1(XMLError.java:287)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:342)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:226)
    at org.apache.commons.digester.Digester.parse(Digester.java:1785)
    at oracle.fabric.composite.Parser.parseComposite(Parser.java:132)
    at oracle.integration.platform.kernel.WLSFabricKernelInitializer.deployComposite(WLSFabricKernelInitializer.java:493)
    at oracle.integration.platform.kernel.WLSFabricKernelInitializer.prepareCompositeDeployments(WLSFabricKernelInitializer.java:
    239)
    at oracle.integration.platform.kernel.WLSFabricKernelInitializer.init(WLSFabricKernelInitializer.java:127)
    at javax.servlet.GenericServlet.init(GenericServlet.java:241)
    at weblogic.servlet.internal.StubSecurityHelper$ServletInitAction.run(StubSecurityHelper.java:283)
    at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
    at weblogic.security.service.SecurityManager.runAs(SecurityManager.java:121)
    at weblogic.servlet.internal.StubSecurityHelper.createServlet(StubSecurityHelper.java:64)
    at weblogic.servlet.internal.StubLifecycleHelper.createOneInstance(StubLifecycleHelper.java:58)
    at weblogic.servlet.internal.StubLifecycleHelper.<init>(StubLifecycleHelper.java:48)
    at weblogic.servlet.internal.ServletStubImpl.prepareServlet(ServletStubImpl.java:539)
    at weblogic.servlet.internal.WebAppServletContext.preloadServlet(WebAppServletContext.java:1976)
    at weblogic.servlet.internal.WebAppServletContext.loadServletsOnStartup(WebAppServletContext.java:1950)
    at weblogic.servlet.internal.WebAppServletContext.preloadResources(WebAppServletContext.java:1869)
    at weblogic.servlet.internal.WebAppServletContext.start(WebAppServletContext.java:3126)
    at weblogic.servlet.internal.WebAppModule.startContexts(WebAppModule.java:1512)
    at weblogic.servlet.internal.WebAppModule.start(WebAppModule.java:486)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.ScopedModuleDriver.start(ScopedModuleDriver.java:200)
    at weblogic.application.internal.flow.ModuleListenerInvoker.start(ModuleListenerInvoker.java:247)
    at weblogic.application.internal.flow.ModuleStateDriver$3.next(ModuleStateDriver.java:425)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.internal.flow.ModuleStateDriver.start(ModuleStateDriver.java:119)
    at weblogic.application.internal.flow.StartModulesFlow.activate(StartModulesFlow.java:27)
    at weblogic.application.internal.BaseDeployment$2.next(BaseDeployment.java:1267)
    at weblogic.application.utils.StateMachineDriver.nextState(StateMachineDriver.java:41)
    at weblogic.application.internal.BaseDeployment.activate(BaseDeployment.java:409)
    at weblogic.application.internal.EarDeployment.activate(EarDeployment.java:58)
    at weblogic.application.internal.DeploymentStateChecker.activate(DeploymentStateChecker.java:161)
    at weblogic.deploy.internal.targetserver.AppContainerInvoker.activate(AppContainerInvoker.java:79)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activate(BasicDeployment.java:184)
    at weblogic.deploy.internal.targetserver.BasicDeployment.activateFromServerLifecycle(BasicDeployment.java:361)
    at weblogic.management.deploy.internal.DeploymentAdapter$1.doActivate(DeploymentAdapter.java:51)
    at weblogic.management.deploy.internal.DeploymentAdapter.activate(DeploymentAdapter.java:200)
    at weblogic.management.deploy.internal.AppTransition$2.transitionApp(AppTransition.java:30)
    at weblogic.management.deploy.internal.ConfiguredDeployments.transitionApps(ConfiguredDeployments.java:240)
    at weblogic.management.deploy.internal.ConfiguredDeployments.activate(ConfiguredDeployments.java:169)
    at weblogic.management.deploy.internal.ConfiguredDeployments.deploy(ConfiguredDeployments.java:123)
    at weblogic.management.deploy.internal.DeploymentServerService.resume(DeploymentServerService.java:180)
    at weblogic.management.deploy.internal.DeploymentServerService.start(DeploymentServerService.java:96)
    at weblogic.t3.srvr.SubsystemRequest.run(SubsystemRequest.java:64)
    at weblogic.work.ExecuteThread.execute(ExecuteThread.java:201)
    at weblogic.work.ExecuteThread.run(ExecuteThread.java:173)
    >
    My composite.xml is:
    <composite name="JIPSYHandleRTOTaskEBF" revision="1.0" mode="active" state="on"
    xmlns="http://xmlns.oracle.com/sca/1.0"
    xmlns:ui="http://xmlns.oracle.com/soa/designer/"^M
    xmlns:xs="http://www.w3.org/2001/XMLSchema">^M
    <import location="GetTimeoutPeriod.wsdl" namespace="http://xmlns.oracle.com/pcbpel/adapter/db/GetTimeoutPeriod/"/>
    <service ui:wsdlLocation="JIPSYHandleRTOTaskEBF.wsdl" name="client">
    </composite>
    But when it has been deployed, I see that this has been changed into:
    <composite name="JIPSYHandleRTOTaskEBF" revision="1.0" xmlns:xs="http://www.w3.org/2001/XMLSchema">
    <import location="GetTimeoutPeriod.wsdl" namespace="http://xmlns.oracle.com/pcbpel/adapter/db/GetTimeoutPeriod/"/>
    <service ui:wsdlLocation="JIPSYHandleRTOTaskEBF.wsdl" name="client">
    </composite>
    (I exported this from MDS).
    Apparently, some namespaces are stripped.
    This appears to happen during the deploy (using ant), because the version in the generated jar file is already missing the namespaces.
    The BPEL processes appear to work fine though.
    Why is this happening and how can I prevent these errors?

    I've fiddled around with the file composite.xml and found the following workaround:
    If I change the start of the file to:
    <?xml version="1.0" encoding="UTF-8"?>
    <composite name="JIPSYUpdateWorkflowReqABCSImpl"
    xmlns="http://xmlns.oracle.com/sca/1.0"
    xmlns:ui="http://xmlns.oracle.com/soa/designer/"
    xmlns:xs="http://www.w3.org/2001/XMLSchema"
    revision="1.0"
    mode="active"
    state="on">
    it remains unchanged and the errors during deployment are gone.

  • Task fails on server but not on my development PC

    hi
    I have this annoying error on my server but not in my PC,
    When I run the task from VisualStudio2010 it works perfectly. Then I deploy the package to my SqlServer2012 "Intgegration Services Catalogs" and run the deployed package from the SqlManagementConsole I got the error.
    The source is an oracle DB and the query wich calculate the field "MONJTO_HRSEXTR" do it with this "sum(nvl(h.monto,0)) monto_hrsext" on the select statement.
    I guess the problem is SSIS thinks that the column MONTO_HRSEXTR is "Unicode string[DT_WSTR]" with "lenght=38" and when the conversion process try to cast to Decimal(12,2) it fails. There are 2 big questions here
    1.Why it works on my development PC and not in the server when deployed?
    2.why the "Data Conversion Transtormation Editor" thinks the field is a  Unicode string[DT_WSTR] if that field is a sum result from numerics fields in the oracle table
    Thanks a lot!!! for any Idea
    Salu2 Sergio T

    Hello
    Thanks for your time, I made a modification
    to the package to redirect all rows
    that cause error
    All errors are rows with decimal values
    ​​such as "11.3" "33.44"
    All values ​​are using "," instead of
    "." and that's the problem
    what is strange is that the same source,
    in both cases the same database
    It will be something related to the
    configuration of the oracle client on the Windows
    server? The Oracle is in another server, a unix server.
    I do not know much about oracle.
    I know we use TSNnames for connecting, but I really don't know what to see, any idea??
    thanks again for your time Jan
    Salu2 Sergio T

Maybe you are looking for

  • APP-FND-00500

    Hi All, Am getting this error in order management module.. lpr: error - unable to print file: client-error-not-found APP-FND-00500: AFPPRN received a return code of failure from routine FDUPRN. Program exited with status 1 Cause: AFPPRN received a re

  • Runtime Error every 3mins - SAPLBP_CENTRAL_PERSON or SWWDHEX

    HI, I hope somebody can help me here, here's my problem: When i checked the list of Runtime Errors (ST22), i found out that there is a RAISE_EXCEPTION error that occurs every 3 minutes. It started last week, though we didnt schedule any background jo

  • 1.6 bug list

    I don't know if anybody from Apple scans this forum, but over on the Digidesign message board they seem to check in so they can be aware of all bugs. I'm new to WB, I love it but it would be great if these small bugs got fixed soon. The two main ones

  • Passing variables to a SQL script within GC

    Does anyone know if it is possible to pass in a variable to a SQL script job within Grid Control? I don't see that I can but I wanted to ask a larger group before cloing the loop on this. For example, I have a few different databases which contain sc

  • Clip Art Product Suggestions

    I have Photoshop CS and ImageReady.  I am looking to purchase someplace Clip Art software packages.  Does anybody have suggestions on clipart distributers (that I can purchase in on CDs and DVDs?)  I know that there are some very good clipart collect