Exposing content nodes as links in WLP 9.2

Hi!
I am a portal 'newbie' with a POC on my hands, in which one goal is to index the content in a BEA Repository with my company's search technology. I have managed to expose the content node i'name' and 'path' properties in a simple web page, but I really need to turn these into searchable links. In other words, I want to traverse a path, extract all nodes, and expose them as links.
Again, my knowledge of CM is limiited here - just can't see how to proceed. Here's the working code I have so far. Any specific code tips would be greatly appreciated!
try {
Node node;     
ContentContext ctx=new ContentContext(request);
ISearchManager searchManager=ContentManagerFactory.getSearchManager();
String searchPath="/BEA Repository/BIPIFolder";
Search sch=new Search("contributor='weblogic'");
sch.setSearchPath(searchPath);
com.bea.content.paging.ISortableFilterablePagedList list=searchManager.search(ctx,sch);
com.bea.content.paging.IPagedListIterator iterator=list.iterator();
%>
<table>
<tr><td>Content Name</td><td>Content ID</td>
<%
while(iterator.hasNext()) {
     node=(Node)iterator.next();
     %>
     <tr>
     <td><b><%=node.getName()%></b></td>
          <td><i><%=node.getId()%></i></td>
     </tr>
     <%
     } catch(Exception e) {}
%>
Paul L.

Hi Paul,
I'm not sure exactly what you want to do when a node is clicked upon. Presuming you want to 'expore' that node and its children...
It sounds like you have some minimal rendering code in place, but you need the rendering code to respond to link clicks.
The easiest way to do this is to have your JSP/servlet accept parameters, and have your rendering code pass a request parameter when the link is clicked, indicating the desired node to render when a link is clicked upon. Your rendering code then needs to 'do the right thing'.
There are additional options for rendering nodes aside from that above-- you might want to take a peek at the display templates feature, for example. This feature allows each node type (objectClass) to have its own renderer. So for example, one could display a node of ObjectClass 'Car' by displaying the 'Car' template, and a node of ObjectClass 'Camera' by displaying the 'Camera' template.
It might also be helpful to take a peek at the content portlets sample on dev2dev codeshare, which performs some of this exploring. You can find it at
https://codesamples.projects.dev2dev.bea.com/servlets/Scarab?id=S284
-Steve

Similar Messages

  • Content query using linked property [WLP 9.2]

    Hi -
    I've set up a content type in WLP 9.2 that consists of three properties:
    - linkedDevice (Link-Property -> to Node of type Device)
    - linkedTariff (Link-Property -> to Node of type Tariff)
    - combinedPrice (Double-Property)
    Now I'm trying to get the price for such a combination of Device and Tariff by using the <cm:search> like this:
    <cm:search id="prices" query="linkedDevice contains '${device.id}'>
    I've made sure that ${device.id} is initialized to contain something like "/BEA Repository/12345" before calling cm:search.
    Unfortunately, I've not been able to query for Nodes using the tag libs / API so far - and I don't get any errors in the logs for the com.bea.content.manager.* classes.
    Any hints? Anybody? :-)
    Thanks,
    Alex

    Currently we dont support linked property in the metadata search(SQL search). So your search query will not work. But if you want to find out the nodes that link to a particular node, you can use our INodeManager.getNodeReferences(). Please refer to the javadoc of INodeManager for more information.

  • Error While fetching content nodes from Weblogic Portal

    Hi,
    I am trying to deploy an application on Weblogic server which will connect to Weblogic portal repository and fetch content nodes from the specified repository. While accessing the repositroy nodes from my jsp code I get following error:
    I am not very clear what is going wrong
    Error 500--Internal Server Error
    com.bea.content.RepositoryRuntimeException: Repository configuration error.
         at com.bea.content.manager.internal.RepositoryManagerImpl.getRepositoryOps(RepositoryManagerImpl.java:194)
         at com.bea.content.manager.internal.RepositoryManagerImpl.connect(RepositoryManagerImpl.java:141)
         at com.bea.content.manager.RepositoryManagerFactory.connect(RepositoryManagerFactory.java:46)
         at com.bea.content.federated.internal.VirtualRepositoryManagerImpl.getRepositoryManager(VirtualRepositoryManagerImpl.java:306)
         at com.bea.content.federated.internal.VirtualRepositoryManagerImpl.getSearchOps(VirtualRepositoryManagerImpl.java:332)
         at com.bea.content.federated.internal.itemloader.NodeSearchItemLoader.fetchItemIdentifiers(NodeSearchItemLoader.java:68)
         at com.bea.content.federated.internal.itemloader.DirectAccessItemLoaderBase.minimalResolve(DirectAccessItemLoaderBase.java:17)
         at com.bea.content.paging.internal.PagedListImpl.(PagedListImpl.java:89)
         at com.bea.content.federated.internal.SearchManagerImpl.search(SearchManagerImpl.java:55)
         at jsp_servlet.__test._jspService(__test.java:133)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3370)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Lweblogic.security.acl.internal.AuthenticatedSubject;Lweblogic.security.acl.internal.AuthenticatedSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(Unknown Source)
         at weblogic.servlet.internal.WebAppServletContext.securedExecute(WebAppServletContext.java:2117)
         at weblogic.servlet.internal.WebAppServletContext.execute(WebAppServletContext.java:2023)
    Caused by: javax.naming.NameNotFoundException: While trying to lookup 'examplesWebApp.BEA_content.RepositoryOpsHome' didn't find subcontext 'examplesWebApp'. Resolved ''; remaining name 'examplesWebApp/BEA_content/RepositoryOpsHome'
         at weblogic.jndi.internal.BasicNamingNode.newNameNotFoundException(BasicNamingNode.java:1138)
         at weblogic.jndi.internal.BasicNamingNode.lookupHere(BasicNamingNode.java:246)
         at weblogic.jndi.internal.ServerNamingNode.lookupHere(ServerNamingNode.java:171)
         at weblogic.jndi.internal.BasicNamingNode.lookup(BasicNamingNode.java:205)
         at weblogic.jndi.internal.WLEventContextImpl.lookup(WLEventContextImpl.java:254)
         at weblogic.jndi.internal.WLContextImpl.lookup(WLContextImpl.java:367)
         at javax.naming.InitialContext.lookup(InitialContext.java:351)
         at com.bea.content.ContentEJBHomeCache.lookup(ContentEJBHomeCache.java:56)
         at com.bea.content.manager.internal.RepositoryManagerImpl.getRepositoryOps(RepositoryManagerImpl.java:187)
         at com.bea.content.manager.internal.RepositoryManagerImpl.connect(RepositoryManagerImpl.java:141)
         at com.bea.content.manager.RepositoryManagerFactory.connect(RepositoryManagerFactory.java:46)
         at com.bea.content.federated.internal.VirtualRepositoryManagerImpl.getRepositoryManager(VirtualRepositoryManagerImpl.java:306)
         at com.bea.content.federated.internal.VirtualRepositoryManagerImpl.getSearchOps(VirtualRepositoryManagerImpl.java:332)
         at com.bea.content.federated.internal.itemloader.NodeSearchItemLoader.fetchItemIdentifiers(NodeSearchItemLoader.java:68)
         at com.bea.content.federated.internal.itemloader.DirectAccessItemLoaderBase.minimalResolve(DirectAccessItemLoaderBase.java:17)
         at com.bea.content.paging.internal.PagedListImpl.(PagedListImpl.java:89)
         at com.bea.content.federated.internal.SearchManagerImpl.search(SearchManagerImpl.java:55)
         at jsp_servlet.__test._jspService(__test.java:133)
         at weblogic.servlet.jsp.JspBase.service(JspBase.java:34)
         at weblogic.servlet.internal.StubSecurityHelper$ServletServiceAction.run(StubSecurityHelper.java:226)
         at weblogic.servlet.internal.StubSecurityHelper.invokeServlet(StubSecurityHelper.java:124)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:283)
         at weblogic.servlet.internal.ServletStubImpl.execute(ServletStubImpl.java:175)
         at weblogic.servlet.internal.WebAppServletContext$ServletInvocationAction.run(WebAppServletContext.java:3370)
         at weblogic.security.acl.internal.AuthenticatedSubject.doAs(AuthenticatedSubject.java:321)
         at weblogic.security.service.SecurityManager.runAs(Lweblogic.security.acl.internal.AuthenticatedSubject;Lweblogic.security.acl.internal.AuthenticatedSubject;Ljava.security.PrivilegedAction;)Ljava.lang.Object;(Unknown Source)

    Repositories are essentially external to applications.
    Applications are associated with repositories via repository configs. Repository configs allow applications to access repositories.
    1. There is no special 'centralized repository'.
    2. This can be done, but has caveats, especially around caching. If multiple applications have repo configs which refer to the same repository, there can be caching issues. For example, suppose apps A and B both have repo configs for accessing repo R. If you use app A to change some data in repo R, then try to read the change via app B, you can end up with cached data instead of the most recent data in repo R. This is something to be aware of with this type of configuration.
    3. There is typically one WLP admin url per application. For example, if you have an application named 'FooApp', then the admin url can typically be found at 'http://localhost:7001/FooAppAdmin'. Application 'BarApp' may have an admin url at http://localhost:7001/BarAppAdmin.
    You can use the weblogic server console at http://localhost:7001/console to see these -- click on Deployments, then click Monitoriing. In the Context Root column, you can see the various top-level context roots registered for this application.
    4. Repositories are top-level possibly-shared entities, similar to databases.
    Applications 'use' Repositories via Repository Configs.
    Applications 'own' RepositoryConfigs, which allow them to 'use' a specific Repository.
    It's possible to have multiple applications 'use' the same repository (each application would have to have its own RepoConfig referring to the same repository), but there can be caching issues with this configuration -- see (2).
    Each application 'owns' its own set of repo configs, and therefore its own VCR namespace. The VCR namespace is compsed of the RepoConfigs that application 'owns'. For example, if an application has repository configs with names 'Repo1' and 'Repo2', then the VCR namespace includes /Repo1/... and /Repo2/...
    Note that each RepoConfig entry has a name, which becomes its VCR namespace path. The path to a node in a repository begins with / followed by the name of the RepoConfig followed by /. Application A and application B may each be accessing Repo R, but via different names. For example, if A has the path to Repo R registered via name 'RepoR', then its VCR path to Repo R is /RepoR/... If B has the path to Repo R registered via the name 'R', then its VCR path to Repo R is /R/...

  • How to expose model node to other dc

    hi, now i want to expose model node to other dc. so i create data link from interface controller to model.in fact,the model node is exposed to other dc,but when i use it, i can not use it. please tell me the right way to do it.thanks

    Hi Puneet
    Write a method in the interface controller of DC1 where you have created your message pool. This method should take the Message id as input and return the message string.
    Expose this interface as the public part and try accessing the message pool from this exposed method. Evey time you call this method just pass the message id.
    Use the local component messagemanager to display the message.
    Regards
    NagaKishore V

  • View for a network node or link table

    Can a view be used for a nework node or link table? The process sdo_net.validate_network hangs when I try to validate a network based on views for the node and link tables.

    I am using a logical model. The sql statement (checking link/node relationship) that hangs is:
    select count(a.link_id) from vlinks a
    where not exists
    select * from vnodes b
    where b.node_id = a.start_node_id or b.node_id = a.end_node_id
    I gather there is a concurrency issue with my links view because it joins a table with itself. I have a link table that has the start and end nodes defined on two records. Here is my view script:
    create or replace view vlinks
    (link_id, link_name, start_node_id, end_node_id, link_type, active, link_level, cost, parent_link_id)
    as
    select a.id, 'Link '||a.id, a.nodeid, b.nodeid, 'simple', 'Y',1,0,''
    from vnodes a, vnodes b
    where a.seq=1 and b.seq>1 and a.id = b.id
    I can create tables from my views and validate them successfully through sdo_net.validate_nodes_schema, sdo_net.validate_links_schema, and sdo_net.validate_network.
    I can analyze the network model through the Java API using the reachable nodes, shortest path, and spanning tree methods without any problems.
    I guess I'll validate my view links by counting the total number of links and subtracting the number of links joined successfully at the start and end nodes - if 0 then all links are valid. E.g.:
    select count(link_id) from
    select link_id from vlinks
    minus
    select a.link_id from vlinks a, vnodes b, vnodes c
    where a.start_node_id = b.node_id
    and a.end_node_id = c.node_id

  • How can i retrieve an image from a content Node in repository

    Hi,
    could you tell me how i can retrieve images, which i have stored in content management
    repository content node as primary property?
    i want to display the image in a Jsp, what do i have to include in the jsp page?
    thanx

    Hi,
    You can use javax.swing.ImageIcon like so
    ImageIcon anIcon=new ImageIcon("image.jpg");Hope thats what you are after,
    Cheers
    Jack573

  • Nodes and links are not displaying in IE10 browser - mapviewer ps6

    Hi,
    Node and link are not visible on the IE10 browser where as in IE9 they are displaying properly.
    In IE10 browser ,
    when we set compatibility settings - Display All websites in compatibility view --> node are displaying properly.
    when we deselect this node are not displaying properly
    Is there any existing bug on mapviewer?
    Thanks in Advance
    Aruna

    DRK Montreal,
    try opening Terminal, and running the following command in the Terminal window:
    nslookup www.pinatize.me
    If you still have access to some of those other Mac computers, try running the same command on them also for comparison.
    Please include in your reply the full output from that command.

  • Content node name problem during creation on portal 9.2 cm filesystem repo

    Hi all,
    We are developing a portal site using weblogic portal server 9.2.
    We are using the portal built-in content management system of the portal admin app. And We use the filesystem repository (with library service disabled) to store our content data by following the setup on documentatation.
    We use the create_db.cmd script to create the cms tables in a oracle database. The input contents' binary files and metadata are successfully stored in the filesystem directory and database correspondingly.
    However, we encountered some bugs/unexpected behaviour on creating/uploading binary data when using the content creation form.
    The problem is that when we try to create a content with one (required and primary) binary property, the node name of the new content does not always follow the name input by the user. The content node name will changed according to the uploaded file or the binary property name defined in content type, which are unexpected behaviour. In fact, we expect the node name stay as the same (with extension padded) of what user input on creating it and the property's filename should use this name.
    When we use the WYSIWYG editor to create the document of the binary property, after saving the document, the filename of this binary property automatically changed to the content type's property name, after clicking save button on the content, the node name of the content changed to the content type's property name too!
    When we upload file for this binary property, the property 's filename changed to the uploaded file's filename, and changing the node name of that content too!
    We would like to know what would cause this kind of misbehaviour/bug,
    could it be caused by misconfiguration on server? the filesystem repository? the database scheme?
    Any helps or suggestions on it would be greatly appreciated.
    Best Regards,
    Keaton

    Thanks for the reply jalpesh, you answered the filename on file upload method.
    But what about the filename changes due to create document (WYSIWYG editor) method. The content filename changed to the property-name.ext about saving the content, which is quite a strange behaviour. As the user will not be able to add the same type of content on current directory cause the content filename follow the property-name.ext and cause same filename conflicts when saving.
    We are using the weblogic portal server 9.2 MP 2 with oracle database (bea type 4 connection driver).
    Any advices or suggestions?
    Regards,
    Keaton

  • Connect content of archive link with newly created kpro document

    Hi all,
    i hope this the right plase to post my question. Unfortunatelly i did not find any SAP Records Management Topic.
    The issue is:
    i am able to create a new document in Records Management with the FM:
    SRM_DOCUMENT_CREATE
    But,  what  is not realy clear for me, how can i connect content of archive link with newly created kpro document.
    Thanks and Best regards,
    AT.

    Hi Attila,
    there is a difference between SRM_DOCUMENT_CREATE and ArchiveLink Documents.
    If you use the SAP Standard Service Provider for Documents SRM_SP_DOCUMENT this
    will refere to so called KPRO-Documents (KnowledgeProvider). This is totally different to
    common ArchiveLink scenarios.
    If you would like to use ArchiveLink Docs with attributes, there is the property unification in WebAS 6.40 available.
    Best
    Uwe Schulz

  • Hide Content Area Home link

    How can we hide 'Content Area Home' link when Search Results are returned.
    We are also trying to hide the 'Bulk Action' and 'Save Search' links. Any pointers? We are going live on Portal Content Areas this week and we need to get these things sorted.
    Thanks for your responses.

    In 3.0.9, you can customize Search Portlet. Create your own page
    and then put the search portlets in it.

  • CQ's built-in search requires jcr:content nodes?

    I'd like to build my data model within CQ5 while at the same time using CQ5's built-in search.  It seems I must 'inflate' my data model with unnecessary  jcr:content nodes in order to do so.
    This is what I'd like:
    /content/myapp/data/recipes [myapp:recipeList]
    /content/myapp/data/recipes/recipe1 [myapp:recipe]
    /content/myapp/data/recipes/recipe2 [myapp:recipe]
    /content/myapp/data/categories [myapp:categoryList]
    /content/myapp/data/categories/Thai [myapp:recipe_category]
    /content/myapp/data/categories/Indian [myapp:recipe_category]
    /content/myapp/data/categories/Vegan [myapp:recipe_category]
    In this 'reduced' model, all my properties can be added to my child nodes.  Seems to be searchable though:
    - *List nodes must extend cq:page
    - the recipe and category nodes must be nested within a jcr:content node
    - the recipe and category nodes must extend cq:page instead of nt:unstructured
    - the recipe properties must be nested within yet another layer of jcr:content nodes
    /content/myapp/data/recipes [myapp:recipeList]
    /content/myapp/data/recipes/jcr:content/recipe1 [myapp:recipe]
    /content/myapp/data/recipes/jcr:content/recipe2 [myapp:recipe]
    /content/myapp/data/recipes/jcr:content/recipe1/jcr:content/recipeproperties [myapp:recipeprops]
    /content/myapp/data/recipes/jcr:content/recipe2/jcr:content/recipeproperties [myapp:recipeprops]
    /content/myapp/data/categories [myapp:categoryList]
    /content/myapp/data/categories/jcr:content/Thai [myapp:recipe_category]
    /content/myapp/data/categories/jcr:content/Indian [myapp:recipe_category]
    /content/myapp/data/categories/jcr:content/Vegan [myapp:recipe_category]
    What value do I obtain from adding all the extra jcr:content nodes?

    Ideally, the model above would 'cleaner' like the example described in this CRX tutorial: http://dev.day.com/docs/en/crx/current/developing/data_modeling.html#The%2520Repository%25 20Model

  • Oracle NDM node$ and link$ extra attributes

    Hello,
    is there any way to create the network with extra attribute columns in node and link tables? I like to store other attributes in node table - without keeping them on a different table, and on link table I would like mustiple costs, etc.
    Also I noticed there is a userData method in node. is it possible to save this userData to somewhere per node?
    Best Regards,

    Hi,
    There are a few ways to have multiple cost columns. You could actually create a network on a view, and redefine the view to use the cost column you want before doing the analysis. The other way is just to create a new network, using the exising node and link tables but different cost columns. I assume this is the example you are looking for, so here is an example that adds a network called MY_NEW_NETWORK, selecting all the information from MY_OLD_NETWORK, and changing the node and link cost columns to NEW_NODE_COST_COLUMN and NEW_LINK_COST_COLUMN.
    Hope this helps.
    insert into user_sdo_network_metadata (
    select 'MY_NEW_NETWORK',NETWORK_ID, NETWORK_CATEGORY,
    GEOMETRY_TYPE, NETWORK_TYPE, NO_OF_HIERARCHY_LEVELS, NO_OF_PARTITIONS, LRS_TABLE_NAME,
    LRS_GEOM_COLUMN, NODE_TABLE_NAME, NODE_GEOM_COLUMN, 'NEW_NODE_COST_COLUMN', LINK_TABLE_NAME,
    LINK_GEOM_COLUMN, LINK_DIRECTION, 'NEW_LINK_COST_COLUMN', PATH_TABLE_NAME, PATH_GEOM_COLUMN,
    PATH_LINK_TABLE_NAME, PARTITION_TABLE_NAME
    from user_sdo_network_metadata
    where network = 'MY_OLD_NETWORK');

  • Uploading a file from jsp page on weblogic portal 9.2 into VCR content node

    I am working on Content Management in Weblogic Portal 9.2 using the com.bea.content API. I have succedded to the extent that I have created "Node" both Hierarchy and Content Node in the Virtual Content Repository using the CM API from a JSP.
    Now I have to upload a file from this JSP into VCR Content Node. I am facing some problems. I am not able to figure out which class to use for this purpose from CM API. Please help in this regard.

    Hi,
    You need to ensure you're using an ObjectClass with a PropertyDefiition of type Property.BINARY. Then, construct a BinaryValue with your InputStream. Use that to construct the Value and Property for the Node you're creating or updating.
    -Ryan

  • No Web Content node found in HelloClint project.

    Please check:
    In tutorial document "Building Web Services"
    Step 7. of section "Developing a Client for a Service using Proxy Generation" says:
    If you wish to inspect the WSDL, expand the :Hello | Web Content | hello nodes and double click on the HelloService.wsdl file.
    Actually, there is no Web Content node under the root node Hello.
    Node Hello only has one sub node Application Sources.
    Please check: is it an error or not?
    If not, please let use know how to create Web Content node in this project.
    Also please explain why the picture in step 3 of the following section "Create and test the Client" the "Web Content" node disappearing? (for the same project Hello).

    Thanks for your advice, but it still doesn't work. I have created a new project for my tests with only the web object in it to make sure no other objects etc. are influencing the output. I  published the project and tried to run it on different browsers/operating systems and directly from my hard drive vs. Adobe Connect. The results:
    Using my Mac and opening the project with the HTM.-file from my hard drive after I have added the published files folder  to the trusted locations for Flash (without this setting, it doesn't work), the web object only appears in Safari, but not in Chrome and Firefox. Using AdobeConnect, it's the same: only Safari.
    Using a Windows laptop (again opening the project with the HTM.-file from my hard drive after I have added the published files folder  to the trusted locations for Flash), it works with Internet Explorer and Firefox, but not with Chrome. Using AdobeConnect, no browser works. I only get this message:
    I can't use the web object when it only loads under very special circumstances. Moreover, I found out, that checking the "Scale HTML content" checkbox in the publish window  results in a totally misplaced web widget in those browsers that support the web object. It then looks like this:
    I use this option regularly, so this is really a problem for me.
    I hope you can tell, what I can do to get the web object running. I simply can't believe that this  is the standard behaviour and that everybody else is experiencing the same problems. There must be something I can do to get it running.
    I hope you can help.
    Best Regards
    Andreas

  • What plugin or what else use to make cool small window appear when I move on to a link, displaying content of that link on en.wikipedia

    Hi,
    On my previous computer, I had cool feature on my Firefox working on en.Wikipedia.
    When I moved mouse coursor over link, automatically window appear with content of that link. Link was to wikipedia.
    This windows was realy cool, cause I could move it, or click "more" so more content was displayed on this window. I could display few such windows on one page I was currently. I could move each where ever I wounted.
    So beeing on one page on en.wikipedia I could see explanation of words used in this page, also used from wikipedia, just moving over this word, which was link, and I could display few such windows, that I could move through whole page.
    I used older version of Firefox, on different computer, on Windows Vista laptop.
    I searched for such plugin, but I couldn't find it. I find one kind a similar, QuickWiki, but much simpler, and much less functional.
    I don't know how to find it. It was valuable tool for me. I used a lot of Wiki. Using this tool my job was much easier, as I didn't have to go to new page each time I wan't to check meaning of that word.
    Please, help me if you know what to do or what tool to use.
    Best regards,
    Artur

    Thanx :) It's even more than I wanted.
    I can see web page in small window, without opening new tab, just moving my mouse over a link. Cool, really usefull. Thank you.

Maybe you are looking for

  • IR Report Search - ORA-20001: get_dbms_sql_cursor error ORA-00936: missing expression

    Hi All,   I had created a IR report based on a table and it was working with no issues.  But after few days, when I try searching using the IR search bar it shows "ORA-20001: get_dbms_sql_cursor error ORA-00936: missing expression" error message. I d

  • Turn off and then turn on

    Have Officejet j5780. Replaced #74 black ink. Did cartridge alignment. Pressed OK button. Hear cartridges aligning. j5780 begins to print. Then suddenly, the words, "turn off and then turn on" are on and power button is flashing on j5780's screen. Re

  • HTML images not visible in Mail

    All of a sudden images are not being displayed in Mail. I've checked the option on displaying html images in mail preferences. How do I get images in mail messages to display?

  • Grouping with report queries

    hi all, is it possible to have a report query with more than 1 rowset tag? for example: <HEAD> <ROW> <ROWSET> <DEPTNO>10</DEPTNO> <DNAME>Administration</DNAME> <EMP> <EMP_ID>1</EMP_ID> <ENAME>ALLEN</ENAME> </EMP> </ROWSET> </ROW> </HEAD>when i went t

  • Everything Reset on Boot-up???

    Ok so basically yesterday when I started up my computer it seemed to change, I had about half as many Icons on the desktop homepage than I normally do, and all my settings had seemingly reset. For example I went onto Chrome and all my bookmarks had g