Basic access/visibility question...

I can connect to the database (using sqlplus or toad) and create folders, documents, etc. and set the acls on those new resources.
I can also use a windows web folder to connect to the database using webdav and view the repository.
Here is the problem however: Folders (directories) or files I create through webdav do not show up in the database (RESOURCE_VIEW) and vice versa. Folders and files I create through the client are not visible through the webdav interface (http or ftp.)
It is like both interfaces are looking at different areas on the server.
There is obviously something I am missing here. Does anyone have a clue what the issue could be?
Thanks.

Thanks. Apparently there must be multiple databases on the machine (not my department.) I ran the following to change the default http and ftp ports and I was in business:
call DBMS_XDB.CFG_UPDATE(UPDATEXML(DBMS_XDB.CFG_GET,'/xdbconfig/sysconfig/protocolconfig/httpconfig/http-port/text()','8088'))
call DBMS_XDB.CFG_UPDATE(UPDATEXML(DBMS_XDB.CFG_GET,'/xdbconfig/sysconfig/protocolconfig/ftpconfig/ftp-port/text()','2121'))

Similar Messages

  • Basic wifi service question

    basic wifi service question
    A Windows-using friend of mine subscribes to a service from Verizon that is sort of like a cell phone for a computer - wifi service that you can access from theoretically anywhere, for something like $60 a month -
    as far as I can determine, one CAN get this for Mac but ONLY if you have a 15 or 17 inch laptop with PC slots - unless I am missing something. It requires a special kyocera card.
    Another company, T-Mobile, offers a similar service, but with no MAC access at all.
    So my question is: is there a similar service, wi-fi access theoretically anywhere (or even just anywhere in New York City) ? Hopefully with just the regular mac airport card and not any additional special hardware?
    Thanks!
    Will

    Hello WillFriedwald2
    The kind of service your describing is probably a 3G and GPRS service.
    Phone companies now offer mobile high speed connections using EDGE technology or GPRS2 and supply a 3G or GPRS PCMCIA card.
    However some companies are now offering a package whereby you get high speed 3g and gprs and also wifi.
    So to use this service on a laptop that has no PC card slot you need to get a 3G or GPRS2 phone that supports blue tooth then you can connect your laptop to the phone over bluetooth and therefore access high speed internet.
    But if you had a desktop mac such as a G5 you would be better just getting a regular cable or dsl connection in your home and invest in a wireless router.

  • Basic access authentication

    Hello,
    I'm trying to use a webview to display a web site using Basic access authentication.
    I've downloaded the samples.
    With SwingInterop_browser.jnlp a popup ask the username/password and everything is working fine
    With SwingInterop.jar i get an 401 - Unauthorized
    There is probably an arg to pass to the java -jar command...
    Any idea?
    Thanks in advance
    Edited by: 977177 on 16 déc. 2012 13:16

    We are further forward and have come up with the following approach. We are publishing the output to an an unprotected area. The basic authentication can then be applied to the Tomcat Server as required.
    Read the RoboColum(n).

  • Basic Hyperion Workspace question

    Is there any way to Drill-Down to data by double-clicking on the chart item in Hyperion Workspace? I can do this in Hyperion Reporting Studio.

    hi all,Hi Neerav
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.Oops....Now you're asking about rocket science. Sorry, I don't know.
    I know about some basics:
    Streams or Replication--> Which can give you data on B in read-write mode.
    DR--> For safeguarding your database and B will work as DR solution.
    Hope u understandNo, please make us understand.
    Regards,
    S.K.

  • Safari 5.1 HTML5 HTTP basic access authentication issue video does not load

    I have a .m4v video referenced in a page with the HTML5 video tag in a folder which is in a password protected folder housed on iPage.
    Safari 5.0.5 plays the video fine.  Safari 5.1 fails to load/play the video in the protected folder.  If I move the video to a not protected folder, Safari 5.1 plays it fine.
    This is on iPage.  Back on MobileMe all is fine with 5.1.
    I think this is a HTTP basic access authentication issue with 5.1.
    Anyone have similar issue? Work around?

    Yes, I can also confirm this behaviour. This is in Safari 5.1.1, but I also see the exact same thing in WebKit nightlies.

  • Basic recording/feedback question

    I'm recording basic vocals against accompaniment tracks using an APOGEE ONE and Audio-Technica 40 series AT8449 condenser mic. I use only headphones, no external speakers.
    If I record with "monitoring" on I constantly battle feedback/distortion, especially on songs with a wide dynamic range. When the feedback protection kicks in the message indicates that I'm getting feedback through my external speakers (which I don't have), I can minimize the problem by turning "monitoring" off but I lose the reference vocal. I know I must be overlooking something very simple. Any help is appreciated.

    hi all,Hi Neerav
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.Oops....Now you're asking about rocket science. Sorry, I don't know.
    I know about some basics:
    Streams or Replication--> Which can give you data on B in read-write mode.
    DR--> For safeguarding your database and B will work as DR solution.
    Hope u understandNo, please make us understand.
    Regards,
    S.K.

  • Basic PDF/SSL Question

    Okay, I know this is a basic question, and I'm not sure if this is really where I should be posting it, but maybe someone out there has experience with this.
    I have a PDF form sitting on a secure server.  I have it set up to email the completed PDF back to our company when the user clicks the SUBMIT buttton.  Whether or not the PDF is secure coming back to us would be dependent on the email server the user uses - not that the form sits in a secure area on our server or that the PDF is security settings are set, correct?
    Any input appreciated.
    Thanks
    Q

    hi all,Hi Neerav
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.Oops....Now you're asking about rocket science. Sorry, I don't know.
    I know about some basics:
    Streams or Replication--> Which can give you data on B in read-write mode.
    DR--> For safeguarding your database and B will work as DR solution.
    Hope u understandNo, please make us understand.
    Regards,
    S.K.

  • Basic JDBC transactional question

    Hello all,
    I have (what I believe) is a basic transactional JDBC question.
    Here's what I want to do:
    begin transaction
    select a row from a table where (some condition).
    that row may or may not exist.
    if the row exists: update the row
    else if the row does not exist, insert a new row
    end transaction
    I want this entire thing to be atomic .. I don't want the select to complete, then have something else come in there before the update/insert takes place.
    I'm using MySQL .. I seem to remember hearing about some proprietary MySQL command which would do a SELECT + UPDATE atomically .. which would be fine, but I can't find it.
    Wrapping this with a row-level lock would be fine too .. I'm just not sure how to do that in JDBC.
    Thanks!
    -d

    By thte way, and not that it helps the orignal poster, who's using MySQL, but Oracle has a proprietary MERGE statement that does "insert or update" in one go. For example:
    MERGE INTO bonuses D
       USING (SELECT employee_id, salary, department_id FROM employees
       WHERE department_id = 80) S
       ON (D.employee_id = S.employee_id)
       WHEN MATCHED THEN UPDATE SET D.bonus = D.bonus + S.salary*.01
         DELETE WHERE (S.salary > 8000)
       WHEN NOT MATCHED THEN INSERT (D.employee_id, D.bonus)
         VALUES (S.employee_id, S.salary*0.1)
         WHERE (S.salary <= 8000);

  • Basic Clone database question

    hi all,
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.
    Hope u understand
    Thanks,
    Neerav

    hi all,Hi Neerav
    I have very basic clone database question
    If i create database A and clone database B using A...
    I want to know that any operation done on A will be automatically done on Cloned database B.Oops....Now you're asking about rocket science. Sorry, I don't know.
    I know about some basics:
    Streams or Replication--> Which can give you data on B in read-write mode.
    DR--> For safeguarding your database and B will work as DR solution.
    Hope u understandNo, please make us understand.
    Regards,
    S.K.

  • Bug: HTTP Basic Access Authorization in browser non-functional.

    Upon visiting any site that requires a username and password via HTTP Basic Access Authorization ( http://en.wikipedia.org/wiki/Basic_access_authentication ), a prompt shows up, as one should. There are two fields, which oddly are not denoted Username and Password. In any case, attempting to enter the proper username and password in those fields does not work! You will be reprompted until finally the server rejects you.
    I have tried this on numerous websites already, and have checked the passwords to ensure they were correct. 
    Post relates to: Pre p100eww (Sprint)

    I can confirm this bug too on the Palm Emulator for webOS (v1.2.0.33 currently). I do not have a physical Palm Pre to test this on, but I would expect that the emulator emulates the hardware's behavior too (else, what's the point of an emulator?). I've seen mixed reports on this particular issue. That is, I've seen at least one other person complaining about this problem on the real hardware, and yet, I've also seen another person who doesn't appear to have any such issues.
    I'll cut straight to the technical details. If I use hello:world as the login in a browser that does work correctly for basic HTTP auth, I see the following header in the sniffed packet:
    Authorization: Basic aGVsbG86d29ybGQ=
    However, when the Palm Pre (emulator) fails to log in, I see the following in the header:
    Authorization: Basic aGVsbG86d29ybGQA
    Clearly, the Palm is doing something incorrectly when it encodes the authorization details. It seems to be including an additional nonprintable character at the end (a terminating null?) when it encodes, which results in the different encoding. Considering the fact that various web browsers and Base64 encoding libraries I've tested agree with the former encoding, and not the latter, I'm inclined to believe that the Palm Pre is completely in the wrong here. Of course, why this doesn't seem to be happening to all users, though, is an oddity for which I have absolutely no potential explanations.
    Message Edited by Ultima on 11-07-2009 02:48 PM

  • Basic  XML Publisher Question: How to access tags in the higher levels?

    Hi All,
    We have a basic question in XML Publisher.
    We have a xml hierarchy like below:
    <CD_CATALOG>
    <CATALOG>
    <CAT_NAME> CATALOG 1</CAT_NAME>
    <CD>
    <TITLE>TITLE1 </TITLE>
    <ARTIST>ARTIST1 </ARTIST>
    </CD>
    <CD>
    <TITLE> TITLE2</TITLE>
    <ARTIST>ARTIST2 </ARTIST>
    </CD>
    </CATALOG>
    <CATALOG>
    <CAT_NAME> CATALOG 2</CAT_NAME>
    <CD>
    <TITLE>TITLE3 </TITLE>
    <ARTIST>ARTIST3 </ARTIST>
    </CD>
    <CD>
    <TITLE> TITLE4</TITLE>
    <ARTIST>ARTIST4 </ARTIST>
    </CD>
    </CATALOG>
    </CD_CATALOG>
    We need to create a report like below:
    CATALOG_NAME     CD_TITLE     CD_ARTISTCATALOG 1     TITLE1     ARTIST1
    CATALOG 1     TITLE2     ARTIST2
    CATALOG 2     TITLE3     ARTIST3
    CATALOG 2     TITLE4     ARTIST4
    So we have to loop at the level of <CD> using for-each CD. But when we are inside this loop, we cannot access the value of CAT_NAME which is at a higher level.
    How can we solve this?
    Right now, we are using the work-around of set_variable and get_Variable. We are setting the value of CAT_NAME inside an outer loop, and using it inside the inner loop using get_variable.
    Is this the proper way to do this or are there better ways to do this? We are running into troubles when the data is inside tables.

    you can use
    <?../CAT_NAME?>copy past to your template
    <?for-each:CD?> <?../CAT_NAME?> <?TITLE?> <?ARTIST?> <?end for-each?>

  • Basic Server Config question: Restricting user access to files & folders

    I am in the process of locating a good Apple Server consultant in south florida, but in the meantime I want to educate myself on what we have.
    We now have an XServe in our office, running 10.6 Server. We intend to use it as a File Server, and we want to set it up in such a way that we can specify which individual users have access to each directory.
    As a 100% beginner, where would you suggest I start in understanding how do this? Or even, which Help resource I should look at to begin learning. I imagine that our senario is a very simple one. I'd appreciate any help or suggestions from anyone out there.

    Hi
    These for starters:
    http://manuals.info.apple.com/enUS/FileServerAdminv10.6.pdf
    http://manuals.info.apple.com/enUS/UserMgmtv10.6.pdf
    http://manuals.info.apple.com/enUS/NetworkSvcsv10.6.pdf
    For the rest:
    http://support.apple.com/manuals/#serversandenterprisesoftware
    Tony

  • Basic file movement question?

    I'm on DW CS4.  Have a very basic question regarding file movement that I can't seem to resolve.  In the files panel on the right I have created a folder.  Within that folder I have saved a bunch of files with the same name but different numbers after them.  When I go into the folder to access one of the files they never stay in the numeric order I have assigned to them.  I try and drag the numbered files up or down to get them back into numeric order but it doesn't seem to work.  Can someone please explain this basic step in file management to get the files to line up where I want them in the file category on the right?  Thanks for your time.

    Besided sorting, when using numbers as part of the file name, you need to make sure you have at least two digits if your are going to have more than ten files. Start numbering with 01, 02, 03, 04 and so on. If not, the files will sort like the following:
    file1
    file10
    file2
    file20
    file21
    file3
    file32
    file4
    And if you have more than a hundred, you will need to start with 001.
    Hope this makes sense.

  • Remote client accessing ejb - question

    This may be a very simplistic question, but here goes -
    scenario: I have a J2EE application running on a server Y with session beans/entity beans.
    I need a remote client on machine X to access EJB objects on Y.
    I have set the initial conext with INITIAL_CONTEXT_FACTORY, PROVIDER_URL etc...
    But, in order to narrow the reference of the object returned by lookup() method, I need to instantiate the Home object of my session (or entity) bean ...
    here's my problem: How do I instantiate EJBHomeInterface or EJBRemoteInterface, when they do not exist on the remote client machine?? (does this have something to do with the stub??)
    THANKS!

    This answer assumes you're using Weblogic, although most any other EJB container has a facility for this. Basically you need to distribute a client jar file with the client. This client jar is created during the EJB compile/deployment process and creates a jar separate from the normal jar file associated with your deployment. This jar file contains the class stubs you need to call for and use EJB's on a remote client.
    I hope this makes some sense.
    SeanB

  • Sharing calendars in a small workgroup, basic set up questions

    I am getting no where with the new leopard server and ical server.
    we have an all mac office, new leopard server and are trying to make the ical server work so that users on the network can see and share each others calendars. the level of documentation i have found so far is disturbingly weak ... this can't be this difficult. Has anyone found a basic ... step by step how to use ical server to enable sharing.
    I have managed to publish a calander and view it from another machine ... what i haven't been able to figure out is how someone else might add to that calendar.

    there are a few ways to do this.
    A. manage it on the server
    1. Assuming a bunch of users who are all members of a "staff" or other main group, setup the personal cal accounts in iCal client.
    2. On the server, setup a separate group calendar account in iCal in order to delegate individual access to it.
    3. Add users as delegates, one by one. Repeat until your clicky finger aches.
    4. Stop/start calendar services.
    5. Check the box to show the calendar on the client side. Clients should have access to the group calendar now.
    B. use a resource calendar to avoid having to delegate manually
    1. On the server or any machine bound to OD, create a new resource via Directory.app.
    2. Plug in all the details on the info tab.
    3. Under the scheduling tab, check the "reservable" and "auto-accept invitations" boxes. Make sure the calendar server is listed there, too.
    4. Add "staff" -- or whatever OD group -- as the delegate.
    5. Stop/start calendar services.
    6. Check the box to show the calendar on the client side.
    C. add the group calendar separately for each client.
    1. The URL for group calendars follows this format and needs to be added as a separate account (with same username/pass). Just change the URL to: http://serverFQDN:8008/principals/groups/nameofgroup/
    2. Make sure to show the account (check the box), and you're done.
    obviously, there are varying degrees of inconvenience in each of those techniques. adding one by one either on the server or the client sides is tedious. ical server is still very much "1.0," as far as i'm concerned.
    the least tedious is the resource calendar method, though it may not be ideal for your use. it's not a hack, just a workaround to get the desired behavior.

Maybe you are looking for

  • Anyone using HiddenMail? Does it still work?

    Hello all. I have been using HiddenMail for a while, to launch Mail at startup and hides Mail (Somehow, putting Mail in Login Startup Items and check 'hide' doesn't hide it) But somehow with the latest OS Update, HiddenMail doesn't do its thing: Hide

  • How to load data into table Using Script Task

    We have a directory/folder where we have a file. We need to insert the File Created Date , File Name , Extension into the database table of Sql server by using Script Task. So could you please suggest , how to frame the connection string , fetch the

  • Whats the best way to create USER variable in BI Apps?

    I have just installled BI Apps and am trying to integrate EBS R12 with OBIEE 11g We have USER variable already defined in the BI Apps rpd. In EBS Security context init block i need to define USER variable, but when i define it... it says *'USER' has

  • Keeping java files generated from jsp on WSAD 4.0

    Hi, on my development environment, WSAD(4.0) , Is there any option of keeping the generated java files. I tried 'keepgenerated' attribute, but it gives me error that it invalid. If anybody has done this , please let me know. TIA Ashwani

  • [SOLVED]Gnome missing icon

    hi guys i installed gnome as DE and i miss GTK3 icon Screenshot :  http://i.imgur.com/GvrqX7u.png  |  http://i.imgur.com/upYjRHj.png how can i restore it ? the wiki do not explain this issues, i think.. i've read everything ( https://wiki.archlinux.o