Weblogic sample doesn't work properly ( failed to serialize ) ?

Dear all,
I am running the sample dom.zip which doesn't run properly from http://dev2dev.bea.com/direct/webservice/index.html.
Server
=======================================================
package examples.dom;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
public final class EchoDom {
public Document echoDom(Document doc) {
System.out.println("The dom on the server is[");
weblogic.xml.babel.stream.DOMInputStream.printNode((Node) doc);
System.out.println("]");
return doc;
Client
=======================================================
package examples.dom;
import java.util.ArrayList;
import java.util.List;
import java.util.jar.JarFile;
import java.util.zip.ZipEntry;
import javax.xml.rpc.Call;
import javax.xml.rpc.ParameterMode;
import javax.xml.rpc.Service;
import javax.xml.rpc.ServiceFactory;
import javax.xml.namespace.QName;
import javax.xml.rpc.handler.HandlerInfo;
import javax.xml.rpc.handler.HandlerRegistry;
import javax.xml.soap.SOAPConstants;
import weblogic.xml.stream.XMLInputStream;
import weblogic.xml.stream.XMLInputStreamFactory;
import weblogic.xml.schema.binding.TypeMapping;
import weblogic.xml.schema.binding.TypeMappingFactory;
import weblogic.utils.Debug;
import weblogic.apache.xerces.parsers.DOMParser;
import java.util.ArrayList;
import org.w3c.dom.Node;
import org.w3c.dom.Document;
import org.w3c.dom.Comment;
import org.w3c.dom.NodeList;
import org.w3c.dom.ProcessingInstruction;
import org.w3c.dom.NamedNodeMap;
import org.xml.sax.InputSource;
* @author Copyright (c) 2002 by BEA Systems. All Rights Reserved.
public final class Client {
public static Document getDocument(String filename)
throws Exception
DOMParser parser = new DOMParser();
parser.setFeature( "http://apache.org/xml/features/dom/defer-node-expansion",
false );
parser.setFeature( "http://xml.org/sax/features/validation",
false);
parser.setFeature( "http://xml.org/sax/features/namespaces",
true);
parser.setFeature( "http://apache.org/xml/features/validation/schema",
true);
parser.parse(weblogic.xml.babel.baseparser.SAXElementFactory.createInputSource(filename));
Document doc =parser.getDocument();
return doc;
public static void main( String[] args ) throws Exception{
Dom d = new Dom_Impl("http://localhost:7001/dom/EchoDomService?WSDL");
DomPort port = d.getdomPort();
Document request = getDocument(args[0]);
weblogic.xml.babel.stream.DOMInputStream.printNode((Node) request);
try {
Document newDoc = port.echoDom(request);
weblogic.xml.babel.stream.DOMInputStream.printNode((Node) newDoc);
} catch (javax.xml.rpc.JAXRPCException e) {
System.out.println(e.getLinkedCause());
e.getLinkedCause().printStackTrace();
Run-time Exception
=========================================================
C:\JDEV903\jdk\bin\javaw.exe -ojvm -classpath C:\MyStudy\java\WS3\classes;D:\bea\weblogic700\server\lib\webserviceclient+ssl.jar;D:\bea\weblogic700\server\lib\weblogic.jar;C:\JDEV903\jdev\lib\jdev-rt.jar;C:\JDEV903\soap\lib\soap.jar;C:\JDEV903\lib\xmlparserv2.jar;C:\JDEV903\jlib\javax-ssl-1_2.jar;C:\JDEV903\jlib\jssl-1_2.jar;C:\JDEV903\j2ee\home\lib\activation.jar;C:\JDEV903\j2ee\home\lib\mail.jar;C:\JDEV903\j2ee\home\lib\http_client.jar;C:\JDEV903\lib\xmlparserv2.jar;C:\JDEV903\lib\xmlcomp.jar;C:\MyStudy\java\1\dom\client.jar
-Dweblogic.webservice.verbose=true wl.client.wsServletClient
java.rmi.RemoteException: web service invoke failed; nested exception is:
javax.xml.soap.SOAPException: failed to serialize xml:weblogic.xml.schema.binding.SerializationException:
type mapping lookup failure on class=class weblogic.apache.xerces.dom.DeferredDocumentImpl
TypeMapping=TYPEMAPPING SIZE=0
javax.xml.soap.SOAPException: failed to serialize xml:weblogic.xml.schema.binding.SerializationException:
type mapping lookup failure on class=class weblogic.apache.xerces.dom.DeferredDocumentImpl
TypeMapping=TYPEMAPPING SIZE=0
     void weblogic.webservice.core.DefaultPart.toXML(javax.xml.soap.SOAPElement, java.lang.Object,
weblogic.xml.schema.binding.SerializationContext, boolean, javax.xml.rpc.encoding.TypeMapping)
          DefaultPart.java:260
     void weblogic.webservice.core.DefaultMessage.toXML(javax.xml.soap.SOAPMessage,
java.lang.Object[])
          DefaultMessage.java:455
     java.lang.Object weblogic.webservice.core.DefaultOperation.invoke(java.util.Map,
java.lang.Object[], java.io.PrintStream)
          DefaultOperation.java:403
     java.lang.Object weblogic.webservice.core.DefaultOperation.invoke(java.util.Map,
java.lang.Object[])
          DefaultOperation.java:359
     java.lang.Object weblogic.webservice.core.rpc.StubImpl._invoke(java.lang.String,
java.util.Map)
          StubImpl.java:225
     java.lang.Object examples.dom.EchoDomServicePort_Stub.echoDom(java.lang.Object)
          EchoDomServicePort_Stub.java:33
     void wl.client.wsServletClient.main(java.lang.String[])
          wsServletClient.java:78
Process exited with exit code 0.
Please help.
mindterm

Hello,
I just save the dom example a spin and it worked OK for me. RU using the latest service pack? Does the dom.ear build correctly and deploy on the server without errors? Can U see the webservice test page from http://localhost:7001/dom/EchoDomService ?
Thanks,
Bruce
mindterm wrote:
Dear all,
I am running the sample dom.zip which doesn't run properly from http://dev2dev.bea.com/direct/webservice/index.html.
Server
=======================================================
package examples.dom;
import org.w3c.dom.Document;
import org.w3c.dom.Node;
public final class EchoDom {
public Document echoDom(Document doc) {
System.out.println("The dom on the server is[");
weblogic.xml.babel.stream.DOMInputStream.printNode((Node) doc);
System.out.println("]");
return doc;
Client
=======================================================
package examples.dom;
import java.util.ArrayList;
import java.util.List;
import java.util.jar.JarFile;
import java.util.zip.ZipEntry;
import javax.xml.rpc.Call;
import javax.xml.rpc.ParameterMode;
import javax.xml.rpc.Service;
import javax.xml.rpc.ServiceFactory;
import javax.xml.namespace.QName;
import javax.xml.rpc.handler.HandlerInfo;
import javax.xml.rpc.handler.HandlerRegistry;
import javax.xml.soap.SOAPConstants;
import weblogic.xml.stream.XMLInputStream;
import weblogic.xml.stream.XMLInputStreamFactory;
import weblogic.xml.schema.binding.TypeMapping;
import weblogic.xml.schema.binding.TypeMappingFactory;
import weblogic.utils.Debug;
import weblogic.apache.xerces.parsers.DOMParser;
import java.util.ArrayList;
import org.w3c.dom.Node;
import org.w3c.dom.Document;
import org.w3c.dom.Comment;
import org.w3c.dom.NodeList;
import org.w3c.dom.ProcessingInstruction;
import org.w3c.dom.NamedNodeMap;
import org.xml.sax.InputSource;
* @author Copyright (c) 2002 by BEA Systems. All Rights Reserved.
public final class Client {
public static Document getDocument(String filename)
throws Exception
DOMParser parser = new DOMParser();
parser.setFeature( "http://apache.org/xml/features/dom/defer-node-expansion",
false );
parser.setFeature( "http://xml.org/sax/features/validation",
false);
parser.setFeature( "http://xml.org/sax/features/namespaces",
true);
parser.setFeature( "http://apache.org/xml/features/validation/schema",
true);
parser.parse(weblogic.xml.babel.baseparser.SAXElementFactory.createInputSource(filename));
Document doc =parser.getDocument();
return doc;
public static void main( String[] args ) throws Exception{
Dom d = new Dom_Impl("http://localhost:7001/dom/EchoDomService?WSDL");
DomPort port = d.getdomPort();
Document request = getDocument(args[0]);
weblogic.xml.babel.stream.DOMInputStream.printNode((Node) request);
try {
Document newDoc = port.echoDom(request);
weblogic.xml.babel.stream.DOMInputStream.printNode((Node) newDoc);
} catch (javax.xml.rpc.JAXRPCException e) {
System.out.println(e.getLinkedCause());
e.getLinkedCause().printStackTrace();
Run-time Exception
=========================================================
C:\JDEV903\jdk\bin\javaw.exe -ojvm -classpath C:\MyStudy\java\WS3\classes;D:\bea\weblogic700\server\lib\webserviceclient+ssl.jar;D:\bea\weblogic700\server\lib\weblogic.jar;C:\JDEV903\jdev\lib\jdev-rt.jar;C:\JDEV903\soap\lib\soap.jar;C:\JDEV903\lib\xmlparserv2.jar;C:\JDEV903\jlib\javax-ssl-1_2.jar;C:\JDEV903\jlib\jssl-1_2.jar;C:\JDEV903\j2ee\home\lib\activation.jar;C:\JDEV903\j2ee\home\lib\mail.jar;C:\JDEV903\j2ee\home\lib\http_client.jar;C:\JDEV903\lib\xmlparserv2.jar;C:\JDEV903\lib\xmlcomp.jar;C:\MyStudy\java\1\dom\client.jar
-Dweblogic.webservice.verbose=true wl.client.wsServletClient
java.rmi.RemoteException: web service invoke failed; nested exception is:
javax.xml.soap.SOAPException: failed to serialize xml:weblogic.xml.schema.binding.SerializationException:
type mapping lookup failure on class=class weblogic.apache.xerces.dom.DeferredDocumentImpl
TypeMapping=TYPEMAPPING SIZE=0
javax.xml.soap.SOAPException: failed to serialize xml:weblogic.xml.schema.binding.SerializationException:
type mapping lookup failure on class=class weblogic.apache.xerces.dom.DeferredDocumentImpl
TypeMapping=TYPEMAPPING SIZE=0
void weblogic.webservice.core.DefaultPart.toXML(javax.xml.soap.SOAPElement, java.lang.Object,
weblogic.xml.schema.binding.SerializationContext, boolean, javax.xml.rpc.encoding.TypeMapping)
DefaultPart.java:260
void weblogic.webservice.core.DefaultMessage.toXML(javax.xml.soap.SOAPMessage,
java.lang.Object[])
DefaultMessage.java:455
java.lang.Object weblogic.webservice.core.DefaultOperation.invoke(java.util.Map,
java.lang.Object[], java.io.PrintStream)
DefaultOperation.java:403
java.lang.Object weblogic.webservice.core.DefaultOperation.invoke(java.util.Map,
java.lang.Object[])
DefaultOperation.java:359
java.lang.Object weblogic.webservice.core.rpc.StubImpl._invoke(java.lang.String,
java.util.Map)
StubImpl.java:225
java.lang.Object examples.dom.EchoDomServicePort_Stub.echoDom(java.lang.Object)
EchoDomServicePort_Stub.java:33
void wl.client.wsServletClient.main(java.lang.String[])
wsServletClient.java:78
Process exited with exit code 0.
Please help.
mindterm

Similar Messages

  • My app store doesn't work at all....safari doesn't work properly....it shows something like super fish....if i try to login to app store it shows connection failed. i wanted to re install osx or install yosemite beta

    my app store doesn't work at all....safari doesn't work properly....it shows something like super fish....if i try to login to app store it shows connection failed. i wanted to re install osx or install yosemite beta

    HI ..
    The only way to reinstall OS X on a Mac already running v10.9 is to use OS X Recovery.
    Starrtup your Mac while holding down the Command + R keys.
    From there you should be able to access the built in utilities to repair the startup disk and reinstall OS X.
    Please read >  OS X Recovery

  • Satellite Pro L20 doesn't work properly with USB Fast Track audio i.f.

    Hello!
    I have used my Fast Track USB on new Toshiba Satellite L40 and I never had problems with it. I could set low latency and I did few songs with it.
    Yesterday I bought another notebook, thinking of home recording studio. It's used Toshiba Satellite Pro L20. It doesn't work properly with my interface. When I listen music on Winamp or do anything on Fruity Loops I hear loud clicks, pops, noises. They introduce samples, or they appear during playback or after a sample is stopped.
    I noticed, drivers for Satellite Pro L20 are a problem. Its not supported by Toshiba anymore?! The only drivers for chipset are very old and you can download em only from Toshiba website. The chipset is ATI Xpress 200M. Its drivers are with graphic card. Recently I noticed you can download "ATI Catalyst Legacy Display Driver for Windows XP - Motherboard/IGP Drivers 9.11" and CRACK IT to make it possible to install on mobile unit such as L20. Yep its funny but its impossible to do otherwise!
    things I have tried and they still not help:
    # drivers replacement, original were released in 2004. I installed recent version.
    # driver settings, low latency, high latency
    # asio and different settings
    # pluging the interface to another usb socket.
    # trying what happens when I use battery and when I use adapter
    # updated bios
    # turned off onboard units such as wifi card, sound card
    # checked IRQ list
    pops still appear.
    my config:
    Toshiba Satellite Pro L20
    Win XP Home SP3
    Celeron M 1,5GHz
    896Mb ram
    M-Audio Fast Track USB, drivers: 6.0.2
    Kind regards

    Thanks for answer. I still have L40 but I try to run my homerecording on L20. The L40 is now used by whole my family. It's possible to swap them but there's a problem - L20 has Norway keyboard and I'm the only person at home who doesn't often look down while typing. In Poland, we use standard ms keyboard. I'd buy special stickers, it's about only to make special chars get back to their places.
    I installed Windows on this computer end set it to best performance possible.
    Since I created this thread, guys from M-Audio support tried to solve my problem - nothing helped. I think potential solutions are exhausted.
    Message was edited by: lidia.pochron

  • Parsing in Weblogic/jsp doesn't work; application-mode (command-line) works

    Hello-
    Parsing my XML file in Weblogic/jsp doesn't work, whereas it works
    in application-mode... (albeit on two different machines)
    Here are the parameters:
    server1:
    weblogic 6.0
    win2k server
    jre1.3
    my personal machine:
    ***no weblogic***
    win2k server
    jre1.3
    When I run my code as an application (command-line style) on my machine,
    parsing in my xml file works fine, and I can do a root.toString() and it
    dumps out the entire xml file, as desired.
    However, running my code inside weblogic (on server1) in JSP, parsing in
    my file and doing a root.toString() results in the following: [dmui: null]
    (where dmui is my root)
    (even though i'm running it on two different machines, i'm positive its the
    same code (the servers share a mapped drive)...
    So, I think its probably because I'm using a different parser, as
    specified by weblogic? There are no exceptions being thrown. Here's my
    (abbreviated) code, which is called either command line style or in a JSP:
    // Imports
    import org.w3c.dom.*;
    import org.w3c.dom.Document;
    import javax.xml.parsers.*;
    import javax.xml.parsers.DocumentBuilderFactory;
    import javax.xml.parsers.DocumentBuilder;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    DocumentBuilderFactory docBuilderFactory =
    DocumentBuilderFactory.newInstance();
    DocumentBuilder docBuilder = docBuilderFactory.newDocumentBuilder();
    mDocument = docBuilder.parse (inFile);
    myRoot.toString()
    -END
    Doing a System.getProperty("javax.xml.parsers.DocumentBuilderFactory")
    results in:
    server1 (weblogic/jsp):
    "weblogic.apache.xerces.jaxp.DocumentBuilderFactoryImpl"
    my machine (application-mode):
    null
    Does anyone have any ideas about how to get this work? Do I try to set it
    up so that they both use the same parser? Do I change the Weblogic parser?
    If so, to what? And how?
    Am I even close?
    Any help would be appreciated..
    Thanks, Clint
    "[email protected]" <[email protected]> wrote in message
    news:[email protected]...
    No problem, glad you got it worked out :)
    ~Ryan U.
    Jennifer wrote in message <[email protected]>...
    I completely missed setting the property(:-o), foolish mistake. That wasit. Thanks.
    "j.upton" <[email protected]> wrote:
    Jennifer,
    Personally I would get rid of import com.sun.xml.parser.* and use xerces
    which comes with WLS 6.0 now, unless like I said earlier you have a need
    to
    use the sun parser :) Try something like this with your code --I've put
    things to watch for as comments in the code.
    import javax.xml.parsers.*;
    import org.xml.sax.SAXException;
    import org.w3c.dom.*;
    import java.io.FileInputStream;
    public class BasicDOM {
    public BasicDOM (String xmlFile) {
    try{
    FileInputStream inStream;
    Document document;
    /*You must specify a parser for jaxp. You can in a simple view
    think
    of this as being analogous to a driver used by JDBC or JNDI. If you are
    using this in the context of a servlet or JSP and have set an XML
    registry
    with the console this happens automatically. You can also invoke it in
    the
    context of an application on the command line using the -D switch. */
    System.setProperty("javax.xml.parsers.DocumentBuilderFactory",
    >>>
    "weblogic.apache.xerces.jaxp.DocumentBuilderFactoryImpl");
    // create a document factory
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    // specify validating or non-validating parser
    dbf.setValidating(true);
    // obtain a factory
    DocumentBuilder db = dbf.newDocumentBuilder();
    // create a document from the factory
    inStream = new FileInputStream(xmlFile);
    document = db.parse(inStream);
    }//try
    catch (Exception e)
    System.out.println("Unexpected exception reading document!"
    +e);
    System.exit (0);
    }//catch
    }//BasicDom
    // Main Method
    public static void main (String[] args) {
    if (args.length < 1)
    System.exit(1); file://or you can be more verbose
    new BasicDOM(args[0]);
    }//class
    =============================================
    That will give you a basic DOM you can manipulate and parse it fromthere.
    BTW this code
    compiled and ran on WLS 6.0 under Windows 2000.
    Let me know if this helped or you still are having trouble.
    ~Ryan U.
    "Jennifer" <[email protected]> wrote in message
    news:[email protected]...
    Actually I included com.sun.xml.parser.* as one last febble attempt toget
    it working.
    And as for source code, I included the code. If I just put that oneline
    of code
    in, including the imports, it fails giving me an error listed above inthe
    subject
    line. Here is the code again:
    package examples.xml.http;
    import javax.xml.parsers.*;
    import org.xml.sax.SAXException;
    import org.xml.sax.SAXParseException;
    import org.w3c.dom.*;
    import java.util.*;
    import java.net.*;
    import org.xml.sax.*;
    import java.io.*;
    public class BasicDOM {
    static Document document;
    public BasicDOM (String xmlFile) {
    try {
    DocumentBuilderFactory dbf = DocumentBuilderFactory.newInstance();
    } catch (FactoryConfigurationError e){
    System.err.println(e.getException());
    e.printStackTrace();
    // Main Method
    public static void main (String[] args) {
    BasicDOM basicDOM = new BasicDOM (args[0]);

    Hi, Rob
    Does it work in WL9.2?
    It seems I do it exactly as the explained at http://edocs.bea.com/wls/docs81/programming/classloading.html - and it fails :o(.
    I try to run my app.ear with WL9.2 There are 2 components in it: webapp and mdb. The webapp/WEB-INF contains weblogic.xml:
    <weblogic-web-app>
    <container-descriptor>     
    <prefer-web-inf-classes>true</prefer-web-inf-classes>
    </container-descriptor>
    </weblogic-web-app>
    Mdb is expected to run in the same mode, i.e. to prefer the webapp/WEB-INF/*.jar over the parent Weblogic classloader. To do so I add the weblogic-application.xml to the app.ear!/META-INF:
    <weblogic-application>
    <classloader-structure>
    <module-ref>
    <!-- reminder: this webapp contains
    prefer-web-inf-classes -->
    <module-uri>webapp</module-uri>
    </module-ref>
    <classloader-structure>
    <module-ref>
    <module-uri>mdb.jar</module-uri>
    </module-ref>
    </classloader-structure>
    </classloader-structure>
    </weblogic-application>
    Now, when classloader-structure specified, both webabb and mdb prefer the weblogic root loader as if prefer-web-inf-classes not defined at all.

  • Since updating to Mavericks, Mail doesn't work properly.  It just stops working (no error messages--it just won't check for new mail) and I must shut it down and reopen it to get it working again.  Any suggestions?

    Since updating to Mavericks, Mail doesn't work properly.  It just stops working (no error messages--it just won't check for new mail) and I must shut it down and reopen it to get it working again.  Any suggestions?

    Try to force quit the mail app
    Double tap the home button. When you see the app previews on the screen scroll sideways if needed to get the preview in question on the screen. Flick that preview up and off the screen to close the app. Single tap the home button or home screen preview to exit the mode.
    Failing that, go into the settings, mail, contacts and calendars and remove your account info then put it back in and see if that works

  • Selecting with colour range doesn't work properly

    Well, at least to me it doesn't work properly.  If I have elements on seperate levels and I use the colour range option to select the area, it works on all the levels, not just the level I have selected.  That's not what I want!  I only want it to select the colour range on that one level.  The work around is to manually turn off other levels, but on a  file with lots of levels, that can be tedious.  Can this be avoided?  Incidentally, magic wand works only on the selected level, but not colour range (or color range, if you are American).

    Aha! You are correct. Layers above the target layer are still being sampled when sampling is at "Current Layer".
    That has to be a bug. The Eye Dropper Tool itself does work correctly, though.
    I'm about to report another problem, so I'll report this one, too.
    Edit: Looking again, I don't think there is a bug.
    It seems to not be that the higher layer is seen when sampling "Current Layer", which is correct and the same as when the Eye Dropper Tool itself is use. However, the pixels of the visible composite are then evaluated to determine the regions to be selected. I guess that's correct behaviour and you will have to do the Alt-click on eye trick to completely ignore all other layers.

  • Safari doesn't work properly with Ebay

    Safari doesn't work properly when listing items on Ebay. Fix it.

    Hi Occo
    I would rather Apple updates Safari
    Then tell Apple, this a user to user forum, although I don't think Apple will update just for your problem as hardly anybody is experiencing the same issue, just a couple on this troubleshooting forum.
    this IS NOT A EBAY PROBLEM
    Please don't use all caps, it is considered shouting. No this may well not be an ebay problem, but it is not a Safari issue either, it is an issue on your Safari and on your computer. Everyone I know has no trouble with ebay at all. In fact Safari 4.0.4 has made it even faster to log in and browse, buy etc.
    id rather apple fixed their software
    Again, tell Apple, not us, through the Apple feedback page or file a bug report. They will update Safari if and when they decide, but it will not be to fix what is not broken.
    Im sure there would be similiar sites that arent compatible with safari
    I agree, as stated before that some sites are just lazy in updating their coding, usually not the high traffic sites though. Other sites only update their code for Windows IE and forget the rest of the world. Firefox, Opera, Camino etc. also can't access some sites.
    So in conclusion, try Safari and OSX maintenance and if that fails, then try an archive and install. Because there is nothing wrong with Safari 4.0.4 and ebay, or else this forum would be inundated with thousands upon thousands of users complaining and that is not the case.
    Cheers and Good Luck

  • Search in Outlook 2010 with Exchange Server 2010 doesn't work properly

    Hi all,
    I have a problem with a clients Exchange 2010. Search function in Outlook 2010 doesn't work properly, the employee can't search mails and contact - he doesn't get any result :-(
    In application syslog/protocol I get this error:
    Function  'CISearch::EcGetRowsetAndAccessor' found, content indexing for database  'Mailbox Database 0139257080' caused by MSSearch-Error '0x80041820' deactivated
    Can anybody help me with this, if its necessary I can give further information :-)
    Thomas
    Thomas Deinert

    Hi,
    What’s Exchange Version? Sometimes, after Installing Exchange 2010 SP 1, Searching via OWA or Outlook Online Mode may Fail. If so, please try the following solution:
    Download the script
    Repair-ExchangeSearchSymlinks.ps1 from the Script Center.
    Copy the Repair-ExchangeSearchSymlinks.ps1 script to the Scripts directory on the Mailbox server (default installation is C:\Program Files\Microsoft\Exchange Server\v14\Scripts).
    On the afflicted Mailbox server, open the Exchange Management Shell by right-clicking the shortcut and selecting “Run as Administrator”.
    Within the Exchange Management Shell, navigate to the Exchange Scripts directory.
    Within the Exchange Management Shell, run the following script: .\Repair-ExchangeSearchSymlinks.ps1
    Within the Exchange Management Shell, run the following script (without the symbols [] and substitute the database name(s) for any databases you wish to reset: .\ResetSearchIndex.ps1 [-force] <dbname> [<dbname>]...
    You will receive an Event ID 109 when the rebuilding of the index starts for each database and an Event ID 110 for each database when the index rebuild has completed.
    After receiving Event ID 110 for each database, test to make sure search functions correctly with both OWA and Outlook operating in Online Mode.
    Similar thread:
    https://social.technet.microsoft.com/Forums/exchange/en-US/35db030c-277f-49d6-83d6-772f839a47f8/owa-2010-sp1-search-problems?forum=exchange2010
    Best Regards.

  • Iphone 5 update to IOS7.0.2: on/off button doesn't work properly

    Since I updated my iphone5 to IOS 7.0.2 the on/off button doesn't work properly. When i try to restart it, it takes pictures from desktop and fails constantly

    Hey rcaudillo,
    Thanks for the question. I understand you are experiencing issues with your Sleep/Wake button. The following article outlines some troubleshooting steps:
    iPhone: Hardware troubleshooting
    http://support.apple.com/kb/TS2802
    Sleep/Wake button will not lock or unlock iPhone
    1. To lock the phone, press the Sleep/Wake button. Note: By default, if you don't touch the screen for a minute, iPhone locks automatically.
    2. To unlock iPhone, press the Home button or the Sleep/Wake button, then slide the slider.
    3. If either of the above steps don't work, try turning iPhone off and then on again.
    4. If the iPhone will not power off, reset it.
    5. Try to lock or unlock the phone.
    If you continue to have issues, we may need to isolate the issue further to determine if it is hardware related. The best way to do this would be to restore your iPhone as new:
    iTunes: Restoring iOS software
    http://support.apple.com/kb/HT1414
    Thanks,
    Matt M.

  • My palm m105's touch screen doesn't work properly after a sync.

    I dug out my old m105, put new batteries in and start it. On first launch it auto runs the alignment tool, and after touching all the points it goes to the main screen and works fine. No problem till here.
    Now, I plug it into my old computer which still has the palm software with my apps, and I run the sync operation (from the palm device sync manager, cause I lost my cradle and I'm connected via the serial cable), and it syncs fine BUT, here comes the problem, when it finishes the sync (successfully) the touch screen is all misaligned. I can't go back to the home screen or do anything useful.
    My palm m105's touch screen doesn't work properly after a sync.
    I dug out my old m105, put new batteries in and start it. On first launch it auto runs the alignment tool, and after touching all the points it goes to the main screen and works fine. No problem till here.
    Now, I plug it into my old computer which still has the palm software with my apps, and I run the sync operation (from the palm device sync manager, cause I lost my cradle and I'm connected via the serial cable), and it syncs fine BUT, here comes the problem, when it finishes the sync (successfully) the touch screen is all misaligned. I can't go back to the home screen or do anything useful.
    Thanks in advance!
    Post relates to: Palm m105
    Post relates to: Palm m105

        Maldoman578,
    Let's help solve this mystery together! Is your screen freezing after every reboot? Is there any physical/liquid damage on the device? When did this issue begin? Did you notice this after a recent update or application download?
    EfrainM_VZW
    Follow us on Twitter @VZWSupport

  • My Safari doesn't work properly after installing Lion.  Don't like it, how can I uninstall? (Cloud not worth it)?

    I upgraded ti Lion 10.7.2 for icloud but it's causing other problems with my mac.  My Safari doesn't work properly anymore.  Wishing I didn't upgrade, anyone know how to fix this or do i just have to uninstall?  Thanks,

    Wipe the drive clean and install Snow Leopard from your install disk.
    Might be less work fixing Safari. Try Resetting Safari.

  • I have an iphone 3GS and I have upgraded it to iOS 6. Since then it doesn't work properly. Every now and then it has been restarting by itself and requiring restore. When I connect it to itunes it restarts again and again. Is there any solution?

    I have an iphone 3GS and I have upgraded it to iOS 6. Since then it doesn't work properly.
    Every now and then it has been restarting by itself and requiring restore. When I connect it to itunes it restarts again and again without letting me take any action. Is there any solution?

    Hey, There are afew things you can try.
    - Simply turn your phone off and back on again
    - Hold down your home button and your lock button and let goes as soon as the screen goes black (Phone will power down) - Then turn on your phone and hey presto!
    - Back up your iPhone to your PC, then restore it..
    this ones last cause I think you may have tried it already..
    - Close all open applications
    Hope this helps!
       Kieran.

  • HT1923 The sync function on my iPod Touch 3rd generation doesn't work properly.  My OS is up to date, but some of my podcasts won't transfer onto the iPod, and it won't delete ones I've already listened to.

    The sync function on my 3rd gen iPod Touch doesn't work properly.  It won't sync all the podcasts I've downloaded, and it won't delete ones I've listened to and deleted on iTunes.

    Close your iTunes,
    Go to command Prompt -
    (Win 7/Vista) - START/ALL PROGRAMS/ACCESSORIES, right mouse click "Command Prompt", choose "Run as Administrator".
    (Win XP SP2 &amp; above) - START/ALL PROGRAMS/ACCESSORIES/Command Prompt
    In the "Command Prompt" screen, type in
    netsh winsock reset
    Hit "ENTER" key
    Restart your computer.
    If you do get a prompt after restart windows to remap LSP, just click NO.
    Now launch your iTunes and see if it is working now.
    If you are still having these type of problems after trying the winsock reset, refer to this article to identify which software in your system is inserting LSP:
    iTunes 10.5 for Windows: May see performance issues and blank iTunes Store
    http://support.apple.com/kb/TS4123?viewlocale=en_US

  • What can I do if my CD or DVD drive doesn't work properly in Windows 8?

    QuestionWhat can I do when if my laptop CD or DVD drive doesn't work properly in Windows 8?
    AnswerNote: For help with this issue in Windows 7, please see this article.
    To get your CD or DVD drive working correctly, try these suggestions in the order listed.
    Reinstall the Driver
    Hold the Windows key and press the 'x' key to open a menu in the lower-left. In this menu, select "Device Manager." Expand "DVD/CD-ROM drives." Right-click the entry for the CD/DVD drive nested under "DVD/CD-ROM drives," then select "Uninstall." Finally, restart the computer. The computer will reinstall the drivers for the drive.
    Power Cycle
    Even when your laptop is off and unplugged, residual power can still be held in some components. While this is normal, clearing it can help with some hardware problems. Perform these steps to complete what’s called a power cycle.
    Ensure the laptop is turned off.
    Unplug the laptop's AC power cable.
    Unplug all wires and peripherals. This includes CDs, DVDs, USB sticks, mice, printers, and any other accessories.
    Remove the battery (if the model has a removable battery). If the model does not have a removable battery, check your user's guide to determine if you have a pinhole reset on the bottom. If you do, press this.
    Hold down the power button for thirty seconds.
    Reattach the battery if removed.
    Connect the AC adaptor to the power socket that was confirmed to be working in the first step.
    Connect the other end of the AC adaptor to your computer.
    Start the computer and test the drive
    Microsoft Fix-it
    Your computer may exhibit one or more of the following symptoms:
    Your CD or DVD drive no longer appears in Windows
    Your CD or DVD drive does not read or write and is shown as disabled
    The media in your CD or DVD drive cannot be read
    The media cannot be written to a CD or DVD inserted into the drive
    You receive an error message about your CD or DVD drive
    If any of these symptoms apply to your computer, use Microsoft Fix-it troubleshooter available here.
    System Restore
    Try using System Restore to restore to the most restore point from before the problem arose.
    How To: Understanding System Restore, Refresh, Reset, and, Recovery options in Windows 8 + Video
    System Recovery
    If the System Restore doesn't solve the issue, you could try a System Reset. Resetting your laptop to its original, out-of-the-box state is a great way to eliminate software as a possible cause of the problem. Note that doing a system reset will return the laptop to its default conditions, completely wiping your data. Information on how to perform a system recovery can be found in your user's guide.
    For more information on performing a recovery, see the following article:
    How To: Understanding System Restore, Refresh, Reset, and, Recovery options in Windows 8 + Video
    Contact Customer Support
    If the drive doesn't work after performing a recovery, it may be due to hardware failure. Please call customer support or seek servicing.

    See this Microsoft article - http://support.microsoft.com/kb/314060/en-us  For ways to fix manually
    and/or use the proper microsoft fixit 8.1 and 8 or the other one for Windows 7, Vista, and XP listed below.
    (these are from the Microsoft article)
    Resolution 2: Use the CD/DVD Fix it troubleshooter
    To automatically fix common issues with CD or DVD drives, click Run now, and then follow the on-screen instructions. Windows 8.1 and Windows 8   
    The Automatically diagnose and fix common problems with CD or DVD drives troubleshooter may automatically fix the problem described in this article.
                                    This troubleshooter fixes many problems. learn more
    Run now
    Windows 7, Windows Vista and Windows XP
    The Automatically diagnose and fix common problems with CD or DVD drives troubleshooter may automatically fix the problem described in this article.
                                    This troubleshooter fixes many problems. learn more
    Run now
    If your problem is not solved, try the next
    S70-ABT2N22 Windows 7 Pro & 8.1Pro, C55-A5180 Windows 8.1****Click on White “Kudos” STAR to say thanks!****

  • Hp laserjet P1006 doesn't work properly

    my Hp laserjet P1006 doesn't work properly on my windows 7(64-bit) and whenever I try to print a page the orange light just flashes and then the green light flashes and then it doesn't print at all.I've tryed everyway including reinstalling the software or even turning it off and then turning it on.Pleaseeeee.............help!!!!!!!!!!!

    Hello
    I understand you are no longer able to print with the P1006 on Win8.1.
    Did you uninstall the P1006 first?
    If not uninstall and reinstall the printer software again.
    Both drivers are the same if you look at the version on the website and should still work with the Win8.1.
    If you need more assistance just let me know.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

Maybe you are looking for

  • Backup failure due to Character set problem

    Hi, I am manually running a COLD backup script in Windows NT environment and all the logs has been captured below: Recovery Manager: Release 8.1.6.0.0 - Production RMAN-06005: connected to target database: db1 (DBID=754030292) RMAN-06009: using targe

  • Which Macbook Pro for Video Editing

    I'd like to buy a macbook pro for video editing on the go and with all the available features, I can't tell which is best. I use final cut pro 7 and all footage is HD. RAM? 7200rpm vs. 5400 ? DUAL CORE vs. QUAD INTEL GRAPHICS? RETINA? It's all very c

  • Import grid shows no thumbnails

    I'm a long time LR user but this has really baffled me. Put a CF card into the reader and open LR5. Import dialogue shows there is a card but there are no thumbnails... just message saying No images to display. Check card and indeed there is the usua

  • Fine tuning notification center and Calendar delegates

    I have a bunch of delegates in my calander from my google calendar account all of the enabled delegates are shown in my notification center. I would like to be able to fine tune which enabled delegates are shown in my notification center because a fe

  • Making a Line into A String

    I need to make a horizontal line, a certian number of pixels long into a String or at least displayable in a label. How do you do it?