PLEASE HELP! Using Apache SOAP with WL61

Hi,
I am trying to run the Apache soap within the WL61.
I have the Apache soap servlet deployed under WL61.
I am trying to use org.apache.soap.server.ServiceManagerClient
to deploy the sample AddressBook service. I get the following error: "Unable to
resolve namespace URI for 'xsd'".
Now, the Apache SOAP faq says, I need to use the 1.3.0 xeces.jar
on both server and client to solve this problem.
However, WL61 server wont come up with the 1.3.0 xerces.jar file
I am in a catch 22 situation, please help.
thanks

I had exactly this problem and by following the advice below I got it to work using
crimson.jar from apache.
Step 1: put crimson.jar frst in classpath
Step 2: put the following in config.xml
<XMLRegistry DocumentBuilderFactory="org.apache.crimson.jaxp.DocumentBuilderFactoryImpl"
Name="Xerces JAXP" SAXParserFactory="org.apache.crimson.jaxp.SAXParserFactoryImpl"
/>
Step 3: updated Server entry in config.xml to point to "Xerces JAXP" as explained
below.
I know this does not add a lot to the idea below but it is an alternative.
Thanks,
George
Manoj Cheenath <[email protected]> wrote:
>
This is something i found in apache soap mailing list:
------- Original Message --------That fixed it! Thanks, Stefan!
-----Original Message-----
From: Stefan Dube [mailto:[email protected]]
Sent: Wednesday, June 13, 2001 4:15 AM
To: [email protected]
Subject: RE: compatibility with weblogic 6.1 beta
Hi!
I believe the problem is that SOAP 2.2 uses JAXP and WL uses their
bundled
xerces as JAXP parser.
To override this you have to modify the config.xml like this: (or
use the web
console)
Add following element as child of the <Domain> element:
<XMLRegistry
DocumentBuilderFactory="org.apache.xerces.jaxp.DocumentBuilderFactoryImpl"
Name="Xerces JAXP"
SAXParserFactory="org.apache.xerces.jaxp.SAXParserFactoryImpl"
/>
and modify the <Server> element like this:
<Server
InstrumentStackTraceEnabled="true"
ListenPort="80"
LogRemoteExceptionsEnabled="true"
Name="myServer"
NativeIOEnabled="true"
XMLRegistry="Xerces JAXP" <-- only this line is important
>
Hope that helps,
-sd
-----Original Message-----
From: Erik Onnen [mailto:[email protected]]
Sent: Wednesday, June 13, 2001 1:33 AM
To: '[email protected] '
Subject: RE: compatibility with weblogic 6.1 beta
The "unable to resolve namespace" problem is because BEA in
their infinite
wisdom chose to mesh Xerces into their own libraries.
Unfortunately they
used an old version and because it is so embedded, you can't
just replace a
JAR. I was able to get 2.1 working on 6.0 sp1 by moving
Xerces to the front
of the classpath in the startup script. Ed, when WL won't
start, what is the
error you get? I haven't heard of that happening before.
Steve, when you say
Xerces is in your classpath, is it at the front, before weblogic.jar?
-----Original Message-----
From: Steve Livingston
To: [email protected]
Sent: 6/12/01 6:46 PM
Subject: RE: compatibility with weblogic 6.1 beta
1) I get the same error (with NT, soap-2.2 and wl-6.1beta) andhave
found no solution:
E:\apache\soap-2_2\samples\addressbook>java
org.apache.soap.server.ServiceManagerClient
http://slivings:7001/soap/servlet/rpcrouter list
Deployed Services:
E:\apache\soap-2_2\samples\addressbook>java
org.apache.soap.server.ServiceManagerClient
http://slivings:7001/soap/servlet/rpcrouter deploy dd.xml
Ouch, the call failed:
Fault Code = SOAP-ENV:Client
Fault String = Unable to resolve namespace URI for 'ns2'.
2) My wl-6.1b will start with xerces in classpath, but same error
occurs.
Can anyone help?
Steve
-----Original Message-----
From: Ed Keen [mailto:[email protected]]
Sent: Monday, June 11, 2001 6:36 PM
To: '[email protected]'
Subject: compatibility with weblogic 6.1 beta
Has anyone gotten Apache soap version 2.2 to work with Weblogic6.1
beta?
There seems to be a xerces incompatibility. The weblogic.jarfile
contains
the xerces library. If you put xerces.jar first in the classpath,
weblogic
won't even start. However, if you put weblogic.jar first in the
classpath,
you get this error when attempting to deploy services using the
ServiceManagerClient: "Unable to resolve namespace URI for 'ns2.'"
This obviously seems to be a xerces parsing issue. Does
anyone know of
a
workaround for this?
Thanks,
EdSanjeev Hegde wrote:
Hi,
I am trying to run the Apache soap within the WL61.
I have the Apache soap servlet deployed under WL61.
I am trying to use org.apache.soap.server.ServiceManagerClient
to deploy the sample AddressBook service. I get the following error:"Unable to
resolve namespace URI for 'xsd'".
Now, the Apache SOAP faq says, I need to use the 1.3.0 xeces.jar
on both server and client to solve this problem.
However, WL61 server wont come up with the 1.3.0 xerces.jar file
I am in a catch 22 situation, please help.
thanks

Similar Messages

  • Apache SOAP with websphere 6.1

    I want to use Apache SOAP in websphere 6.1 since we will be reusing the framework developed already using Apache SOAP.This has been implemented only with weblogic previously.
    Now we are trying to use this in combination with websphere 6.1,Is this supported?How to proceed?

    Hi Thierry,
    When we wrote the web services layer for BEA we purposefully left out
    stateful session beans and entity beans because they did not match the
    "services" model and there is no standard way to keep the state between
    calls to the service. I believe the Apache implementation uses the HTTP
    session for this behaviour. I don't know what the problem is with the
    Apache SOAP implementation but I can try and help you either 1) use a
    stateless session bean to call your sfsb, or 2) convince me that stateful
    beans implemented outside the web services standard is something BEA should
    support.
    Sam
    "Thierry Janaudy" <[email protected]> wrote in message
    news:[email protected]..
    Hello,
    I wanted to use BEA's implementation of SOAP, but the problem is that you
    cannot call SFSB.
    Therefore I tried to install and run Apache SOAP (Which provides a service
    for SLSB, SFSB, EB).
    However, you I try to remotely list the services through:
    java -cp %CP% org.apache.soap.server.ServiceManagerClient
    http://localhost:7001/soap/servlet/rpcrouter list
    I always get
    Exception in thread "main" java.lang.NoSuchMethodError
    at org.apache.soap.util.xml.QName.<init>(QName.java:80)
    at org.apache.soap.util.xml.QName.matches(QName.java:146)
    at org.apache.soap.Envelope.unmarshall(Envelope.java:237)
    at org.apache.soap.rpc.Call.invoke(Call.java:230)
    at
    org.apache.soap.server.ServiceManagerClient.invokeMethod(ServiceManagerClien
    t.java:129)
    at
    org.apache.soap.server.ServiceManagerClient.list(ServiceManagerClient.java:1
    51)
    at
    org.apache.soap.server.ServiceManagerClient.main(ServiceManagerClient.java:2
    37)
    Do you have any idea why?
    Thx

  • I am having a problem with pop pups and small windows with ads constantly opening up on my safari?? Thought that macs didn't get virus? this looks like one- any experts around? please help me fix it with your instructions? really don't know what to do...

    Hi everyone,
    I am having a problem with my Mac OS X 10.7.5 mac book air , there are constant pop pups and small windows with ads blinking constantly opening up on my safari in front of everything?? it is constantly interupting me and makes me mistakingly click on it then another new windows open behind the one im using..
    I am not too sure if thats a virus or trojan.. I always thought that macs didn't get virus? this looks like one to me… any experts around? please help me fix it with your instructions? really don't know what to do... thanks

    Those are not viruses. You have probably installed some malware:
    The Safe Mac » Adware Removal Guide
    Helpful Links Regarding Malware Protection
    An excellent link to read is Tom Reed's Mac Malware Guide.
    Also, visit The XLab FAQs and read Detecting and avoiding malware and spyware.
    See these Apple articles:
              Mac OS X Snow Leopard and malware detection
              OS X Lion- Protect your Mac from malware
              OS X Mountain Lion- Protect your Mac from malware
              About file quarantine in OS X
    If you require anti-virus protection Thomas Reed recommends using Dr.Web Light from the App Store. It's free, and since it's from the App Store, it won't destabilize the system. If you prefer one of the better known commercial products, then Thomas recommends using Sophos.(Thank you to Thomas Reed for these recommendations.) If you already use Sophos, then be aware of this if you are using Mavericks: OS X Mavericks- Sophos Anti-Virus on-access scanner versions 8.0 - 9.1 may cause unexpected restarts
    From user Joe Bailey comes this equally useful advice:
    The facts are:
    1. There is no anti-malware software that can detect 100% of the malware out there.
    2. There is no anti-malware that can detect anything targeting the Mac because there
         is no Mac malware in the wild, and therefore, no "signatures" to detect.
    3. The very best way to prevent the most attacks is for you as the user to be aware that
         the most successful malware attacks rely on very sophisticated social engineering
         techniques preying on human avarice, ****, and fear.
    4. Internet popups saying the FBI, NSA, Microsoft, your ISP has detected malware on
        your computer is intended to entice you to install their malware thinking it is a
        protection against malware.
    5. Some of the anti-malware products on the market are worse than the malware
        from which they purport to protect you.
    6. Be cautious where you go on the internet.
    7. Only download anything from sites you know are safe.
    8. Avoid links you receive in email, always be suspicious even if you get something
        you think is from a friend, but you were not expecting.
    9. If there is any question in your mind, then assume it is malware.

  • Someone please help a complete beginner with Enterprise Manager!

    Question moved from
    Someone please help a complete beginner with Enterprise Manager!
    Please be gentle with me, I'm absolutely new to all this. We don't have a proper DBA and I've been tasked with the role. There is no-one else in the company with oracle experience and we don't have any support. Until now I've just used enterprise manager to manage the database, but now I have a problem..
    We are using Windows Server 2003 and Oracle 10g. I (stupidly) installed some network monitoring software on our server (PRTG network monitor). I almost immediately uninstalled it and all components/registry settings, but it seems to have thrown something out regards the OEM web interface.
    We used to access the OEM GUI through http://<hostname>:5500/em, but after installing/uninstalling the network monitor software the OEM webpage would only stay up for a few minutes, before saying 'Internet Explorer cannot display the webpage'. Restarting the DBconsole in services fixed the problem, but again, only for a few minutes.
    Spent all day yesterday looking at logfiles (they didn't make much sense to me), but seemed to be saying access was denied to the server ('actively denied it'). Lots of googling led me to believe I needed to reconfigure OEM by dropping and recreating it using:
    emctl stop dbconsole
    emca -deconfig dbcontrol db
    emca -repos recreate
    during this process I was asked for various passwords and a port number? I didn't even know what to use as the port number but guessed it was 5500 ?!? (probably wrong). As it didn't work I used the default port number that I found somewhere on the web.
    However now I am even deeper in the **** as this didn't work either, (some error about listnener?) and I have now lost the DBConsole in windows services. Obviously the OEM web console doesn't work at all now
    I would be eternally grateful for some patient, beginners help here..I can post whatever log files are necessary - I just need to know what I'm supposed to be doing and where to start..
    We used to log on to the OEM as 'SYSTEM', but nowhere in the process does it seem to ask me for the password for that (its asked me for SYS and SYSMAN)
    It could be that I'm going about this completely wrong, but with only a days experience in all this its pretty hard to know what I'm doing really!
    As you can tell I'm in way over my head..I just need OEM web interface to work!
    Thanks in advance

    ok, thanks to helpful comments from other people in my initial thread (posted in general database forum), after rebuilding the console/repository I now have EM up and running. But there are more problems..
    Firstly I have an error at the very top of the screen:
    java.lang.Exception: Number of responses does not match queries
    Also, the 'Host CPU' and 'Active Sessions' are blank and say 'No Data Is Currently Available' beneath them
    my emagent.trc file contains this error, repeating with different thread IDs every 30 seconds...
    (error = 10061)
    2012-04-30 17:19:28 Thread-4376 ERROR pingManager: nmepm_pingReposURL: Cannot connect to http://hostname:5500/em/upload/: retStatus=-1
    2012-04-30 17:19:59 Thread-1448 WARN http: snmehl_connect: connect failed to (hostname:5500): No connection could be made because the target machine actively refused it.
    Help!

  • Can I use Sound Soap with Garage Band?

    Can I use sound soap with GarageBand?

    No you cannot. Sound Soap only comes as an RTAS pluggin and GarageBand can only host AU (Audio Unit) pluggins. Here are some alternatives from Izotope, an entry level option https://www.izotope.com/products/audio/msc/ and their more 'Pro' version https://www.izotope.com/products/audio/rx/ Hope that helps.

  • I have an ipod 2g , The keyboard won't work! Or at least some of it's letters and numbers won't. please help i'm stuck with emojis

    i have an ippd touch 2g , a part of my keyboard won't work , i can type letters but i can't type numbers . please help i'm stuck with emojis keyboard

    Try restarting the iPod by holding down the lock and home button together and then slide the power button to turn it off and then wait 10 seconds and start it up again. If it is not a reset issue then it may be a hardware issue. Is your iPod damaged or have you dropped it recently? If it is a hardware problem then you may not be able to fix it. If your iPod has multitasking options like the new iOS devices, close out the app and then try again, it should reset your device to letters instead of emojis.

  • Please help...Problem with 3D Applet using JRE 1.5

    Hi all,
    I have an applet which uses sun opengl 1.3.1 plugin to render some 3D graphics. It is working fine with JRE 1.4.2_06, but not showing the 3D graphics with the latest JRE 1.5 release. I tried to repaint using available API with no success.
    Please help asap,
    Thanks in advance
    prasad

    I wonder if you have the same problem as me... Maybe we can find a solution for us both, no need for me to open a new thread for this topic then...
    I wrote an applet using Swing and compiled it using JavaSDK 1.4.x. I also installed the 1.4.x JRE for both of my test browsers. In Mozilla 1.1 the applet displays properly all the time. In IE6 SP1 it sometimes works as intended but sometimes the applet simply stops working, as per my Java Console somewhere after invoking the "start" method. Parts of the applet simply become gray and when I resize it - I have a JFrame in my applet - the whole JFrame becomes gray and does not respond to input nor it redraws itself. Shutting down IE does not close the JFrame(although the java console reports normal program termination and cleanup) and the only way to close it is through the task manager. I am using Windows 98SE btw.
    Does it sound similiar to your problem? It happens ONLY with IE, not with Mozilla. Anybody has an idea on what it could be? I doubt there's an error in my code...

  • Linkage Error when using Apache SOAP 2.2 with Weblogic 6.1

    Has anyone seen this error before? Apparently I've got some incompatible versions of xerces being loaded. I tried putting different versions of xerces.jar in the front of my classpath, and creating an XML Registry to point to org.apache.xerces.jaxp..., but I always get the same error message.
    D:\soap>java -classpath "/soap-2_2/lib/soap.jar;activation.jar;mail.jar;xerces.jar;." org.apache.soap.server.Servic
    eManagerClient http://localhost:8001/App/servlet/rpcrouter list
    Ouch, the call failed:
    Fault Code = SOAP-ENV:Server.Exception:
    Fault String = loader constraints violated when linking org/xml/sax/InputSource class

    Has anyone seen this error before? Apparently I've got some incompatible versions of xerces being loaded. I tried putting different versions of xerces.jar in the front of my classpath, and creating an XML Registry to point to org.apache.xerces.jaxp..., but I always get the same error message.
    D:\soap>java -classpath "/soap-2_2/lib/soap.jar;activation.jar;mail.jar;xerces.jar;." org.apache.soap.server.Servic
    eManagerClient http://localhost:8001/App/servlet/rpcrouter list
    Ouch, the call failed:
    Fault Code = SOAP-ENV:Server.Exception:
    Fault String = loader constraints violated when linking org/xml/sax/InputSource class

  • Help!Apache compiling with gcc in Solaris 10

    Greetings
    I am having problems with Apache 1.3.
    When I am running the script ./src/Configure my output is:
    #./Configure
    Using config file: Configuration
    Creating Makefile
    + configured for Solaris 2100 platform
    + setting C pre-processor to gcc -E
    + using "tr [a-z] [A-Z]" to uppercase
    + checking for system header files
    + adding selected modules
    ./helpers/TestCompile: make: not found
    + using builtin Expat
    ./Configure: make: not found
    + checking sizeof various data types
    ./helpers/TestCompile: make: not found
    ./helpers/TestCompile: make: not found
    ./helpers/TestCompile: make: not found
    ./helpers/TestCompile: make: not found
    ./helpers/TestCompile: make: not found
    ./helpers/TestCompile: make: not found
    ./helpers/TestCompile: make: not found
    ./helpers/TestCompile: make: not found
    ./helpers/TestCompile: make: not found
    + doing sanity check on compiler and options
    ./helpers/TestCompile: make: not found
    ** A test compilation with your Makefile configuration
    ** failed. The below error output from the compilation
    ** test will give you an idea what is failing. Note that
    ** Apache requires an ANSI C Compiler, such as gcc.
    ======== Error Output for sanity check ========
    ./helpers/TestCompile: make: not found
    ============= End of Error Report =============
    Aborting!
    I am root, my PATH is
    /usr/bin:/usr/ucb:/etc:/usr/local/bin:/opt/netscape:/usr/css/bin/:/bin:/usr/openwin/bin:/usr/sbin:/
    I am missing something stupid, I know but I can't find it!!!!Help please I am a newbie.
    I am curious. Has anyone been able to compile succesfully apache server with gcc in Solaris 10?
    Thanks,

    Thanks,
    It was only that.!!!
    But now I have the following problem, I can't create executables when I type make. The output is:
    when I am in the src/folder
    #make
    ===> regex
    <=== regex
    ===> os/unix
    gcc -c -I../../os/unix -I../../include -DSOLARIS2=2100 -DUSE_HSREGEX -DUSE_EXPAT -I../../lib/expat-lite -DNO_DL_NEEDED os.c
    In file included from /usr/include/sys/wait.h:24,
    from ../../include/ap_config.h:1079,
    from os.c:21:
    /usr/include/sys/siginfo.h:259: error: parse error before "ctid_t"
    /usr/include/sys/siginfo.h:292: error: parse error before '}' token
    /usr/include/sys/siginfo.h:294: error: parse error before '}' token
    /usr/include/sys/siginfo.h:390: error: parse error before "ctid_t"
    /usr/include/sys/siginfo.h:392: error: conflicting types for `__proc'
    /usr/include/sys/siginfo.h:261: error: previous declaration of `__proc'
    /usr/include/sys/siginfo.h:398: error: conflicting types for `__fault'
    /usr/include/sys/siginfo.h:267: error: previous declaration of `__fault'
    /usr/include/sys/siginfo.h:404: error: conflicting types for `__file'
    /usr/include/sys/siginfo.h:273: error: previous declaration of `__file'
    /usr/include/sys/siginfo.h:420: error: conflicting types for `__prof'
    /usr/include/sys/siginfo.h:287: error: previous declaration of `__prof'
    /usr/include/sys/siginfo.h:424: error: conflicting types for `__rctl'
    /usr/include/sys/siginfo.h:291: error: previous declaration of `__rctl'
    /usr/include/sys/siginfo.h:426: error: parse error before '}' token
    /usr/include/sys/siginfo.h:428: error: parse error before '}' token
    /usr/include/sys/siginfo.h:432: error: parse error before "k_siginfo_t"
    /usr/include/sys/siginfo.h:437: error: parse error before '}' token
    In file included from /usr/include/sys/procset.h:24,
    from /usr/include/sys/wait.h:25,
    from ../../include/ap_config.h:1079,
    from os.c:21:
    /usr/include/sys/signal.h:85: error: parse error before "siginfo_t"
    In file included from ../../include/ap_config.h:1079,
    from os.c:21:
    /usr/include/sys/wait.h:86: error: parse error before "siginfo_t"
    In file included from ../../include/ap_config.h:1096,
    from os.c:21:
    /usr/include/signal.h:111: error: parse error before "siginfo_t"
    /usr/include/signal.h:113: error: parse error before "siginfo_t"
    *** Error code 1
    make: Fatal error: Command failed for target `os.o'
    Current working directory /web-download/apache_1.3.33/src/os/unix
    *** Error code 1
    The following command caused the error:
    for i in regex os/unix ap main lib modules; do \
    echo "===> $i"; \
    case ".Solaris 2100" in \
    .OS390 | .TPF) ( cd $i && make SDP='' OPTIM='') || exit 1;; \
    *) ( cd $i && make SDP='' CC='gcc' AUX_CFLAGS=' -DSOLARIS2=2100 -DUSE_HSREGEX -DUSE_EXPAT -I./lib/expat-lite -DNO_DL_NEEDED ' RANLIB='ranlib' OPTIM='') || exit 1;; \
    esac; \
    echo "<=== $i"; \
    done
    make: Fatal error: Command failed for target `subdirs'
    but when I am typing one step up is.
    ===> src
    ===> src/regex
    <=== src/regex
    ===> src/os/unix
    gcc -c -I../../os/unix -I../../include -DSOLARIS2=2100 -DUSE_HSREGEX -DUSE_EXPAT -I../../lib/expat-lite -DNO_DL_NEEDED os.c
    In file included from /usr/include/sys/wait.h:24,
    from ../../include/ap_config.h:1079,
    from os.c:21:
    /usr/include/sys/siginfo.h:259: error: parse error before "ctid_t"
    /usr/include/sys/siginfo.h:292: error: parse error before '}' token
    /usr/include/sys/siginfo.h:294: error: parse error before '}' token
    /usr/include/sys/siginfo.h:390: error: parse error before "ctid_t"
    /usr/include/sys/siginfo.h:392: error: conflicting types for `__proc'
    /usr/include/sys/siginfo.h:261: error: previous declaration of `__proc'
    /usr/include/sys/siginfo.h:398: error: conflicting types for `__fault'
    /usr/include/sys/siginfo.h:267: error: previous declaration of `__fault'
    /usr/include/sys/siginfo.h:404: error: conflicting types for `__file'
    /usr/include/sys/siginfo.h:273: error: previous declaration of `__file'
    /usr/include/sys/siginfo.h:420: error: conflicting types for `__prof'
    /usr/include/sys/siginfo.h:287: error: previous declaration of `__prof'
    /usr/include/sys/siginfo.h:424: error: conflicting types for `__rctl'
    /usr/include/sys/siginfo.h:291: error: previous declaration of `__rctl'
    /usr/include/sys/siginfo.h:426: error: parse error before '}' token
    /usr/include/sys/siginfo.h:428: error: parse error before '}' token
    /usr/include/sys/siginfo.h:432: error: parse error before "k_siginfo_t"
    /usr/include/sys/siginfo.h:437: error: parse error before '}' token
    In file included from /usr/include/sys/procset.h:24,
    from /usr/include/sys/wait.h:25,
    from ../../include/ap_config.h:1079,
    from os.c:21:
    /usr/include/sys/signal.h:85: error: parse error before "siginfo_t"
    In file included from ../../include/ap_config.h:1079,
    from os.c:21:
    /usr/include/sys/wait.h:86: error: parse error before "siginfo_t"
    In file included from ../../include/ap_config.h:1096,
    from os.c:21:
    /usr/include/signal.h:111: error: parse error before "siginfo_t"
    /usr/include/signal.h:113: error: parse error before "siginfo_t"
    *** Error code 1
    make: Fatal error: Command failed for target `os.o'
    Current working directory /web-download/apache_1.3.33/src/os/unix
    *** Error code 1
    The following command caused the error:
    for i in regex os/unix ap main lib modules; do \
    echo "===> src/$i"; \
    case ".Solaris 2100" in \
    .OS390 | .TPF) ( cd $i && make SDP='src/' OPTIM='') || exit 1;; \
    *) ( cd $i && make SDP='src/' CC='gcc' AUX_CFLAGS=' -DSOLARIS2=2100 -DUSE_HSREGEX -DUSE_EXPAT -I./lib/expat-lite -DNO_DL_NEEDED ' RANLIB='ranlib' OPTIM='') || exit 1;; \
    esac; \
    echo "<=== src/$i"; \
    done
    make: Fatal error: Command failed for target `subdirs'
    Current working directory /web-download/apache_1.3.33/src
    *** Error code 1
    The following command caused the error:
    case "xi86pc-sun-solaris2.2100" in \
    x*390*) C89STEPS="0xffffffff"; export C89STEPS;; \
    esac; \
    cd ./src; make SDP=src/ all
    make: Fatal error: Command failed for target `build-std'
    Current working directory /web-download/apache_1.3.33
    *** Error code 1
    The following command caused the error:
    make -f ./Makefile root= build-std
    make: Fatal error: Command failed for target `build'
    I am newbie with Solaris and gcc so I have no so much idea what is missing there.
    Thanks,
    Juan

  • PLEASE HELP! Installation errors with creative suite 5.5 design premium?

    I recently tried to install creative suite 5.5 design premium on to my home computer with windows vista home premium and it was all going fine then right at the end of the installation this message popped up please help??
    Exit Code: 7
    -------------------------------------- Summary --------------------------------------
    - 1 fatal error(s), 14 error(s), 4 warning(s)
    WARNING: DW024: The payload: Adobe Photoshop CS5.1 Core  {08EF22BC-43B2-4B4E-BA12-52B18F418F38} requires a UI parent with following specification:
                    Family: Photoshop
                    ProductName: Adobe Photoshop CS5.1 Core_x64
                    This parent relationship is not satisfied, because this payload is not present in this session.
    ERROR: DW025: The payload with AdobeCode:  {857CC5F0-040E-1016-A173-D55ADD80C260} has required dependency on:
                    Family: InDesign
                    ProductName: Adobe InDesign CS5.5 Icon Handler x64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {857CC5F0-040E-1016-A173-D55ADD80C260} has recommended dependency on:
                    Family: Adobe Web Suite CS5.5
                    ProductName: Adobe Media Encoder CS5.5 X64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this payload from the dependency list.
    WARNING: DW025: The payload with AdobeCode:  {D8CCCF4C-C227-427C-B4BE-736657D2AB7E} has recommended dependency on:
                    Family: Adobe Web Suite CS5.5
                    ProductName: Adobe Media Encoder CS5.5 X64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this payload from the dependency list.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: Adobe Player for Embedding x64 3.1
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: Shared Technology
                    ProductName: Photoshop Camera Raw (64 bit)
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: AdobeCMaps x64 CS5
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: Adobe Linguistics CS5 x64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: AdobePDFL x64 CS5
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: AdobeTypeSupport x64 CS5
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
                    Family: CoreTech
                    ProductName: Adobe WinSoft Linguistics Plugin CS5 x64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has recommended dependency on:
                    Family: Adobe Web Suite CS5.5
                    ProductName: Adobe Media Encoder CS5.5 X64
                    MinVersion: 0.0.0.0
                    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
                    Removing this payload from the dependency list.
    ERROR: DW020: Found payload conflicts and errors:
    ERROR: DW020:  - Adobe Dreamweaver CS5.5 depends on Adobe CSXS Extensions CS5.5 to be installed.
    ERROR: DW020:  - Adobe Photoshop CS5.1 Core depends on Adobe CSXS Extensions CS5.5 to be installed.
    ERROR: DW020:  - Adobe Illustrator CS5.1 depends on Adobe CSXS Extensions CS5.5 to be installed.
    ERROR: DW020:  - Adobe InDesign CS5.5 Application Base Files depends on Adobe CSXS Extensions CS5.5 to be installed.
    ERROR: DW020:  - Adobe Flash CS5.5 depends on Adobe CSXS Extensions CS5.5 to be installed.
    FATAL: DW020: Conflicts were found in the selected payloads. Halting installation.

    i tried all the thinks listed and uninstalled then reinstalled creative suite 5.5 design premium and yet again this showed up at the end please help it mean nothing to me help!
    Exit Code: 6
    -------------------------------------- Summary --------------------------------------
    - 0 fatal error(s), 17 error(s), 8 warning(s)
    WARNING: DW024: The payload: Adobe Photoshop CS5.1 Core  {08EF22BC-43B2-4B4E-BA12-52B18F418F38} requires a UI parent with following specification:
    Family: Photoshop
    ProductName: Adobe Photoshop CS5.1 Core_x64
    This parent relationship is not satisfied, because this payload is not present in this session.
    ERROR: DW025: The payload with AdobeCode:  {857CC5F0-040E-1016-A173-D55ADD80C260} has required dependency on:
    Family: InDesign
    ProductName: Adobe InDesign CS5.5 Icon Handler x64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {857CC5F0-040E-1016-A173-D55ADD80C260} has recommended dependency on:
    Family: Adobe Web Suite CS5.5
    ProductName: Adobe Media Encoder CS5.5 X64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this payload from the dependency list.
    WARNING: DW025: The payload with AdobeCode:  {D8CCCF4C-C227-427C-B4BE-736657D2AB7E} has recommended dependency on:
    Family: Adobe Web Suite CS5.5
    ProductName: Adobe Media Encoder CS5.5 X64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this payload from the dependency list.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: Adobe Player for Embedding x64 3.1
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: Shared Technology
    ProductName: Photoshop Camera Raw (64 bit)
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: AdobeCMaps x64 CS5
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: Adobe Linguistics CS5 x64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: AdobePDFL x64 CS5
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: AdobeTypeSupport x64 CS5
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    ERROR: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has required dependency on:
    Family: CoreTech
    ProductName: Adobe WinSoft Linguistics Plugin CS5 x64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this dependency from list. Product may function improperly.
    WARNING: DW025: The payload with AdobeCode:  {D97AF04B-B70A-4862-BC25-31E6D9C4A529} has recommended dependency on:
    Family: Adobe Web Suite CS5.5
    ProductName: Adobe Media Encoder CS5.5 X64
    MinVersion: 0.0.0.0
    This dependency is not satisfied, because this payload is x64 and is not supported on this machine.
    Removing this payload from the dependency list.
    ----------- Payload: {CFA46C39-C539-4BE9-9364-495003C714AD} Adobe SwitchBoard 2.0 2.0.0.0 -----------
    WARNING: DF029: ARKServiceControl::StartService: Service not started/stopped SwitchBoard. Current State: 0 Exit Code: 0 Service Specific Exit Code: 0(Seq 1)
    ----------- Payload: {2EE4F060-CEE6-4002-AA8B-91B791541767} Pixel Bender Toolkit 2.6.0.0 -----------
    WARNING: DF035: CreateAlias:Icon file does not exist at C:\Program Files\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\windows\pb_app.icofile:\\\C:\PIXELB~1\source\winwood\Staging    0X1.9E3C8AP-1022rea\windows\pb_app.ico42178f80493091e8e552c84a2897e9da68fce32_32_f8049309 1e8e552c84a2897e9da68fce for icon C:\ProgramData\Microsoft\Windows\Start Menu\Programs\Adobe Design Premium CS5.5\Adobe Pixel Bender Toolkit 2.6.lnk with target C:\Program Files\Adobe\Adobe Utilities - CS5.5\Pixel Bender Toolkit 2.6\Pixel Bender Toolkit.exe(Seq 89)
    ----------- Payload: {BD85DFD4-005F-4219-8E27-C922CC4D8A61} Adobe CSXS Extensions CS5.5 2.5.0.0 -----------
    ERROR: DF024: Unable to preserve original file at "C:\Program Files\Common Files\Adobe\CS5.5ServiceManager\lib\CSXS-Installer-Hook.dll" Error 32 The process cannot access the file because it is being used by another process.(Seq 130)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 130)
    ----------- Payload: {4C08199E-0D93-4227-8325-F024E71CA7A1} Adobe SING CS5 3.0.0.0 -----------
    ERROR: DF024: Unable to preserve original file at "C:\Program Files\Common Files\Adobe\SING\Mark II\SING.dll" Error 32 The process cannot access the file because it is being used by another process.(Seq 2)
    ERROR: DW063: Command ARKDeleteFileCommand failed.(Seq 2)
    ----------- Payload: {8DADF070-FE60-4899-8EF0-4242E7702F7D} Adobe Fireworks CS5.1 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at C:\Users\Isabel\Desktop\Creative Suite 5.5 Design Premium\adobe 5.5 code\Creative Suite 5.5 Design Premium\Adobe CS5_5\payloads\AdobeFireworks11.1.0All\OEM(Seq 1215)
    ----------- Payload: {5BDE0A1B-35BF-4224-A54F-73786EECDFC1} Adobe Fireworks CS5.1_AdobeFireworks11.1.0en_GBLanguagePack 11.1.0.0 -----------
    WARNING: DF012: File/Folder does not exist at C:\Users\Isabel\Desktop\Creative Suite 5.5 Design Premium\adobe 5.5 code\Creative Suite 5.5 Design Premium\Adobe CS5_5\payloads\AdobeFireworks11.1.0en_GBLanguagePack\OEM(Seq 74)
    ----------- Payload: {7202D4A7-F7E6-4e7a-B77D-7B1C4E8B5CA6} Adobe Flash Player 10 ActiveX 10.0.0.0 -----------
    ERROR: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\Terry\AppData\Local\Temp\InstallAX.exe, command: -install activex -msi
    ERROR: Install MSI payload failed with error: 1603 - Fatal error during installation.
    MSI Error message: Error 1722.There is a problem with this Windows Installer package. A program run as part of the setup did not finish as expected. Contact your support personnel or package vendor. Action NewCustomAction1, location: C:\Users\Terry\AppData\Local\Temp\InstallAX.exe, command: -install activex -msi
    ERROR: DW050: The following payload errors were found during install:
    ERROR: DW050:  - Adobe SING CS5: Install failed
    ERROR: DW050:  - Adobe CSXS Extensions CS5.5: Install failed

  • Please Help Publishing iWeb Website With ... ??

    Please help. This is so unfamiliar!
    I am trying to publish my iWeb website not using MobileMe (don't really know what it is).
    I need to purchase my domain name but don't know of a reputable company that will give me a web address that just ends in .com without other stuff behind it.
    Also, someone said I need a "Bridge" that is Fetch??
    Please advise if anyone can! Thank you.
    Happy Holidays!
    Van

    Okay so I have purchased the Hostexcellence basic plan, my domainname and webhosting, and $6 extra for personal information privacy, which came to about $64. At first they kept saying the domainname was wrong or something, until I finally wrote it in in all lowercase lettering, which solved the issue. They said they would connect within 12 hours in their confirmation email... The webpage message said:
    ACCOUNT CREATION DELAY
    We are sorry for the delay with creating your account. Our systems encountered a small problem and could not automatically create your account. You will receive the account access information within the next 12 hours. Thank you for your patience.
    You have chosen to purchase the following service(s):
    Domain Registration: lightkeysandcodes.com , Paid Domain Registration, 1 year(s)
    Hosting Plan: Basic Plan, Quarterly
    There was a problem creating your order. One of our support specialists is already working on processing your order, but if you would like a status update, please feel free to contact our support department.
    Wyodor mentioned starting with my own ISP. What info do I need from them? (we have Verizon).
    I am now looking over the link Old Toad provided. Appreciate that.
    Do i now start with Fetch or one.com to store my pages/files on?
    Thanking you all!
    Van

  • HELP PLEASE HELP! urgent question with an easy answer!!!!

    Hello;
    I designed a JFrame game, that uses gif files as ImageIcons. The game works perfectly when I run it from console with the java.exe command.
    However; now I want to create a wraparound and run the JFrame in the Internet Explorer from an applet. So I created a new file that extends JApplet; this new file creates a new object of the JFrame-game's class and show()'s it.
    And I created an HTM file that runs the JApplet class. However, the internet explorer cannot open the applet because it has trouble loading the pictures (gif files). How can I load the pictures from my applet for my frame???
    I dont want to change the Java security file. I just want to make the images accessible by my applet. I cannot use commands like setImage in my applet because my JFrame sets the Images.
    (I repeat)My JApplet only invokes an object of my JFrame class and shows it.
    PLEASE HELP PLEASE PLEASE..
    Thanks..

    OK; let me tell you the whole thing. My pictures are in the same folder for sure.
    My JFrame reads pictures and assigns JButtons pictures. when I run the frame there are 16 buttons with the same picture, and when I click the buttons there is a listener in the JFrame that changes the pictures. Simply put, the JFrame has no trouble finding and loading the pictures.
    Then I created a JApplet as follows:
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    public class MemoryApplet extends JApplet
    public void init ()
         GameFrame ce = new GameFrame ();
         ce.show ();
    GameFrame is the name of the JFrame class. Then when I try to open the applet using IE, it gives the following error:
    Exception: java.security.AccessControlException: (javax.io.FilePermission back.gif read)
    back.gif is one of the gif files that are used in GameFrame

  • Please help this clueless beginner with out.print syntax....

    Please help a clueless beginner out!!!! :-)
    I'm trying to build a dynamic table that functions as a calendar...(see http://www.oreilly.com/catalog/javacook/chapter/ch18.html for the basic idea and code structure).
    Here's the problem...I want to make each date inside of the table a hyperlink to a new page. I figured out how to create the hyperlinks, but I CAN'T figure out how to create hyperlinks that pass variables to a new page.
    Here's the code that works:
    // Fill in numbers for the day of month.
    for (int i = 1; i <= daysInMonth; i++)
    out.print("<td>");
    out.print("<a href=newpage.jsp>");
    out.print(i);
    out.print("</a>");
    out.print("</td>");
    Here's the code that DOESN'T work....but can serve as pseudo-code for what I want to do:
    // Fill in numbers for the day of month.
    for (int i = 1; i <= daysInMonth; i++)
    out.print("<td>");
    out.print("<a href=newpage.jsp?year=<%= yy %>&month=<%= months[mm] %>&date=<%= i %>>");
    out.print(i);
    out.print("</a>");
    out.print("</td>");
    <%= yy %>, <%= months[mm] %> are defined elsewhere in the code, and I want to use the current value of "i" from the loop.
    So, if everything works like I want, the table will get created, and if yy=2002 and mm=January, then the hyperlinks will look like:
    for day 1:
    "/newpage.jsp?year=2002&month=January&date=1"
    for day 2:
    "/newpage.jsp?year=2002&month=January&date=2"
    ...for day 31:
    "/newpage.jsp?year=2002&month=January&date=31"
    Can someone please point me in the right direction? Is it even possible to do what I want? (I assume it is...but maybe I can't use out.print???)
    Thanks!

    Hi. The expression "<%=some_Java_expression %>" is the JSP tag, that returns string value to HTML code. You should use it in HTML block like:
    <%String myname="Ivan"; %>
    <body>
    <p>My name is: <%=myname %></p>
    But You tried to use it inside the string expression and it generated some code like this:
    <a href="newpage.jsp?year=<%=yy%">...
    , didn't it?
    It invokes method out.print(" ... "), that prints this string value (but in the HTML block). So You tried to print something inside the print method. You should rewrite Your code like this:
    for (int i = 1; i <= daysInMonth; i++)
    out.print("<td>");
    out.print("<a href=newpage.jsp?year="+yy+"&month="+months[mm]+"&date="+i+">");
    out.print(i);
    out.print("</a>");
    out.print("</td>");
    I used the + operator to join Your code for link tag with the values (yy, months[mm], i.
    I hope it helps You,
    bye.</a>

  • Code webservices in WLS 6.1 sp2 using apache soap servlet

    Please let me know the steps necessary to use the soap servlet from apache while
    coding the webservices.
    Thanks
    Vaneet

    Please let me know the steps necessary to use the soap servlet from apache while
    coding the webservices.
    Thanks
    Vaneet

  • PLEASE HELP!  Quicktime Pro with iMovie and .MPG Files

    Hello. Please help me. I'm on a G5. 10.5.3. iMovie 7.1.2 (577) I have a series of .MPG files that I need to import into iMovie to edit, arrange and then export over to iDVD, etc. iMovie does not see the .MPG files. The Apple site states that iMovie sees only MPEG-4 files and DV files. I also own Quicktime Pro 7.5 (149.5). When I open the .MPG file in Quicktime Pro, even though the file plays perfectly, when I select "Export to MPEG-4" so I can create a readable file by iMovie, I get an error message that say's "Failed: Export process terminated unexpectedly (10). Complete frustration. Is there another way I can convert these files so iMovie can see them? What's wrong with my Quicktime Pro? I bought DivX Pro last night. I thought maybe that program would make an iMovie readable file. No luck. I used DivX to convert and it created a DivX file with NO SOUND. Wasted money.
    If anyone has any solutions for my problems noted here or possible alternatives so I can achieve what I'm trying to do successfully, PLEASE ADVISE as soon as possible.
    Thank you for taking the time to read this and THANKS, in advance, for your help.

    You'll get a ton of ideas from others so, by no means, don't think that mine will solve your issue. I, personally have fallen in love with [StreamClip|http://www.squared5.com>. It does a ton of stuff.
    As for your Error 10, hopefully that's just an "out of space" (on your drive) error and not an I/O error (a problem with the drive reading/writing)
    But, you said you have Quicktime Pro and you're going to iMovie so I'd try to make your .MPG files a DV Stream...I think that's what I movie likes.
    Anyway try that,
    Tom
    ----- !http://hockeynarrative.files.wordpress.com/2007/09/sharkslogo.gif!

Maybe you are looking for

  • IPhoto '11 (9.2.1) Crashes when selecting File Preferences

    Hey guys, iPhoto 9.2.1 in Lion crashes every time I try and go to File>Preferences. Everything seems to be working properly except it crashes when I open "preferences".  Here's the error: Anbybody know what to do?  THanks Process:         iPhoto [219

  • Enable IIS features Command Line

    I want to enable IIS features through a script/command line. I have the features installed on my system, but not enabled. How can I do that? Also, is there a difference in the way it works for IIS6 and IIS7?  Any help is appreciated! Thanks, Chas, -C

  • I bought my Macbookpro 2 weeks ago, how can I install Lion?

    Is it free for me or do i have to buy it?

  • New iMac. Volume control question

         My volume controls are swiping me to the dashboard. I know this has something to do with the "function" keys. Somewhat new to iMac, please help.

  • Final Cut Express problem w/ Daisy-chained Firewire

    I have recently encountered an issue with attempting to capture video from a DV camera daisy-chained through drive on a 24" iMac. I have two drives attached to my 24" iMac - a La Cie d2 Extreme by FW800 and a generic FW400 drive. I would like to run