Submit bulk web URLs for categorization effort

Hi,
Looking at my logs, I see a number of uncategorized websites and I want Cisco to prioritize the categorization of them. However, I'm not going to go and figure out what the categorization is in advance - there's about 1,000 URLs - I want Cisco to do that.
What is the method to bulk upload a list of URLs that need categorization without sponsoring or suggesting what that categorization should be?  These are URLs that have already failed to be categorized based on the Dynamic Content Analysis Engine to my knowledge.  (Side question: if DCAE determines what the category is, does it still show up in the logs as uncategorized?)
Cheers,

Hi,
Attachment in Ondemand are Always Child objects, they need to be associated to a parent in you case which is CustomObject1, as you can see you have not specified the CustomObject Record Id to which the Attachment needs to be associated to.
Specify the Row Id of the record to which the Attachment needs to be associated to
//Specifing the Record's RowId
myCustom1Data[0] .Id='AXSA-1234'
Regards,
Deepak H Andeli

Similar Messages

  • Can we have two different web url for a same instance ??

    Can we have two different web url for a same instance ??
    I have read it somewhere that it's possible in R12....please correct me if I am wrong...and if it's correct please let me know the doc id for it...

    Hi again;
    Pelase also see Hussein Sawwan previous great post
    Multiple URL (hostname.domain) to the same instance
    Multiple URL  (hostname.domain) to the same instance
    Regard
    Helios

  • Launch Webi URL for a specific Instance

    Hi,
    Is there a way I can Launch a specific Instance of Webi from Xcelsius? Is so can someone tell me what would be the syntax to include in the URL.
    Thanks!
    Sam

    Hi Sam
    Do you mean a specific instance of a WebIntelligence report? 
    If so look at using the &sInstance URL parameter.
    openDocument.jsp?iDocID=346&sType=wid&sRefresh=Y&sInstance=xxxx
    xxxx can be User (the last instance owned by the user), or Last (the latest instance of the report), or Param (link to instance based on the parameters given)
    Alternatively each instance is just a doc and so has a unique Doc Id, so you could just link to that Doc id directly.
    Regards
    [Charles|http://www.reportex.co.uk/xc_waterfallchart.html]

  • Web URL on Data target

    hi 
    do any one have information on Web url for Data target?
    what is it and how they are implemented and what benefit can be reaped from them.

    Hi Olav,
    We had the same problem. Implementing note 973197 does not work. Do you have any other suggestions?
    Thanks,
    Guus

  • Lync Discover Internal & External Web URL

    we have Lync 2013 standard deployment with one front end & Edge server role. we have use our firewall as a reverse proxy by natting live IP with Frontend server.
    now we have deployed same web URL for internal and external access that is lync.domain.com. Now we are not able to access lync discover from mobile client who is connecting from internal.
    Please find herewith the result of Lync Connectivity Analyser :
    Total server discovery time: 0.1 seconds
    Server discovery succeeded for unsecure (HTTP) internal channel against URL http://lyncdiscoverinternal.domain.com/
    Starting automatic discovery for secure (HTTPS) external channel
    An error occurred while sending the request.
    Unable to connect to the remote server
    A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond X.X.X.X(external IP):443
    For troubleshooting, try using a browser to open the server discovery URL https://lyncdiscover.domain.com/[email protected]
    Server discovery failed for secured external channel against https://lyncdiscover.domain.com/
    Starting automatic discovery for unsecure (HTTP) external channel
    An error occurred while sending the request.
    Unable to connect to the remote server
    A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond X.X.X.X(external IP):80
    For troubleshooting, try using a browser to open the server discovery URL http://lyncdiscover.domain.com/[email protected]
    Server discovery failed for unsecured external channel against http://lyncdiscover.domain.com/
    Automatic discovery meant for external network access failed. Please verify the server requirements at http://go.microsoft.com/fwlink/?LinkId=278998 .
    Automatic discovery meant for internal network access succeeded from an external network which could be a potential security concern.
    Kindly let me know , how we can use same web URL for external and internal access of lyncdiscover in 2013 version.

    You can refer below link to help you in your issue
    http://blogs.technet.com/b/nexthop/archive/2012/04/25/lync-server-2010-mobility-deep-dive-autodiscover-service.aspx
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question, please click "Mark As Answer"
    Mai Ali | My blogs: Technical

  • Substitution strings not working in URLs for web service references (bug?)

    We have an environment where the url for our BPEL server is read from a variable. I've created an application item and a corresponding application-level computation. I'm using the ampersand-followed-by-dot (&BPEL_SERVER.) syntax as well as the hashmark syntax (#BPEL_SERVER#) and am unable to get this working.
    Is there a way for me to debug web service reference calls other than whether a call was successful? Is this a bug?
    edit:
    Here is the error message I get when I try to use a substitution:
    ORA-20001: The webservice was unreachable because either the URL you supplied was invalid, your environment requires a valid proxy server address for HTTP requests, or a wallet needs to be configured for HTTPS requests.

    No problem - let me try to lay this out a little differently, perhaps I'm just missing something.
    problem:
    * we have separate development, test, and production servers for our database and bpel servers.
    * The hostnames for these servers are stored in a table of key/value pairs
    * This means that (by policy) the hostnames in URLs calling BPEL web services should be the value corresponding to BPEL_SERVER so that the appropriate bpel server is used to call the web service
    attempted solution:
    1) I created an application item named BPEL_SERVER
    2) I have a before-header computation that sets BPEL_SERVER to 'http://bpeldev' using a static value assignment
    3) I have a web service reference whose URL is either &BPEL_SERVER./orabpel/default/callNotification/1.0 or #BPEL_SERVER#/orabpel/default/callNotification/1.0
    4) The web service reference is called in an after-submit process.
    5) An invalid URL exception is thrown for this process.when submitting on the page containing this process
    observations:
    * for (3) - I can set the URL to http://bpeldev/orabpel/default/callNotification/1.0 and everything occurs successfully
    * for (3) - If I use http://bpeldev/&BPEL_SERVER. then when I execute (4), I see a request for the exact string http://bpeldev/&BPEL_SERVER. in bpeldev's access logs
    * for (3) - If I use http://bpeldev/#BPEL_SERVER# then when I execute (4), I see a request for the exact string http://bpeldev/#BPEL_SERVER# in bpeldev's access logs
    * for (2) I've also used a function call RETURN get_const_value('BPEL_SERVER'); - same results for (5)
    * the item value has ben verified before (5)
    * for (1) and (2) I've tried defining substitution strings in the application definition instead - same results for (5)

  • Short of dismantling and recreating a page how do i find out whats causing [Error: Invalid URL for Web Content Overlay]

    Hi,
    i received an indesign file to include in a folio that had links to the creators desktop where they had the assets for the web content overlay. When i try to update the folio i get the error message:
    "Content generation error.
    [Error: Invalid URL for Web Content Overlay]"
    Which is fair enough.
    The problem is, i have gone through and changed all URLs that I can see, but there is one somewhere, that I just can't find.
    Is there a way to get a list of all web content overlays in a particular file? otherwise i will need to recreate the whole page again, and it has some pretty complex interactions which i rather wouldn't do.
    I also cannot ask the original doc creator to just change the links as i'm sure he'll have the same issues as me, at not being able to track down the erroneous link.
    The problem I have with DPS is that its not very transparent. you'll have to click on everything, and into every group to see what actions are on it, which can be extremely time consuming and frustrating when complex interactions are included.
    thanks in advance for any assistance

    I’ve found watching the process helpful to narrow down the page.
    Working off a duplicate of the file, delete one layer at a time until you figure out what layer the problem is on.
    From there it’s a bit easier to narrow down.

  • Error in running a URL for Web Module Project with a JSP

    Hi Experts,
    I created a Web Module Project with name "WebModuleProject".
    I created a jsp file naming "test_jsp" inside it
    Then i created a Web Archive for it which resulted in a WebModuleProject.war file.
    I then created an Enterprise Module Project with name "EnterpriseWebModule"
    Then i linked the "WebModuleProject" whith this project.
    I created an EAR for this project.
    Deployed that EAR on to hte J2EE Engine.
    Now on applying the following url:
    <a href="http://server:port/WebModuleProject/test_jsp.jsp">http://server:port/WebModuleProject/test_jsp.jsp</a>
    i m getting the following error
    404 Not Found
    The requested resource /WebModuleProject/test_jsp.jsp is not available
    Details: File [WebModuleProject/test_jsp.jsp] not found in application root of alias [/] of J2EE application [sap.com/com.sap.engine.docs.examples].
    Please experts help me to dig out this problem
    Can anybody suggest me why i m getting this error? And how to resolve it???????

    Hi Saurabh,
    In SMICM transaction code we have to maintain the parameters in order to run the web report in the specified format.
    i am listing some parameters in the below, Please have a look and see whether it can help u out .....
    Services
    icm/server_port_0     = PROT=HTTP,PORT=8000
    icm/server_port_1     = PROT=SMTP,PORT=0
    HTTP settings
    icm/HTTP/max_request_size_KB   = 102400
    icm/HTTP/j2ee_0                = PREFIX=/,HOST=localhost,CONN=0-500,PORT=50000
    icm/HTTP/server_cache_0        = PREFIX=/, CACHEDIR=/usr/sap/BSD/DVEBMGS00/dat
       a/cache
    Misc
    icm/host_name_full             = cauvery.com
    icm/cancel_strategy            = cancel requests without session (stateless)
    rdisp/plugin_auto_logout       = 1800
    is/HTTP/virt_host_0            = :;
    is/SMTP/virt_host_0            = :;
    Once after maintain the parameters go and check in the SICF transaction code SAPBW---BEx + right click + test service. And check whether it is opening in the required URL path.
    Regards,
    Vara Prasad.

  • Not able to access the URL for this web service (BPR)

    1. Start SAP Solution Manager and call transaction SICF.
    2. Right-click on default_host/sap/bc/solman, for example, and
    select Enable service. When the service is enabled, additional
    subgroups are visible.
    Enabling reveals the URI of the Web service. In this case, it is
    /sap/bc/solman/bpr. The protocol type is http. If you right-click
    on bpr and select Display service i got the below error
    <soap:Envelope soap:encodingStyle="http://schemas.xmlsoap.org/soap/encoding">
    <soap:Header/>
    u2212
    <soap:Body>
    u2212
    <soap:Fault>
    <soap:faultcode>Client</soap:faultcode>
    <soap:faultstring>Missing SOAP envelope.</soap:faultstring>
    </soap:Fault>
    </soap:Body>
    </soap:Envelop
    Regards,
    Neni

    Hello Neni,
    In most circumstances this error was caused by incorrect customizing, an external alias for the default host /sap/bc/solman/defaultuser had an incorrect target handler assigned to it.
    Solution Manager's IMG and documentation (www.service.sap.com/solutionmanager) should detail the correct
    value to use.
    The correct values can be maintained in SICF.
    On top of this, please review the following URL for external aliases documentation:
    http://help.sap.com/saphelp_sm40/helpdata/en/78/9852bdc06b11d4ad310000e83539c3/frameset.htm
    Thanks,
    Mark

  • Web Location URLs for Office 2007 documents (pptx, xlsx, docx) not working

    In our current Content Server solution implemented, each content has a Web Location URL and a Native File associated with it. The Web Location URL(for a content in Public security group) is of the following format:
    http://ucmurl/groups/public/intranetcontent/CONTENT_ID.doc
    So far when a user clicks on this link, they are just presented with an 'Open' 'Save' dialog box, which clearly shows that UCM identifies this file format. So for a Word 2003 document called test.doc, the Open-Save dialog box says:
    Name: test.doc
    Type: Microsoft Word document..etc.
    The behaviour is the same for all Office 2003 documents, pdfs and images. However, it seems like UCM does not identify Office 2007 documents. When I check-in a content - test.pptx, and click on the Web Location URL, it prompts me to Open/Save a 'ZIP' file, which is what UCM does for any unidentified file formats.
    Any suggestions on how to fix this?
    The file formats under configuration manager have been updated to include the following formats with PASSTHRU conversion (since we dont need any conversion on these):
    pptx: application/vnd.openxmlformats-officedocument.presentationml.presentation
    docx: application/vnd.openxmlformats-officedocument.wordprocessingml.document
    xlsx: application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
    The desired functionality is that when the user clicks on web location url, UCM should identify these file formats, and NOT consider them as ZIP files. Any help would be greatly appreciated.

    Try these - if you're using IIS. If not, them something similar should fix.
    Update IIS to include additional MIME types
    Also, if you want to add all of the Microsoft Office 2007 mime-types to IIS in one step you can do this:
    1. Stop IIS
    2. Edit the metabase XML file (C:\WINDOWS\system32\inetsrv\MetaBase.xml) using a text editor.
    3. Search for the <IIsMimeMap Location="/LM/MimeMap" …> element and append the lines below to the MimeMap attribute
    .docm,application/vnd.ms-word.document.macroEnabled.12
    .docx,application/vnd.openxmlformats-officedocument.wordprocessingml.document
    .dotm,application/vnd.ms-word.template.macroEnabled.12
    .dotx,application/vnd.openxmlformats-officedocument.wordprocessingml.template
    .potm,application/vnd.ms-powerpoint.template.macroEnabled.12
    .potx,application/vnd.openxmlformats-officedocument.presentationml.template
    .ppam,application/vnd.ms-powerpoint.addin.macroEnabled.12
    .ppsm,application/vnd.ms-powerpoint.slideshow.macroEnabled.12
    .ppsx,application/vnd.openxmlformats-officedocument.presentationml.slideshow
    .pptm,application/vnd.ms-powerpoint.presentation.macroEnabled.12
    .pptx,application/vnd.openxmlformats-officedocument.presentationml.presentation
    .xlam,application/vnd.ms-excel.addin.macroEnabled.12
    .xlsb,application/vnd.ms-excel.sheet.binary.macroEnabled.12
    .xlsm,application/vnd.ms-excel.sheet.macroEnabled.12
    .xlsx,application/vnd.openxmlformats-officedocument.spreadsheetml.sheet
    .xltm,application/vnd.ms-excel.template.macroEnabled.12
    .xltx,application/vnd.openxmlformats-officedocument.spreadsheetml.template
    4. Save the C:\WINDOWS\system32\inetsrv\MetaBase.xml file
    5. Start IIS
    6. Perform Collection Rebuild on Content Server

  • Invalid URL for Web Content Overlay. Help?

    I am doing a french tranlation to an existing folio app that someone else created.
    There is one page in my folio that is comprised of garbage and a trash can. You touch the garbage and drag it into the trash, and things change, etc.
    I have an index.html file and a bunch of other images.
    I can't even successfully add the article to my folio, I get this warning: Content Generator Error. Invalid URL for Web Content Overlay.
    Can you walk me through how to get this to work?
    Attached is a screen shot of my file structure...

    When you specify the .html file, all the content in that folder is uploaded automatically. Here's an article about Web Content overlays:
    http://help.adobe.com/en_US/digitalpubsuite/using/WS9293e1fb3b977c5c73657495129f66e490f-7f fa.html
    And here's an article and video about HTML articles:
    http://help.adobe.com/en_US/digitalpubsuite/using/WS67cb9e293e2f1f60530cf39c12f5fcd6d46-80 00.html

  • URL for SOAP sender in case of web dispatcher

    Hello,
    I have a scenario SOAP-->XI -->RFC synchronous.
    The soap request coming to XI is HTTPS without client authentication.
    The URL is:
    https://sapxiq:50101/XISOAPAdapter/MessageServlet?channel=:Srv_Web:Srv_Web_Soap_Server&version=3.0&Sender.Service=Srv_Web&Interface=http%3A%2F%2Fabc.com%2Fxi%2FeBillViewer%5Eos_getDocumentRequest
    We have installed web dispatcher for load balancing.
    Do I need to change the URL to replace web dispatcher host and port?
    What is the additional setting need to be done in the web dispatcher profile?
    Do I need to add icm/server_port_1       = PROT=ROUTER,PORT=443 in profile?
    Thanks in advance,
    Beena.

    Hi Beena
    Just refer SAP note 538405
    http://help.sap.com/saphelp_47x200/helpdata/en/42/5cfd3b0e59774ee10000000a114084/frameset.htm
    http://mysapinkpot.blogspot.com/2007/11/sap-web-dispatcher.html
    Re: Web Dispatcher
    I hope this solved your query.
    Regards
    Abhishek

  • How create URL for see my folio on the web content viewer ?

    Hello,
    I try to create URL for see my folio on the web content viewer but nothing Work
    i have this informations :
    my applicationName
    my accountID
    my publication Name
    and my articleName (even if for this i'm not sure)
    All my articles are free, my folio is published...
    For information my folio is in PDF format with the resolution 1024x768
    Have you one idea why it's doesn't work ?
    Thanks for yours answers

    Rather than cobbling together the individual parts of the URL, create a development app with social sharing enabled and at least one article set to free. When you share the article of the published folio, you'll see your web viewer URL.

  • Content generation error: invalid url for web content overlay

    Hi,
    I am having an error message " content generation error: invalid url for web content overlay" when I want to upload the article.
    I don't have any link with that article and this is my 1st time having this kind of error. I am using indesign CC
    Please help.
    Thanks,
    Rush O

    I’ve found watching the process helpful to narrow down the page.
    Working off a duplicate of the file, delete one layer at a time until you figure out what layer the problem is on.
    From there it’s a bit easier to narrow down.

  • Invalid URL for Web Content Overlay, ERROR!!!!!!

    Hello All,
    I'm hoping someone can help me with this error, I was working on my indesign file and was testing it out locally, then I went on to upload my file and I got prompt to install a new version of the Folio panel which I did, now every time I try to upload my file I get this "ERROR: Invalid URL for Web Content Overlay", I've searched around and have not come up with an answer. Not sure if its a bug on the new update or what. I tried some troubleshooting which this is what i did. I copied my first page of my document onto a different file and tried to upload one page and then i got the error but then I deleted the images and just left one text box and it uploaded my file without any issues, strange huh. Any ideas????

    I was having the same problem with both hyperlinks and buttons in one particular file -- "Invalid URL for Web Content Overlay." It seems to only be a problem in files where I had a link or button previously, and then deleted the object. When I create a new object and create a link or button, it's as though the old link is still lingering somewhere in the file! However, none of the old links is listed in the hyperlinks panel before I create a new one.
    This occurred while I was teaching a DPS class, using the Adobe courseware (sight unseen by any proofreader, I believe). In one of the exercise files, the steps for the student to create hyperlinks and buttons had already been done, so I deleted the hyperlinks. (I think I deleted the text frames that contained them, but I'm not sure.) I never had a problem with it UNTIL I downloaded the Overlay Creator/Folio Builder dated June 19 (v21, I think).
    In the same file, I also had problems with a NAVTO link, . I don't think there were any NAVTO links in any earlier version of the file, at least none that I ever created or deleted.
    I've coded HTML since the days when the only available tool was Notepad, so I'm sure that I used correct URLs (and none redirected). Even the URLs in the deleted objects were correct; I only deleted them so the exercise could be done again.

Maybe you are looking for

  • Leopard slows down and freezes - please help

    I'm running Leopard on a Macbook and I have had startup problems and slowdowns in general a couple of days now. When I start up the machine I get the apple logo, the spinning circle and then the blue screen for about 2-3 minutes before I get my Leopa

  • Debug Problem in Indesign cs5.5

       We are having Plugin for adobe indesign cs5.5 and installed adobe indesign debugger.. While debugging our source code we are getting the values of integer data types, but we are not known the values of data types related to PMString, PMMatrix, PMR

  • Info Broadcaster

    Gurus, We are on BI 7. I executed the query in BEx analyzer. I got the result as per what I enter on the variable selection screen. Now I right-click on the result screen ->Info Broadcaster. I have schedule and run this on the background job. No prob

  • Formating  Object Type XML

    Hi heres a qry: SELECT b.bucket_id, SYS_XMLGEN( bucket_type( b.bucket_id, b.plan_start_date, b.plan_end_date, b.order_qty, CAST( MULTISET( select bucketorder_type( o.order_id, o.start_date, o.end_date) from bucketorders o where o.bucket_id = b.bucket

  • AFP issue with volume names

    With Mac OS X 10.5 Server, I attempted to create a share point. I think I've found a bug. I have 3 drives, with names of ServerHD, ServerHD2, and ServerHD3. Creating a share point on ServerHD2 or ServerHD3 fails, with the share point showing up in th