Axis2: Operation not found

Hi guys,
First of all my apologies if this is the incorrect forum for this topic - I'm quite new to web services!
I was wondering if I could ask about a "Operation Not found" problem I'm encountering. When attempting to deploy the sync version and the async version of the same operation on the same instance of axis2 (ie: two operations, both with the same input parameters, but only one with a return parameter) I receive this error:
<?xml version="1.0" encoding="UTF-8"?>
<soapenv:Envelope xmlns:soapenv="http://schemas.xmlsoap.org/soap/envelope/">
     <soapenv:Header/>
     <soapenv:Body>
          <soapenv:Fault>
               <faultcode>soapenv:Client</faultcode>
               <faultstring>Operation Not found EPR is https://10.238.212.125:9443/soap/ManageWidgetSync and WSA Action =  null</faultstring>
               <detail>
                    <Exception>org.apache.axis2.AxisFault: Operation Not found EPR is https://10.238.212.125:9443/soap/ManageWidgetSync and WSA Action =  null
     at org.apache.axis2.engine.DispatchPhase.checkPostConditions(DispatchPhase.java:51)
     at org.apache.axis2.engine.Phase.invoke(Phase.java:398)
     at org.apache.axis2.engine.AxisEngine.invoke(AxisEngine.java:522)
     at org.apache.axis2.engine.AxisEngine.receive(AxisEngine.java:487)
     at org.apache.axis2.transport.http.HTTPTransportUtils.processHTTPPostRequest(HTTPTransportUtils.java:326)
     at org.apache.axis2.transport.http.util.SOAPUtil.processPostRequest(SOAPUtil.java:62)
     at org.wso2.wsas.transport.jetty.Axis2SOAPHandler.processPostRequest(Axis2SOAPHandler.java:43)
     at org.wso2.wsas.transport.jetty.Axis2Handler.handle(Axis2Handler.java:159)
     at org.mortbay.jetty.handler.ContextHandler.handle(ContextHandler.java:627)
     at org.mortbay.jetty.handler.ContextHandlerCollection.handle(ContextHandlerCollection.java:149)
     at org.mortbay.jetty.handler.HandlerCollection.handle(HandlerCollection.java:123)
     at org.mortbay.jetty.handler.HandlerWrapper.handle(HandlerWrapper.java:141)
     at org.mortbay.jetty.Server.handle(Server.java:269)
     at org.mortbay.jetty.HttpConnection.handleRequest(HttpConnection.java:430)
     at org.mortbay.jetty.HttpConnection$RequestHandler.content(HttpConnection.java:701)
     at org.mortbay.jetty.HttpParser.parseNext(HttpParser.java:617)
     at org.mortbay.jetty.HttpParser.parseAvailable(HttpParser.java:193)
     at org.mortbay.jetty.HttpConnection.handle(HttpConnection.java:339)
     at org.mortbay.jetty.bio.SocketConnector$Connection.run(SocketConnector.java:208)
     at org.mortbay.thread.BoundedThreadPool$PoolThread.run(BoundedThreadPool.java:475)
</Exception>
               </detail>
          </soapenv:Fault>
     </soapenv:Body>
</soapenv:Envelope>Each web service operation was generated by the WSDL2JAVA tool from a different port in a WSDL file. I ensured that the output from the tool for each service was separated into a separate directory (to ensure no files were overwritten). I also ensured that I specified a different Java package name for the output of each run/operation, to ensure that when it came to merging the Java output the package names would prevent the generated skeletons from being overwritten.
As each port uses the same underlying data structures, I merged the contents of the two directories together (overwriting files), except the services.xml file, which I manually edited to ensure each service from the individual service.xml files was present in the resultant services.xml file.
When fleshing out the generated skeleton files to return a response, then building both operations into an aar file and deploying it on to a simple server, I can throw messages at the aysnc version of the operation with no problems. However, I cannot access the sync services as an error (attached) is returned, suggesting that it cannot find the operation. This may be occurring because the sync service operations contain the same input parameters as operations within the provider and consumer services.
The sync service works correctly if deployed separately, so I'm a little baffled. The services.xml file seems sane (attached too!).
I do have a feeling it's to do with the dispatchers. However, ensuring the RequestURIBasedDispatcher is the first dispatcher to be used, and then accessing the service via the following uri, does not seem to stop the error:
http://serviceuri/axis2/services/serviceName/operationName
I apologise if this is quite a silly question - I am still embracing the learning curve that is Axis 2 ;) Any suggestions or guidance would be very much appreciated!
Kind regards,
Simon
My services.xml file:
<!-- This file was auto-generated from WSDL --><!-- by the Apache Axis2 version: #axisVersion# #today# --><serviceGroup>
<service name="ManageEventNotification">
      <parameter name="ServiceClass" locked="false">com.bt.sdk.manageeventnotification.consumer.service.ManageEventNotification</parameter>
       <transports>
          <transport>jms</transport>
          <transport>http</transport>
     </transports>
     <parameter name="transport.jms.Destination" locked="true">MEN.JMS.Q</parameter>
      <operation name="notify" mep="http://www.w3.org/2004/08/wsdl/in-only">
      <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-only"
                          class="com.bt.sdk.manageeventnotification.consumer.service.ManageEventNotificationMessageReceiverInOnly"/>
         <actionMapping>http://capabilities.nat.bt.com/wsdl/MEN/2006/12/30#notify</actionMapping>
           <module ref="validator"/>
      </operation>
      <operation name="subscribe" mep="http://www.w3.org/2004/08/wsdl/in-out">
         <actionMapping>http://capabilities.nat.bt.com/wsdl/MEN/2006/12/30#subscribe</actionMapping>
     </operation>
    <operation name="createWidgetRequest" mep="http://www.w3.org/2004/08/wsdl/in-only">
      <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-only"
                          class="com.bt.sdk.manageeventnotification.consumer.service.ManageEventNotificationMessageReceiverInOnly"/>
         <actionMapping>http://capabilities.nat.bt.com/wsdl/MEN/2006/12/30#createWidgetRequest</actionMapping>
     </operation>
   </service>
   <service name="ManageEventNotificationSync">
      <parameter name="ServiceClass" locked="false">com.bt.sdk.manageeventnotification.consumer.service.ManageEventNotificationSync</parameter>
       <transports>
          <transport>jms</transport>
          <transport>http</transport>
     </transports>
     <parameter name="transport.jms.Destination" locked="true">MEN.JMS.Q</parameter>
      <operation name="createWidget" mep="http://www.w3.org/2004/08/wsdl/in-out">
      <messageReceiver mep="http://www.w3.org/2004/08/wsdl/in-out"
                          class="com.bt.sdk.manageeventnotification.consumer.service.ManageEventNotificationMessageReceiverInOut"/>
         <actionMapping>http://capabilities.nat.bt.com/wsdl/MEN/2006/12/30#createWidget</actionMapping>
     </operation>
   </service>
</serviceGroup>

Did you manage to find a solution ??
I'm getting the same problem.

Similar Messages

  • Operation not found error while calling AM methods from managed bean

    Hi,
    operation not found error while calling AM methods from managed bean.
    written a method with two parameters in AM.
    exposed the method in AM client interface
    in the page bindings added the method in method action ..left empty in the value fields of the parameters.
    calling the method from managed bean like below
    String userNameVal = (String)userName.getValue();
    String passwordVal = (String)password.getValue();
    OperationBinding operationBinding =
    ADFUtils.findOperation("verifyLogin");
    operationBinding.getParamsMap().put("userName",userNameVal);
    operationBinding.getParamsMap().put("password",passwordVal);
    operationBinding.execute();
    i am getting operation verifyLogin not found error.Please suggest me something to do.
    Thanks
    Satya

    Hi vlsn,
    Can you try with the below code
    // in your backing bean
    OperationBinding operation = bindings.getOperationBinding("verifyLogin");
    //Put your both parameters here
    operation.getParamsMap().put("parameter_name1", parameterValue1);
    operation.getParamsMap().put("parameter_name2", parameterValue2);
    operation.execute();
    if (operation.getResult() != null) {
    Boolean result = (Boolean) operation.getResult();
    and share the result.
    regards,
    Rajan

  • Sequence 0 operation  not found in order 800000036870, check entry

    Hi experts,
    I am facing the problem first time. when I go for order confirmation at operation through CO11n then as i enter the order number system gives me the error Sequence 0 operation  not found in order 800000036870, check entry.
    Regards

    Dear Anil,
    Your initial query is different form query you posted to our replies
    As per your initial query what is replied is correct ( it is regrding operation number )
    Now as ur latest query it is confirmation number
    Yes one order can have different confirmation numbers
    Just check in CO14 or COOIS
    in COOIS in list make it as confirmations & execute
    Hope it clarifies
    Regards
    Madhu

  • Invoke operation not found

    Hi all,
    I have a problem invoking a small process inside a bigger process. I get the following error:
    2007-12-10 14:38:00,206 ERROR [com.adobe.workflow.AWS] stalling action-instance: 4545 with message: ALC-DSC-121-000: com.adobe.idp.dsc.registry.InputParameterNotFoundException: Operation: invoke not found on service: Send mails to receiver
    at com.adobe.idp.dsc.registry.infomodel.impl.OperationImpl.getInputParameter(OperationImpl.j ava:175)
    at com.adobe.workflow.engine.PEUtil.invokeAction(PEUtil.java:480)
    at com.adobe.workflow.engine.ProcessEngineBMTBean.continueBranchAtAction(ProcessEngineBMTBea n.java:2881)
    at com.adobe.workflow.engine.ProcessEngineBMTBean.asyncContinueBranchCommand(ProcessEngineBM TBean.java:2380)
    at sun.reflect.GeneratedMethodAccessor898.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    I can understand the error, but I don't know what I can do to fix the problem. The process is activated and I have set invoke permissions to the process creator. However I still get this error.
    Hope you can help.
    Sincerely
    Kim Christensen

    Does you "smaller" process contain Input variables. Are you providing the value for the inputs parameters when you call the "smaller" process from the "bigger" process.
    How are you invoking the "smaller" process from the "bigger" process. Are you just dragging the "smaller" process's service on the "bigger" process? Are you using the web service interface?
    Jasmin

  • Ipod operation not found in manual, at least I could not find it

    When plsying the ipod selection in my iphone. I can not find how to stop the music without turning off the iphone. Please point me to where this information is found.

    The video must be played directly, by selecting it from the appropriate iPod video menu on the iPhone. It will play audio-only when selected for play from a playlist.
    FYI, The iPhone User's Guide can be found here:
    http://manuals.info.apple.com/en/iPhoneUserGuide.pdf
    * Oops, sorry, just noticed your thread title says you couldn't find it in the manual. Do you mean the one that comes with the iPhone? If so, I think the complete manual is the one posted for download at the link above. If I had more time, I'd look it up, but can't at the moment. But, it's in there...
    Message was edited by: Chas Hulme

  • Operation not found in recipe, but available in process order

    Hi
    I find a strange problem. In recipe operations are 0010,0020 and 0050. With 0020, phase indicator is active and destination is given with sup opn as 0010. Nowhere is opn 0030 & 0040.  But when I create new process order I see opn 0030 and 0040 also. I checked the group no and counter no. It is the same recipe. So where is these operations 0030 and 0040 in recipe. 
    Regds

    Dear BNR,
    Just a Guess
    after creating process order some one might have deleted 30 & 40 operations in recipe
    so this might be reason of showing 30 & 40 operations in recipe
    Regards
    kumar
    Edited by: kumar kumar on Jul 8, 2009 4:41 PM

  • InvokeScenario operation not found in ODIInvoke.wsdl

    Hi,
    I ahve installed the ODI11g along with ODIConsole and Public web service
    also configured the weblogic domain. Able to see the odiconsole and oraclediagent in the deployments folder.
    And able to view the ODIInvoke web service at http://localhost:10900/oraclediagent/OdiInvoke?WSDL
    But my question is though i installed public web service, i am unable to find the operations pertaining to public web service in this wsdl
    operations like **invokeScenario*,listcontext,listScenario, etc...*
    Please let me know if i have to any configuration in the weblogic or how should i access the operations of public web service.
    Its an urgent requirement. Appreciate quick response
    thanks a lot...

    Hi
    Below URL may helps you
    URL: Invoke ODI Scenario (11g) in BPEL (11g)
    Regards,
    Phanikanth

  • How can I stop Firefox from opening (to "File Not Found") when opening my Opera browser?

    Ever since I installed Opera 10.61 on my new computer (Windows 7 Ultimate operating system), whenever I open Opera, Firefox opens one second later with the following error message:
    '''File not found '''
    Firefox can't find the file at /C:/Users/Nasheed/AppData/Local/Opera/Opera/temporary_downloads/client-en.xml.
    * Check the file name for capitalization or other typing errors.
    * Check to see if the file was moved, renamed or deleted.
    TRY AGAIN.
    <nowiki>****************************************************</nowiki><br />
    This happens EVERY TIME I OPEN THE OPERA BROWSER. How can I stop this from happening? I'm stumped.
    [EXTRA INFO - I was unable to enable Firefox to access my previous profile on the new computer (despite putting the old profile in the appropriate Mozilla Firefox folder. So, there are now two profiles in that location.
    After reading the answer to another forum member's question, I attempted to resolve the problem using Profile Manager, but I was unable to locate the Profile Manager. The Windows "Search" feature is not enabled on my new computer (nor can it be enabled from the Customize Start Menu options).]

    Thank you for your response, Cor-el.
    I had Opera set as my default browser since this began happening. I changed my default browser back to Firefox mainly because having Firefox open one or two seconds every time I open Opera was/is such a nuisance.
    I believe this problem began because I attempted to manually transfer the files from my old computer to the new one (via the backed up files in my external drive). I was unfamiliar with Windows 7 when I did this. Microsoft changed the file set up from what I had been used to in Windows XP. I used XP for six years before being exposed to Windows 7 (I never had Vista).
    I'm almost sure this problem has something to do with where I placed the application data when I was trying to reestablish the program set up on the new computer.

  • HP Pavilion dv6500 Entertainment Notebook PC series Operating system not found

    Hello to all how are you doing guys doing today I'm having a problem and need the help from the tech world. So i have a Hp Pavilion dv6500 cto notebook. I started it up and got a black screen stating "Operating System Not Found". I couldnt get into safe mode to recover back to a safe point, i was able to get into the bios system to do a memory and Hard drive test, my memory test came back as a Pass but my Hard drive came back as a fail and stated "Replace Hard Drive".
    Now i went out bought a new WD 500GB 5400rpm hard drive for the laptop, i installed it and did a Hard Drive test to make sure it was good and the test came back as a Pass.  Now i had this laptop for years since 2007 and it broke just a few months ago, i just got the new hard drive yestarday and was playing doctor last night. When i got the laptop as a gift i was only given a recovery disk which did boot up and gave me the install now option and repair computer option. I chose the install now option and it was starting to install but then got this error message "Windows cannot open the required file D:\Sources\Install.wim. Make sure all files required for installation are available, and restart the installation. Error code: 0x80070002." I read that you cant install windows from a recovery disk so now im back to square one. 
    So current status is I got a new hard drive that pass the bios test, memory test was a pass. I have no windows disk other then the windows vista recovery disk i tried but failed to install windows. I also tried a windows 7 disk from work but the disk wouldnt boot up came back with a message stating that disk couldnt be read there may be problem with the cd dvd drive or hard drive, but when i put in the windows vista recovery disk that boot up no problem. i just cant install window with it. So Im stuck with a black screen stating no operating system is not found. Note that i havent change the boot up line up back to hard drive to see if it would boot up the new hard drive but i dought it would change anything since its a brand new hard drive with nothing on it.
    If someone could help me with step by step like how to get an operating system on my new hard drive. My wife has a laptop but with no cd drive so i would need instruction to boot get it on the usb. Hope i was helpful with my problem.

    You have only tried questionable disks. You could order a recovery disk from HP but I am not even sure they still have Vista recovery disks. You could also buy a Windows 7 OEM disk and try that. it will cost you a bit but will be legal. What version of Vista is it? You can also try to find a Vista install disk and use the Key Code on the bottom of the laptop if it is still legible. Here is a link to downloadable .iso files you can use to make a Vista install disk that will activate with your Key Code:
    http://downloadsnfix.blogspot.com/2012/08/microsoft-windows-vista-official-iso.html

  • HP DV6700 Operating System Not Found- How Can I Access & Back Up Files?

    1. HP Pavillon DV6700 -> old yes, I know
    2. Operating System: Vista
    3. Black Screen -> Err2Err3 Operating System Not Found
    I ran the Primary Hard Drive Self Test > Hard Disk Self Test and it was a quick test. After it finished it came back with "#10009- Replace Hard Disk"
    My question is: I've been tring to make this laptop last for as long as possible (obviously considering I was still using Vista). I plan to trash this laptop, but I need to know somehow, some way to access my files. There are pictures and essays that I absolutely need and I didn't do any back up in the last 2 months.
    Please any suggestions!

    Yes use a usb to SATA adapter:
    http://www.amazon.com/Patuoxun-Converter-Adapter-C​able-Drive/dp/B008ASF5MC/ref=sr_1_3?ie=UTF8&qid=13​...
    That one is very inexpensive on amazon.com. Connect the SATA hard drive to the adapter (after removing the drive from the laptop) and plug the usb connectors into two usb ports on any other computer running XP or greater. The laptop drive will (if you are lucky) mount as a lettered drive on the host computer and you can copy and paste files off the drive with Windows Explorer file browser.

  • Boot device not found - Please install an operating system on your hard disk

    Trying to boot up this morning gave this error message:
    "Boot device not found
    Please install an operating system on your hard disk
    Hard Disk <3F0>
    F2  System Diagnostics"
    Pressing F2 brings up to  the "HP PC Hardware Diagnostics UEFI" page, where its shown:
    "Version 1.6.0.0 - BIOS
    Fore more info please visit www. ... ...
    Memory Test
    Hard Drive Check
    Language
    Exit"
    Tryied the HD check but it says:
    "SMART Check : Not installed
    Short DST : Not installed
    More details:
    No bios upgrade was made, never, only a big updating of Windows yesterday.
    Could someone kindely help me out please?
    Thanks, Perry G.

    Hi,
              The above error message shows that the Hard disk drive is failed on your unit. You have to replace the Hard disk drive and reinstall the OS.
    To order parts click the below link
    https://h20141.www2.hp.com/Hpparts/Default.aspx?mscssid=FA59F7C7DCAC4237B498C91D0507A761
    To order Recovery disk click below link
    http://h10025.www1.hp.com/ewfrf/wc/document?docname=bph07143&cc=us&dlc=en&lc=en
    "I work for HP."
    Please click the "White Kudos" star to say thanks for helping.
    Please mark "Accept As Solution" if my help has solved your problem.

  • My probook says:Boot device not found Please install an operating

    My Notebook says:Boot device not found
    Please install an operating system on your hard disk
    Hard disk (3FO)
    F2 system Diagnostics
    for more info please visit: www.hp.com/go/techcenter/startup
    I was used HDD Seft-Test Options, it say "Hard Disk Passed". But i try to turn on notebook but fair: Boot device not found.
    Is HDD died?
    Please help me, thanks so much!
    Sory my english bad.
    This question was solved.
    View Solution.

    Hello hungvocam 
    Thanks for posting on the HP Forums!
    I understand you are experiencing an issue with your notebook. However, since this is a commercial notebook, you should post your issue on the notebook board of the HP Enterprise Forums for a better answer.
    Thanks and have a great day!
    Mario
    I worked on behalf of HP.

  • Boot Device Not Found Please Intall an Operating system on your hard disk. Hard Disk - (3F0)

    Hello,
    I tried to re-install de OS from windows 7 to windows 8.1 and when the bios update driever was installed and the laptop was restaring it appeared the folowing window and message:
    Boot Device Not Found Please Intall an Operating system on your hard disk. Hard Disk - (3F0)
    After that i tried a lot of different ways to get to boot device select ...but i couldn't do anything. I removed the HDD and i put it back, i've tried with holding in the same time windows +B and pressing the power button in the same time for 1..2 seconds and then i've waited for at least 1 minute..and it didn't appeared anything on the screen. I've done the hard drive check and it passed. The weirdest thing is that when i want to select a boot device to re-install again the OS, i can't see any boot device to select. I need to mention that i've formatted the HDD in another computer. I dont care about the informations from the HDD beacause i saved all the informations on another device storage.
    Please help me repair this problem!!!  thanks a lot!
    Have a nice evening.!!!

    Whenever you get a message stating that the boot device not found it could be because of bad sectors on the Hard Drive. Its not necessary that the Hard Drive Test should fail to determine if the Hard Drive if its faulty or not. Sometimes even if the Hard Drive Test passes the Hard Drive will still not work because of the bad sectors in it.
    Best way to find out if its the Hard Drive you can try the Hard Deive on a different Notebook which would help you determine if it's faulty or not.
    Could be due to Application or driver conflicts, virus issues, file corruptions due to incompatible applications, improper shutdowns, update failures due to conflicts, sudden power surges, if notebook is dropped etc..
    HP will provide a replacement Hard Disk Drive if the Notebook warranty is Active, If not you need buy a SATA Hard Disk Drive from a retail shop nearby
    Please make sure you are getting at least equal capacity as the original one in order to use Recovery Disks. If you need you can buy a larger, but not smaller capacity Hard Disk Drive. For example if you have a 500GB Hard Disk Drive you can upgrade it to 750GB Hard Disk Drive but not 320GB Hard Disk Drive
    Please try the below shown troubleshooting steps once:
    Step 01. Remove the battery and unplug the AC/Power Adapter
    Step 02. Press and hold the Power button for more than 30 Seconds
    Step 03. Plug in the AC/Power Adapter (leave the Battery out for now)
    Step 04. Press the Power button and check if the Unit works normal
    If the above mentioned steps does not help, then you can try reseating the Hard Drive on your Notebook
    If the issue persists again please Contact HP if your HP Notebook is under warranty, HP would replace the Hard Disk Drive and provide you a Recovery media to restore factory operating system after replacement (if you've not yet created Recovery Discs/USB Media)
    Note: Back up all the personal data to an external drive if it's possible. Otherwise you could connect the failed HDD via SATA to USB adapter with another PC or same PC after replacement of HDD & re-installation of OS and try copying /recovering the files.
    Please click on the link In order to Identify, Prevent, Diagnose & Recover from Drive Failures on HP Notebook Hard Drives & Solid State Drives :
    http://h10032.www1.hp.com/ctg/Manual/c02876562.pdf
    Please check your notebook warranty to verify the status and order a new Hard Disk Drive
    Hope this helps, for any further queries reply to the post and feel free to join us again
    **Click the KUDOS star on left to say Thanks**
    Make it easier for other people to find solutions by marking a Reply 'Accept as Solution' if it solves your problem.
    Thank You,
    K N R K
    Although I am an HP employee, I am speaking for myself and not for HP

  • HP Pavilion dv-4087CL Notebook receiving : Boot Device Not Found-Please install an operating system

    My Duaghter is out of the country studing abroad.  Her PC would no longer boot up so she took it to a support shop. They replaced her hard drive, fixed an over heating issue and reloaded her PC.  Now she is getting this new error message and she is desparate to get this fixed.  We have owned this PC for only 2 years. I am sure it is out of support.
    HP Pavilion dv-4087CL Notebook receiving : Boot Device Not Found-Please install an operating system on your hard disk.
    She took it back to the support shop and they upgraded her bios, but that did not fix the error message.
    Please help!  What can she do  now.

    Hi:
    Normally that means the hard drive failed.
    I know it was replaced but maybe the replacement drive went out too.
    There is a hard drive diagostics tool your daughter can run in the BIOS.
    I suggest she run it (enter the BIOS by tapping the F10 key as soon as she sees the HP welcome screen).
    Then once in the BIOS, there should be a diagnostics menu..one for memory and one for the hard drive.
    She should select the hard drive diagnostics application and see what it reports.
    Then go from there based on what is reported.
    Paul

  • My lap top says boot device not found please install an operating system on your hard disk

    I was on yahoo and page froze. I hit alt/ctrl/delete and nothing happened. I then hit ctrl/esc. I now have a screen saying boot device not found. please install an operating system on your hard disk. hard disk (3FO) What did I do wrong? this is a Compaq presario CQ56-112 NR Notebook Windows 7
    This question was solved.
    View Solution.

    I would suggest going to the following link and going through the listed troubleshooting steps based on your symptoms:
    http://h10025.www1.hp.com/ewfrf/wc/document?docnam​e=c01443371&cc=ad&dlc=en&lc=en&jumpid=reg_r1002_us​...
    I am an HP employee.
    Please post rather than sending a Private Message. It's good for the community and I might not be able to get back quickly.- Thank you.
    Please click the White Kudos star on the left to say thanks.
    Please mark Accept As Solution if this resolves your issue.

Maybe you are looking for

  • Data extraction is taking long time

    Hi, I am extracting data into infocube from datamart. it's fullupload and almost extracting 24lack records. generally it should take less than time but taking more than 6 hours to upload. data selection and scheduling is happening correctely but ackn

  • Mobile account doesn't complete initial creation and sync process

    I'm trying to setup a mobile account for a network account but it won't complete the sync process on the client MacBook Pro. Both the server and the MacBook Pro are running 10.5.5. When I login to client it prompts me to create a Mobile account and p

  • How do I link to a spreadsheet (Numbers) from a word file (Pages)?

    I'm doing an assignment for a computers class that is based more around Windows applications than Mac applications. The assignment itself is quite easy, except that I need to link to a spreadsheet that I completed previously. However, whenever I atte

  • My iphone 4s will not sync with my 2010 Ford escape

    After going through the pairing process, it says it's connected, but the wheel keeps spinning.  When I try to use the phone, the car display say's "no phone found."  It worked fine with my Blackberry, but not with my iphone.

  • Problems with quality in iDVD

    I've been trying to burn a DVD using iDVD. I created a several videos in iMovie HD at 720p Quality. All of them look great in iMovie and are excellent quality when exported to .mov files, but when I place these iMovie projects (or the .mov files) int