Need help on Exception hadnling in jdk1.4

hi i am working on some lotus notes validation tool. I have created menu driver program...when i run the first time with option 6..and in option 6 i got exception and i am catching properly,again i am displaying the menu..but if i select the option 6 again and i wantedly put exception... but this time program is terminating....
even exception came i want display the menu again...the program internally using the NotesThread....i think that dispaching or delegation....Migth UnhandledExceptionHandler...But i am running on 1.4
Please find the following code that i have written...help on this.
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
import lotus.domino.AdministrationProcess;
import lotus.domino.NotesException;
import lotus.domino.NotesThread;
import lotus.domino.Registration;
import lotus.domino.Session;
public class TestNotesException {
     public static void mainMenu()throws Exception{
          while (true) {
               BufferedReader reader = new BufferedReader(new InputStreamReader(
                         System.in));
               System.out.println("\nNotesTool Commands");
               int option = 0;
               System.out.println("\t1.Driver/Notes Configuration Information "
                         + "\n\t2.JVM Information"
                         + " \n\t3.Domino Server Session Information"
                         + "\n\t4.Authenticate to Domino Server"
                         + " \n\t5.Create Lotus Notes Test User"
                         + "\n\t6.Delete Lotus Notes User"
                         + "\n\t7.Open Lotus Notes Database"
                         + "\n\t8.Send Domino Console Command" + "\n\t99.Quit");
               System.out.println("Enter Command:");
                    option = Integer.parseInt(reader.readLine());
                    switch (option) {
                    case 1:
                         break;
                    case 2:
                         break;
                    case 3:
                                             break;
                    case 4:
                                             break;
                    case 5:
                         break;
                    case 6:
                         System.out
                                   .println("\n*************** DELETE THE USER *********************\n");
                         System.out
                                   .println("Please enter user's full name that you want delete:::");
                         String userName = reader.readLine();
                         System.out.println("User "
                                   + deleteUser(userName)
                                   + " is deleted from the domino Server "
                         break;
                                        case 99:
                         System.out.println("");
                         System.exit(0);
                    default:
                         System.out.println("Command not supported.Choose correct option");
     * @param args
     * @throws Exception
     * @throws Exception
     * @throws IOException
     public static void main(String[] args) {
          // TODO Auto-generated method stub
          try{
          mainMenu();
               /*} catch (NotesException e) {
                    try{
                         throw new NotesException(e.id, e.text, e.internal);
                    }catch(NotesException e1){
                         e1.printStackTrace();
                         System.out.println(e.getCause());
                         System.out.println(e.getClass());
                         System.out.println(e.internal);
                         //throw new NotesException(e.id, e.text, e.internal);
          }catch (NotesException e) {
                    System.out.println("Command not supported.Choose correct option");
               catch (NumberFormatException e) {
                    System.out.println("Command not supported.Choose correct option");
                    //throw new NotesException(e.id, e.text, e.internal);
               catch (NotesCustomException1 e) {
                    //System.out.println("Command not supported.Choose correct option");
                    //e.printStackTrace();
                    //throw new NotesException(e.id, e.text, e.internal);
               catch (Exception e) {
                    System.out.println("Command not supported.Choose correct option");
                    //throw new NotesException(e.id, e.text, e.internal);
               }finally{
                    try {
                         mainMenu();
                    } catch (Exception e) {
                         // TODO Auto-generated catch block
                         e.printStackTrace();
     private static String deleteUser(String userName) throws Exception{
          // TODO Auto-generated method stub
               NotesThread.sinitThread();
               Session NotesSess = lotus.domino.NotesFactory.createSession();
               Registration tmpNReg = NotesSess.createRegistration();
               String userName1 = tmpNReg.switchToID("C:\\Program Files\\Lotus\\Domino\\data\\admin.id", "novell");
          AdministrationProcess pAdminP = NotesSess
          .createAdministrationProcess("DomainA/NotesOrg");
          pAdminP.deleteUser(userName, true,
                    AdministrationProcess.MAILFILE_DELETE_ALL, "");
               NotesThread.stermThread();
               //throw new NotesCustomException1("sankar::::",e);
          return userName;
class NotesCustomException1 extends Exception {
     public NotesCustomException1() {
          super();
     public NotesCustomException1(String msg) {
          super(msg);
     public NotesCustomException1(String msg, Throwable t) {
          super(msg, t);
}

Of course you get a UnhandledException the deleteUser() throws a exception which you have not bothered to catch when calling it. Also, you do not have seemed to have bothered to check that the user has actually been deleted before outputting a string stating that they have. And as G.W. says click the code button before posting code. And get rid of those TODOs.

Similar Messages

  • Need help ASAP : Exception with EJB 3.0 while session.xml

    Hi,
    Kindly help on below exception, which i am getting the exception while changing the mine EJB 2.1 to 3.0.
    Exception raised while loading the session.xml, which is reffering to map file which is used by Toplink.
    **Mine EJB:**
    public class CaseSessionEJBBean implements CaseSessionEJB {
    String inBean="[CaseSessionEJBBean] ";
    private SessionFactory sessionFactory;
    public CaseSessionEJBBean() {
    this.sessionFactory =new SessionFactory("META-INF/sessions.xml", "moj");
    *private SessionFactory getSessionFactory() {*
    return this.sessionFactory;
    *}* public PagedResultList<CasedetailsDTO> searchPayment(SearchCriteriaDTO searchCriteriaDTO,Integer startIndex,Integer endIndex) throws MOJException{
    String inMethod="[searchPayment] ";
    PagedResultList pagedCaseDetailsDTOList=null;
    try{
    System.out.println("[CaseSessionEJBBean] !!!! ENTERED !!!!!");
    Session session = getSessionFactory().acquireSession();
    CaseFacade caseFacade = new CaseFacade();
    pagedCaseDetailsDTOList=caseFacade.searchPayment(session, searchCriteriaDTO,startIndex,endIndex);
    System.out.println("pagedCaseDetailsDTOList.size()="+pagedCaseDetailsDTOList.size());
    }catch(Exception e){
    e.printStackTrace();
    System.out.println("[Exception] While getting payment details:"+e);
    throw new MOJException("1001", e.getMessage(),
    "Exception occured",
    "Exception in searchPayment()",
    "searchPayment", "CaseSessionEJBBean",
    "searchPayment", e);
    return pagedCaseDetailsDTOList;
    Exception:
    Exception Description: Several [1] SessionLoaderExceptions were thrown:
    Exception [TOPLINK-9005] (Oracle TopLink - 10g Release 3 (10.1.3.3.0) (Build 070608)): oracle.toplink.exceptions.SessionLoaderException
    Exception Description: *An exception was thrown while loading the <project-xml> file [META-INF/MOJMap.xml].*
    Internal Exception: oracle.classloader.util.AnnotatedLinkageError: duplicate class definition: oracle/toplink/indirection/IndirectList
    Invalid class: oracle.toplink.indirection.IndirectList
    Loader: current-workspace-app.root:0.0.0
    Code-Source: /D:/MOJ_SVN/Lib/toplink.jar
    Configuration: <library> in /D:/Temp/MOJ_EJB_3.0/CMS-oc4j-app.xml
    Dependent class: oracle.toplink.internal.helper.ConversionManager
    Loader: oracle.toplink:10.1.3
    Code-Source: /D:/jdevstudio/toplink/jlib/toplink.jar
    Configuration: <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in D:\jdevstudio\j2ee\home\oc4j.jar
    The original class instance was also defined in oracle.toplink:10.1.3.
    Thanks in Advance:
    Need in urgent
    Edited by: user636100 on Feb 6, 2009 7:44 AM

    You have two copies of toplink.jar visible to the application classloader - D:/MOJ_SVN/Lib/toplink.jar should be removed.
    For compilation of the application use toplink.jar provided by the server: D:/jdevstudio/toplink/jlib/toplink.jar

  • Needed Help on Exception

    Hi ,
    While executing below query I am getting exception inserted value too large for column
    I want to track which column(data) is getting problem
    kindly suggest
    DECLARE
    o_MessageCode number;
    o_MessageText varchar2(4000);
    w_proc CONSTANT VARCHAR2(30) := 'create_net_usage';
    CUST_DEAL varchar2(4000);
    BEGIN
    EXECUTE IMMEDIATE 'INSERT /* +append */ INTO work_nets_transxn_cabin     
              (dealt_sectors, tot_sectors, dealt_net_rev, tot_net_rev ,
              tm_sectors, tm_tot_sectors, tm_dealt_net_rev, tm_tot_net_rev,
              lm_sectors, lm_tot_sectors, lm_dealt_net_rev , lm_tot_net_rev ,
              cust_deal_sid , uplift , discharge, cabin_cd,
              booking_class_cd, country_cd, fare_basis)
         SELECT     dealt_sectors, tot_sectors, 0, 0,
              tm_sectors, tm_tot_sectors, 0, 0,
              lm_sectors, lm_tot_sectors, 0, 0,
              t.cust_deal_sid , t.uplift , t.discharge, t.cabin_cd,
              c.booking_class_CD||''*'', t.country_cd, c.fare_basis
         FROM     work_other t, workclass_ref c, work_net_cust_region regions
         WHERE     t.cust_deal_sid = c.cust_deal_sid
         AND     swap(t.uplift||t.discharge)=c.route
         AND     t.cabin_cd=c.cabin_cd
         AND     t.country_cd=c.country_cd
         AND     t.cust_deal_sid=regions.cust_deal_sid
    EXCEPTION
    WHEN OTHERS THEN
    dbms_output.put_line('Exception');
    o_MessageCode := SQLCODE;
    o_MessageText := w_proc || ' - ' || SQLERRM;
         dbms_output.put_line('Sqlcode is ' || to_char(o_MessageCode)) ;
    dbms_output.put_line(o_MessageText);
    END;
    Thanks in advance
    Sachin

    You need to compare the column data types/lengths from your insert statement with the column data types/lengths from your select statement. You have a column selected from the select statement that holds a value larger then what can be placed into the corresponding insert column. Nobody is going to be able to derive this information for you as we don't have access to your table definitions.

  • I am a noob to programing / i need help with exceptions

    HI
    I am a beginner at programming, and wondering if some one could help me out on this program. Its an address book program I got everything to work the only problem is that I haven�t been able to do this step.
    Handle all exceptions properly...
    If there is a null in an element in an array.
    If the user enters an incorrect data type in a dialog box
    (e.g. Enters a letter where a number was expected, or
    enters numbers where letters were expected.
    I am using the JOptionPane input boxes to receive the info.
    If some one could send me a code example on what I am to do that would help a lot.
    Also if some one can explain to me what exceptions are and how the code sample works that would be even better.
    thanx for all the help

    http://java.sun.com/docs/books/tutorial/essential/exceptions/

  • Need help with Exception in thread "main" java.lang.NullPointerException

    here is the error
    Exception in thread "main" java.lang.NullPointerException
    at stream.createFrame(stream.java:153)
    at chat.createMessage(chat.java:14)
    this is where the error is in stream
    public void createFrame(int id) {
              *buffer[currentOffset++] = (byte)(id + packetEncryption.getNextKey());*
    and this is where it comes from in chat
    outStream.createFrame(85);                    
    i just cant see whats causeing the exception

    spiderjava wrote:
    the variable state is assigned to test1. This variable(test1) is not initialized anywhere.It is initialized in the c'tor. Which is invoked after the "global" object and attribute initialization. So it is there, but comes too late.
    You should definitly not write a technical Java blog and post it all over the place.

  • I need help with exception not handled bluescreen.

    I've been getting bluescreens for awhile now, and have been doing research to read minidump files to locate the problem and try fixing but they still persist.Crash Dump Analysis provided by OSR Open Systems Resources, Inc.
    Online Crash Dump Analysis Service
    See http://www.osronline.com for more information
    Windows Server 2008/Windows Vista Kernel Version 6002 (Service Pack 2) MP (4 procs) Free x64
    Product: WinNt, suite: TerminalServer SingleUserTS Personal
    Built by: 6002.18881.amd64fre.vistasp2_gdr.130707-1535
    Machine Name:
    Kernel base = 0xfffff800`01e18000 PsLoadedModuleList = 0xfffff800`01fdce30
    Debug session time: Sat Aug 30 11:37:14.252 2014 (UTC - 4:00)
    System Uptime: 0 days 0:40:21.125
    * Bugcheck Analysis *
    INTERRUPT_EXCEPTION_NOT_HANDLED (3d)
    Arguments:
    Arg1: 0000000000000000
    Arg2: 0000000000000000
    Arg3: 0000000000000000
    Arg4: fffffa6001385d1b
    Debugging Details:
    TRIAGER: Could not open triage file : e:\dump_analysis\program\triage\modclass.ini, error 2
    DEFAULT_BUCKET_ID: VISTA_DRIVER_FAULT
    BUGCHECK_STR: 0x3D
    PROCESS_NAME: Wow-64.exe
    CURRENT_IRQL: 2
    EXCEPTION_RECORD: fffffa60005fec28 -- (.exr 0xfffffa60005fec28)
    ExceptionAddress: fffffa6001385d1b (USBPORT!USBPORT_Core_UsbDoneDpc_Worker+0x0000000000000167)
    ExceptionCode: c000001d (Illegal instruction)
    ExceptionFlags: 00000000
    NumberParameters: 0
    TRAP_FRAME: fffffa60005fecd0 -- (.trap 0xfffffa60005fecd0)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=00000000ffffffff rbx=0000000000000000 rcx=fffffa8009e161a0
    rdx=000000004f444648 rsi=0000000000000000 rdi=0000000000000000
    rip=fffffa6001385d1b rsp=fffffa60005fee60 rbp=fffffa8009e16d78
    r8=000000004f444648 r9=0000000000000002 r10=0000000000000000
    r11=000000000000000d r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0 nv up ei ng nz na po nc
    USBPORT!USBPORT_Core_UsbDoneDpc_Worker+0x167:
    fffffa60`01385d1b f00fc14310 lock xadd dword ptr [rbx+10h],eax ds:00000000`00000010=????????
    Resetting default scope
    LAST_CONTROL_TRANSFER: from fffff80001e6eeee to fffff80001e6f150
    STACK_TEXT:
    fffffa60`005fdc58 fffff800`01e6eeee : 00000000`0000003d 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KeBugCheckEx
    fffffa60`005fdc60 fffff800`01e67648 : 00000000`0000040e fffff800`01ee48a9 fffffa80`08c43c20 fffffa60`0f3db000 : nt!KiBugCheckDispatch+0x6e
    fffffa60`005fdda0 fffff800`01e9aacd : 00000000`00000000 fffff800`01e18000 fffffa60`0f3e4000 fffff800`02019be8 : nt!KiInterruptHandler+0x28
    fffffa60`005fddd0 fffff800`01e9ad8f : fffffa60`00000001 00000000`00000001 fffff800`00000000 fffffa60`0f3e3c20 : nt!RtlpExecuteHandlerForException+0xd
    fffffa60`005fde00 fffff800`01ea8522 : fffffa60`005fec28 fffffa60`005fe600 fffffa60`00000000 0000057f`f5f508d8 : nt!RtlDispatchException+0x22f
    fffffa60`005fe4f0 fffff800`01e6efa9 : fffffa60`005fec28 fffffa80`09e161a0 fffffa60`005fecd0 fffffa80`09e16050 : nt!KiDispatchException+0xc2
    fffffa60`005feaf0 fffff800`01e6d4c3 : fffffa60`005fecd0 fffffa60`061db002 fffffa80`55706d00 fffffa60`00000000 : nt!KiExceptionDispatch+0xa9
    fffffa60`005fecd0 fffffa60`01385d1b : fffffa80`4b6f6d74 00000000`00025e3f fffffa80`09e161a0 fffffa80`09e16050 : nt!KiInvalidOpcodeFault+0xc3
    fffffa60`005fee60 fffffa60`013721a7 : fffffa80`31656e44 fffffa60`32656e44 fffffa80`09e16d78 fffffa80`33656e44 : USBPORT!USBPORT_Core_UsbDoneDpc_Worker+0x167
    fffffa60`005feef0 fffff800`01e73367 : fffffa80`09e16d90 fffffa60`34776478 fffffa60`0f3e3ca0 fffffa60`019db580 : USBPORT!USBPORT_Xdpc_Worker+0x26f
    fffffa60`005fef40 fffff800`01e71c35 : fffffa60`01371f38 fffffa60`019d8180 fffffa60`0f3e3ca0 fffffa80`07cfcc00 : nt!KiRetireDpcList+0x117
    fffffa60`005fefb0 fffff800`01e71a47 : fffffa80`07cfcc00 fffff800`020fe9d4 fffffa60`00000001 00000000`00000000 : nt!KyRetireDpcList+0x5
    fffffa60`0f3e3be0 fffff800`01eb7c33 : 00000000`00000000 fffff800`01e677c9 00000000`00000000 fffffa60`0f3e3ca0 : nt!KiDispatchInterruptContinue
    fffffa60`0f3e3c10 fffff800`01e677c9 : 00000000`00000000 fffffa60`0f3e3ca0 00000000`00da7a64 00000000`00000000 : nt!KiDpcInterruptBypass+0x13
    fffffa60`0f3e3c20 00000001`3f607849 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiChainedDispatch+0x179
    00000000`0021ecf0 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : 0x1`3f607849
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    USBPORT!USBPORT_Core_UsbDoneDpc_Worker+167
    fffffa60`01385d1b f00fc14310 lock xadd dword ptr [rbx+10h],eax
    SYMBOL_STACK_INDEX: 8
    SYMBOL_NAME: USBPORT!USBPORT_Core_UsbDoneDpc_Worker+167
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: USBPORT
    IMAGE_NAME: USBPORT.SYS
    DEBUG_FLR_IMAGE_TIMESTAMP: 51ce4591
    FAILURE_BUCKET_ID: X64_0x3D_USBPORT!USBPORT_Core_UsbDoneDpc_Worker+167
    BUCKET_ID: X64_0x3D_USBPORT!USBPORT_Core_UsbDoneDpc_Worker+167
    Followup: MachineOwner
    Crash Code Links
    Loaded Module List
    start end module name
    fffff800`01e18000 fffff800`0232e000 nt ntkrnlmp.exe
    fffff800`0232e000 fffff800`02374000 hal hal.dll
    fffff960`00070000 fffff960`0032b000 win32k win32k.sys
    fffff960`004f0000 fffff960`004fa000 TSDDD TSDDD.dll
    fffff960`00620000 fffff960`00631000 cdd cdd.dll
    fffff960`00850000 fffff960`008b1000 ATMFD ATMFD.DLL
    fffffa60`0060e000 fffffa60`00618000 kdcom kdcom.dll
    fffffa60`00618000 fffffa60`0062c000 PSHED PSHED.dll
    fffffa60`0062c000 fffffa60`00689000 CLFS CLFS.SYS
    fffffa60`00689000 fffffa60`0073b000 CI CI.dll
    fffffa60`0073b000 fffffa60`007fd000 Wdf01000 Wdf01000.sys
    fffffa60`0080e000 fffffa60`0081e000 WDFLDR WDFLDR.SYS
    fffffa60`0081e000 fffffa60`00874000 acpi acpi.sys
    fffffa60`00874000 fffffa60`0087d000 WMILIB WMILIB.SYS
    fffffa60`0087d000 fffffa60`00887000 msisadrv msisadrv.sys
    fffffa60`00887000 fffffa60`008b7000 pci pci.sys
    fffffa60`008b7000 fffffa60`008cc000 partmgr partmgr.sys
    fffffa60`008cc000 fffffa60`008cf400 compbatt compbatt.sys
    fffffa60`008d0000 fffffa60`008dc000 BATTC BATTC.SYS
    fffffa60`008dc000 fffffa60`008f0000 volmgr volmgr.sys
    fffffa60`008f0000 fffffa60`00956000 volmgrx volmgrx.sys
    fffffa60`00956000 fffffa60`0095d000 pciide pciide.sys
    fffffa60`0095d000 fffffa60`0096d000 PCIIDEX PCIIDEX.SYS
    fffffa60`0096d000 fffffa60`00980000 mountmgr mountmgr.sys
    fffffa60`00980000 fffffa60`00988000 atapi atapi.sys
    fffffa60`00988000 fffffa60`009ac000 ataport ataport.SYS
    fffffa60`009ac000 fffffa60`009f3000 fltmgr fltmgr.sys
    fffffa60`00a0a000 fffffa60`00a1e000 fileinfo fileinfo.sys
    fffffa60`00a1e000 fffffa60`00a60000 MpFilter MpFilter.sys
    fffffa60`00a60000 fffffa60`00ae7000 ksecdd ksecdd.sys
    fffffa60`00ae7000 fffffa60`00b37000 msrpc msrpc.sys
    fffffa60`00b37000 fffffa60`00b90000 NETIO NETIO.SYS
    fffffa60`00b90000 fffffa60`00bde000 ahcix64s ahcix64s.sys
    fffffa60`00bde000 fffffa60`00bfb000 tdx tdx.sys
    fffffa60`00c0b000 fffffa60`00dce000 ndis ndis.sys
    fffffa60`00dce000 fffffa60`00dde000 umbus umbus.sys
    fffffa60`00dde000 fffffa60`00df6000 USBSTOR USBSTOR.SYS
    fffffa60`00e06000 fffffa60`00f79000 tcpip tcpip.sys
    fffffa60`00f79000 fffffa60`00fa5000 fwpkclnt fwpkclnt.sys
    fffffa60`00fa5000 fffffa60`00fd1000 ecache ecache.sys
    fffffa60`00fd1000 fffffa60`00ffd000 CLASSPNP CLASSPNP.SYS
    fffffa60`01000000 fffffa60`0100a000 crcdisk crcdisk.sys
    fffffa60`0100c000 fffffa60`0118c000 Ntfs Ntfs.sys
    fffffa60`0118c000 fffffa60`011d0000 volsnap volsnap.sys
    fffffa60`011d0000 fffffa60`011d8000 spldr spldr.sys
    fffffa60`011d8000 fffffa60`011ea000 mup mup.sys
    fffffa60`011ea000 fffffa60`011fe000 disk disk.sys
    fffffa60`01205000 fffffa60`01262000 storport storport.sys
    fffffa60`01262000 fffffa60`012ab000 mrxsmb10 mrxsmb10.sys
    fffffa60`012c8000 fffffa60`012d5000 tunnel tunnel.sys
    fffffa60`012d5000 fffffa60`012de000 tunmp tunmp.sys
    fffffa60`012de000 fffffa60`012f1000 processr processr.sys
    fffffa60`012f1000 fffffa60`0136f000 Rtlh64 Rtlh64.sys
    fffffa60`0136f000 fffffa60`013b5000 USBPORT USBPORT.SYS
    fffffa60`013b5000 fffffa60`013e9000 ks ks.sys
    fffffa60`013e9000 fffffa60`013f4000 mssmbios mssmbios.sys
    fffffa60`05400000 fffffa60`0540c000 mouclass mouclass.sys
    fffffa60`0540f000 fffffa60`0609d000 nvlddmkm nvlddmkm.sys
    fffffa60`0609d000 fffffa60`06180000 dxgkrnl dxgkrnl.sys
    fffffa60`06180000 fffffa60`06190000 watchdog watchdog.sys
    fffffa60`06190000 fffffa60`061a1b00 ohci1394 ohci1394.sys
    fffffa60`061a2000 fffffa60`061b1f00 1394BUS 1394BUS.SYS
    fffffa60`061b2000 fffffa60`061bc000 johci johci.sys
    fffffa60`061bc000 fffffa60`061d8000 cdrom cdrom.sys
    fffffa60`061d8000 fffffa60`061e3000 usbohci usbohci.sys
    fffffa60`061e3000 fffffa60`061ed000 usbfilter usbfilter.sys
    fffffa60`061ed000 fffffa60`061eed80 USBD USBD.SYS
    fffffa60`061ef000 fffffa60`06200000 usbehci usbehci.sys
    fffffa60`06204000 fffffa60`062f1000 HDAudBus HDAudBus.sys
    fffffa60`062f1000 fffffa60`0632a000 msiscsi msiscsi.sys
    fffffa60`0632a000 fffffa60`06337000 TDI TDI.SYS
    fffffa60`06337000 fffffa60`0635a000 rasl2tp rasl2tp.sys
    fffffa60`0635a000 fffffa60`06366000 ndistapi ndistapi.sys
    fffffa60`06366000 fffffa60`06397000 ndiswan ndiswan.sys
    fffffa60`06397000 fffffa60`063a7000 raspppoe raspppoe.sys
    fffffa60`063a7000 fffffa60`063c5000 raspptp raspptp.sys
    fffffa60`063c5000 fffffa60`063dd000 rassstp rassstp.sys
    fffffa60`063dd000 fffffa60`063f0000 termdd termdd.sys
    fffffa60`063f0000 fffffa60`063fe000 kbdclass kbdclass.sys
    fffffa60`063fe000 fffffa60`063ff480 swenum swenum.sys
    fffffa60`0720c000 fffffa60`07254000 usbhub usbhub.sys
    fffffa60`07254000 fffffa60`07268000 NDProxy NDProxy.SYS
    fffffa60`07268000 fffffa60`072b1000 HdAudio HdAudio.sys
    fffffa60`072b1000 fffffa60`072ec000 portcls portcls.sys
    fffffa60`072ec000 fffffa60`0730f000 drmk drmk.sys
    fffffa60`0730f000 fffffa60`07314180 ksthunk ksthunk.sys
    fffffa60`07315000 fffffa60`0731f000 Fs_Rec Fs_Rec.SYS
    fffffa60`0731f000 fffffa60`07328000 Null Null.SYS
    fffffa60`07333000 fffffa60`0733ab80 HIDPARSE HIDPARSE.SYS
    fffffa60`0733b000 fffffa60`07348000 rzmpos rzmpos.sys
    fffffa60`07351000 fffffa60`0735f000 vga vga.sys
    fffffa60`0735f000 fffffa60`07384000 VIDEOPRT VIDEOPRT.SYS
    fffffa60`07384000 fffffa60`073a0000 usbccgp usbccgp.sys
    fffffa60`073a0000 fffffa60`073a9000 hidusb hidusb.sys
    fffffa60`073a9000 fffffa60`073bb000 HIDCLASS HIDCLASS.SYS
    fffffa60`073bb000 fffffa60`073c4000 RDPCDD RDPCDD.sys
    fffffa60`073c4000 fffffa60`073cd000 rdpencdd rdpencdd.sys
    fffffa60`073cd000 fffffa60`073d8000 kbdhid kbdhid.sys
    fffffa60`073d8000 fffffa60`073e3000 Msfs Msfs.SYS
    fffffa60`073e3000 fffffa60`073f4000 Npfs Npfs.SYS
    fffffa60`073f4000 fffffa60`073fd000 rasacd rasacd.sys
    fffffa60`07a05000 fffffa60`07a20000 smb smb.sys
    fffffa60`07a20000 fffffa60`07a2e000 rzendpt rzendpt.sys
    fffffa60`07a2e000 fffffa60`07a99000 afd afd.sys
    fffffa60`07a99000 fffffa60`07add000 netbt netbt.sys
    fffffa60`07add000 fffffa60`07afb000 pacer pacer.sys
    fffffa60`07afb000 fffffa60`07b0a000 netbios netbios.sys
    fffffa60`07b0a000 fffffa60`07b25000 wanarp wanarp.sys
    fffffa60`07b25000 fffffa60`07b30000 mouhid mouhid.sys
    fffffa60`07b30000 fffffa60`07b40000 tcpipreg tcpipreg.sys
    fffffa60`07b46000 fffffa60`07b70000 rzudd rzudd.sys
    fffffa60`07b70000 fffffa60`07bbd000 rdbss rdbss.sys
    fffffa60`07bbd000 fffffa60`07bc9000 nsiproxy nsiproxy.sys
    fffffa60`07bc9000 fffffa60`07be6000 dfsc dfsc.sys
    fffffa60`07be6000 fffffa60`07bf1000 secdrv secdrv.SYS
    fffffa60`07e0a000 fffffa60`07eaa000 netr7364 netr7364.sys
    fffffa60`07eaa000 fffffa60`07eb5000 HidBatt HidBatt.sys
    fffffa60`07eb5000 fffffa60`07ed1000 cdfs cdfs.sys
    fffffa60`07ed1000 fffffa60`07edf000 crashdmp crashdmp.sys
    fffffa60`07edf000 fffffa60`07ee9000 dump_diskdump dump_diskdump.sys
    fffffa60`07ee9000 fffffa60`07f37000 dump_ahcix64s dump_ahcix64s.sys
    fffffa60`07f37000 fffffa60`07f43000 Dxapi Dxapi.sys
    fffffa60`07f43000 fffffa60`07f56000 monitor monitor.sys
    fffffa60`07f56000 fffffa60`07f78000 luafv luafv.sys
    fffffa60`07f78000 fffffa60`07f91000 WudfPf WudfPf.sys
    fffffa60`07f91000 fffffa60`07fab000 mpsdrv mpsdrv.sys
    fffffa60`07fab000 fffffa60`07fd2000 mrxdav mrxdav.sys
    fffffa60`07fd2000 fffffa60`07ffb000 mrxsmb mrxsmb.sys
    fffffa60`0c40a000 fffffa60`0c4a4000 spsys spsys.sys
    fffffa60`0c4a4000 fffffa60`0c4b8000 lltdio lltdio.sys
    fffffa60`0c4b8000 fffffa60`0c4ec000 nwifi nwifi.sys
    fffffa60`0c4ec000 fffffa60`0c4f7000 ndisuio ndisuio.sys
    fffffa60`0c4f7000 fffffa60`0c50f000 rspndr rspndr.sys
    fffffa60`0c50f000 fffffa60`0c5b2000 HTTP HTTP.sys
    fffffa60`0c5b2000 fffffa60`0c5db000 srvnet srvnet.sys
    fffffa60`0c5db000 fffffa60`0c5f9000 bowser bowser.sys
    fffffa60`0d009000 fffffa60`0d028000 mrxsmb20 mrxsmb20.sys
    fffffa60`0d028000 fffffa60`0d05a000 srv2 srv2.sys
    fffffa60`0d05a000 fffffa60`0d0ed000 srv srv.sys
    fffffa60`0d0ed000 fffffa60`0d11f000 AODDriver2 AODDriver2.sys
    fffffa60`0d11f000 fffffa60`0d140000 NisDrvWFP NisDrvWFP.sys
    fffffa60`0d140000 fffffa60`0d1f6000 peauth peauth.sys
    fffffa60`0da02000 fffffa60`0da38000 WUDFRd WUDFRd.sys
    fffffa60`0da38000 fffffa60`0da5d000 000 000.fcl
    Unloaded modules:
    fffffa60`01262000 fffffa60`01270000 crashdmp.sys
    fffffa60`01270000 fffffa60`0127a000 dump_storpor
    fffffa60`0127a000 fffffa60`012c8000 dump_ahcix64
    fffffa60`07b30000 fffffa60`07b46000 RzFilter.sys
    fffffa60`0733b000 fffffa60`07351000 i8042prt.sys
    fffffa60`07328000 fffffa60`07333000 kbdhid.sys
    Raw Stack Contents
    Dump Header Information
    ----- 64 bit Kernel Mini Dump Analysis
    DUMP_HEADER64:
    MajorVersion 0000000f
    MinorVersion 00001772
    KdSecondaryVersion 00000000
    DirectoryTableBase 00000001`500c1000
    PfnDataBase fffff800`0203f250
    PsLoadedModuleList fffff800`01fdce30
    PsActiveProcessHead fffff800`01fbc4a0
    MachineImageType 00008664
    NumberProcessors 00000004
    BugCheckCode 0000003d
    BugCheckParameter1 00000000`00000000
    BugCheckParameter2 00000000`00000000
    BugCheckParameter3 00000000`00000000
    BugCheckParameter4 fffffa60`01385d1b
    KdDebuggerDataBlock fffff800`01f89f20
    ProductType 00000001
    SuiteMask 00000310
    WriterStatus 00000000
    MiniDumpFields 00000cff
    TRIAGE_DUMP64:
    ServicePackBuild 00000200
    SizeOfDump 00040000
    ValidOffset 0003fffc
    ContextOffset 00000348
    ExceptionOffset 00000f00
    MmOffset 00002080
    UnloadedDriversOffset 000020d0
    PrcbOffset 00002228
    ProcessOffset 00005d48
    ThreadOffset 00006130
    CallStackOffset 00006580
    SizeOfCallStack 000023a8
    DriverListOffset 00008c58
    DriverCount 00000090
    StringPoolOffset 0000dd58
    StringPoolSize 000030a8
    BrokenDriverOffset 00000000
    TriageOptions ffffffff
    TopOfStack fffffa60`005fdc58
    BStoreOffset 00000000
    SizeOfBStore 00000000
    LimitOfBStore 00000000`00000000
    DebuggerDataOffset 00008928
    DebuggerDataSize 00000330
    DataBlocksOffset 00010e00
    DataBlocksCount 0000000c
    fffff800`01fdd780 - fffff800`01fdd7ff at offset 00010ec0
    fffff800`01fc18f8 - fffff800`01fc18fb at offset 00010f40
    fffff800`01fc18f4 - fffff800`01fc18f7 at offset 00010f44
    fffff800`0203f078 - fffff800`0203f07b at offset 00010f48
    fffff800`0203f09c - fffff800`0203f09f at offset 00010f4c
    fffffa80`06f5c218 - fffffa80`06f5e217 at offset 00010f50
    fffff800`01fa6970 - fffff800`01fa6977 at offset 00012f50
    fffff800`01fa6978 - fffff800`01fa697f at offset 00012f58
    fffffa60`0f3e3000 - fffffa60`0f3e3fff at offset 00012f60
    fffff800`01e67000 - fffff800`01e67fff at offset 00013f60
    fffff800`02019000 - fffff800`02019fff at offset 00014f60
    fffff800`01e6f000 - fffff800`01e6ffff at offset 00015f60
    Max offset 16f60, 306f8 from end of file
    Strings
    PAGEDU64
    PAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGE
    PAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGE
    PAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGE
    PAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGE
    PAGEXv
    PAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGE
    PAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGEPAGE
    crashdmp.sys
    dump_storpor
    dump_ahcix64
    RzFilter.sys
    i8042prt.sys
    kbdhid.sys
    AuthenticAMD
    Wow-64.exe
    Dne7decEDne8
    \SystemRoot\system32\ntoskrnl.exe
    \SystemRoot\system32\hal.dll
    \SystemRoot\system32\kdcom.dll
    \SystemRoot\system32\PSHED.dll
    \SystemRoot\system32\CLFS.SYS
    \SystemRoot\system32\CI.dll
    \SystemRoot\system32\drivers\Wdf01000.sys
    \SystemRoot\system32\drivers\WDFLDR.SYS
    \SystemRoot\system32\drivers\acpi.sys
    \SystemRoot\system32\drivers\WMILIB.SYS
    \SystemRoot\system32\drivers\msisadrv.sys
    \SystemRoot\system32\drivers\pci.sys
    \SystemRoot\System32\drivers\partmgr.sys
    \SystemRoot\system32\DRIVERS\compbatt.sys
    \SystemRoot\system32\DRIVERS\BATTC.SYS
    \SystemRoot\system32\drivers\volmgr.sys
    \SystemRoot\System32\drivers\volmgrx.sys
    \SystemRoot\system32\drivers\pciide.sys
    \SystemRoot\system32\drivers\PCIIDEX.SYS
    \SystemRoot\System32\drivers\mountmgr.sys
    \SystemRoot\system32\drivers\atapi.sys
    \SystemRoot\system32\drivers\ataport.SYS
    \SystemRoot\system32\drivers\fltmgr.sys
    \SystemRoot\system32\drivers\fileinfo.sys
    \SystemRoot\system32\DRIVERS\MpFilter.sys
    \SystemRoot\System32\Drivers\ksecdd.sys
    \SystemRoot\system32\drivers\ndis.sys
    \SystemRoot\system32\drivers\msrpc.sys
    \SystemRoot\system32\drivers\NETIO.SYS
    \SystemRoot\System32\drivers\tcpip.sys
    \SystemRoot\System32\drivers\fwpkclnt.sys
    \SystemRoot\System32\Drivers\Ntfs.sys
    \SystemRoot\system32\drivers\volsnap.sys
    \SystemRoot\System32\Drivers\spldr.sys
    \SystemRoot\System32\Drivers\mup.sys
    \SystemRoot\System32\drivers\ecache.sys
    \SystemRoot\system32\drivers\disk.sys
    \SystemRoot\system32\drivers\CLASSPNP.SYS
    \SystemRoot\system32\drivers\crcdisk.sys
    \SystemRoot\system32\drivers\ahcix64s.sys
    \SystemRoot\system32\drivers\storport.sys
    \SystemRoot\system32\DRIVERS\tunnel.sys
    \SystemRoot\system32\DRIVERS\tunmp.sys
    \SystemRoot\system32\DRIVERS\processr.sys
    \SystemRoot\system32\DRIVERS\nvlddmkm.sys
    \SystemRoot\System32\drivers\dxgkrnl.sys
    \SystemRoot\System32\drivers\watchdog.sys
    \SystemRoot\system32\DRIVERS\ohci1394.sys
    \SystemRoot\system32\DRIVERS\1394BUS.SYS
    \SystemRoot\system32\DRIVERS\johci.sys
    \SystemRoot\system32\DRIVERS\Rtlh64.sys
    \SystemRoot\system32\DRIVERS\cdrom.sys
    \SystemRoot\system32\DRIVERS\usbohci.sys
    \SystemRoot\system32\DRIVERS\USBPORT.SYS
    \SystemRoot\system32\DRIVERS\usbfilter.sys
    \SystemRoot\system32\DRIVERS\USBD.SYS
    \SystemRoot\system32\DRIVERS\usbehci.sys
    \SystemRoot\system32\DRIVERS\HDAudBus.sys
    \SystemRoot\system32\DRIVERS\msiscsi.sys
    \SystemRoot\system32\DRIVERS\TDI.SYS
    \SystemRoot\system32\DRIVERS\rasl2tp.sys
    \SystemRoot\system32\DRIVERS\ndistapi.sys
    \SystemRoot\system32\DRIVERS\ndiswan.sys
    \SystemRoot\system32\DRIVERS\raspppoe.sys
    \SystemRoot\system32\DRIVERS\raspptp.sys
    \SystemRoot\system32\DRIVERS\rassstp.sys
    \SystemRoot\system32\DRIVERS\termdd.sys
    \SystemRoot\system32\DRIVERS\kbdclass.sys
    \SystemRoot\system32\DRIVERS\mouclass.sys
    \SystemRoot\system32\DRIVERS\swenum.sys
    \SystemRoot\system32\DRIVERS\ks.sys
    \SystemRoot\system32\DRIVERS\mssmbios.sys
    \SystemRoot\system32\DRIVERS\umbus.sys
    \SystemRoot\system32\DRIVERS\usbhub.sys
    \SystemRoot\System32\Drivers\NDProxy.SYS
    \SystemRoot\system32\drivers\HdAudio.sys
    \SystemRoot\system32\drivers\portcls.sys
    \SystemRoot\system32\drivers\drmk.sys
    \SystemRoot\system32\drivers\ksthunk.sys
    \SystemRoot\System32\Drivers\Fs_Rec.SYS
    \SystemRoot\System32\Drivers\Null.SYS
    \SystemRoot\system32\DRIVERS\HIDPARSE.SYS
    \SystemRoot\System32\drivers\vga.sys
    \SystemRoot\System32\drivers\VIDEOPRT.SYS
    \SystemRoot\system32\DRIVERS\usbccgp.sys
    \SystemRoot\system32\DRIVERS\hidusb.sys
    \SystemRoot\system32\DRIVERS\HIDCLASS.SYS
    \SystemRoot\System32\DRIVERS\RDPCDD.sys
    \SystemRoot\system32\drivers\rdpencdd.sys
    \SystemRoot\system32\DRIVERS\kbdhid.sys
    \SystemRoot\System32\Drivers\Msfs.SYS
    \SystemRoot\System32\Drivers\Npfs.SYS
    \SystemRoot\system32\DRIVERS\USBSTOR.SYS
    \SystemRoot\System32\DRIVERS\rasacd.sys
    \SystemRoot\system32\DRIVERS\tdx.sys
    \SystemRoot\system32\DRIVERS\rzmpos.sys
    \SystemRoot\system32\DRIVERS\smb.sys
    \SystemRoot\system32\DRIVERS\rzendpt.sys
    \SystemRoot\system32\drivers\afd.sys
    \SystemRoot\System32\DRIVERS\netbt.sys
    \SystemRoot\system32\DRIVERS\pacer.sys
    \SystemRoot\system32\DRIVERS\netbios.sys
    \SystemRoot\system32\DRIVERS\wanarp.sys
    \SystemRoot\system32\DRIVERS\mouhid.sys
    \SystemRoot\system32\DRIVERS\rzudd.sys
    \SystemRoot\system32\DRIVERS\rdbss.sys
    \SystemRoot\system32\drivers\nsiproxy.sys
    \SystemRoot\System32\Drivers\dfsc.sys
    \SystemRoot\system32\DRIVERS\netr7364.sys
    \SystemRoot\system32\DRIVERS\HidBatt.sys
    \SystemRoot\system32\DRIVERS\cdfs.sys
    \SystemRoot\System32\Drivers\crashdmp.sys
    \SystemRoot\System32\Drivers\dump_diskdump.sys
    \SystemRoot\System32\Drivers\dump_ahcix64s.sys
    \SystemRoot\System32\win32k.sys
    \SystemRoot\System32\drivers\Dxapi.sys
    \SystemRoot\system32\DRIVERS\monitor.sys
    \SystemRoot\System32\TSDDD.dll
    \SystemRoot\System32\cdd.dll
    \SystemRoot\system32\drivers\luafv.sys
    \SystemRoot\system32\drivers\WudfPf.sys
    \SystemRoot\System32\ATMFD.DLL
    \SystemRoot\system32\drivers\spsys.sys
    \SystemRoot\system32\DRIVERS\lltdio.sys
    \SystemRoot\system32\DRIVERS\nwifi.sys
    \SystemRoot\system32\DRIVERS\ndisuio.sys
    \SystemRoot\system32\DRIVERS\rspndr.sys
    \SystemRoot\system32\drivers\HTTP.sys
    \SystemRoot\System32\DRIVERS\srvnet.sys
    \SystemRoot\system32\hoenix Technologies, LTD
    10/29/2008
    HP-Pavilion
    FQ563AA-ABA a6750f
    FQ563AA#ABA
    103C_53316J
    Hewlett-Packard
    Socket AM2
    AMD Phenom(tm) 9650 Quad-Core Processor
    Internal Cache
    External Cache
    External Cache
    Keyboard
    PS/2 Mouse
    PCIE x1 slot
    PCIE x16 slot
    PCIE x1 slot
    PCIE x1 slot
    Bank0/1
    CE00000000000000
    M3 78T5663QZ3-CF7
    Bank2/3
    CE00000000000000
    M3 78T5663QZ3-CF7
    Bank4/5
    CE00000000000000
    M3 78T5663QZ3-CF7
    Bank6/7
    CE00000000000000
    M3 78T5663QZ3-CF7
    PLIGPYVTQY
    RPLIRYVSSY
    bid=91NAv6PrA1;PROD_MSWORKS;SFCHK;DLED;IS.N60d;ACPwrFail=Off;Cha
    n=Retail;CPUFan=On;DVDRW;LegacyFloppy=No;TVout=NTSC;PCBRAND=Pavi
    lion;OS=MSV;KBDRV;LScribe;DVDP_STD;Vos.P;PROD_MSOFFHST;FPA=HM;C_
    VEN;MUV_B;CDS_D;SW_Main;.fQ;##HPCPC=00000000<9000000602000000042
    0000253514130040000010001000;5;:0665<;85>18>1<2=1:<55>?4;;=?=19:
    <8494;>:8011<=31953=?76?>378139;594701:=;34:;55;9128<7937==0<722
    <:<1:2489>:088=6:?1;2>8=8>12691>>286:9?;4454>3<3>89909>=738375;0
    2951<;>=??2?70>75;04<815:33<20846?312127;?24876>7488457<0;0?39>9
    ;?407;8;8;09>=;==>231>;?456:100000006;00000000002000840515?454=4
    35<49434=23405347594>444?475350200000000000000000000000000000000
    00000000?24?41954<8?4243:463542:9034;??09<31;8951=>:><6>3291=35:
    7;:7?<0;=973478<4:062629<>53103<<=4651<3499:7?769::98;357697=:34
    83>07=6;>1<1?<>7<817?5586>79?5:5?19<87:>=6507148017=835>552096;7
    14776===1=59:5:9;7?16>;910;64?;=21?;7975:6660><>729>:9<98<5<=
    991>7?7>
    Component Information
    Configuration Data
    Identifier
    AMD64 Family 16 Model 2 Stepping 3
    ProcessorNameString
    AMD Phenom(tm) 9650 Quad-Core Processor
    VendorIdentifier
    AuthenticAMD
    AuthcAMDenti
    AuthcAMDenti
    AuthcAMDenti
    AuthcAMDenti
    AMD Phenom(tm) 9AMD Phenom(tm) 9
    650 Quad-Core Pr650 Quad-Core Pr
    ocessor
    ocessor
    HPQOEMSLIC-CPCFACP
    VHPQOEMSLIC-CPCHPET8
    HPQOEMSLIC-CPCMCFG<
    HPQOEMSLIC-CPCSSDTD
    2HPQOEMSLIC-CPCSLICv
    HPQOEMSLIC-CPC
    340.52
    r340_00-144
    08@HPX
    Wdf01000
    w Established
    msisadrv
    Processor
    rzmpos
    rzendpt
    monitor
    PEAUTH

    COJ1996
    3 of 5 were related to USBPORT.SYS (part of the OS).  I would start by running a  system file check.  The directions in the wiki are designed for Win 7 & 8 but should work on Vista. 
    Please run a system file check (SFC)
    All instructions are in our Wiki article below...
    Should you have any questions please ask us.
    System file check (SFC) Scan and Repair System Files
    Microsoft (R) Windows Debugger Version 6.3.9600.17029 AMD64
    Copyright (c) Microsoft Corporation. All rights reserved.
    Loading Dump File [C:\Users\Ken\Desktop\New folder\Mini083014-02.dmp]
    Mini Kernel Dump File: Only registers and stack trace are available
    ************* Symbol Path validation summary **************
    Response Time (ms) Location
    Deferred srv*C:\Symbols*http://msdl.microsoft.com/download/symbols
    Symbol search path is: srv*C:\Symbols*http://msdl.microsoft.com/download/symbols
    Executable search path is:
    Windows Server 2008/Windows Vista Kernel Version 6002 (Service Pack 2) MP (4 procs) Free x64
    Product: WinNt, suite: TerminalServer SingleUserTS Personal
    Built by: 6002.18881.amd64fre.vistasp2_gdr.130707-1535
    Machine Name:
    Kernel base = 0xfffff800`01e02000 PsLoadedModuleList = 0xfffff800`01fc6e30
    Debug session time: Sat Aug 30 13:59:46.453 2014 (UTC - 4:00)
    System Uptime: 0 days 1:37:22.527
    Loading Kernel Symbols
    Loading User Symbols
    Loading unloaded module list
    * Bugcheck Analysis *
    Use !analyze -v to get detailed debugging information.
    BugCheck D1, {fffffa5ffbbb6b44, 2, 1, fffffa800a349f00}
    *** WARNING: Unable to verify timestamp for win32k.sys
    *** ERROR: Module load completed but symbols could not be loaded for win32k.sys
    Probably caused by : USBPORT.SYS ( USBPORT!USBPORT_Core_UsbMapDpc_Worker+1ce )
    Followup: MachineOwner
    2: kd> !analyze -v
    * Bugcheck Analysis *
    DRIVER_IRQL_NOT_LESS_OR_EQUAL (d1)
    An attempt was made to access a pageable (or completely invalid) address at an
    interrupt request level (IRQL) that is too high. This is usually
    caused by drivers using improper addresses.
    If kernel debugger is available get stack backtrace.
    Arguments:
    Arg1: fffffa5ffbbb6b44, memory referenced
    Arg2: 0000000000000002, IRQL
    Arg3: 0000000000000001, value 0 = read operation, 1 = write operation
    Arg4: fffffa800a349f00, address which referenced memory
    Debugging Details:
    WRITE_ADDRESS: GetPointerFromAddress: unable to read from fffff80002029080
    GetUlongFromAddress: unable to read from fffff80002029160
    fffffa5ffbbb6b44
    CURRENT_IRQL: 2
    FAULTING_IP:
    +d2bc49d3c0
    fffffa80`0a349f00 88a0340a80fa mov byte ptr [rax-57FF5CCh],ah
    CUSTOMER_CRASH_COUNT: 2
    DEFAULT_BUCKET_ID: VISTA_DRIVER_FAULT
    BUGCHECK_STR: 0xD1
    PROCESS_NAME: System
    ANALYSIS_VERSION: 6.3.9600.17029 (debuggers(dbg).140219-1702) amd64fre
    DPC_STACK_BASE: FFFFFA6001994FB0
    TRAP_FRAME: fffffa600198daa0 -- (.trap 0xfffffa600198daa0)
    NOTE: The trap frame does not contain all registers.
    Some register values may be zeroed or incorrect.
    rax=fffffa60013b6110 rbx=0000000000000000 rcx=fffffa800a3491a0
    rdx=000000004f444648 rsi=0000000000000000 rdi=0000000000000000
    rip=fffffa800a349f00 rsp=fffffa600198dc38 rbp=fffffa800a3491a0
    r8=000000004f444648 r9=00000000000003e8 r10=0000000000000000
    r11=fffffa600196fd40 r12=0000000000000000 r13=0000000000000000
    r14=0000000000000000 r15=0000000000000000
    iopl=0 nv up ei ng nz na po nc
    fffffa80`0a349f00 88a0340a80fa mov byte ptr [rax-57FF5CCh],ah ds:fffffa5f`fbbb6b44=??
    Resetting default scope
    LAST_CONTROL_TRANSFER: from fffff80001e58eee to fffff80001e59150
    STACK_TEXT:
    fffffa60`0198d958 fffff800`01e58eee : 00000000`0000000a fffffa5f`fbbb6b44 00000000`00000002 00000000`00000001 : nt!KeBugCheckEx
    fffffa60`0198d960 fffff800`01e57dcb : 00000000`00000001 fffffa80`0a349050 fffffa80`088c8320 fffffa80`0a3491a0 : nt!KiBugCheckDispatch+0x6e
    fffffa60`0198daa0 fffffa80`0a349f00 : fffffa80`0a7c5400 fffffa80`0a3491a0 fffffa60`0139041a fffffa60`33584e67 : nt!KiPageFault+0x20b
    fffffa60`0198dc38 fffffa80`0a7c5400 : fffffa80`0a3491a0 fffffa60`0139041a fffffa60`33584e67 00000000`0005b6f6 : 0xfffffa80`0a349f00
    fffffa60`0198dc40 fffffa80`0a3491a0 : fffffa60`0139041a fffffa60`33584e67 00000000`0005b6f6 fffffa80`0a349050 : 0xfffffa80`0a7c5400
    fffffa60`0198dc48 fffffa60`0139041a : fffffa60`33584e67 00000000`0005b6f6 fffffa80`0a349050 fffffa80`0a7c5b00 : 0xfffffa80`0a3491a0
    fffffa60`0198dc50 fffffa60`0137c1a7 : fffffa80`0a349f00 00000000`00000002 fffffa60`30745378 fffffa80`3070614d : USBPORT!USBPORT_Core_UsbMapDpc_Worker+0x1ce
    fffffa60`0198dcc0 fffff800`01e5d367 : fffffa80`0a349f18 00000000`34776478 00000000`00000000 fffffa60`00000683 : USBPORT!USBPORT_Xdpc_Worker+0x26f
    fffffa60`0198dd10 fffff800`01e5d5e2 : fffffa60`0137bf38 fffffa60`01966180 00000000`00000000 fffffa60`0196fd40 : nt!KiRetireDpcList+0x117
    fffffa60`0198dd80 fffff800`0202d860 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!KiIdleLoop+0x62
    fffffa60`0198ddb0 00000000`00000000 : 00000000`00000000 00000000`00000000 00000000`00000000 00000000`00000000 : nt!zzz_AsmCodeRange_End+0x4
    STACK_COMMAND: kb
    FOLLOWUP_IP:
    USBPORT!USBPORT_Core_UsbMapDpc_Worker+1ce
    fffffa60`0139041a 84c0 test al,al
    SYMBOL_STACK_INDEX: 6
    SYMBOL_NAME: USBPORT!USBPORT_Core_UsbMapDpc_Worker+1ce
    FOLLOWUP_NAME: MachineOwner
    MODULE_NAME: USBPORT
    IMAGE_NAME: USBPORT.SYS
    DEBUG_FLR_IMAGE_TIMESTAMP: 51ce4591
    IMAGE_VERSION: 6.0.6002.18875
    FAILURE_BUCKET_ID: X64_0xD1_USBPORT!USBPORT_Core_UsbMapDpc_Worker+1ce
    BUCKET_ID: X64_0xD1_USBPORT!USBPORT_Core_UsbMapDpc_Worker+1ce
    ANALYSIS_SOURCE: KM
    FAILURE_ID_HASH_STRING: km:x64_0xd1_usbport!usbport_core_usbmapdpc_worker+1ce
    FAILURE_ID_HASH: {1a5d1ed6-8cbb-8c24-4788-9f58003760d6}
    Followup: MachineOwner
    Wanikiya and Dyami--Team Zigzag

  • Need help. I am running a 27 in imac with 16 gigs of ram. Photoshop runs really fast, except when opening files. It takes 5-10 minutes to open even a small file of 1 meg. I cleaned and validated all the fonts and removed all questionable fonts. Reset pref

    Need help. I am running a 27 in imac with 16 gigs of ram. Photoshop runs really fast, except when opening files. It takes 5-10 minutes to open even a small file of 1 meg. I cleaned and validated all the fonts and removed all questionable fonts. Reset preferences and still have problem. Slow to open and in force quit "Photoshop not responding" At this point should I uninstall and start over.

    What are the performance Preferences?

  • Need help to find photo's on my backup drive,since installing Mountain Lion cannot find where they are stored.The backups after ML install are greyed out except in Applications, MyFiles and Devices really welcome a hand with this please.

    I need help to find my photo's please (2500) on my backup drive.Lost them after doing a clean install of Mountan Lion I have tried to find them but had no luck.  I use Time Machine with a 1TB Western Digital usb drive. Thanking anyone in anticipation of a solution.

    -Reece,
    We only have 1 single domain, 1 domain forest, no subdomains, only alias. I had replied to the other post as well. But I am happy to paste it here in case anyone want to read it.
    So, after a few months of testing, capture and sending logs back and forth to Apple Engineers, we found out there is a setting in AD, under User Account that prevent us to log into AD from Mountain Lion. If you would go to your AD server, open up a user account properties, then go to Account tab, the "Do not require Kerberos preauthentication" option is checked. As soon as I uncheck that option, immediately I was able to log into AD on the Mac client. Apple engineers copied all my AD settings and setup a test environment on their end and match exact mine AD environment. They was able to reproduce this issue.
    The bad part about this is... our environment required the "Do not require Kerberos preauthentication" is checked in AD, in order for our users to login into some of our Unix and Linux services. Which mean that it is impossible for us to remove that check mark because most, if not all of them some way or another require to login into applications that run on Unix and Linux. Apple is working to see if they can come up with a fix. Apparently, no one has report this issue except us. I believe most of you out there don't have that check mark checked in your environment... Anyone out there have any suggestion to by pass or have a work around for this?

  • Dynamic Client Exception - Need help

    Hi,
    Need help.......
    I am getting following exception, when I run
    my dynamic client.
    Attached below is my code as well as WSDL.
    Thanks in advance..
    Regards
    -Shakeel
    [java] javax.xml.rpc.JAXRPCException: failed to invoke operation 'Print' du
    e to an error in the soap layer (SAAJ); nested exception is: Message[ failed to
    serialize interface javax.xml.soap.SOAPElementweblogic.xml.schema.binding.Serial
    izationException: mapping lookup failure. class=interface javax.xml.soap.SOAPEle
    ment class context=TypedClassContext{schemaType=['http://learn.technologies.com/
    WS']:PrintRequest}]StackTrace[
    [java] javax.xml.soap.SOAPException: failed to serialize interface javax.x
    ml.soap.SOAPElementweblogic.xml.schema.binding.SerializationException: mapping l
    ookup failure. class=interface javax.xml.soap.SOAPElement class context=TypedCla
    ssContext{schemaType=['http://learn.technologies.com/WS']:PrintRequest}
    [java] at weblogic.webservice.core.DefaultPart.invokeSerializer(Default
    Part.java:328)
    CODE
    // Setup the global SAAJ message factory
    System.setProperty("javax.xml.soap.MessageFactory", "weblogic.webservice.core.soap.MessageFactoryImpl");
    // Setup the global JAX-RPC service factory
    System.setProperty( "javax.xml.rpc.ServiceFactory", "weblogic.webservice.core.rpc.ServiceFactoryImpl");
    ServiceFactory serviceFactory = ServiceFactory.newInstance();
    // define qnames
    String targetNamespace = "http://learn.technologies.com/WS";
    QName serviceName = new QName(targetNamespace, "PersonalDataService");
    QName portName = new QName(targetNamespace, "PersonalDataInterface");
    QName operationName = new QName(targetNamespace, "Print");
    URL wsdlLocation = new URL("http://localhost:7001/simpleexample/PersonalDataInterface?WSDL");
    // create service
    Service service = serviceFactory.createService(wsdlLocation, serviceName);
    // create call
    Call call = service.createCall(portName, operationName);
    WSDL
    <definitions xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
    xmlns:tns="http://learn.technologies.com/WS"
    targetNamespace="http://learn.technologies.com/WS">
    <types>
    <schema targetNamespace="http://learn.technologies.com/WS"
    xmlns="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified">
    <element name="PrintRequest">
    <complexType>
    <sequence>
    <element name="firstName" type="string"/>
    <element name="age" type="int"/>
    <element name="salary" type="double"/>
    </sequence>
    </complexType>
    </element>
    <element name="PrintResponse">
    <complexType>
    <sequence/>
    </complexType>
    </element>
    <element name="QueryRequest">
    <complexType>
    <sequence>
    <element name="id" type="double"/>
    </sequence>
    </complexType>
    </element>
    <element name="QueryResponse">
    <complexType>
    <sequence>
    <element name="return" type="tns:ArrayOfPersonalData"/>
    </sequence>
    </complexType>
    </element>
    <complexType name="PersonalData">
              <sequence>
              <element name="name" type="string"/>
              <element name="age" type="int"/>
              <element name="salary" type="double"/>
              </sequence>
    </complexType>
    <complexType name="ArrayOfPersonalData">
              <sequence>
              <element maxOccurs="unbounded" minOccurs="0" name="Item" type="tns:PersonalData"/>
              </sequence>
    </complexType>
    </schema>
    </types>
         <message name="PrintRequestMessage">
         <part name="PrintRequest" element="tns:PrintRequest"/>
         </message>
         <message name="PrintResponseMessage">
         <part name="PrintResponse" element="tns:PrintResponse"/>
         </message>
         <message name="QueryRequestMessage">
         <part name="QueryRequest" element="tns:QueryRequest"/>
         </message>
         <message name="QueryResponseMessage">
         <part name="QueryResponse" element="tns:QueryResponse"/>
         </message>
         <portType name="PersonalDataInterface">
              <operation name="Print">
                   <input name="PrintRequestMessage" message="tns:PrintRequestMessage"/>
              <output name="PrintResponseMessage" message="tns:PrintResponseMessage"/>
              </operation>
              <operation name="Query">
                   <input name="QueryRequestMessage" message="tns:QueryRequestMessage"/>
                   <output name="QueryResponseMessage" message="tns:QueryResponseMessage"/>
              </operation>
         </portType>
         <binding name="PersonalDataIntfBinding" type="tns:PersonalDataInterface">
         <soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
         <operation name="Print">
              <soap:operation/>
              <input> <soap:body use="literal"/> </input>
              <output> <soap:body use="literal"/> </output>
         </operation>
         <operation name="Query">
              <soap:operation/>
              <input> <soap:body use="literal"/> </input>
              <output> <soap:body use="literal"/> </output>
         </operation>
         </binding>
         <service name="PersonalDataService">
         <port name="PersonalDataInterface" binding="tns:PersonalDataIntfBinding">
              <soap:address location="http://localhost:7001/simpleexample/PersonalDataInterface"/>
         </port>
         </service>
    </definitions>

    Exception is coming on following line (forgot
    to paste in first post)
         Object result = call.invoke(new Object[] { "Shakeel", new Integer (30), new Double(2000) });

  • Need help urgently, I upgraded my iPhone 4 with new OS 5, but at the last restore failed. Apple Customer Care helped me to resynch my phone with all that available in Library. I've got all back except my Contact no. Pls help guys, thnx

    Need help urgently, I upgraded my iPhone 4 with new OS 5, but at the last restore failed. Apple Customer Care helped me to resynch my phone with all that available in Library. I've got all back except my Contact no. Pls help guys, thnx Plz guys anyone can help plzz....I've lost all contact and I dont even have any secondary back up also...!!!

    If you've had it for less than a year, then it's still under warranty.  Take it to an Apple store or an authorized service facility.  See http://support.apple.com/kb/HT1434

  • Need help with error: XML parser failed: Error An exception occurred! Type:......

    <p>Need help with the following error.....what does it mean....</p><p>28943 3086739136 XML-240304 3/7/07 7:13:23 PM |SessionNew_Job1<br /><font color="#ff0000">28943 3086739136 XML-240304 3/7/07 7:13:23 PM XML parser failed: Error <An exception occurred! Type:UnexpectedEOFException, Message:The end of input was not expected> at</font><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM line <7>, char <8> in <<?xml version="1.0" encoding="WINDOWS-1252" ?><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <DSConfigurations><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <DSConfiguration default="true" name="Configuration1"><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <case_sensitive>no</case_sensitive><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <database_type>Oracle</database_type><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <db_alias_name1>ODS_OWNER</db_alias_name1><br />28943 3086739136 XML-240304 3/7/07 7:13:23 PM <db_ali>, file <>.<br />28943 3086739136 XML-240307 3/7/07 7:13:23 PM |SessionNew_Job1<br />28943 3086739136 XML-240307 3/7/07 7:13:23 PM XML parser failed: See previously displayed error message.</p><p>Any help would be greatly appreciated.  It&#39;s something to do with my datasource and possibly the codepage but I&#39;m really not sure.</p><p>-m<br /></p>

    please export your datastore as ATL and send it to support. Somehow the internal language around configurations got corrupted - never seen before.

  • General exception error need help!

    Experts,
    i am facing this problem. i connect to the net by proxy (through office Lan). none of the java applets work for me. Need help
    Java Plug-in 1.5.0_08
    Using JRE version 1.5.0_08 Java HotSpot(TM) Client VM
    User home directory = C:\Documents and Settings\mkrishna
    network: Loading user-defined proxy configuration ...
    network: Done.
    network: Loading direct proxy configuration ...
    network: Done.
    network: Proxy Configuration: No proxy
    basic: Cache is enabled
    basic: Location: C:\Documents and Settings\mkrishna\Application Data\Sun\Java\Deployment\cache\javapi\v1.0
    basic: Maximum size: unlimited
    basic: Compression level: 1
    c: clear console window
    f: finalize objects on finalization queue
    g: garbage collect
    h: display this help message
    l: dump classloader list
    m: print memory usage
    o: trigger logging
    p: reload proxy configuration
    q: hide console
    r: reload policy configuration
    s: dump system and deployment properties
    t: dump thread list
    v: dump thread stack
    x: clear classloader cache
    0-5: set trace level to <n>
    basic: Registered modality listener
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@872380, refcount=1
    basic: Registered modality listener
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@872380, refcount=2
    basic: Registered modality listener
    basic: Referencing classloader: sun.plugin.ClassLoaderInfo@872380, refcount=3
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@15212bc
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@97a560
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    basic: Added progress listener: sun.plugin.util.GrayBoxPainter@1ea5671
    basic: Loading applet ...
    basic: Initializing applet ...
    basic: Starting applet ...
    basic: httpCompression = true
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/liste.jar with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/ZoneFavoris.class with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/ZoneFavoris.class with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/Outline.class with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/ZoneFavoris/class.class with proxy=DIRECT
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/ZoneFavoris/class.class with proxy=DIRECT
    load: class ZoneFavoris.class not found.
    java.lang.ClassNotFoundException: ZoneFavoris.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Exception: java.lang.ClassNotFoundException: ZoneFavoris.class
    java.lang.ClassNotFoundException: ZoneFavoris.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality popped
    basic: Modality popped
    basic: Modality popped
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality popped
    basic: Modality popped
    basic: Modality popped
    network: Connecting http://150.101.78.39/dsmapp/catalog/classes/Outline/class.class with proxy=DIRECT
    load: class ZoneFavoris.class not found.
    java.lang.ClassNotFoundException: ZoneFavoris.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Exception: java.lang.ClassNotFoundException: ZoneFavoris.class
    java.lang.ClassNotFoundException: ZoneFavoris.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality popped
    basic: Modality popped
    basic: Modality popped
    load: class Outline.class not found.
    java.lang.ClassNotFoundException: Outline.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Exception: java.lang.ClassNotFoundException: Outline.class
    java.lang.ClassNotFoundException: Outline.class
         at sun.applet.AppletClassLoader.findClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadClass(Unknown Source)
         at java.lang.ClassLoader.loadClass(Unknown Source)
         at sun.applet.AppletClassLoader.loadCode(Unknown Source)
         at sun.applet.AppletPanel.createApplet(Unknown Source)
         at sun.plugin.AppletViewer.createApplet(Unknown Source)
         at sun.applet.AppletPanel.runLoader(Unknown Source)
         at sun.applet.AppletPanel.run(Unknown Source)
         at java.lang.Thread.run(Unknown Source)
    Caused by: java.io.IOException: open HTTP connection failed.
         at sun.applet.AppletClassLoader.getBytes(Unknown Source)
         at sun.applet.AppletClassLoader.access$100(Unknown Source)
         at sun.applet.AppletClassLoader$1.run(Unknown Source)
         at java.security.AccessController.doPrivileged(Native Method)
         ... 10 more
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality pushed
    basic: Modality popped
    basic: Modality popped
    basic: Modality popped

    Hi
    I think you need to configure proxy for the JRE
    If you are using windows Go to control panel , you will find an icon called java plugin. if you have installed multiple JRE you will find multiple icons . Select the one which is configured to browser.
    You will find a proxies tab in that window , add the proxy details there
    Hope this helps you
    Vijay

  • Exception error, Need Help!

    Need help!
    Why my java program work well under C:\, but can't under D:\Java today? It worked well even yesterday. I had tried the "Hello World", it can not work under D:\Java either.
    when I enter the "java d:\java\Hello" order(after javac of cause), those displays are here:
    Exception in thread "main" java.lang.NoClassDefFoundError: d:\java\Hello
    Caused by: java.lang.ClassNotFoundException:d:\java\Hello
    at java.net.URLClassLoader$1.run<URLClassLoader.java:200>
    at java.security.AccessController.doPrivileged<Native Method>
    at java.net.URLClassLoader.findClass<URLClassLoader.java:188>
    at java.lang.ClassLoader.loadClass<ClassLoader.java:306>
    at sun.misc.Launcher$AppClassLoader.loadClass<Launcher.java:276>
    at java.lang.ClassLoader.loadClass<ClassLoader.java:251>
    at java.lang.ClassLoader.loadClassInternal<ClassLoader.java:319>
    The Hello.java has no problem,and it worked well even yesterday!
    I just don't know what had happened.
    Someone who can help me please reply or email at [email protected]
    Thank you!

    The simple "Hello World" can work under Editplus, but can't under DOS.
    The error appears as the same. I don't know what I should do, could you tell me please?
    Thank you!First test whether environment variables had been set properlyor not
    To test :-
    1) Open cmd
    2) type java
    3) If it runs that means you have set it properly
    Then go to your program directory i.e d:\java\
    and type
    javac Hello.java //to compile it and then
    java Hello //To run it

  • I have an iPod Nano 7th generation, and I keep getting an error saying that iTunes could not recognize my device. I have tried nearly everything,except I don't have admin rights on the computer, and really need help.

    I've tried a lot to get it to work, even using a new charger and putting it into Disk Mode. I really need help. Can anyone give me some advice? Thanks.

    Hi Dawson777,
    Thanks for visiting Apple Support Communities.
    It sounds like you're receiving the message "An iPod has been detected, but it could not be identified properly" when you connect your iPod nano to your PC. You have tried some good troubleshooting steps already, and you may want to review the additional steps in this article:
    iPod nano: Error message saying that iPod 'could not be identified properly'
    http://support.apple.com/kb/ts3218
    Best Regards,
    Jeremy

  • Need help with a currently "in-use" form we want to switch to Adobes hosting service

    Hi, I am in desperate need of help with some issues concerning several forms which we currently use a paid third party (not Adobe) to host and "re-distribute through email"...Somehow I got charged $14.95 for YOUR service, (signed up for a trial, but never used it)..and now I am paying for a year of use of the similar service which Adobe is in control of.  I might want to port my form distribution through Adobe in the hopes of reducing the errors, problems and hassles my customers are experiencing when some of them push our  "submit button". (and I guess I am familiar with these somewhat from reading what IS available in here, and I also know that, Adobe is working to alleviate some of these " submit"  issues, so let's don't start by going backwards, here) I need solutions now for my issues or I can leave it as is, If Adobe's solution will be no better for my end users...
    We used FormsCentral to code these forms and it works for the most part (if the end-user can co-operate, and thats iffy, sometimes), but I need help with how to make it go through your servers (and not the third party folks we use now), Not being cruel or racist here, but your over the phone "support techs" are about horrible & I cannot understand them or work with any of them, so I would definitely need someone who speaks English and can understand the nuances of programming these forms, to please contact me back. (Sorry, but both those attributes will be required to be able to help me, so, no "newbie-interns" or first week trainees are gonna cut it).... If you have anyone who fits the bill on those items and would be willing to help us, please contact me back at your earliest convenience. If we have to communicate here, I will do that & I can submit whatever we need to & to whoever we need to.
    I need to get this right and working for the majority of my users and on any platform and OS.
    You may certainly call me to talk about this, and I have given my number numerous times to your (expletive deleted) time wasting - recording message thingy. So, If it's not available look it up under [email protected]
    (and you will probably get right to me, unlike my and I'm sure most other folks',  "Adobe phone-in experiences")
    Thank You,
    Michael Corman
    VinylCouture
    Phenix City, Alabama  36869

    Well, thanks for writing back...just so you know...I started using Adobe products in 1987, ...yeah...back then...like Illustrator 1 & 9" B&W Macs ...John Warnock's Helvetica's....stuff like that...8.5 x 11 LaserWriters...all that good stuff...I still have some of it working on a mac...much of it was stuff I bought. some stuff I did not...I'm not a big fan of this "cloud" thing Adobe has foisted upon the creatives of the world...which I'm sure you can tell...but the functionality and usefulness of your software can not be disputed, so feel free to do whatever we will continue to pay for, ...I am very impressed with CC PS on the 64 bit PC and perhaps I will end up paying you the stipend that you demand for the other services.
    So  I guess that brings us to our problem.. a few years back and at the height of the recession and near bankruptcy myself,  I was damn lucky and hit on something and began a small arts and crafts supply service to sell my products online to a very "niche market" ...I had a unique product and still sell that product (plus others) online...My website is www.vinylcouture.com...Strange? Yes...but there is a market it seems, for everything now, and this is the market I service...Catagorically, these are 99%+ women that use these "adhesive, sticky backed vinyl products"  to make different "craft items" that are just way too various and numerous to go into... generally older women, women who are computer illiterate for the most part...and all this is irrelevant to my problem, but I want you to have every bit of background on this and especially the demographic we are dealing with, so we can get right to the meat of the problem.
    OK...So about two years ago, I decided to offer a "plain sheet" product of a plain colored "stick back" vinyl... it is available in multiple quantities of packs ( like 5 pieces, 10 pieces, 15 pieces, in a packi  & so on)...and if you are still on my site.. go to any  "GO RIGHT TO OUR ORDER PAGE"  button, scroll down a little...and then to the "PLAIN VINYL" section...you will see the Weebly website order process.) You can back out from here, I think,..but, anyway this product is available in 63 colors + or - a few. So then the problem is,  how do they select their individual colors within that (whatever) pack?... .
    So my initial idea was to enable a "selection form" for these "colors" that would be transmitted to me via email as 'part" of the "order process".. We tried getting our customers to submit a  " a list" ( something my competitiors still do, lol, poor bastards)......but that..is just unbelievable..I can't even begin to tell you what a freakin' nightmare that was...these people cannot even count to 10, much less any higher... figuring out what colors to list and send me... well, lets just say, it wasn't working......I had to figure out a better way...Something had to be done.
    So after thinking this all out,  and yeah...due to my total ignorance, i figured that we could make a form with Live Cycle Designer (Now Forms Central)...(back then something that was bundled with Adobe Acrobat Pro), I believe, and thats what this thing was authored in... and it would be all good...LOL!
    Well not so simple...as you well know, Adobe Acrobat would NOT LET YOU EMAIL anything from itself.....it just wouldn't work (and I know why, and all that hooey), but not being one to take NO for answer,.I started looking for a way to make my little gizmo work.. So I found this company that said they can "hijack" (re-direct actually) the request to email, bypass the wah-wah, and re-transmit it to the proper parties.....for less than $100 a year,  I think...its called http://pdf-fillableforms.com/.
    A nice gentleman named Joseph Silva helped us program the thing to go to his servers and back out. Please dont hassle them...I need them...for now..it basically does work...try it...you should get back a copy of the form that you filled out...good luck however,  if you're on MAC OSX or similar...
    I have included a copy of both of our forms (and feel free to fill it out and play with it)...just put test somewhere on it...(and you must include YOUR email or it will balk)..they are supposed to be mostly identical, except one seems to be twice as large....generating a 1.7 meg file upon submission, while the other one only generates a 600K file or so...thats another issue for another day or maybe you can advise on that also...
    OK so far so good......In our shop, once Grandma buys a 10 pack (or whatever), Only then she gets to the link on her receipt page ro the relevant "selection form" ,(this prevents "Filling and Sending"  with "no order" and "no payment", another early problem we had)... which they can click on and it will usually download and open up on their device if all goes well...Then our little form is supposed to be fillable and is supposed to ADD UP all the quantities, so grandma knows how many she is buying and so forth right on the fly,  and even while she changes her mind..., and IT'S LARGE so grandma can see it, and then it TOTALS it all up for them, ( cause remember, they can NOT add)..,  except there is a programming bug (mouse-click should be a mouse-up probably or something..) which makes you click in the blank spaces to get to a correct TOTAL...about 70-80% of our customers can enable all these features and usually the process completes without problems for them especially on PC's running Windows OS and Acrobat Reader X or XI...at least for most... Unfortunately it is still not the "seamless process" I would like or had envisioned for the other folks out there that do have trouble using our form....  Many folks report to us the following issues that we know of.  First of all it takes too much time to load up...We know its HUGE...is there anyway that you can see, to streamline this thing? I would love for it to be more compact...this really helps on the phones and pads as I'm sure you well know.
    Some just tell us,"it WON'T work"....I believe this is because they are totally out of it and dont even have Adobe Reader on their machine, & don't know how to get it ( yes, we provide the links).....or it's some ancient version....no one can stop this one...
    It almost always generates some kind ( at least one time)  of "error message" which we do warn them about..., telling one,  basically that "Acrobat doesnt even like this happening at all, and it could be detrimental to ones computer files", blah-blah...(this freaks grandma out really bad)...& usually they end up not even trying to send it...  and then I get calls that even you wouldn't believe...& If they DO nut up and push the Red "Submit Form" button, it will usually send the thing to us (and also back to them at the "required email address" they furnished on the form, thats what the folks at the "fillable forms place" do) so, if it's performing it's functions, why it is having to complain?. What are we doing wrong?....and how can I fix it?...Will re-compiling it or saving it as a newer version of "FormsCentral" correct any of these problems ?
    Ok, so that should keep you busy for a minute and we can start out with those problems...but the next thing is, how can I take advantage of YOUR re-direct & hosting services?, And will it get rid of the error messages, and the slowness, and the iOS incompatibilities ? (amazingly,  the last iOS Reader version worked almost OK.. but the newest version doesnt seem to work with my form on my iphone4)  If it will enable any version of the iOS to send my form correctly and more transparently, then it might be worth the money...$14.95 a MONTH you say. hmmmmm...Better be good.
    Another problem is, that I really don't need 5000 forms a month submitted. I think its like 70-100 or less....Got any plans for that?  Maybe I'm just not BIG ENOUGH to use Adobe's services, however in this case, I really don't care whose I do use as long as the product works most correctly for my customers as well as us. Like I said, If I'm doing the best I can, I won't change anything, and still use the other third party, If Adobe has a better solution, then i'm all for that as well. In the meantime, Thanks for any help you can provide on this...
    Michael Corman
    VinylCouture.com
    (706) 326-7911

Maybe you are looking for