Static URL

Hi , is it possible to write a static URL in a portal application . I mean that http://www.myportal.com is static in my portal application. I search and f?nd out simlify URL topic but actually ? think it is not exactly appropriate for my problem.Have you got any suggestion?

Hi Pedro,
This forum is to discuss problems of C# development. Your question is not related to the topic of this forum.
You'll need to post it in the dedicated ASP.Net Forum http://forums.asp.net for
more efficient responses, where you can contact ASP.NET experts. Thanks for understanding.
 Best regards
Kristin

Similar Messages

  • How to send different XML using static URL

    Hi Guys,
    I have the problem, my legacy system sends xml messages to XI by HTTP, my legacy system support only a static url http://host:8000/sap/xi/adapter_plain
    I have more than one interface, how did u fix this problem. I need to send xml to XI with out defining INTERFCAE on URL.
    can anybody explain how to handle this issue, help would be really appreciated.
    Thanks,
    k s reddy

    You have two options:
    1. use enhanced receiver determination (but for that, you'll have to use java mapping from input message to receivers), it will only work from 3.0 SP16 / 7.0 SP7;
    2. use a generic interface, where you define all possible message type tags with occurrence 0...1.
    Regards,
    Henrique.

  • [HTTP Sender]How to send different XML using static URL

    Hi all,
    I have a problem, my legacy system send XML messages to SAP XI by HTTP, I know that I need to use HTTP Sender adapter, the problem is that legacy system support only a static URL. I have more than one interface, how could I fix this problem?
    Can I send the XML message to SAP XI without define INTERFACE on URL? How can I handle this?
    Thank in advance,
    Daniel Torres

    Hi Srinivas,
    The legacy system is a java application, that send XML messages to SAP XI server using HTTP protocol. So I just ask to legacy system team to change the application to add <b>server</b>, <b>namespace</b> and <b>interface</b> attributes to the URL querystring.
    So for each XML message you should especify mesage interface that it belongs to. You do it by especifying on URL as message atribute for exemple:
    HTTP://[SAPXISERVER]:80[SYSTEM ID]/sap/xi/adapter_plain?service=[BS SERVICE]&namespace=[MESSAGE INTERFACE NAMESPACE]&interface=[MESSAGE INTERFACE]
    So if you have for example information belows:
    <b>MESSAGE INTERFACE</b> = MI_MYMESSAGEINTERFACE_IB
    <b>MESSAGE INTERFACE NAMESPACE</b> = urn:teste:mymessageinterface
    <b>SERVICE</b> = MY_LEGACY
    <b>SYSTEM ID</b> = 10
    <b>SAPXISERVER</b> = MYSAPXI
    Your url should looks like: http://MYSAPXI:8010/sap/xi/apadter_plain?service=MY_LEGACY&namespace=urn:teste:mymessageinterface &interface=MI_MYMESSAGEINTERFACE_IB
    You should have a different message interface for each XML that you send to SAP XI.
    Message was edited by:
            Daniel Torres
    Message was edited by:
            Daniel Torres

  • Flickr sync changing static urls in sets

    When I share photos from iPhoto to a previously created Flickr set, the sync changes all of the static urls on my previously uploaded pictures in that same set. This is frustrating because it breaks all of the links to photos on my prior blog posts. In my blog the picture will be missing and an error message from flickr says, "this photo is currently unavailable."  The only thing I can do to fix it is to edit the blog post using the new URL and reposting it.
    Flickr support has directed me to apple support saying that it is an issue with apple's API.  Flickr said the only way to correct it would be to share pictures to a new set each time in Flickr. That seems to be a work-around, but it is annoying organizationally.  Is anyone else having this issue, or is there a way to avoid it?
    Thanks!

    Just an update: I've tested making changes, deletions, etc. Sure enough -- any deletions or moves made in Aperture delete the image from your Flickr stream.
    Some may like this -- I, on the other hand, prefer to upload to Flickr and have those uploads static in Flickr. Any changes I make in Aperture (renaming a project, moving images, archiving, migrating to another drive, etc) should not make the images (and all connected comments and links) simply disappear from Flickr.
    I've done what I suspected I needed to do -- I unauthorized Aperture from connecting directly to Flickr and upgraded to the beta version of Connected Flow's beta-version FlickrExport for Aperture compatible with 64-bit Aperture 3. I'm now a happy camper.

  • Multiple images from static URL

    I am currently writing an applet that grabs radar images from a static URL. The image on the URL is updated every 15 minutes. I have a timer that will grab the image every 15 minutes and put it in an image[] array. Eventually I will be looping these images, and let the user define how far back to loop and how fast the loop is. Right now, though, every image it grabs is the same as the very first one. For testing purposes I have the URL currently set to an online panda cam with a timestamp (so I dont have to wait 30 minutes every build to see if it works on the radar URL). If I start the program at 12:47:51(timestamp on webcam) , it grabs a new image every 10 seconds. After a few minutes I have an array of images with the timestamp 12:47:51, every image is identical.

    well, I have the url
    "url"
    and the image[] array
    "imageArray[x]"
    in the actionPerformed for the timer:
    imageArray[x] = getImage(url); Currently I just have a button to step thru the images.
                        backg.drawImage(imageArray[counter],0,0,radarWidth,radarHeight,Color.white,this);Just to see if that worked I loaded the array with images from different URLs, and I was able to display them all without problem. Just when I use the static URL do I get the problem of the repeated image.

  • Dynamic to Static URL

    Dynamic to Static URL's
    what is the best program to use to do this? Because I dont'
    want to make hundreds of static pages, is there a easy way to show
    this properly and get better indexing at the same time. I have
    heard of wordpress, but don't know if it is automated and I think I
    need htaccess file.
    ie:
    FROM:
    www.mysite.com/products.php?store=27
    TO:
    www.mysite.com/products/nike.htm
    thanks

    I did this for a client by simply modifying the 404 error
    page. You do not have to install any special renaming software onto
    your server whatsoever.
    First create a custom 404 error page outputting the
    cgi.query_string of the error page. In that you will see the
    incorrectly called url, which in your case will include the unique
    username.
    Ex:
    404;https://www.yourdomain.com:443/username/
    Extract the username using a combination of your list
    functions...
    Ex:
    <cfset username = listdeleteat(listgetat(CGI.QUERY_STRING,
    3, ":"), 1, "/") />
    Remove the trailing slash if needed...
    Ex:
    <cfset username = listgetat(username, 1, "/") />
    Then cfquery the username. If found, cfinclude the relevant
    index page (if you want the url to stay the same), or cflocation to
    the actually page assigning the username as a url variable. If the
    username is not found, just goto home page.
    Remember to disallow any special characters or top level
    directory names in your usernames.
    <cfloop condition='findoneof("\/:*?""<>|",
    form.urlname)'>
    <cfset form.urlname = removechars(form.urlname,
    findoneof("\/:*?""<>|", form.urlname), 1) />
    </cfloop>
    <cfdirectory action="list" name="alldirs"
    directory="#expandpath('/')#" />
    <cfquery dbtype="query" name="dirs">
    SELECT name
    FROM alldirs
    WHERE type = "Dir"
    AND name = #lcase(form.urlname)#
    </cfquery>

  • Static urls (***.html) for Servlets

    How to make static urls for requesting a Servlet. For example: "http://domain/encoded_parametes.html". Without using frames and redirect.

    In your web descriptor file (web.xml) create the mapping to the name you want. For example:
    <servlet>
         <servlet-name>MyHomePage</servlet-name>
         <servlet-class>org.mine.home.HomePage</servlet-class>
    </servlet>
    <servlet-mapping>
         <servlet-name>MyHomePage</servlet-name>
         <url-mapping>encoded_parametes.html</url-mapping>
    </servlet-mapping>If your context path is "/application" then if you access:
    http://[server]:[port]/application/encoded_parametes.html
    Then the web container will intercept the request and you will be directed to the servlet instead of a *.html file.
    Anthony

  • RegEx To Replace Non-Static URL Variable

    I have the need to strip a query string of one or more variables, which unfortunately are not static.
    I've been trying to wrap my head around RegEx for this, but haven't had much luck.
    A sample of my URL would be:
    http://www.mydomain.com/locations.cfm?page=2&sort_method=name
    Obviously the page number will change, and the sort method could be any one of a number of values.
    Can anyone point me in the direction for using RegEx to "replace/rereplace" the variable and it's value?
    Thank you in advance.

    <cfset myUrl="http://www.mydomain.com/locations.cfm?pAgE=25&Sort_Method=name06">
    <!--- Dynamic case-insensitive replacement of any page number --->
    <!--- [0-9]{1,3} means the page number is between 0 and 999 --->
    <cfset dynamicPageNumber = 9>
    <cfset newURLPage = REReplaceNoCase(myUrl,"page=[0-9]{1,3}","page=#dynamicPageNumber#")>
    <!--- Case-insensitive replacement of any sort_method --->
    <!--- [A-Za-z0-9]{1,8} means the sort method is between 1 and 8 alphanumeric chars --->
    <cfset dynamicSortMethod = 'bkbk_method'>
    <cfset newURLSortMethod = REReplaceNoCase(myUrl,"sort_method=[A-Za-z0-9]{1,8}","sort_method=#dynamicSortMethod#")>
    <cfoutput>
    newURLPage: #newURLPage# <br>
    newURLSortMethod: #newURLSortMethod#
    </cfoutput>

  • CRM 5.2 UI Header (crmcmp_hdr) static URL?

    We are implementing CRM 5.2 with the new CRM Web UI and are trying to alias the server hostname by using the SAP Web Dispatcher as a reverse proxy.  Most things are working fine, except for the UI header (contains SAP logo, Personalize, and Logoff link, etc.) component at the top of the page. I can navigate directly to the URL of the component using both the default hostname and the alias through the web dispatcher, but when it is accessed as part of the crm_ui_frame application, it ALWAYS is referenced and called by the default hostname.  Since we will be making the CRM UI externally accessible, this default hostname will not be resolvable, resulting in a broken link.  Has anyone run into this issue and/or know how to fix?
    thanks!
    John

    Yes, actually we are using the HTTPURLLOC table in order for the correct URL to generate for this component. See SAP's documentation located at http://help.sap.com/saphelp_nw70/helpdata/EN/59/31ae42e0fac911e10000000a1550b0/content.htm.
    thanks,
    John

  • Creating dynamic pages with static URLs

    Hello
    I've built a simple CMS (in DW, using ASP and MS SQL) for a
    client which allows them to edit existing pages (all of which are
    called page.asp?p=X) or add news pages if they want.
    However they'd like to be able to name their new pages e.g.
    pagename.asp.
    Is there an easy way to do this?
    Many thanks in advance
    Square Eye

    Hi Abhilash,
    Thanks for the quick reply.
    Actually the problem is with the image, as I am not able to rotate 270 degree. Crystal report cannot support the rotation of image.
    i have another problem, I have to create a report in which
    Lables are fixed on the left side of report and 3 columns per portrait page. Those columns are
    dynamically created and shown in the report.
    The format is like the above. Can you please help me in doing this report, as I tried it doing
    with CrossTab. I am really stuck to this report.

  • Static html with url to apex pages

    I have a table with html content that contains url's to apex pages similar to
    <a href="f?p=115:300:???:PAGE:::P300_PAGE_NAME:test_page>test page</a>
    <a href=f?p=115:300:???:PAGE:::P300_PAGE_NAME:another_test_page">another test page</a>
    Where ??? needs to be the session id.
    I could use wwv_flow.do_substitutions to render the content and use &SESSION. in place of the question marks. Did not like this option as my content is in a CLOB and didn't want to parse all the content if the links are never clicked, also the content could be very large.
    I don't have much control on how the url is generated, only the base path.
    I also thought about building my own procedure to change the link value and then call the original f procedure, similar to:
    <a href="set_session?p=115:300:#SESSION#:PAGE:::P300_PAGE_NAME:another_test_page>another test page</a>
    This set_session procedure would get the session using plsql and then do the substitution and then call the existing f function.
    Is there another solution to have static url's and render the content in an html region so that when clicked the session id is maintained?                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

    mwooldridge wrote:
    I have a table with html content that contains url's to apex pages similar to
    <a href="f?p=115:300:???:PAGE:::P300_PAGE_NAME:test_page>test page</a>
    <a href="f?p=115:300:???:PAGE:::P300_PAGE_NAME:another_test_page>another test page</a>
    Always post HTML code using <tt>\...\</tt> tags to prevent it being rendered by the forum software.
    Where ??? needs to be the session id.
    I could use wwv_flow.do_substitutions to render the content and use &SESSION. in place of the question marks.How do you retrieve and render the content?
    Did not like this option as my content is in a CLOB and didn't want to parse all the content if the links are never clicked, also the content could be very large.I don't like that option because it uses an undocumented, unsupported API call.

  • Static Go Url

    Hi all,
    I have got a requirement like this.. I need to write obi dashboards and reports urls manually in an excel sheet and I need to provide those to my java team. They have to read the parameters and all through java. I have written like this saw.dll?Go&path=------------ and after that I have given to my java team. But they are saying that the urls whatever I haven given are okay. But the problem is If we copy the url and paste those in IE then while they are loading the page source code is different than the page source after loaded the reports and graphs. They are complaining that they are getting problems with that. And they are saying that after pasting the url in IE the format has completely changed. They are asking for static urls which don’t get changed.
    I am confused and I don’t know what to reply them. Can anyone pls help me.
    Thanks in advance.

    I am very sorry if i was not specific. I have written a url like this saw.dll?Go&Path=/Shared/Misc/Report1l&NQUser=Administrator&NQPassword=Administrator. After I opened it with IE, It is adding some more content like saw.dll?Go&_scid=iFQgbBEm*ms&SearchID=k2a0lv7qvaluls4kett0vu0j42&Path=/Shared/Misc/Report1l&ViewState=9paap334ka4va3ab1le3nkajma&ContainerID=o%3ago%7er%3areport&RootViewID=go
    So, java people are saying that url should not be changed. They are asking for some static url which doesnt get changed. I know it wil not possible. I am in confusion. Can you please suggest me something.
    Thanks for your resposnse.
    Edited by: 785818 on Dec 21, 2010 6:46 AM

  • Include URL in the Alert message in Sitescope Alert

    Hi,
    I am trying to include the URL int he Evetn mapping but unable to fidn the Attribute to include the URL in the alert. Please suggest.

    Hi,
    If this is a static URL then you can include it in alert by modifing the alert templates under templates.mail in installed directory. In case of dynamic URL's put them under group/monitor description feild nad include it in alert using the tag like "Monitor:  <groupID>:<name> <groupDescription>" in alert template.
    Regards,
    Sujith

  • Need help with URL Redirect in Sun Web Server 7 u5

    All I am trying to do is redirect to a static URL and for the life of me I can not get it to behave the way I would expect. I am new to Sun Web Server so I am just trying to use the Admin Console to set this up.
    Here is what I'm trying to do:
    Redirect from - http://www.oldsite.com/store/store.html?store_id=2154
    To - http://www.newsite.com/Stores/StoreFront.aspx?StoreId=2154
    Here's what I tried in the console.
    Added a new URL Redirect
    Set the Source to be Condition and set it to: '^/store_id=2154$' (quotes included)
    Then set the Target to: http://www.newsite.com/Stores/StoreFront.aspx?StoreId=2154
    Then for the URL Type I checked Fixed URL
    When I tested with: http://www.oldsite.com/store/store.html?store_id=2154 it did redirect as desired
    BUT
    When I tested with: "http://www.oldsite.com/store/store.html?store_id=5555" it too got redirected to the Target and I can't figure out how this second URL can satisfy the condition to get redirected.
    Any help is most appreciated.

    thanks for choosing sun web server 7
    it is simpler if you just edit the configuration files manually
    cd <ws7-install-root>/https-<hostname>/config/
    edit obj.conf or <hostname>-obj.conf (if there is one for you depending on your configuration so that it look something like)
    <Object name="default">
    AuthTrans..
    #add the folllowing line here
    <If defined $query>
    <If $urlhost =~ "/oldsite.com" and
    $uri =~ "/store/store.html" and
    $query =~ "store_id=2154" >
    NameTrans fn="redirect" from="/" http://www.newsite.com/Stores/StoreFront.aspx?StoreId=2154
    </If>
    </If>
    ..rest of the existing obj.conf. continues
    NameTrans...
    now, you can either do <ws7-install-root>/https-<hostname>/bin/reconfig -> to reload your configuration without any server downtime or <ws7-install-root>/https-<hostname>/bin/restart -> to restart the server
    if it did work out for your, you will need to run the following so that admin server is aware of what you just did
    <ws7-install-root>/bin/wadm pull-config user=admin config=<hostname> <hostname.domainname>
    hope this helps

  • Dynamic URL in SOAP Receiver adapter

    Hi all,
    I have a scenario where I am using a SOAP receiver adapter to send a cXML document to some vendors. I need to change the URL based on the vendor number (passed by sender SRM system). So I have created a user-defined function and used in message mapping to assign the right URL to the variable TServerLocation. But the communication channel still prompts for a static URL which appears to be a mandatory field. Even though the DynamicConfiguration tab in Message Monitoring shows that the TServerLocation was correctly assigned, the scenario does not work when I put some dummy in the static URL field like 'dummy' or '*'. Any ideas on how to make the communication channel go for the dynamic URL field and ignore the static URL field? I have already selected the'Use Adapter Specific Message attributes' and 'Variable Transport Binding' check boxes. Am I referring to the correct variable that references the target URL? Also other than the two checkboxes that I mentioned, I am not displayed anything else under "Adapter Specific Message Attributes" section in the comm. channel.
    Thanks

    James,
    I ve just been digging into SAP help, and have tried it too ... Looks like it doesnt work the way it is supposed to.
    Anotheer point i found was, in the FILE ADAPTER, when we say ADAPTER SPECIFI ATTRIBUTES , we can select the attirbutes.. This is not possible in a SOAP adapter...
    Maybe, we can only access the ADAPTER SPECIIFC ATTIRIBUTES of a SOAP adapter, but cannot set them dynamically.
    Let me know if you find something on this issue.
    Regards,
    Bhavesh

Maybe you are looking for

  • Grouping Data with JSP or JSTL

    Hi All, I would like to ask a question about how I can group data in JSP. Essentially, I have a DataBean (extends ArrayList) that is being returned to my JSP. The ArrayList contains HashTables. Please note that the JSP assumes the data is returned in

  • How to use controls in silverlight direct3d interop program ?

    I'm working on convert my winrt program to silverlight program. And I'm using silverlight 8.1 now. The program has two part, SilverlightDirect3DInterop(C#) project and SilverlightDirect3DInteropComp(C++). The question is, I can't use control in Silve

  • Attaching a task to an event

    In Event Viewer, I created a simple task for an email to be sent with custom text message whenever a Software Restriction Policy is triggered [Event 866].  When I select the event under the General tab I see what specifically was triggered.  Is there

  • Component Parameters in Properties

    Hey gang, I've got some components with lots of properties. When I bring them into CS5, it alphabetizes the parameters in the Component Parameters window. I can't figure out a way to prevent this from happening. I've even gone to Component Definition

  • Allow two no.ranges for a one account group

    Hi everybody, Please suggest the way out to have two no ranges for one vendor account group. Because First no. range defined for that account group got exhausted. Hence we used another range to define same account group. We need to use both the range