Creating a OJMS topic and connecting to BAM

Hi,
I have in our database created a topic for errors:
BEGIN
dbms_aqadm.drop_queue_table('IPLERRORQTAB',true);
END;
BEGIN
sys.dbms_aqadm.create_queue_table (
queue_table => 'IPLERRORQTAB'
, queue_payload_type => 'SYS.AQ$_JMS_MESSAGE'
, sort_list => 'PRIORITY,ENQ_TIME'
, comment => ''
, multiple_consumers => TRUE
, message_grouping => DBMS_AQADM.NONE
, storage_clause => 'TABLESPACE OJMS LOGGING'
, primary_instance => '0'
, secondary_instance => '0');
COMMIT;
END;
BEGIN
sys.dbms_aqadm.create_queue(
queue_name => 'IPLERROR'
, queue_table => 'IPLERRORQTAB'
, queue_type => sys.dbms_aqadm.NORMAL_QUEUE
, max_retries => '5'
, retry_delay => '0'
, retention_time => '0'
, comment => '');
END;
BEGIN
sys.dbms_aqadm.start_queue(
queue_name => 'IPLERROR'
, enqueue => TRUE
, dequeue => TRUE);
END;
DECLARE
subscriber SYS.aq$_agent;
BEGIN
subscriber := sys.aq$_agent (
name => 'BAM',
address => NULL,
protocol => NULL);
DBMS_AQADM.ADD_SUBSCRIBER (
queue_name => 'IPLERROR',
subscriber => subscriber);
END;
Then in the BAM Architect defined the following:
TopicConnectionFactory Name: java:comp/resource/ojms_ipl/TopicConnectionFactories/IPLERRORQTAB
Topic Name: java:comp/resource/ojms_ipl/Topics/IPLERROR
Durable Subscriber Name (Optional): BAM
In the enterprise Link i have created a connection between a Oracle BAM message receiver and a grid.
When i try the connection I get the following error:
IMessageSourceReceiver->messageReceive: javax.naming.NameNotFoundException: java:comp/resource/ojms_ipl/TopicConnectionFactories/IPLERRORQTAB not found
     at com.evermind.server.rmi.RMIClientContext.lookup(RMIClientContext.java:52)
     at javax.naming.InitialContext.lookup(InitialContext.java:347)
     at iteration.enterpriselink.sources.JMSConsumer.start(JMSConsumer.java:85)
     at iteration.enterpriselink.sources.JMSMessageSourceReceiverImpl.jmsConsumerStart(JMSMessageSourceReceiverImpl.java:1001)
     at iteration.enterpriselink.sources.JMSMessageSourceReceiverImpl.messageReceive(JMSMessageSourceReceiverImpl.java:326)
[Oracle BAM Enterprise Link error code:  0x75 -- 0x1, 0x75 -- 0x3A]
Error during Message Receive operation.
[Oracle BAM Enterprise Link error code:  0x75 -- 0x1, 0x75 -- 0x3B]
Error while processing the data for the step 'Oracle BAM Enterprise Message Receiver'
[Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0x83]
Error while processing the data for the step 'Oracle BAM Enterprise Message Receiver'
[Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0x83]
IMessageSourceReceiver->messageReceive: javax.naming.NameNotFoundException: java:comp/resource/ojms_ipl/TopicConnectionFactories/IPLERRORQTAB not found
     at com.evermind.server.rmi.RMIClientContext.lookup(RMIClientContext.java:52)
     at javax.naming.InitialContext.lookup(InitialContext.java:347)
     at iteration.enterpriselink.sources.JMSConsumer.start(JMSConsumer.java:85)
     at iteration.enterpriselink.sources.JMSMessageSourceReceiverImpl.jmsConsumerStart(JMSMessageSourceReceiverImpl.java:1001)
     at iteration.enterpriselink.sources.JMSMessageSourceReceiverImpl.messageReceive(JMSMessageSourceReceiverImpl.java:326)
[Oracle BAM Enterprise Link error code:  0x75 -- 0x1, 0x75 -- 0x3A]
Error during Message Receive operation.
[Oracle BAM Enterprise Link error code:  0x75 -- 0x1, 0x75 -- 0x3B]
Error while processing the data for the step 'Oracle BAM Enterprise Message Receiver'
[Oracle BAM Enterprise Link error code:  DC -- 0x1, DC -- 0x83]
Update of Plan "OJMS_Test_Plan" failed.
[Oracle BAM Enterprise Link error code:  PlanMgr -- 0x1, PlanMgr -- 0xD5]
Can anyone see where the error might be?
Regards Eskil

Hi,
I solved the problem for him, it was a name resolution problem.
Machine setup:
machinebam.domain888.com - hosts bam
machineias.domain0101.com - hosts ias
The machine "machineias.domain0101.com" seems to be installed without the domain name (FQDN)
This means that when the machinebam.domain888.com send the OPMN request to lookup the JMS setup:
POST http://machineias.domain0101.com:6004/connect HTTP/1.1
Content-Length: 0
OPMNtype: pm
OPMNrequest: /dump?type=dms&dmsarg=[nountype=opmn_ias_instance&format=xml]
The response is without the FQDN;
HTTP/1.1 200 OK
Content-Length: 26486
Content-Type: text/html
Response:
<?xml version='1.0'?>
<!DOCTYPE pdml>
<pdml version='9.0.4' name='opmn' host='machineias' id='26954' timestamp='1173813385745'>
<statistics>
<noun name="machineias:6201" type="opmn"><noun name="pm" type="opmn_pm">
<noun name="soa_1013.machineias" type="opmn_ias_instance">
<noun name="default_group" type="opmn_ias_component">
<noun name="oc4j_soa" type="opmn_process_type">
<noun name="default_group" type="opmn_process_set">
<noun name="process_463551397" type="opmn_process">
<noun name="opmn_oc4j_proc" type="opmn_header">
<noun name="specialized" type="opmn_oc4j_proc">
<metric name="oc4jInstance.value">
<value type="string"><![CDATA[oc4j_soa]]></value>
</metric>
<metric name="oc4jIsland.value">
<value type="string"><![CDATA[default_group]]></value>
</metric>
</noun>
</noun>
<noun name="jms" type="opmn_connect">
<metric name="desc.value">
<value type="string"><![CDATA[jms]]></value>
</metric>
<metric name="protocol.value">
<value type="string"><![CDATA[jms]]></value>
</metric>
<metric name="host.value">
<value type="string"><![CDATA[machineias]]></value></metric>
<metric name="port.value">
<value type="integer"><![CDATA[12604]]></value>
</metric>
This means that the name translation fails, ie a ping to machineias from machinebam.domain888.com fails.
The solution is either of:
- reinstall iAS with the domain suffix
- add all the domains to the DNS suffix lookup list (in TCP IP advanced settings for windows)
- add the host in %systemroot%\system32\drivers\etc\hosts
Ha en bra dag!
Örjan Lundberg

Similar Messages

  • I'm trying to set up a sync account but when I get to the window with the "Create a new account" and "Connect" nothing happens when I push either of the buttons.

    I'm trying to set up a sync account but when I get to the window with the "Create a new account" and "Connect" nothing happens when I push either of the buttons.

    By the way, this is in the brand new Firefox 4, not an extension.

  • I created an iCloud account and also had to get more space after I have done the purchase, I am unable to backup my phone! I have a stable wifi connection at home and all I see for hours and hours is "Backing Up .. Estimating time remaining"!!!!! Plz help

    I created an iCloud account and also had to get more space so after I have made the purchase, I am unable to backup my phone! I have a stable wifi connection at home and all I see for hours and hours is "Backing Up .. Estimating time remaining"!!!!! Plz help I'm unable to make the backup as I need to transfer all my data on my new iPhone 5S

    This may be caused by a corrupt existing backup that needs to be deleted, or by data on your device that is causing the backup to fail.  To troubleshoot these, try deleting your last iCloud backup (if you have one) by turning off iCloud Backup in Settings>iCloud>Storage & Backup, then tap Manage Storage, tap your device under Backups, then tap Delete Backup.  Then go back and turn iCloud Backup back on and try backing up again.
    If it still won't back up, you may have an app or something in your camera roll that is causing the backup to fail.  To locate which one, go to Settings>iCloud>Storage & Backup>Manage Storage, tap the name of your device under Backups, under Backup Options tap Show All Apps, then turn them all to Off (including camera roll) and try backing up again.  If the backup is successful, then the camera roll and/or one of your apps is causing the backup to fail and you'll have to located by process of elimination. Turn the camera roll On and try backing up again.  If it succeeds, turn some of your apps to On and try backing up again.  If it succeeds again, turn some more apps to On then try again; repeat this process until it fails.  Eventually you'll be able to locate the problem app and exclude it from your backup.
    In the meantime you can back up your phone to your computer by connect it, opening iTunes and going to File>Devices>Back Up.  Also be sure to transfer your purchases (File>Devices>Transfer Purchases).  Then set up your new phone and when given the option, choose Restore from iTunes Backup and follow the prompts to restore this backup to your new phone.  This will be much faster than using iCloud anyway.

  • Creating a share in 10.5 and connecting  with XP or Vista - My Experience

    Here was my situation.
    Client has a machine now running 10.5 on it that is sharing an external drive on the network for other mac users in the office to use as well as 3 Windows machines. I tested with an xp machine as well as a vista machine.
    The problem I was facing was that I had to set up the windows machines to be able to access the shared drive on the machine running 10.5. On 10.4 this was done with sharepoints, which breaks in 10.5. Luckily, Apple incorporated a lot of sharepoints functions into 10.5.
    First I had to create a Standard or Admin user for each unique user that will be connecting to the share, on the machine that the external drive is connected to. You have the option of creating a "share only" user, but that seems to only be for mac sharing because those accounts do not show up as available when you enable accounts to access the SMB.
    Once I had the new accounts made, I had to go to "Sharing" in the System Preferences and click on "File Sharing". When selected you see "Shared Folders" and "Users" panes. I clicked the + symbol and pointed it to the shared drive, since one of the accounts will have access to the whole drive. In the user pane I clicked the + and added the user I created for that access.
    Note at this point. If you use the same username and password of the user account in windows (case sensitive I believe) you will not have to specify a special username and password for access to the share. I did this with the first machine with complete access because he was the owner of the share.
    So after I gave that user access to the whole drive he was able to find the 10.5 machine on the network and connect to the share without prompt of a password.
    I then tried to set up the other two users who were not on the same subnet so they had to use "map network drive" on their PCs.
    Again I added the target folder that they would have access to on the shared drive. I added their user as having permission to access it. But when I went to map the network drive, it could see the folder if I entered \\ip.add.res.s\foldername and clicked "browse" but when I tried to add it, the system said it was not found. I also made sure to click "change user name" and entered the username and password for the account with access to the folder.
    So after tinkering a while I finally found that you must add the users to the main share drive list of users, even if they are set to "read only (dropbox)" or else they will not be able to access the subfolder assigned to them. It also did not make a difference if I removed the share drive completely and added just the subfolders and users individually.
    I hope this might help somone out there who might be having a similar issue with getting xp or vista to use shared folders in 10.5.

    Was not a question.

  • Create a new site collection in different farm and connect to different content database from decommissioned farm

    I wish to bring down a SharePoint farm1 and create a new site collection in an existing farm2 and connect the new site collection in farm2 to the content db in farm1.
    Is this possible and how should I do it?

    it is possible to copy/move a content database from one farm to another... so long as the NEW farm is at least as up-to-date (version/service packs/updates/hotfixes/etc) as the OLD farm.
    you can move a site collection into its own content database.
    hopefully that answers your question.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • Hello there,  I created a DPS application and I want that when you click on an image, it opens a pdf. But this one is on the ipad.  This is in case there is no internet connection.   Thank you.

    Hello there,
    I created a DPS application and I want that when you click on an image, it opens a pdf. But this one is on the ipad.
    This is in case there is no internet connection.
    Thank you.

    How to make the zip: http://helpx.adobe.com/digital-publishing-suite/help/import-htmlresources.html
    How to link to the asset: Digital Publishing Suite Help | Hyperlink and button overlays
    Neil

  • Creating topics and queues programatically

    Hi,
    Here i my scenario.
    1. I have created the required number of queues and topics using the SunOne MQ's imqcmd command.
    2. I want to use the jndi apis to register the jndia names for these queues in the appserver. How do we do this?
    3. How to make an entry in the server.xml file programatically?
    Note:- i do no t want to use the asadmin-utility for this.
    i want to use the standard api's available to do this task.
    Pls help
    regards
    raghu

    Hi Raghu,
    You appear to have created various topics and queues
    on a MQ broker via the imqcmd command (independent
    of app server).
    For JMS clients to access/use the above topics/queues,
    JMS resources of type javax.jms.Topic and javax.jms.Queue
    need to be created and exposed to app server's JNDI
    context.
    Running this command:
    asadmin create-jms-resource ...
    Creates a new jms-resource entry in server.xml and
    the command:
    asadmin reconfig ...
    Creates the actual java object and introduces it into
    app server's JNDI context. (A server restart does this too).
    You mention that you want to do the above from your code.
    I don't think it is possible to programatically add new
    resources into server.xml. If there was a way, I wouldn't
    recommend it be done from J2EE applications since JMS resource
    management is an administrative task. Note that using
    JNDI to bind an object from an application (I haven't tried it
    in app server) may appear to work but this resource is not
    persisted across restarts since it is not in server.xml.
    Why do you want to do this ? Why does your application need to do
    what asadmin already does today ?
    Perhaps if I can better understand why you want to do this I can
    help suggest other solutions.
    regards,
    -isa

  • I created a new email and got my Icloud account set up but cant get my Icloud accounts. It says connection error and cant connect to sever?

    I created a new email and new password to connect to my Icloud but cant get on cause it says connection error?

    What happens when you try?

  • Win8 can not find and connect the wireless network which created in win7

    I am a fan of DOTA, sometimes i play it with my roommate. But after i installed win8, my roommate and i can not connect to each other. He used win7 to set up a wireless network, but i could not find the network. And i used win8 to set up a
    wireless network.Althrought it prompted create successfully, i could not find it in my laptop. So who can explain it to me? I really think using the networkd on right side instead of the classic network finder is a big mistake.  

    Hi,
    As you said,the other laptop couldn't see the adhoc network.
    I suggest you use the following method to re-create the adhoc network.
    Firstly,please use the following command to verify that your network interface supports virtualization.
    netsh wlan show drivers
    If Hosted network supported says Yes, please enter the following commands to configure an ad hoc wireless connection.
    netsh wlan set hostednetwork mode=allow ssid=<network name> key=<passkey>
    Then,you need to start the mode to create an ad hoc connection. Please enter the command below.
    netsh wlan start hostednetwork
    For the detail information, refer to the following link:
    http://www.addictivetips.com/windows-tips/how-to-create-wireless-ad-hoc-internet-connection-in-windows-8/
    Note: Microsoft provides third-party contact information to help you find technical support. This contact information may change without notice. Microsoft does not guarantee the accuracy of this third-party contact information.
    Regards,
    Kelvin hsu
    TechNet Community Support

  • How to resolve JMSExceptions:045032 when creating a JMS Topic

    I am using Weblogic 12c (12.1.1.0).  I have created a new managed server. I have created a JMS server targeted to the new managed server. I have created a JMS module targeted to the new managed server. I have created a JMS Subdeployment which targets both the new managed server and the new JMS server.  I've created a JMS connection factory which targets the JMS Subdeployment.
    Now everything I've done so far has worked fine.  No problems.  The problem happens when I try to create a JMS Topic.  I select to create a new regular Topic; I target the new JMS Subdeployment, and after selecting the Subdeployment Weblogic refreshes the page and shows the JMS server.  So this all seems OK. When I try to finish and create the JMS Topic, I get the following error: [JMSExceptions:045032]While attempting to create destination [TOPIC_NAME] in module [MODULE_NAME] the JMS server [MANAGED_SERVER_NAME] could not be found.
    Any thoughts on this?  I've googled around but haven't found anything useful.

    I replicated this at my end. This is caused by Subdeployment target to both the new managed server and the new JMS server.
    Please try creating a new Subdeployment and target it to JMS Server only, as described in the document below.
    https://docs.oracle.com/cd/E24329_01/web.1211/e24385/best_practice.htm#JMSAD633
    "Populate the subdeployment only with JMS servers - not WebLogic servers. Only include the JMS servers that you wish to host destinations. This ensures that when the JMS resources are configured, they are targeted to the correct JMS servers. For modules that support non-distributed destinations, the subdeployment must only reference a single JMS Server. If you have a mix of distributed and non-distributed destinations, use two modules each with its own subdeployment."
    Best Regards
    Luz

  • JMS distrubuted topic and jms inbound adapter

    Hi,
    We are building a HA application using precise recovery using JMS. FOr that we want to create a distributed JMS Topic (ckustered JMS Topic). As we understand things, when a JMS subscriber subscribes to a distributed Topic it is actually wired to a sopecific server (a specific fisical JMS Topic). When this JMS server fails the connection is dropped and the JMS subscriber needs to reconnect.
    1. Is our understanging correct?
    2. If yes and we need to reconnect to the surviving JMS Topic, is there a way to "tell" the JMS Inbound adapter to do so? Is it done automatically by the adapter?
    Thanks,

    There are a few different things you should be considering when configuring JMS for precise recovery, so I'm afraid this is going to be a long response.
    * The precise recovery feature may not work correctly in the case where JMS output messages are lost. Avoiding message loss in the case of a JMS failure involving topics requires the use of persistent messages and durable subscribers. This is true regardless of whether you're using Distributed Topics or a Topic hosted by a single server. So use of durable subscribers is highly recommended when using CEP precise recovery.
    * The CEP JMS input adapter won't actually support durable subscriptions until the upcoming 11.1.1.6 (PS5) release. So if you want to use durable subscriptions to avoid problems with precise recovery in the case of JMS server failure you would need to be on this release of CEP (at least for production).
    * If you're using the CEP JMS inbound adapter with a distributed topic and a non-durable subscription, you can configure the adapter destination-jndi-name with the logical name of the topic and if the topic member servicing a given consumer fails, the consumer will reconnect to a surviving topic member. This works because you're using a logical destination name (not a physical host name or IP address), so the adapter is able to determine the surviving servers associated with the logical topic and reconnect to one of them. However since you'd be using non-durable subscriptions in this case to achieve failover/reconnect, you can have the problem described above with message loss and precise recovery (non-durable subscribers/non-persistent messaging can lose messages during the actual failover/reconnect).
    * Unfortunately, WLS doesn't support durable subscriptions to distributed topics using the logical destination name. When using distributed topics you can only create durable subscriptions on specific topic members, and since these are subscriptions to a specific physical member these subscribers won't failover to another topic member if the server hosting their subscription fails.
    So given all of the above you can see that the use of distributed topics with CEP precise recovery may not provide the ideal level of HA (the ability to handle combinations of JMS and CEP failures). You might want to consider using a non-distributed (single server) topic with persistent messaging and durable subscriptions as an alternate approach for precise recovery. In this configuration JMS server failure would require restarting the failed server, but once the JMS server is restarted there should be no message loss and CEP precise recovery should work correctly.
    If you're determined to use distributed topics you might want to try posting to the JMS forum to see if anyone there has ideas for other solutions. Just let them know that CEP in this case is essentially acting as a vanilla JMS client (not MDB based) that can't tolerate message loss:
    WebLogic Server - JMS

  • OJMS Topic Example?

    Hi
    I have asking for examples, but I'm attempting to setup a proof of concept using BAM, BPEL and Application Server JMS Queue/Topic.(The queue/topic being on a separate server running iAS Beta 10.1.3.1)
    My iAS has some demo topics and queues set up and I would like BAM to listen for messages on this.
    There are many example for setting up Enteprise Data Sources for WebMethods, BEA etc, but none for OJMS.
    If anyone has done this, I would greatly appreciate some guidance....!
    Many thanks
    Chris

    Hi Sanjeev
    Thanks for your prompt response!!
    My e-mail is [email protected]
    I am looking at the BAM documentation in http://www.oracle.com/technology/products/integration/bam/htdocs/1012_support.html#docs
    Specifically, the Architects guide indicates how to setup sources for 3rd party products which is where I'd expect to see the JMS info too...
    Many thanks
    Chris

  • How to Create a Separate N and G Network?

    I have been reading post after post, and none of them gives enough explicit detail for me to figure this out. I want to create 2 separate networks in my home, one just 802.11n the other 802.11g. The n is for internet and time capsule with my MacBook Pro, the g for my iPhone. I have a Time Capsule, an Airport Express and a DSL modem.
    Right now I have the DSL modem connected to the TC and it set for 802.11n only @ 5 Ghz. The Airport Express is connected via an ethernet cable to the TC. What settings must I change in the Airport Express "Manual Setup" section to ensure no problems?
    I have heard of turning of DHCP and something about SSID. I have no idea what those are. I have a static IP address from AT&T.
    Thanks so much!

    I've read a number of posts on this topic and also read the TC manual. I am still having a problem getting this to work so I am hoping someone can provide a step by step based on the following info:
    I have a cable modem connected to the TC using ethernet.
    I want my Macbook Air and Apple TV to connect to the TC wirelessly at 5Mhz. I called the TC "Home_5Mhz" with WPA2 Personal active.
    I have a b/g AEBS connected to the TC using ethernet. I called the AEBS "Home" with WPA2 Personal active.
    I want to connect my iPhone, iMac G5 and Powerbook G4 wirelessly to the AEBS b/g network.
    I want all of my devices to have access to the Internet at the highest speed possible without degrading 802.11n performance on the TC.
    The problem I'm having: Access to the Internet from the iMac, Macbook Air, and Apple TV is sporadic. Sometimes it works, most of the time is doesn't. The TC is set to find a channel automatically; the AEBS is using Channel 11. The two computers seem to recognize the TC as a storage device and I can back up to it. It is very slow backing up the iMac G5's full 250gb hard drive (supposed to be, right?). It's the Internet connection that doesn't appear to be working consistently. By that I mean I get the Safari web page saying that I'm not connected to the Internet (page with Diagnostic button). Running Diagnostics has not resolved the problem. I have tried resetting both the TC and AEBS to factory specs and starting from scratch but the problem persists.
    I'm pretty sure it's just a simple setting I have yet to identify, I just can't figure out which one it is. Currently the AEBS is in bridge mode allowing b/g devices to connect to the Internet. "n" devices cannot most of the time unless I change the AEBS from bridge mode to share an IP address. Then I can connect the "n" devices but I think it's happening via the AEBS not the TC.
    Any suggestions or step by step info (link?) would be greatly appreciated and I offer my thanks in advance.
    Bill

  • Recently moved and installed ATT DLS - I use their wireless router and connectted my airport express - Now I'm getting the Blue ? on some images

    Recently moved and installed ATT DLS - I use their wireless router and connectted my airport express - Now I'm getting the Blue ? on some images - and at times - videos don't load.  I've increased / deleted Cache.  Suggestions? Misconfig?  Could it be possible my configuration from MacBook to router isn't correct?
    Thanks!

    JG,
    Thanks for the info.
    Couple of questions. I found an apple support document on this topic that opened with this line:
    "AirPort Express and all AirPort Extreme base stations can use WDS. Earlier AirPort base stations can't."
    If the TC is an airport extreme base station, why can't this work to extend the network? I think I misunderstand. Here is the full article:
    http://support.apple.com/kb/HT2044?viewlocale=en_US
    If I buy a new airport extreme, set it to wireless-n only as my main router, am I correct that my existing time capsule could be used as a bridge if plugged in upstairs?
    Final question (and that should do it), could I take this old airport express, plug it in upstairs using the ethernet connection, and just create a separate wireless network to use with a different name?
    I'd like to keep one network if possible but just kicking around short term solutions.
    Thanks again.

  • Connection ==null and Connection is closed, difference

    Hi experts,
    I wonder what are the differences between "Connection==null" and "Connection is closed"?
    I closed a connection on one JSP page after a bean has retrieved data. Then, on the same page I call another bean to connect to the database. Because the Connection object has been created earlier, therefore Connection is not NULL, but it is closed. So, the second bean has to initiate another connection(if I knew how to test the "closed" status)
    Is it true that if the Connection is closed, then it should become null?
    I think I must have make quite a few mistakes in above statement:). Please help. Thanks a lot.

    connection.isClosed() will tell you if the connection object is closed or not. If it is closed, then the connection object can be dropped because you will not be able to create any new statements from that connection object. Just recreate another connection to use when this occurs.

Maybe you are looking for

  • Adding a link to iCal?

    Is it possible to add a link in iCal to return the viewer to the homepage that the iCal is for? For example, the school I work for is using iCal. We have a link to the calendar on our homepage. Is there a way to put a link on the iCal page to go back

  • GPO User settings not changing IE 8 settings windows 7

    Good Afternoon, We have several IE 8 settings that need to be adjusted for a particular application. We have them configured in a IE GPO. I have enabled and linked this IE GPO to the top child domain level, xxx.xxxroot.com. I ran a gpupdate on the en

  • Scrteen is rotated 90 degrees on Touchscreen 520

    When I was using control key my screen rotated 90 degrees on a Touchscreen 520 and I cannot recover the normal orientation of the screen in spite of turning the computer off and on.  Also I have not been able to activate the touchscreen aspects of th

  • I lost my browser address line on my firefox homepage, how do I restore it?

    The question is self explainotoey

  • BOM creation using MDM

    Can we create Bill of Material using MDM, or can we provide authorizations for changing data with the help of MDM as we can call BOm also as a master data.