ESB WSDL generation and compatibility issues

Hi all.
I have a need to integrate Oracle ESB with TIBCO, and I'm facing some issues regarding the use of namespaces in WSDL.
In ESB, when I create a routing service, its corresponding WSDL has a targetNamespace attribute, for example, http://www.oracle.com/myRS
When I deploy this routing service using the "Invokable from external services" property checked, ESB automatically generates another WSDL, which contains the SOAP and ESB bindings and imports the previous WSDL. This WSDL's targetNamespace has the same value of the targetNamespace from the previous WSDL (http://www.oracle.com/myRS)
When TIBCO needs to consume the ESB web service ( the automatically generated one), it's complaining that the two WSDLs have the same targetNamespace, and they shouldn't (according to them).
Here's is an example:
1 - I create a routing service. It's WSDL looks like this:
<definitions name="TIBCOIntegrationRS" targetNamespace="http://oracle.com/esb/namespaces/TIBCOIntegration" xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:tns="http://oracle.com/esb/namespaces/TIBCOIntegration" xmlns:inp1="http://xmlns.oracle.com/pcbpel/adapter/db/top/CvrdRaCustomersIFace">
<types>
<schema xmlns="http://www.w3.org/2001/XMLSchema">
<import namespace="http://xmlns.oracle.com/pcbpel/adapter/db/top/CvrdRaCustomersIFace" schemaLocation="CvrdRaCustomersIFace_table.xsd"/>
</schema>
</types>
<message name="CvrdRaCustomersIface_request">
<part name="CvrdRaCustomersIface" element="inp1:CvrdRaCustomersIface"/>
</message>
<portType name="execute_ppt">
<operation name="execute">
<input message="tns:CvrdRaCustomersIface_request"/>
</operation>
</portType>
</definitions>
2 - I deploy the routing service, and get another WSDL that is automatically generated:
<definitions xmlns="http://schemas.xmlsoap.org/wsdl/" xmlns:plt="http://schemas.xmlsoap.org/ws/2003/05/partner-link/" xmlns:soap="http://schemas.xmlsoap.org/wsdl/" xmlns:xs="http://www.w3.org/2001/XMLSchema" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:import="http://oracle.com/esb/namespaces/TIBCOIntegration" xmlns:http="http://schemas.xmlsoap.org/wsdl/http/" xmlns:esb="http://www.oracle.com/esb/" xmlns:ws="http://www.example.com/webservice" xmlns:tns="http://oracle.com/esb/namespaces/TIBCOIntegration" targetNamespace="http://oracle.com/esb/namespaces/TIBCOIntegration">
<import namespace="http://oracle.com/esb/namespaces/TIBCOIntegration" location="http://denis:80/esb/slide/ESB_Projects/DadosCliente_TIBCOIntegrationESB/TIBCOIntegration_TIBCOIntegrationRS.wsdl"/>
<portType name="execute_ppt">
<operation name="execute">
<input message="tns:CvrdRaCustomersIface_request"/>
</operation>
</portType>
<binding name="__esb_TIBCOIntegrationRS_execute_ppt" type="tns:execute_ppt">
<esb:binding/>
<operation name="execute">
<esb:operation event-name="TIBCOIntegration.TIBCOIntegrationRS.execute"/>
<input/>
</operation>
</binding>
<binding name="__soap_TIBCOIntegrationRS_execute_ppt" type="tns:execute_ppt">
<soap:binding xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" style="document" transport="http://schemas.xmlsoap.org/soap/http"/>
<operation name="execute">
<soap:operation xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" style="document" soapAction="execute"/>
<input>
<soap:body xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" use="literal"/>
</input>
</operation>
</binding>
<service name="ESB_TIBCOIntegrationRS_Service">
<port name="__soap_TIBCOIntegrationRS_execute_ppt" binding="tns:__soap_TIBCOIntegrationRS_execute_ppt">
<soap:address xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" location="http://denis:80/event/TIBCOIntegration/TIBCOIntegrationRS"/>
</port>
<port name="__esb_TIBCOIntegrationRS_execute_ppt" binding="tns:__esb_TIBCOIntegrationRS_execute_ppt">
</port>
</service>
<plt:partnerLinkType name="execute_pptLT">
<plt:role name="execute_pptProvider">
<plt:portType name="tns:execute_ppt"/>
</plt:role>
</plt:partnerLinkType>
</definitions>
3 - We can see that both WSDLs have the same targetNamespace, and that's what TIBCO is complaining about.
I've been reading the W3C WSDL spec (2.0), and found a note regarding the use of the import clause in WSDL:
http://www.w3.org/TR/2007/REC-wsdl20-20070626/#import_namespace_attribute
It has the following fragment:
"The namespace attribute information item is of type xs:anyURI. Its actual value indicates that the containing WSDL 2.0 document MAY contain qualified references to WSDL 2.0 components in that namespace (via one or more prefixes declared with namespace declarations in the normal way). This value MUST NOT match the actual value of targetNamespace attribute information item in the enclosing WSDL 2.0 document"
I don't know if ESB is currently working with WSDL 2.0 specification. I's mentioned here just for a comparison.
So, the question is: Is it allowed and W3C compatible to use the same targetNamespace in the enclosing WSDL as well as in the imported one?
thanks
Denis
Message was edited by:
[email protected]
Message was edited by:
[email protected]

Hi ,
This is Shobana K from PeopleTools.
I am also facing a similar issue.
The ESB services exposed for external invocation are nested wsdls meaning one WSDL imports another.
Consider this nested WSDL for example-
http://10.176.162.55:8888/esb/wsil/NestedESB_synchronous/NestedSynch_RS?wsdl
Above wsdl corresponds to the base wsdl containing the binding and service information. This in turn imports another WSDL http://10.176.162.55:8888/esb/slide/ESB_Projects/8.50_ESB_Nested_wsdl_NestedESB_synchronous/NestedESB_synchronous_NestedSynch_RS.wsdl
which contains port type, message and schema information. These wsdls are formed in accordance to the "import authoring style" defined in 2.1.2 section of the WSDL1.1 specification.
The authoring style used in ESB wsdl is exactly the same as the one shown in the WSDL spec but for one point.
In case of ESB, both the wsdls(base as well as the imported one) have the same target namespace. Is it possible for 2 wsdls to have the same target namespace within the same scope?
In order to parse the WSDL for the required information, we need to look at the information both in the base wsdl as well as the imported wsdl. While trying to locate the correct information in the right wsdl, we make use of the namespace value used with the element name. For e.g, the base wsdl may only be containing the binding information. This in turn will refer to the port type information available in the imported wsdl. Now, while parsing, we make use of the namespace value associated with the port type element name in the base wsdl.Based on the namespace value, we decide which wsdl contains this information.
In the sample nested ESB wsdl that I have quoted above http://10.176.162.55:8888/esb/slide/ESB_Projects/8.50_ESB_Nested_wsdl_NestedESB_synchronous/NestedESB_synchronous_NestedSynch_RS.wsdl, the tns(this namespace) value associated with the port type element corresponds to the target namespace value in both the wsdls and the value happens to be the same. Hence while parsing, when we look for the port type and message information belonging to the "tns" namespace, we tend to search for those information only in the base wsdl and not the imported one.This sounds logical and it would have worked had the target namespace been different for the 2 wsdls. It fails in this case because both the WSDLs have the same target namespace. In such cases, how should we go about parsing the wsdl?
Your inputs and feedback will be greatly appreciated.
Thanks a lot in advance.
Regards,
Shobana K

Similar Messages

  • Installation and compatibility issues with photoshop CS4 - Win 8

    I recently purchased a new computer with Windows 8. I am experiencing issues when attempting to install the downloaded and upgrade copy of photoshop CS4. Initially unpacking the software presented issues, but I believe they've been resolved - specifically I had to change the folder attribute from read only  while unpacking, of course the tedium arose when this endeavor didn't seem to apply the new attributes to all subfolders and files. I percivered though by repeating it for each folder throughout. When I select the icon for the setup.exe file though the process ends as quickly as it began. I considered that it my have been seeking the previous version (in my case photoshop elements) so I sought to install it first, but as you may have guessed the old software is experiencing it's own compatibility issues. Does anyone know if photoshop CS4 will even work in Windows 8, and I hope someone will have already cleared this hurdle and can give me direction - please, I really am hoping for a life preserver here!
    Thankyou, Chris
    PS I did attempt to open one of the attached adobe reader files that came with the downloaded copy, but unfortunately they won't open prior to installation given they show the file size 0kb. I don't know if these files are simply acting as place holders for the cab files - or whether there remains an issue while unpacking the files to begin with.

    If the executable doesn't even run, it's either being shut down by some security stuff on your system or can't find a component. Impossible to tell. whiel there may be compatibility issues, on a more general level CS4 should run on Win 8...
    Mylenium

  • Microsoft ERP MA (3.3.1077.2) for SAP and compatibility issues with SAP 6.0

    Hi all,
    I want to configure the ERP MA (3.3.1077.2) for SAP on ILM 2007 in order to synchronize passwords between AD and SAP. I have several instances of SAP. The SAP versions are as follow:
    SAP ECC 6.0 7.00 - 64bit
    SAP ECC 6.4 7.01 - 64bit
    SAP BI 7.1 7.01 - 64bi
    I was wondering whether there are compatibility issues with any of the above mentioned versions.
    Your feedback is appreciated.
    Regards,

    Did you install a Java machine JRE ? If no, when you do the drag and drop you have the popup but it does work
    [http://www.download.com/Java-Runtime-Environment-JRE-/3000-2417_4-10009607.html |http://www.download.com/Java-Runtime-Environment-JRE-/3000-2417_4-10009607.html]

  • Implementing 3.5 and compatibility issues

    Hi,
    How can I check the compatibility of Netweaver 2004s to somehting in SAP R3? There are still suggestions out there to implement 3.5 and not BI 7.0? Is there still anyone implementing 3.5?
    Thanks
    "<i>You can only be young once. But you can always be immature.</i>" ~ Dave Barry, US columnist & humorist (1947 - )
    "<i>Utterly vulgar to the bone and no shame in sight.</i>" ~ Anonymous

    Hi Ellen,
    Some how in my project decision has been taken to implement BW 3.5 Content and not BW 7.0.
    I was looking for the answer for the same question you posted.
    So can anyone comment on the best practice, about what to install 3.5 content or 7.0 Content. Here in my project Client doent really understands the difference, may be thats why this decision was taken.(To avoid delay in implementation ,as 7.0 version is not stable yet and has ots off OSS notes and issues??)
    Pls comment
    Thanks
    Naveen

  • Biztalk 2013 R2 ESB toolkit support and Licence issues

    Hi,
    Currently we are using Biztalk 2013 R2 standard version and have not installed/configured ESB toolkit yet. Now i am exploring the options to use the ESB toolkit as it is pretty good for the exception management and it comes with nice portal as well.I have
    used the ESB in the past with Biztalk 2010 so i have a favor for the toolkit.
    But one of our consultant said that the ESB toolkit is not supported by Microsoft for the standard version and it is supported only with enterprise version of Biztalk. He also mentioned that once we configure ESB with standard version Microsoft does not
    support ESB and also the entire Biztalk server So i am afraid of that and thought of validating the information with right people.
    Can someone please answer the below questions for me?
    Can we use ESB toolkit with Biztalk standard version? If so how about support from Microsoft? Does Microsoft support at least production server OR not?
    Do we need enterprise version only for this?
    I used ESB with Biztalk 2010 in the past and though there are minor issues i personally like it . But what are your thoughts of using ESB?
    Here are the technologies we are using
    Biztalk 2013 R2, Visual studio 2013 and SQL server 2014. Just to mention Visual studio is not available in test and production servers.
    Thanks
    JB

    Hi,
    Why you want to use BizTalk Standard Edition in Production Environment?
    BTS Standard only run on a single BizTalk server with a maximum of two CPUs, maximum of five "BizTalk Applications",
    However, Enterprise does not have such limitations
    Yes, it is not supported and it has not been extensively tested by Microsoft on Standard Edition, but it doesn't mean you can’t
    install it.
    From BizTalk
    Server: ESB Survival Guide has this requirement:
    BizTalk Server 2010 Enterprise/Developer Edition
    Understanding is:
    ESB toolklit uses one of the five applications that can be deployed on BizTalk 2010 Standard Edition
    ESB toolkit will work on BizTalk 2010 Standard Edition, but it's not supported
    Requirements for ESB 2.2 with BizTalk 2013 is not specified as such, but I suspect the same limitation applies.
    Refer: BizTalk
    ESB Toolkit 2.1 on BizTalk Standard Edition environment , does it work ?
    Rachit
    Please mark as answer or vote as helpful if my reply does

  • Archvie log generation and performance issue

    Hi there,
    I am facing some problem with archvie log file which is significantly degrading database performance.
    Please go thru below details
    there are some long running transaction(DML) performed in our database and during this time massive Archive log files are generating,
    here the problem comes, This operation is running for about 1 hr and during this time the database performance is very slow even user logging in to the application is taking time.
    There is enouch undo tablespace and undo retention configured for the database,
    I am not getting why its making such a bad impact on database performance.
    ----- What could be the reason for this performance degrade -------
    ----- Is there any way to find which "user session" and "transaction" are generating too many archive log file -----
    Your quick response will be highly appriciated

    To resolve your problem with performance degradation first thing to do is to collect more information during performance degradation.
    You can do that running AWR or statspack reports during specified time (as it is said in post before) or checking tables like v$session_wait or v$system_event. Then search in report where are you losing your time or find expensive queries.
    Run AWR or statspack reports and post information about wait events and then you will probably get more precise help. You can also post information about Oracle version, host, optimizer parameters or similar relevant information.
    The more information you provide, the better help you'll get.
    btw
    Do you receive "checkpoint not complete" in alert log during excessive redo generation?
    You can also check if application can reduce redo generation using 'nologging'. If you have transaction that deletes whole table, you could use truncate instead.
    Regards,
    Marko Sutic
    Edited by: msutic on Mar 1, 2009 12:11 AM

  • Windows 10 upgrade on Ideapad Y460p and compatibility issues

    Hello World, After getting an upgrade from Windows 7 to Windows 10 on my Y460p, following features are not working - Slide NavVolume sensorsMute ButtonLenovo one key theatre Trackpad's scrolling (vertical)It seems like all the "non-key" features have been stopped. Whereas the same features (E.g volume adjustment) using keys are running fine. I first thought may be Windows 10 messed up the installations of those softwares, although all other things in my laptop was fine. I uninstalled and reinstalled few of the drivers for above features from my backup but still no worky. Im lacking idea on this ideapad. Pallav

    I also upgraded my Y460p to Windows 10. Features 1 - 4 on your list are now not working. My trackpad's scrolling is working well as before. Did you check Synaptics settings? All the features on the list are apparently related to Synaptics trackpad driver. The new Synaptics trackpad driver installed by Windows 10 doesn't have any clue about the SlideNav and buttons on top of the keyboard on Y460p. Specifically it lacks a program named SynBtnAsst.exe which seems used to recognize SlideNav and extra buttons. I reverted my Synaptics driver to the one for Y460p. Now when I slide a finger along the SlideNav bar, the mouse pointer moves with it. Tapping on the SlideNav bar has the same effect as tapping on the trackpad. So I think the Synaptics driver for Y460p restored its abiliy to recognize SlideNav and buttons, but we still need updated SlideNav and other software to fully restore its functionalities. Since Y460p is an old model, I kind of exepext Lenovo will not release updated software for it any time soon or at all. 

  • ILife 08 and iMovie 06 compatibility issues?

    Sorry if any of this has already been covered in other threads...
    Has anyone had a chance to thoroughly test the 6.04 version of iMovie (download version if you install iLife 08) and know what compatibility issues there are?
    I.E. How well does iPhoto 08 play with iMovie 06, or iMovie 06 with iDVD 08. Are the third party plugins problematic with v6.04?
    From what I saw at the Apple store, iPhoto08 and iDVD08 would be the only apps that I would really want since iMovie08 seems to be a step backwards and iWeb is still lacking in everything that I wanted improved. But I don't want to waste the money to discover all sorts of "gotchas" with trying to get iMovie06 to play nice with the rest of iLife08...
    Also, has anyone done an install excluding iMovie08 entirely? Do you still need to download 6.04 if installed this way? Are there any pitfalls?
    This is like Deja vu or something...When iLife06 first came out, I installed everything but iMovie and stuck with iMovie05 for a long time cause of all the bugs and how long it took to get the third party plugins working...

    Of all the things for people to moan about with iMovie '08, the real unfortunate thing is it's inability to import effects, etc. (essentially your completed movie) from iMovie HD. One could somewhat forgive Apple for this debacle, if only it played nice with iMovie HD. Then it could be everything it's supporters say it is, i.e. "a different app," "a simple app for simpletons in a hurry" (although I find it's lack of tools and compatibility issues more difficult to manage).
    ...and a lot of us feel like this is the thing we're going to be stuck with going forward.
    I keep thinking that something else is going to happen, because this can't be right. I think this diver/video engineer who came up with this concept is suffering from the bends.
    Apple doesn't need the money, (as in making us buy Final Cut Pro for decent video editing), trust me, so I don't understand why it would take the PR hit.
    iMovie '08 spoofs are already on YouTube, etc.
    Message was edited by: rmig68

  • Is there a compatibility issue with the iPod Touch 4th generation and the TomTom carkit that worked fine with my 1st generation iPod Touch?

    I recently purchased a new iPod Touch. The "keyboard" of my first generation was beginning to play up, but it still worked fine with my TomTom carkit (if you'll allow for the fact that being restricted to OS 3 meant you couldn't update the software either). But, contrary to what I'd been told, the fourth generation one refuses to work. I think it's making contact because I hear the connection beep, but it  doesn't charge up or seem able to find the satellite connection. I've seen someone saying it was a physical width problem. If it's making contact, why isn't it capable to pick up a signal? Is there a compatibility issue after all?

    Got you! Why this didn't come up in my search before, have no idea. So it's all a question of design... How mean not to inform manufacturers of accessories about the change in specs. About to try the folded-over business card solution and then Velcro if the former doesn't give satisfaction. Did actually buy a silicon case, but it makes the protective filter buckle as it gets under the edges which isn't exactly useful. Went back to my previous leather case which I have to remove to use the car kit...

  • IPod Nano 2gen and Honda Music Link 2.0 compatibility issue

    I have compatibility issue with my iPod Nano 2nd generation and Honda Music Link 2.0 adapter. 
    My iPod is on 1.1.3 firmware (the latest), and it doesn't work with Honda Music Link:
    I have iPod Nano 2nd Generation (Firmware 1.1.3). I created playlists on iPod like it is written in documentation (Honda1, Honda2, etc.).
    I connect iPod, press CD/AUX and it flashes CDC 9 for a while then says CDC Error.
    Music is playing but I cannot control iPod from Head unit buttons. The only way to change tracks/playlists is to do it directly on iPod.
    Note that when iPod is connected there is no "Honda" logo on it as it is supposed to be.
    I discovered that iPod Nano 2gen work with Honda Music Link if the iPod is on 1.0.2 firmware.
    Moreover Honda Music Link even doesn't work with other iPods which are on latest firmware version. So the only problem to solve the problem I see is to downgrade the iPod. Buying new one won't solve the problem.
    Could you provide me this old firmware 1.0.2 for my iPod Nano 2gen (ipsw + signature files)?
    If you cannot please provide me a way how to solve my problem.

    I suspect that the dealer is correct.
    My wife has a 2006 Accord EX Sedan and the MusicLink ceased to work with her 5G iPod after iTunes 7 and Firmware 1.2 (flashing 6 in AUX-CD mode). It does however still work with my first gen. iPod Nano.
    I prefer to use the MusicLink without the TTS software, and have therefore not tried MusicLink 1.3.

  • Vista "Problem Reports and Solutions" - Compatibility issues?

    The Visa +Problem Reports and Solutions control panel+ is reporting three problems which I cannot seem to be able to find a resolution to.
    ( So far I've just installed Vista 32 business ed. on my iMac 20". Installed bootcamp drivers, updated bootcamp to 2.1 and applied Vista updates.)
    *The Problem Reports and Solutions control panel reports the following:*
    1. Download and install the driver for Apple performance counter
    This problem was caused by Apple performance counter, which was created by Apple Inc..
    2. Compatibility issue between Intel 82801GBM (ICH7-M) LPC Interface Controller - 27B9 and Windows. This problem was caused by a compatibility issue between Intel 82801GBM (ICH7-M) LPC Interface Controller - 27B9 and this version of Windows. Intel 82801GBM (ICH7-M) LPC Interface Controller - 27B9 was created by Intel Corporation and is distributed by Apple Inc..
    3. Problem caused by Apple Desktop Null Driver.
    This problem was caused by a compatibility issue between this version of Windows and Apple Desktop Null Driver. This product is usually distributed by the company that manufactured your device or computer. Note. If you bought Apple Desktop Null Driver from a retailer and installed it yourself, you will need to contact its manufacturer.
    Are these genuine, and if so, is there a solution? No solutions are proposed by Vista itself.
    Mac OS 10.5.5 , bootcamp 2.1
    Message was edited by: noutram

    A performance counter is not something that is usually in use by any application except by the developers of the unit itself. nothing to be alarmed about (well, except perhaps that it should have been removed).
    A null driver is (as the name indicates) null, there is no functionality assigned with it. MS error message is just brilliant "there is an error in your null driver", like what, there is no functionality in a null driver. So no problems there either.
    I got the 2 above error messages on the very first generation 17" MBP for ages and so far not seen any impacts in it for my work.
    The Intel issue is interesting, it might be a good idea to see if Intel has an updated driver for the problem.

  • I am having trouble accessing webmail on TalkTalk (formerly Tiscali) using Firefox 5.0 and TalkTalk tell me there is a compatibility issue?

    I had no problem with my previous version of Firefox and I can access my TalkTalk/Tiscali webmail using the latest IE browser. I am able to sign in but cannot access the mailbox contents. When I asked TalkTalk about the problem they have stated the following "If you are unable to access the mailbox using Firefox version 5, then I would like to inform you that there is compatibility issue with Firefox version 5 and Talk Talk webmail, due to which you are getting the above error. You can also try uninstalling the latest version of firefox and then reinstall it to the earlier version to resolve the case." May I assume that between you this difficulty will be resolved? I would prefer to use Firefox and do not wish to revert to IE.

    Apparently TalkTalk mail will work with Firefox 4 and Firefox 5 ''if'' you set the browser to ''lie'' to TalkTalk mail by saying that you are still using version 3.6.
    You can find the instructions for that in a post on the TalkTalk forums: [http://www.talktalk.co.uk/forums/showthread.php?t=185113#post2452787 Firefox 4 & TalkTalk webmail - Forums].
    Note: when you open about:config the first time, it will display a warning message that you should be careful with the changes you make. That's definitely good to bear in mind.
    Does it work?

  • OS 10.4.11 and HP Officejet 4500 compatibility issue (scanning)

    Hi there,
    I am having a compatibility issue with a G4 (OS 10.4.11) and a HP Officejet 4500 (all-in-one).
    (Sorry if this is a little long, but there are many specs and many attempts listed here).
    Problem: I cannot scan from the computer (upon opening HP Scan, a Browser Device window pops up, asking to "Choose a scanning device" the model is not listed, and it continues to search for a device but cannot find it) or from the scanner control panel to the computer (I tried selecting Open in HP Scan and Open in Preview from the panel  –it then says on the panel "Starting scanning" but it doesn't scan even though the power button flashes (it then reverts to date and time), and the program it's opening in on the computer just seems to hang).
    Still, some functions work fine:
    - I can print from the computer to the printer (it recognizes the printer)
    - The HP fax test seemed to run fine (via computer)
    - As a stand-alone device (without the computer), I can photocopy in B&W and color –so there doesn't seem to be anything wrong with the scanner itself.
    Here are the specs:
    Computer specs:
    - PowerPC G4, 933 MHz, 512 MB SDRAM, running OS 10.4.11 (no Intel Core processor)
    (the hard drive is partitioned into 3 –one runs 10.4.11 (the others Jaguar and OS9 –for compatiblity with other programs/peripherals) –21GB space remaining on 10.4.11 partition
    All-in-One specs:
    - HP Officejet 4500 G510g-m (USB, not wireless) all-in-one (printer/scanner/fax/copier) with USB 2.0 high-speed A-B printer cable (says in literature and on box it is  compatible with the G4 running OS 10.4.11, 256 MB RAM, 500 MB HD)
    I contacted HP Tech Support. They suggested the following which were tried and failed to work:
    - shutting everything down and restarting (many times)
    - they checked to see if there was any update to the HP software –there didn't appear to be
    - plug power cord directly into wall outlet
    - switch to USB 2.0 cable (from 1.0)
    - unplugging and replugging the USB 2.0 cable
    - plug USB directly into the G4
    - turning off the firewall (under System Preferences - Sharing)
    - "scrub" or complete uninstall of all HP software (twice)
    - search and removal of files via system and user libraries pertaining to HP (and some Epson files)
    - verify and repair permissions (twice)
    - reinstall of HP software (twice, second time after scrub/uninstall and verify/repair permissions)
    - Software Update (via Apple menu) –only found Java 1.3.1 and 1.4.2 Release 2 (version 2.0) which they suggested might fix the problem –I downloaded and installed them, and then J2SE 5.0 Release 4 (version 4.0) which I downloaded but could not install (error message)
    I then contacted Apple Tech Support and they said to go to support.apple.com and do a manual search for "HP 4500" –I did not find any drivers.
    [I did previously have an Epson CX 4600 all-in-one which scanned fine with a USB 1.0 cable, even after the printheads had clogged shut –and I had had a HP Officejet J4580 which worked fine (which was for a family member) –this software would've been removed with the current HP installs and scrubs]
    I am on the verge of returning this –it has also gotten several very bad reviews on the Apple site (for the wireless), however, I may have trouble finding a compatible device, as one running 10.4 is getting hard to find (unless I buy used, then no warranty and potentially other problems).
    If anyone knows of any drivers or has any other information as to why this is not working, I would be most grateful (BTW, I am not much of a tech guy, so please bear with me).
    Thanks.
    Frazzled Macuser

    Hey @Greenise,
    Welcome to the HP Support Forums!
    I would like to assist you today in getting the proper Full Feature Software and Driver package to install your HP Officejet 4500 Desktop All-in-One printer on your Mac OS X 10.4.11 Operating System.
    Below is the link for the Full Feature Software and Driver Installer. Simply click on the link and select the 'Download' button in the top left hand corner. Once the download is complete just run through the on screen instructions to install your printer.
    HP Officejet Full Feature Software and Driver (Universal) - Mac OS X 10.4,10.5 and 10.6.
    Please let me know if this installer works for you and if you have any other questions. Good luck!
    X-23
    I work on behalf of HP
    Please click "Accept as Solution" if you feel my post solved your issue, it will help others find the solution.
    Click the "Kudos, Thumbs Up" on the right to say "Thanks" for helping!

  • I recently purchased the new nano (7th generation) and I love it except for one issue.  On my old 2nd generation nano, when I played podcasts, it would play podcasts one at a time. So if I had 20 episodes of a podcast on the device, it would stop at the e

    I recently purchased the new nano (7th generation) and I love it except for one issue.  On my old 2nd generation nano, when I played podcasts, it would play podcasts one at a time. So if I had 20 episodes of a podcast on the device, it would stop at the end of each one.
    With the new nano, I can select and play a podcast, but when it’s over, it goes straight to the next one without prompting.  It keeps on playing all of the episodes of any podcast until you stop it manually.  Setting the repeat function differently does not prevent episodes from being played automatically.
    This can be very irritating when I only want to listen to one podcast.  I’ve often fallen asleep listening to one episode of a podcast, only to be woken up hours later by the iPod working its way through all subsequent episodes.  It is also annoying that any podcast which has started automatically in this way is marked as ‘played’ – even if you stop it within a few seconds.  This makes it hard to keep track of what you have actually listened to.
    Is there any way to set the iPod to play all the podcasts individually? I have read the User Guide from cover to cover, and can’t find a way of doing this.
    MD

    Dude or hot-spur,
    Not fishy at all!!!! You really think I would have taken any more of my time to post a bogus rant? We'll no, it is unfortunately all true. I want to hear from anyone who is experiencing such problems not anyone else that wants to put there two cents in. I really don't need anymore hate or negativity. Just people's experiences because I feel like I am the only one having so many problems. Thank you
    Yes, I have had some unfortunate bad luck to have so many problems at the same time, but some of them are just things you cannot do on the new OS.
    Thank you again

  • HT5306 I do not want to give remote access to anyone but myself as privacy is my friend.  Can this remote desktop software still be for me personally unless I allow access and for my MAC lap top only?  What if I do not update? compatibility issues with wh

    Hello:
    Thank you for the update for remote access for desktops.
    Personally, I do not want to give remote access to anyone but myself as privacy is my friend.  Can this remote desktop software still be for me personally unless I allow access and for my MAC lap top only?  What if I do not update? I do use this lap top in other countries.  compatibility issues with what?

    Apple Remote Desktop is off be default. It has to be enabled for some one to be able to remotely connect to the computer. And then, you still have to have a user name and password on the computer to remotely connect with.
    If you want to see if remote access has is enabled for Apple Remote Desktop; you can find the setting in, Apple Menu, System Prefrences, Sharing. If it's enabled, Remote Management or Screen Sharing will be checked.
    Beucase Apple Remote Desktop Agent is part of the Mac Operating System; even if your not using it, Apple Software Updates will from time to time offer updates for ARD Agent. Software Updates can some times be stacked ontop of each other; so chosing not to install an update, can mean other updates you may want may not be offered. At least until you install the updates those updates require. Also software updates can improve the security of your computer.

Maybe you are looking for

  • Report viewer page showing in ActiveX Mode

    In CMC or Infoview, we are able to set viewing option to DHTML, ActiveX, Advanced DHTML & so on. I need to code a viewer page which able display reports in ActiveX mode. What I did: 1) I have set the viewing preferences to ActiveX from CMC 2) using t

  • Helix constantly wakes from sleep - resolved!

    After months of having my helix running in my messenger bag while the cover was closed, waking up in the middle of the night, and running out of battery while I thought it was sleeping, I've resolved my problem.  I did everything I read on this forum

  • Nokia n8 camera defect

    suddenly i discover that my 2 week old N8's camera gives a scrambled view when started. The kind of scramble you see when the tv is júst off channel, horizontal bars.And after a few moments it freezes like that and i have to turn off the machine and

  • Color Palette missing options.

    My color palette on pages only has the spectrum.  They other options like the "crayon box" is missing.  How do I fix this?  I don't have the "lozenge" at the upper right of the color palette?

  • Indesign CS5 New Document Lagging

    Hi, I am experiencing a very weird problem with Indesign CS5, when I create a new blank document and turn overprint view on the document lags significantly when scrolling (even though it is blank). However, when I open up an old document I have worke