Is a link traced direct or reversed by a path (path$, plink$)

Hello
After analyzing an "undirected" network via the java api, we stored the results in the path$ table and also filled the plink$ table, containing the sequence and the link_id's that made up the paths.
Is there an easy way, or does anybody already created a way, to check or list in which "direction" (direct or reversed) the path traced the links? Is a link traced direct or reversed by a path?
tx
Luc

Ok
This is what I came up with, without guarantee that this is the best/fastest code/approach.
The concept comes from the SDO_UTIL.GETVERTICES function (see spatial users guide).
1. create type LINK_DIR_TYPE where direct holds a bit 0 = reversed, 1 direct)
========================================================
Create type LINK_DIR_TYPE AS OBJECT
PATH_ID NUMBER,
LINK_ID NUMBER,
SEQ_NO NUMBER,
DIRECT NUMBER
2. create type PLINK_DIR_TYPE
=================================================
CREATE TYPE PLINK_DIR_TYPE AS TABLE OF LINK_DIR_TYPE;
3. A function returning the type PLINK_DIR_TYPE
=====================================
CREATE OR REPLACE FUNCTION GET_PLINK_DIRECTION (myNETWORK IN
VARCHAR2, PATH_ID IN NUMBER) RETURN PLINK_DIR_TYPE
AS
PLTN VARCHAR2(50);
LTN VARCHAR2(50);
PTN VARCHAR2(50);
PATH_START_NODE_ID NUMBER;
Prev_stN NUMBER;
Prev_dir NUMBER;
v_sql VARCHAR2(500);
TYPE cur_type IS REF CURSOR;
c_cursor cur_type;
c_cursor2 cur_type;
TYPE NUMTAB IS TABLE OF NUMBER;
LinkIDS NUMTAB;
L_startids NUMTAB;
L_endids NUMTAB;
Directs NUMTAB;
pl_DIR_TAB PLINK_DIR_TYPE := PLINK_DIR_TYPE(NULL) ;
BEGIN
SELECT PATH_TABLE_NAME, PATH_LINK_TABLE_NAME, LINK_TABLE_NAME INTO PTN, PLTN, LTN
FROM USER_SDO_NETWORK_METADATA
WHERE NETWORK = myNETWORK;
v_sql := 'SELECT START_NODE_ID FROM ' || PTN || ' WHERE PATH_ID = ' || path_id;
EXECUTE IMMEDIATE v_sql into PATH_START_NODE_ID;
v_sql := 'select pl.link_id, l.start_node_id, l.end_node_id, 1 as DIRECT ' ||
'from ' || pltn || ' pl, ' || ltn || ' l ' ||
'where pl.path_id = :1 AND pl.link_id = l.link_id ' ||
'ORDER BY pl.path_id, pl.seq_no ';
OPEN c_cursor2 FOR v_sql using path_id;
FETCH c_CURSOR2 BULK COLLECT INTO linkids, l_startids, l_endids, directs;
CLOSE c_CURSOR2;
pl_DIR_TAB.EXTEND(Linkids.last -1);
Prev_stN := PATH_START_NODE_ID;
Prev_dir := 0;
IF (L_startIDs(1) = Prev_stN) THEN
DIRECTS(1) := 1;
ELSE
DIRECTS(1) := 0;
END IF;
Prev_dir := DIRECTS(1);
pl_DIR_TAB(1) := LINK_DIR_TYPE (PATH_ID, LINKIDS(1), 1, DIRECTS(1));
FOR i IN 1..Linkids.last loop
IF (L_startIDs(i) = Prev_STN) THEN
DIRECTS(i) := 1;
ELSE
IF (Prev_dir = 0) THEN
DIRECTS(i) := 0;
ELSE
IF (L_STARTIDS(i) = L_ENDIDs(i-1)) THEN
DIRECTS(i) := 1;
ELSE
DIRECTS(i) := 0;
END IF;
END IF;
END IF;
Prev_stN := L_STARTIDS(i);
Prev_dir := DIRECTS(i);
pl_DIR_TAB(i) := LINK_DIR_TYPE (PATH_ID, LINKIDS(i), i, DIRECTS(i));
END LOOP;
RETURN pl_DIR_TAB;
END;
4.USE IN SQL:
============================================
select t.path_id, t.link_id, t.seq_no, t.direct
from
table(GET_PLINK_DIRECTION(network_name, path_id)) t
Maybe this can be of use
Luc

Similar Messages

  • Link re-direction in Hyperion

    Hi All,
    We were using Hyperion reports 7.x version, and recently we migrated it to new version 9.3.1
    so, now my query is.... if user login to older version of reports 7.x using old version of
    link, it should re-direct to new version of reports 9.3.1 link
    is it possible to do in Hyperion if so can any one plz help me in this.
    Vijay.....

    Hi Ryno,
    Thx for ur replay.......
    if I'm not wrong DNS connections are used for connection Database ..... but how is it related to link Re-Direction...
    if it is possible, can you tell me te procedure or any doc related to this how to tht,.......here in our porjecct we don't have any network admin..
    Thanks
    Vijay....

  • CS4 Photoshop How do I reverse a clipping path.

    I made a clipping path and accidently clipped the outside of the bottle instead of the bottle. How do I reverse the clipping path? I know there is some icon that is supposed to show up on the top control bar but I am not finding anything.
    Thank you.

    Hi. Yes, options is checked. Yes, black arrow is selected.
    No, those little boxes such as below - do not show up.
    I'll be happy to attach a picture of what I have for screen shot if you can send me a way to do it. Thank you.  I am not getting a little camera icon. Usually to attach at the bottom it says something about attaching an image.

  • Unsatisfied Link Error : no jsafe in java.library.path

    Hi,
    When I try to connect to the server securily through a java program (t3s://localhost:7002),I
    get the Unsatisfied Link Error: no jsafe in java.library.path(the stack trace
    is at the end of this post). I've included all the weblogic jar files(including
    lib\weblogicaux.jar) in the classpath at runtime with -classpath command line
    option.I've also tried to run the program with
    "-Djava.library.path=D:\weblogic\lib\weblogicaux.jar" commandline option to no
    avail.Is there something I'm missing?
    Any suggestion or help would be appreciated.Hoping for a speedy reply
    Regards,
    Sreedhar
    "here is the stack trace"
    java.lang.UnsatisfiedLinkError: no jsafe in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1312)
    at java.lang.Runtime.loadLibrary0(Runtime.java:749)
    at java.lang.System.loadLibrary(System.java:820)
    at
    COM.rsa.jsafe.JSAFE_DeviceBuilderNative.buildObjects(JSAFE_DeviceBuilderNati
    ve.java)
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at weblogic.security.RSA.performOPJSafe(RSA.java:178)
    at weblogic.security.RSA.performOp(RSA.java:104)
    at weblogic.security.RSApkcs1.decrypt(RSApkcs1.java:153)
    at weblogic.security.RSAMDSignature.verify(RSAMDSignature.java:87)
    at weblogic.security.X509.verifySignature(X509.java:223)
    at weblogic.security.X509.verify(X509.java:152)
    at weblogic.security.SSL.SSLCertificate.verify(SSLCertificate.java:128)
    at weblogic.security.SSL.SSLCertificate.input(SSLCertificate.java:107)
    at weblogic.security.SSL.Handshake.input(Handshake.java:109)
    at weblogic.security.SSL.SSLSocket.getHandshake(SSLSocket.java:928)
    at weblogic.security.SSL.SSLSocket.clientInit(SSLSocket.java:343)
    at weblogic.security.SSL.SSLSocket.initialize(SSLSocket.java:217)
    at weblogic.security.SSL.SSLSocket.<init>(SSLSocket.java:170)
    at weblogic.socket.JVMSocketT3S.newSocket(JVMSocketT3S.java:29)
    at weblogic.socket.JVMSocketT3.newSocketWithRetry(JVMSocketT3.java:275)
    at weblogic.socket.JVMSocketT3.connect(JVMSocketT3.java:59)
    at weblogic.socket.JVMAbbrevSocket.connect(JVMAbbrevSocket.java:160)
    at weblogic.socket.JVMSocketManager.create(JVMSocketManager.java:294)
    at
    weblogic.rjvm.ConnectionManager.findOrCreateSocket(ConnectionManager.java:91
    8)
    at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:339)
    at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:306)
    at
    weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:248)
    at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:219)
    at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:186)
    at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:155)
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:200)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
    textFactoryDelegate.java:195)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
    textFactoryDelegate.java:148)
    at
    weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFact
    ory.java:123)
    at javax.naming.spi.NamingManager.getInitialContext(NamingManager.java:668)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
    at javax.naming.InitialContext.init(InitialContext.java:222)
    at javax.naming.InitialContext.<init>(InitialContext.java:198)
    at
    com.cbmx.test.ClientTreeModel.getInitialContext(ClientTreeModel.java:169)
    at com.cbmx.test.ClientTreeModel.<init>(ClientTreeModel.java:36)
    at com.cbmx.test.Frame1.<init>(Frame1.java:13)
    at com.cbmx.test.Application1.<init>(Application1.java:11)
    at com.cbmx.test.Application1.main(Application1.java:42)

    I assume your are running on a Unix platform? If so, it looks like you don't
    have the native implementation file from the vendor (usually a shared
    library file with a ".so" extension) in your LD_LIBRARY_PATH environment
    variable.
    Giri
    "sirigiri sreedhar" <[email protected]> wrote in message
    news:[email protected]...
    >
    Hi,
    When I try to connect to the server securily through a java program(t3s://localhost:7002),I
    get the Unsatisfied Link Error: no jsafe in java.library.path(the stacktrace
    is at the end of this post). I've included all the weblogic jarfiles(including
    lib\weblogicaux.jar) in the classpath at runtime with -classpath commandline
    option.I've also tried to run the program with
    "-Djava.library.path=D:\weblogic\lib\weblogicaux.jar" commandline optionto no
    avail.Is there something I'm missing?
    Any suggestion or help would be appreciated.Hoping for a speedy reply
    Regards,
    Sreedhar
    "here is the stack trace"
    java.lang.UnsatisfiedLinkError: no jsafe in java.library.path
    at java.lang.ClassLoader.loadLibrary(ClassLoader.java:1312)
    at java.lang.Runtime.loadLibrary0(Runtime.java:749)
    at java.lang.System.loadLibrary(System.java:820)
    at
    COM.rsa.jsafe.JSAFE_DeviceBuilderNative.buildObjects(JSAFE_DeviceBuilderNati
    ve.java)
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at
    COM.rsa.jsafe.JSAFE_AsymmetricCipher.getInstance(JSAFE_AsymmetricCipher.java
    at weblogic.security.RSA.performOPJSafe(RSA.java:178)
    at weblogic.security.RSA.performOp(RSA.java:104)
    at weblogic.security.RSApkcs1.decrypt(RSApkcs1.java:153)
    at weblogic.security.RSAMDSignature.verify(RSAMDSignature.java:87)
    at weblogic.security.X509.verifySignature(X509.java:223)
    at weblogic.security.X509.verify(X509.java:152)
    at weblogic.security.SSL.SSLCertificate.verify(SSLCertificate.java:128)
    at weblogic.security.SSL.SSLCertificate.input(SSLCertificate.java:107)
    at weblogic.security.SSL.Handshake.input(Handshake.java:109)
    at weblogic.security.SSL.SSLSocket.getHandshake(SSLSocket.java:928)
    at weblogic.security.SSL.SSLSocket.clientInit(SSLSocket.java:343)
    at weblogic.security.SSL.SSLSocket.initialize(SSLSocket.java:217)
    at weblogic.security.SSL.SSLSocket.<init>(SSLSocket.java:170)
    at weblogic.socket.JVMSocketT3S.newSocket(JVMSocketT3S.java:29)
    at weblogic.socket.JVMSocketT3.newSocketWithRetry(JVMSocketT3.java:275)
    at weblogic.socket.JVMSocketT3.connect(JVMSocketT3.java:59)
    at weblogic.socket.JVMAbbrevSocket.connect(JVMAbbrevSocket.java:160)
    at weblogic.socket.JVMSocketManager.create(JVMSocketManager.java:294)
    at
    weblogic.rjvm.ConnectionManager.findOrCreateSocket(ConnectionManager.java:91
    8)
    at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:339)
    at weblogic.rjvm.ConnectionManager.bootstrap(ConnectionManager.java:306)
    at
    weblogic.rjvm.RJVMManager.findOrCreateRemoteInternal(RJVMManager.java:248)
    at weblogic.rjvm.RJVMManager.findOrCreate(RJVMManager.java:219)
    at weblogic.rjvm.RJVMFinder.findOrCreateRemoteServer(RJVMFinder.java:186)
    at weblogic.rjvm.RJVMFinder.findOrCreate(RJVMFinder.java:155)
    at weblogic.rjvm.ServerURL.findOrCreateRJVM(ServerURL.java:200)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
    textFactoryDelegate.java:195)
    at
    weblogic.jndi.WLInitialContextFactoryDelegate.getInitialContext(WLInitialCon
    textFactoryDelegate.java:148)
    at
    weblogic.jndi.WLInitialContextFactory.getInitialContext(WLInitialContextFact
    ory.java:123)
    atjavax.naming.spi.NamingManager.getInitialContext(NamingManager.java:668)
    at javax.naming.InitialContext.getDefaultInitCtx(InitialContext.java:246)
    at javax.naming.InitialContext.init(InitialContext.java:222)
    at javax.naming.InitialContext.<init>(InitialContext.java:198)
    at
    com.cbmx.test.ClientTreeModel.getInitialContext(ClientTreeModel.java:169)
    at com.cbmx.test.ClientTreeModel.<init>(ClientTreeModel.java:36)
    at com.cbmx.test.Frame1.<init>(Frame1.java:13)
    at com.cbmx.test.Application1.<init>(Application1.java:11)
    at com.cbmx.test.Application1.main(Application1.java:42)

  • How to make smb:// links open directly in Finder?

    Hello,
    When I click on an afp or ftp link (such as ftp://abcd.defg.com/xyz/ or afp://mac.local/xyz/), in my emails (Eudora), the request is transmitted to the Finder, and I end up with a window opened in the /xyz/ folder.
    This is the case because the email client is informed to do so with these links.
    However, when I click on an smb:// link (to reach a folder on a PC), then Safari is chosen be default, and can't do much more than opening a window with an error message, of course.
    When I try to change this, the email client asks for a program to do smb (Finder I suppose), but then, Finder is a strange software. It is there:
    /System/Library/CoreServices/Finder.app
    But when I try to tell Eudora to take is as the app for smb:// links, its icon is grayed, looking like a document and not an app (when all other apps are recognised as such).
    How can I solve this?
    It would be VERY usefull for my co-workers to be able to go directly to an smb mount from their email message.
    Thank you,

    Rick,
    Sorry about the misgiving adresses, folders and access rights. My question is not about these three (they were just here to tell the story). You're perfectly right to say that in a local network, there's not need to complete the full IP or ".com" name of the PCs (even if it works all the same).
    When I said "of course" for the perms, it was just to mean, in the same way, that it's not this kind of problems here.
    My question is much more a human/mac graphic interface problem than a network problem. I want the people (as well as myself) to be able to go in a folder on the pc network with a simple click on an smb link in an email message (as they do now on an ftp or afp link).
    Thanks for the bother,

  • Link to directly submit to "waiting for me", instead of needing to upload every document.

    Can we get a submit button on an Adobe form that allows it to be delivered directly to my EchoSign account. This would be similar to my Archived documents email link. The idea being that paperwork can be channel to any user to send or manage from the manage page, possibly under waiting for me.

    In Acrobat 11 and Reader 11 you can open the sign panel and from here sign and send the pdf currently open. (excluding dynamic xfa based pdf files)
    Give that a shot.
    it is posible to add a button to the form itself as well which submits the form for signing and opens the pdf in the browser ready to echosign, but it requires an Echosign api integration which means the need for a Global account as well.

  • DB Link vs Direct Database Connection

    Hi All,
    We have two database, for the purpose of this example PROD and DEV, being a production and devlopment database respectively.
    We have noticed developers logging into the PROD database, doing their query development. We have asked them to do their query developement
    on the DEV database. We have created a DB Link in the DEV database to the PROD database to allow them to query up-to-date data.
    My question is... What is the performance benefit of a direct connection into the PROD database querying data as opposed to a connection into the DEV
    database querying data on PROD using the DB Link.
    thanks
    Melvyn

    Hi..
    We have noticed developers logging into the PROD database, doing their query development. We have asked them to do their query developementon the DEV database. We have created a DB Link in the DEV database to the PROD database to allow them to query up-to-date data.>
    Thats very wrong.The dev team can do any thing on production and if somethings does wrong blames will be on you.SO don't provide any access to the dev team.Right now i can think of 2 options as you want to give the dev taem up-to-date data
    1. Use oracle streams.The best replication method.Go for uni-directional oracle stream replication from prod. to dev.
    2. If the dev team need to do select only on the prod. tables then create a new schema, give that schema only select privilege on main schema's table and then create the dblink from that user
    HTH
    Anand

  • Portal link re-directs to amserver

    Hello,
    What changes would I have made once I logged into the psconsole; that
    broke the Portal Welcome link or re-directed it to the amserver page?
    I was trying to setup or enable the Mobile Access Functions... stated in the following PS7 installation. http://docs.sun.com/app/docs/doc/819-3027/6n59bv1n0?a=view
    or could it have been setting up services in the AMConsole?
    Thank you,
    AFR

    Hello,
    Thanks - we are able to do that. It only allows to login to the Community page.
    Yet we are looking to use that default page as a demo and be able to use and test the Enterprise and Developer logins as well....
    Any suggestions.... this happened after messing with the PSConsole settings.
    Thanks,
    Angel

  • Remote Delta Link vs Direct Link - Federated Portal

    Hi, We couldn't get our Remote Delta Links to work on our Enterprise Portal so we just built a direct link to our IViews.  This link goes through the Enterprise Portal and to the IView on the BI Portal. (Points to the Producer on the Consumer) This works great.  My only question is if I can build a direct link to my IViews what is the benefit of Remote Delta Links that became available as of SPS10?  Just a shorter link?
    Thanks!

    Yes it is a 'shorter' link doing it direct, however it is more flexible to use a remote delta link (when making changes).  You also get the benefit of user personalisations being attached to the view on the consumer portal  (rather than the producer).  Its slightly cleaner when it comes from transporting or cloning a whole PCD as well.  Thats is my basic understanding anyway

  • Is there any link for direct download of iOS 6.1.3?

    iOS 6.1.3 is a large file. It takes approximately 12 hours due to I am using 256kbps line. I couldn't download it due to some iTunes error, Power cutoff etc. If there is any torrent file or direct download link, please post it.

    Mkabir wrote:
    Thanks for reply. In that regards size doesn't matter. Download can began afterwards. Please give me the link if possible.
    I don't have one. Nor does your response make any sense. Of course the size of the file matters. Same pipeline, same file size regardless of the source. Your best bet is to find network (internet) connection faster than the 256 you are currently using and to upgrade over the air (directly on the phone).

  • How to link MSDS directly to a material

    Hi experts,
    Instead of linking an MSDS file to a substance in first instance, can we bypass this link and do it directly to a material? The reason of this question is for having some info retrieved from material master which will appear on the MSDS file.
    Thanks for your precious help,
    Mounir

    Hello Munir
    there are a number of processes available in EH&S in this area. I try to give you an overview so that you may be can find the appropriate solution:
    a.) Report from Template => here you start from e.g. transaction cg02 and create a "final" report on the fly. That means if you layout contains report symbols (parameter symbols) like a material name you are asked to provide a material number. Now EH&S is retrieving on the fly the EH&S specification data and the adding the parameter data; the "final" report is only available locally.
    b.) Create report: here the same process is applied with one difference: only data from EH&S is passed on to the raw report (SAP term). Now by using transaction cg50/cg54 you can create "on the fly" the final report. To do so you must switch the "view" form "Substance master" to "material master" and select one material number. In the area of MSDS you need to specifiy on the top an "initator" (sales org) so that you "see" on the fly the final report
    c.) During the report shipment process the EH&S system is using the raw report together with the data from modul SD to create on the fly the final report. Any data (of type parameter) is store normally in the corresponding distribution order in EH&S. So after e.g. 2 week to could check which report has been passed on to the customer. Therfore by uing tarcsaction cvd1 you can get an overview regarding any final report whcih has beeen distributed using the report shipment submodule of EH&S.
    Now coming back to your question: it seems to be that your customer needs to have final reports which e.g. could be displayed e.g. in a web portal. This is possible. You have many options to do so. The normal process is that you prepare the "EXP_CALL" process in EH&S. Then you can create e.g. pdf documents containing the raw report data together with the final report data
    Many companies use this or similar options but you must prepare the whole software logic by your self. SAP is providing nothing here (only the framework) so you must define the business / softwarelogic to create the pdf Files.
    I hope that you have now an idea regarding options (there are more options potentially available but I believe they does not fit your demand).
    With best regards
    C.B.
    PS: by the way: as far as I can remember you can use SAP SD to "switch" to transaction cg54 to get the corresponding "final" report.  This might be a useful option too. You need to have an order. In this order the sales org (iitator) is specified and the materials to be sold. Using this "link" to SAP EH&S you will the final report. Prerequisite is always ! There msut be a WWI installation (somethere).  Before EnhPAck 3 you need to have a local WWI installation. With EnhPAck3 you can have the WWI installation on a "server". The generation of the WWI report is one completly on the server and the result is passed on to you local client.
    PPS: TechniData is delivering an "add on" Web component to get the final report using a Web Component. To my knowledge this is only the same a generating the final report onthe fly and the result is not "stored" somethere
    Edited by: Christoph Bergemann on Sep 25, 2010 9:42 AM
    Edited by: Christoph Bergemann on Sep 25, 2010 9:47 AM
    Edited by: Christoph Bergemann on Sep 25, 2010 9:50 AM

  • Ethernetsubinterface indirect link failure direct connected subnet

    Hello. Given the following topology:
    R1#SW1-----
               |
              SW3--Host
              SW4--Host
               |
    R2#SW2-----
    R1  and R2  are connected via an Ethernet dot1q Trunk to SW1/SW2. On  SW1/SW2 there're static access ports which connects to SW3/SW4. SW3 is  connected to SW4 via Trunk.
    SW1/SW2 and SW3/SW4 are under different administration.
    The  following problem: R1 and R2 are member of the same IPv4 /25 Network.  That means the subinterface on R1 uses 1.0.0.1/25 and R2 uses  1.0.0.2/25. The Hosts are also Members of this network.
    The  following Problem: If the Link SW1 to SW3 fails, the Subinterface on R1  will remain up and R1 will send traffic to the network 1.0.0.0/25 to  SW1 where the traffic will be dropped. The same situation if the link  SW2-SW4 fails.
    Are  there any possibilites to automatically shutdown the subinterface on R1  or R2, so that the directly connected route will be removed?
    R1/R2 use IOS XR
    On R1 & R2 there`s  HSRP configured to provide a redundant gateway to the hosts

    OK, for any of you reading this post...
    I am operational and really not sure how, however I believe this was the problem:
    1) I was using smb://xxx.xxx.x.x/pccomputername and should have been using smb://xxx.xxx.x.x/pccomputerdescription
    2) More importantly, I believe, connection could not be made behind *Zone Alarm* running on the PC
    So after, researching more than one should about SMB, Group Policies in XP, encrypted protocols, registry changes and terminal changes...I think it was simply a 3rd party firewall.
    By the way i changed my Mac to use plain text passwords to make SMB/CIFS connections using the procedure described at apple support
    http://support.apple.com/kb/TS1564
    I really don't think that was necessary at all....Does anyone know how to cahnge it back or is it not necessary?
    So, after much frustration and more than a little time...i have file sharing and internet connection...i'll worry about printers some other time
    Does anyone know if you can 'share' entire hard disks or does everything need to be in a folder? Can you access those via shortcuts and aliases?
    Any way....done, and hope this info helps the knowledge base...
    Dave

  • HT2534 I have an iTunes account ; I am trying to purchase music with a Gift Card that was previously entered with a small balance I would like to use  when clicking on the purchase link it directs me to my Credit Card info, why?

    I am having trouble redeeming the balance of an iTunes Gift Card ... any suggestions?  When trying to purchase music I am directed to the Card I had used one time ... HELP???  I have a balance on the card I am unable to spend!!!

    How much is what you want to purchase and what is the gift-card balance?

  • How do I specify if the PID object is direct or reverse acting?

    I have a process that requires a reverse acting controller - eg if the PV is above the setpoint, I need to increase the controller output to lower the PV. Where in the PID object configuration do I specify this?

    Pat,
    I think - you can achieve a "reverse acting" PID controller by setting the Gain value negative. However, if you manipulate the PID parameters you should know what effect it will have on your system. If you want to be sure you should simulate the parameter before you apply them to the "real" world. In addition you could verify the -Gain setting with the formula (position/velocity control equations) given in the Lookout online help of the PID control object.
    Hope this helps
    Roland
    PS: I always keep in mind what my control profssor told us once - "just a minus sign (sign change) in contol theory could mean a lot"

  • How do I change which media player adobe reader X uses when I click a link that directs me to a vid

    There is a link in a pdf file I use, and when I click on it i receive this message:
    "This media requires an additional player. Please click 'Get Media Player' to download the correct media player. To play the media, you will need to close and restart the application once the player installation is complete."
    However, I am in possession of several media players that I know are able to play the file that the link is referring to.
    I do not want to download additional media players. I just want to figure out how to play the video when I click on the link.
    Thanks for your time.

    Andy, is your profile signature "iMac (27-inch Mid 2010), Mac OS X (10.7.5)" still correct or has your system changed since you set it up?
    the Aperture database that is under Media - Photo is the wrong one
    This may be a problem of a wrong entry in the Aperture preferences file. The Media Browser will use the most recently opened Aperture library . Try first to switch to a new empty Aperture library and then back (you can switch using the File menu in Aperture (File > Switch to Library > Other/New). Then restart your Mac to ensure, that all applications terminate properly.
    If you are running Aperture 3.5.1 in Mt. Lion or later, you may need to enable the option "Share XML with other applications" in the Aperture preferences "Preview" tab. This is only necessary for non-Apple apps (Aperture 3.5: Set "Share XML with other applications" to "Never" for better performance and faster quit times).
    If that does not correct the Aperture library in the Media Browser, quit Aperture and remove the "com.apple.Aperture.plist" file from the Preferences folder as described in Aperture 3: Troubleshooting basics.
    -- Léonie

Maybe you are looking for

  • Superdrive not showing up in Windows bootcamp

    I recently installed windows 8.1 on my 2011 imac and it all works fine except for the superdrive. When I go to "computer" where it should show the disks, all that shows up is Windows and macintosh HD. there are no removable disks (D:) or (E:) or what

  • Auto-launch Java classes from deliveries

    I need to launch custom java class from deliveries like described in this article (http://oraclebizint.wordpress.com/2007/12/17/oracle-bi-ee-101332-calling-java-scripts-and-java-classes-from-ibots/). The problem is that I want to launch my java code

  • Issue with "at sign" - @

    I have tried to create a databaselink to a SQL SERVER but I'm facing issues with the username. When I use the following command the dblink is created but I am unable to connect to the dblink: CREATE DATABASE LINK mydblink CONNECT TO *"[email protecte

  • HT1600 AppleTV fails to update from 5.0 to 5.0.1

    I have tried to restore and update the software multiple times - The update process gets to the second step and fails every time... help!

  • Making test code 'Fool Proof??' using an Abort type option

    I have created 2 different tests for the Techs where I work. I have both set-up with abort buttons so if something should happen it will abort the test. but every now and then it seems as if someone will close one of the prompts for the test by click