Dynamic Webserver in OpenDoc

Hi,
Is there a way to specify the CurrentWebServer in the Opendocument function within a crystal report. We are using the link as
http://<devwebserver>:8080/OpenDocument/opendoc/logonVintela.do?appKind=InfoView&sRefresh=Y&isApplication=true&sType=rpt&iDocID=
When promoting this to Prod we had to manually update the devwebserver to Prodwebserver.
I did create a Repository custom function as
CurrentWebServer = http://<webserver>:8080/OpenDocument/opendoc/logonVintela.do?
in each of the environment and added it to the report and used this instead of the 1st URL. But when this report is promoted to prod the report custom function still reads the formula from the Stage. I had to manually go in the report and re add the custom function from the repository. Bottom line is this approach is not working for us.
I know that it will pick up the currentwebserver if we write the formula as
/OpenDocument/opendoc/logonVintela.do?appKind=InfoView&sRefresh=Y&isApplication=true&sType=rpt&iDocID=
but this will not work for us either as this will not work if it viewed from pdf or excel. Please let me know if there a working solution for this.

It is common problem.
Development: http://<devwebserver>:8080/OpenDocument/opendoc/logonVintela.do?appKind=InfoView&sRefresh=Y&isApplication=true&sType=rpt&iDocID=
Quality: http://<qawebserver>:8080/OpenDocument/opendoc/logonVintela.do?appKind=InfoView&sRefresh=Y&isApplication=true&sType=rpt&iDocID=
Production: http://<prodwebserver>:8080/OpenDocument/opendoc/logonVintela.do?appKind=InfoView&sRefresh=Y&isApplication=true&sType=rpt&iDocID=
If you mentioned your environment name, you have to do as stated after migration.
To avoid this:(as posted), instead of using <server name> just leave it as dots...
http://../OpenDocument/opendoc/logonVintela.do?appKind=InfoView&sRefresh=Y&isApplication=true&sType=rpt&iDocID=23165
Which should work on all environments.
Thank You!!

Similar Messages

  • Using generic webserver for opendoc links

    Hi Everyone,
    Is there a specific syntax I can use to enter opendoc links for a URL button without specifying the name of my BOE server.
    I've tried using <webserver> in place of my server name without success.
    Thanks in advance.
    Angie

    The dynamic url method that Simon gave earlier should work, but not when you are previewing the dashboard.  It would only work once it has been exported to Enterprise.
    If you want it to work whilst previewing you'll need to specify the full server string.
    Regards
    Charles

  • ASA 5505 -Can I use outside dynamic IP for webserver DMZ?

    SETUP
    ASA 5505
    ASA Version 9.1(2)
    ASDM Version 7.1(3)
    I have basic license, using only three vlans (outside, inside, DMZ).
    QUESTION:
    I want to find a way (if possible) to use the single DYNAMIC IP (dhcp'd from ISP) on the "outside" interface, as a means to setup a web-server on the DMZ? I just want to allow my WHS-2011 (server) to talk to microsoft's free DDNS service where my domain name is hosted (ports 80,443,4125).
    So far, every setup option I have tried does not make it past the implicit deny acl's (on the outside interface) to the web-server (DMZ).
    I understand that the VLAN1 (inside) had to be disabled. I understand that objects now replace some of the older NAT'd components.
    CONFIG:
    object network webserver-external-ip
    host <X.X.X.X>
    ! I had set this to match my ISP DHCP address
    object network webserver
    host 172.16.0.2
    nat (DMZ,outside) static webserver-external-ip service tcp www www
    nat (DMZ,outside) static webserver-external-ip service tcp 443 443
    nat (DMZ,outside) static webserver-external-ip service tcp 4125 4125
    access-list outside_acl extended permit tcp any object webserver eq www
    access-list outside_acl_https extended permit tcp any object webserver eq 443
    access-list outside_acl_rww extended permit tcp any object webserver eq 4125
    access-group outside_acl in interface outside
    access-group outside_acl_https in interface outside
    access-group outside_acl_rww in interface outside
    ! added the dns statements below because the cisco doc (below) says it's required or dmz traffic can't get out despite default rule allowing it to do so.
    ! (ctrl-F) ... "all traffic would be blocked from the dmz to hosts on the internet"
    ! http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a0080bf150c.shtml
    object network dns-server
    host 8.8.8.8
    exit
    access-list dmz_acl extended permit udp any object dns-server eq domain
    access-list dmz_acl extended permit ip any any
    access-group dmz_acl in interface DMZ
    SUMMARY:
    I just want to allow my WHS-2011 (server) to talk to microsoft's free DDNS service where my domain name is hosted (ports 80,443,4125).
    I want to find a way (if possible) to use the single DYNAMIC IP (dhcp'd from ISP) on the "outside" interface, as a means to setup a web-server on the DMZ?
    Other:
    As an interim alternative, I have been able to setup & connect to the ASA using clientless vpn (web-ssl), and from there getting over to my WHS2011 server...-but the problem is, I have no way of knowing, or updating my DDNS once that IP changes since the ASA keeps blocking the return traffic to theh outside interface. My only assumption is that becasue I am using a single dynamic IP (outside interface) that it has nothing to re-direct the traffic to....???
    Thank You for any help you can provide!!
    k/r

    Hi,
    I cant really help with the DDNS portion but I would imagine you already have that sorted out.
    The ASA configurations however seem a bit off to me.
    Here is what you should configure
    STATIC PAT TO HOST SERVICES
    There are some changes that need to be done to both ACL and NAT configurations. First of the NAT configurations for each port require their own "object network" to be configured.
    Also since you are using a DHCP address from the ISP to act as the NAT address then you can use the keyword/parameter "interface" in the actual "nat" command. This basically tells the ASA that it should use whatever IP address is currently on the "outside" interface of the ASA. So you wont have to configure any separate "object network" for the public IP address every time it changes.
    Also, with regards to the ACL configurations. You should only configure one ACL per interface in the "in" direction. So all the rules you need to configure for traffic inbound from the Internet need to be in the same ACL that you then attach to the "outside" interface with the command "access-group"
    object network WEBSERVER-TCP80
    host 172.16.0.2
    nat (DMZ,outside) static interface service tcp www www
    object network WEBSERVER-TCP443
    host 172.16.0.2
    nat (DMZ,outside) static interface service tcp 443 443
    object network WEBSERVER-TCP4125
    host 172.16.0.2
    nat (DMZ,outside) static interface service tcp 4125 4125
    access-list outside_acl extended permit tcp any object WEBSERVER-TCP80 eq www
    access-list outside_acl extended permit tcp any object WEBSERVER-TCP443 eq https
    access-list outside_acl extended permit tcp any object WEBSERVER-TCP4125 eq 4125
    access-group outside_acl in interface outside
    DYNAMIC PAT FOR LANs and DMZs
    The above NAT configurations only handles the NAT for situations where the remote hosts on the Internet contact your DMZ server.
    If you want to configure Dynamic PAT for all your LAN and DMZ users which basically enable them to use the "outside" interface public IP address for Internet traffic, then you could configure this single "nat" configuration
    nat (any,outside) after-auto source dynamic any interface
    This would enable Dynamic PAT for all users behind the ASA
    I am not sure if you will run into problems since you are using a single public IP address and trying to forward TCP/443. This port is both used for SSL VPN and ASDM management of the ASA.
    If you want to change the default port of the ASDM management you can use this command
    http server enable
    If you want to change the default port of SSL VPN you can use these commands
    webvpn
    port
    Naturally before doing either of the above changes, make sure that you are not relying to them for management purposes if something was to go wrong. If you have SSH management access to the ASA then it should naturally be ok.
    I am not sure if all of the above are enough to get your setup working but it should be the basics. Naturally if there is still problems after the above suggestions it might be helpfull to see the current ASA configurations. For example NAT might not work if the ordering of NAT rules is wrong even though the actual configurations are otherwise valid.
    Hope this helps
    Please do remember to mark a reply as the correct answer if it answered your question.
    Feel free to ask more if needed
    - Jouni

  • Dynamic file request to appserver and static file request to webserver

    Can we redirect dynamic file request to appserver and static file request to webserver in any application and
    what are the best way to do it ?
    Waiting for the best suggestions ?

    when you have a large number of images/css/javascript/static(html/pdf/doc) files. It takes some of the processing load from your app server and also reduces the network traffic (otherwise traffic must flow between webserver and weblogic as well). it is also reasonably trivial to configure cache/modification/etags headers from a webserver and they are probably more featured than a weblogic server (e.g. to turn on gzip for static files dynamic is just a setting in the webserver but probably needs a custom filter developed in weblogic).
    Again this applies if you already have a webserver (normally because your firewall policy dictates this approach). If you are considering whether to have a webserver at all then there are different considerations.
    regards
    deepak

  • How to allow my webserver to create dynamic web pages ?

    say i have created a pretty simple web server in java which can send and receive HTML files. How can i extend it to allow dynamic web pages ?
    thanks

    You know the part that takes some information from a request, and then loads the requested file?
    Replace that with something that takes that info and uses it to invoke some other functionality.
    No more detail is possible given the detail-less nature of your question.
    You do realize that you're reinventing the wheel, right?

  • How do I access(read) dynamically generated reports with WebLogic WebServer

    Hello Everyone,
    In our application we are generating reports (pdf format) at run time. How do
    we read these files.....which directory should we store these files to... I am
    using Weblogic 6.0.
    These files have timestamp as part of their name so the names are not static.
    Thanks in advance.
    Ahsen

    We ran into this also. If you read the J2EE specs carefully you will see
    that your app is only guaranteed to have write-access to a single directory,
    defined by the context attribute "javax.servlet.context.tempdir" -- I can
    find the exact reference if you want.
    Here is how to get this attribute:
    File tempdir = (File) getServletContext()
    .getAttribute("javax.servlet.context.tempdir");
    log.debug("context temp dir = " + tempdir.getAbsolutePath());
    Although this may seem horribly restrictive, it makes a lot of sense on a
    secure system where applications are deployed by a specific user, and may
    have at runtime minimal filesytem priviledges -- your app can't write
    anywhere, at the exception of the context temp dir. I know this would be the
    way I'd setup my container on a Unix system for example.
    So, what's a developer to do? You can either bypass the issue and always
    generate your content dynamically, with a servlet setting the appropriate
    MIME type to the output, or write your reports to the context temp dir and
    manually serve content from there.
    Frankly I think the first option is by far the most simple, easier to
    implement, and thus attractive; if it leads to a performance problem, you
    can always solve that with a Web cache. Doing otherwise (caching the content
    yourself) opens the door to many issues, that really shouldn't be your
    problem as a Web application developer. Keep it simple!
    --Renaud
    "ahsen" <[email protected]> wrote in message
    news:173_3bc31ee1$[email protected]..
    >
    Hello Everyone,
    In our application we are generating reports (pdf format) at run time.How do
    we read these files.....which directory should we store these files to...I am
    using Weblogic 6.0.
    These files have timestamp as part of their name so the names are notstatic.
    >
    Thanks in advance.
    Ahsen

  • How to hide dynamic parameters values in the URL with Reports 6i

    Hi,
    I want to know a way of hiding the parameters values when asking for a report through the web.
    Now I'm using the Reports 3.0.5.8 with a Cartridge defined in the Oracle Web Application Server 3.0.1.0.1. When you ask for a report with the parameters DESTYPE = cache and DESFORMAT = pdf, it is fully generated and in the Address or Location box of the browser, you can see http://webserver/cache/report.pdf (where cache is the virtual directory defined in the OWAS in which the .pdfs are cached). So, users cant see the Url used to generate the report.
    Im trying to upgrade this configuration to Reports 6i with Cgi in a web server. I generate reports with no problems. The problem I have is I cant find how to hide the parameters values as before. I mean, when I ask for a report, once its generated I can see http://webserver/cgi-bin/rwcgi60.exe?server=ServerName&report=report.rdf&userid=user/pass@connection&destype=cache&desformat=pdf&P1=value1&P2=value2 in the Location box. It allows user to ask for another report changing the values of the parameters. I use these parameters to execute some query written in the Data Model. For example, imagine that the P1 represents the company id, the user (that is supposed to see only data of its company) can change this id, ask for a new report and see data of another company.
    Ive already tried to use the key mapping option, but its not useful to me because the parameters values are dynamic and its impossible to define different entries in the cgicmd.dat for each possible value. The option of loading the parameter form before running a report is not useful to me either, because there exists specific screens for this purpose.
    Is there any solution?
    Thank you.
    Marma Bonfiglio.

    Hi Rakesh,
      I am using BI  7.0
    The last option I have is 'Hide' for 'Calculate single values as' .
    I have the below options  for 'Calculate single values as'
    1. Normalise  according to Next group  level  Resul.
    2. Normalize according to  Overall Result
    3. Rank number
    4.Olympic Rank Number
    5.Maximum
    6. Minimum
    7.Counter for all detailed values
    8.Counter for all detailed values that are non zero
    9.Moving average
    10.Moving average  That is  Not zero ,null or Error
    11. Hide.
    So could you please tell me where i can find 'suppress result' option for the keyfigure .
    Many thanks

  • How to configure inbound ruleset in dynamic nat.

    Hi ,
    I have a doubt on configure the inbound rules for dynamic nat. I want to allow my web server (172.16.101.115) able connect from outside with tcp/443.
    How do I configure the inbound ruleset for allow public connect to my webserver with tcp/443 in dynamic nat.
    Here I have draw a diagram and some configuration i have configure in my ASA 8.2. Please correct me if I was wrong config it. 
    Public IP: 10.10.10.28
    Private IPs:
    172.16.101.115
    172.16.101.116
    172.16.101.117
    172.16.101.118
    172.16.101.119
    172.16.101.120
    access-list Web_nat permit ip host 172.16.101.115 any
    access-list Web_nat permit ip host 172.16.101.116 any
    access-list Web_nat permit ip host 172.16.101.117 any
    access-list Web_nat permit ip host 172.16.101.118 any
    access-list Web_nat permit ip host 172.16.101.119 any
    access-list Web_nat permit ip host 172.16.101.120 any
    nat (firewall-dmz) 1 access-list Web_nat
    global (firewall-outbound) 1 10.10.10.28
    access-list fw-outbound-access permit tcp any host 10.10.10.28 eq 443 //allow outside connect to my external ip.
    access-list fw-dmz-access permit tcp any host 172.16.101.115 eq 443 //allow my translation ip connect to my webserver with tcp/443.

    Hi,
    I am not sure what you are attempting to configure here.
    But what the NAT configuration above does is do a Dynamic PAT for all the servers on the "firewall-dmz" to a single IP address towards the "firewall-outbound"
    This Dynamic translation doesnt however enable connections to be initiated from behind the "firewall-outbound" interface. When your hosting a server which needs a NAT towards the users then the NAT type has to be Static NAT or Static PAT.
    Static NAT will essentially use up one public IP address for just the single local host/server.
    Static PAT will do a Port Forward from the public IP address and public port to the local IP and local port. And this is most commonly used with environments which only public IP address is the one that the ASA holds in its WAN interface.
    A typical Static NAT configuration is this
    static (inside,outside) 1.1.1.1 10.10.10.10 netmask 255.255.255.255
    Where
    inside = is the interface behind which the host is
    outside = is the interface towards which the host is NATed
    1.1.1.1 = is the public NAT IP address for the host
    10.10.10.10 = is the local IP address of the host
    A typical Static PAT configuration is this
    static (inside,outside) tcp interface 80 10.10.10.10 80 netmask 255.255.255.255
    Where
    tcp = specifies the protocol for which the Static PAT configured
    interface = specifies that we will be using the public IP address of the destination interface "outside" as the public IP address for this single Port Forward.
    80 = first "80" specifies the public port visible to users behind the destination interface
    80 = second "80" specifies the actual local port on which the local host is listening on
    Hope this helps
    - Jouni

  • Help me in building menus dynamically to database

    i have the following code whic is developed normal html and .js and .css pages
    i need to deploy all these in a webserver and make the menus dynamically
    i am sending he following code plz help me
    since i am new to java and jsf, jsp i am unable to perfrom the task
    mainpage.html
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
         <head>
              <title></title>
         </head>
         <frameset rows="93,*" border="0" frameborder="0">
              <frame src="head.htm" name="top" scrolling="no">
                        <frameset cols="130,*" border="0" frameborder="0">
                   <frame name="navi" id="navi" src="nag.htm" scrolling="no" border="0" noresize>
                        <frame name="main" id="main" src="welcome.htm" scrolling="no">
              </frameset>
         </frameset>
    </html>
    menupage.html
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/html4/strict.dtd">
    <html>
    <head></head>
    <body>
      <script type='text/javascript'>function Go(){return}</script>
      <script type='text/javascript' src='verticalmenu_var.js'></script>
      <script type='text/javascript' src='vermenu132_compact.js'></script>
      <noscript>Your browser does not support script</noscript>
    </body>
    </html>and two javascript files they also i am pasting plz help me out how to link up the menu with the database in JSF using the following and above said codes
    verticalmenus.js
         var NoOffFirstLineMenus=9;               // Number of main menu  items
                                  // Colorvariables:
                                  // Color variables take HTML predefined color names or "#rrggbb" strings
                                  //For transparency make colors and border color ""
         var LowBgColor="#336699";               // Background color when mouse is not over
         var HighBgColor="#009900";               // Background color when mouse is over
         var FontLowColor="#ffffff";               // Font color when mouse is not over
         var FontHighColor="#ffffff";               // Font color when mouse is over
         var BorderColor="#ffffff";               // Border color
         var BorderWidthMain=1;               // Border width main items
         var BorderWidthSub=1;               // Border width sub items
         var BorderBtwnMain=1;               // Borderwidth between elements
         var BorderBtwnSub=1;               // Borderwidth between elements sub items
         var FontFamily="arial,comic sans ms,technical";     // Font family menu items
         var FontSize=11;                    // Font size menu items
         var FontBold=1;                    // Bold menu items 1 or 0
         var FontItalic=0;                    // Italic menu items 1 or 0
         var MenuTextCentered="left";          // Item text position left, center or right
         var MenuCentered="left";               // Menu horizontal position can be: left, center, right
         var MenuVerticalCentered="top";          // Menu vertical position top, middle,bottom or static
         var ChildOverlap=0.2;               // horizontal overlap child/ parent
         var ChildVerticalOverlap=0.2;               // vertical overlap child/ parent
         var StartTop=50;                    // Menu offset x coordinate. If StartTop is between 0 and 1 StartTop is calculated as part of windowheight
         var StartLeft=0;                    // Menu offset y coordinate. If StartLeft is between 0 and 1 StartLeft is calculated as part of windowheight
         var VerCorrect=0;                    // Multiple frames y correction
         var HorCorrect=0;                    // Multiple frames x correction
         var DistFrmFrameBrdr=2;               // Distance between main menu and frame border
         var LeftPaddng=8;                    // Left padding
         var TopPaddng=2;               // Top padding. If set to -1 text is vertically centered
         var FirstLineHorizontal=0;               // Number defines to which level the menu must unfold horizontal; 0 is all vertical
         var MenuFramesVertical=1;               // Frames in cols or rows 1 or 0
         var DissapearDelay=1000;               // delay before menu folds in
         var UnfoldDelay=100;               // delay before sub unfolds     
         var TakeOverBgColor=1;               // Menu frame takes over background color subitem frame
         var FirstLineFrame="navi";               // Frame where first level appears
         var SecLineFrame="main";               // Frame where sub levels appear
         var DocTargetFrame="main";               // Frame where target documents appear
         var TargetLoc="";                    // span id for relative positioning
         var MenuWrap=1;                    // enables/ disables menu wrap 1 or 0
         var RightToLeft=0;                    // enables/ disables right to left unfold 1 or 0
         var BottomUp=0;                    // enables/ disables Bottom up unfold 1 or 0
         var UnfoldsOnClick=0;               // Level 1 unfolds onclick/ onmouseover
         var BaseHref="file:///C|/rao/projects/changedframework/WebRoot/pages";                    // BaseHref lets you specify the root directory for relative links.
                                  // The script precedes your relative links with BaseHref
                                  // For instance:
                                  // when your BaseHref= "http://www.MyDomain/" and a link in the menu is "subdir/MyFile.htm",
                                  // the script renders to: "http://www.MyDomain/subdir/MyFile.htm"
                                  // Can also be used when you use images in the textfields of the menu
                                  // "MenuX=new Array("<img src=\""+BaseHref+"MyImage\">"
                                  // For testing on your harddisk use syntax like: BaseHref="file:///C|/MyFiles/Homepage/"
         //var Arrws=[BaseHref+"/resources/tri.gif",5,10,,,,BaseHref+"/resources/trileft.gif",5,10,BaseHref+"/resources/triup.gif",10,5];
                                  // Arrow source, width and height.
                                  // If arrow images are not needed keep source ""
         var MenuUsesFrames=1;               // MenuUsesFrames is only 0 when Main menu, submenus,
                                  // document targets and script are in the same frame.
                                  // In all other cases it must be 1
         var OverFormElements=1;               // Set this to 0 when the menu does not need to cover form elements.
         var RememberStatus=0;               // RememberStatus: When set to 1, menu unfolds to the presetted menu item.
         var BuildOnDemand=1;               // 1/0 When set to 1 the sub menus are build when the parent is moused over
         var BgImgLeftOffset=5;               // Only relevant when bg image is used as rollover
         var ScaleMenu=0;                    // 1/0 When set to 0 Menu scales with browser text size setting
                                  // When set to 2 only the relevant main item stays highligthed
                                  // The preset is done by setting a variable in the head section of the target document.
                                  // <head>
                                  //     <script type="text/javascript">var SetMenu="2_2_1";</script>
                                  // </head>
                                  // 2_2_1 represents the menu item Menu2_2_1=new Array(.......
         var HooverBold=0;                    // 1 or 0
         var HooverItalic=0;                    // 1 or 0
         var HooverUnderLine=0;               // 1 or 0
         var HooverTextSize=0;               // 0=off, number is font size difference on hoover
         var HooverVariant=0;               // 1 or 0
                                  // Below some pretty useless effects, since only IE6+ supports them
                                  // I provided 3 effects: MenuSlide, MenuShadow and MenuOpacity
                                  // If you don't need MenuSlide just leave in the line var MenuSlide="";
                                  // delete the other MenuSlide statements
                                  // In general leave the MenuSlide you need in and delete the others.
                                  // Above is also valid for MenuShadow and MenuOpacity
                                  // You can also use other effects by specifying another filter for MenuShadow and MenuOpacity.
                                  // You can add more filters by concanating the strings
         var MenuSlide="";
         //var MenuSlide="progid:DXImageTransform.Microsoft.RevealTrans(duration=.5, transition=19)";
         //var MenuSlide="progid:DXImageTransform.Microsoft.GradientWipe(duration=.5, wipeStyle=1)";
         var MenuShadow="";
         //var MenuShadow="progid:DXImageTransform.Microsoft.DropShadow(color=#888888, offX=2, offY=2, positive=1)";
         //var MenuShadow="progid:DXImageTransform.Microsoft.Shadow(color=#888888, direction=135, strength=3)";
         var MenuOpacity="";
         //var MenuOpacity="progid:DXImageTransform.Microsoft.Alpha(opacity=85)";
         //function BeforeStart(){return}
         //function AfterBuild(){return}
         //function BeforeFirstOpen(){return}
         //function AfterCloseAll(){return}
    // Menu tree:
    // MenuX=new Array("ItemText","Link","background image",number of sub elements,height,width,"bgcolor","bghighcolor",
    //     "fontcolor","fonthighcolor","bordercolor","fontfamily",fontsize,fontbold,fontitalic,"textalign","statustext");
    // Color and font variables defined in the menu tree take precedence over the global variables
    // Fontsize, fontbold and fontitalic are ignored when set to -1.
    // For rollover images ItemText or background image format is:  "rollover?"+BaseHref+"Image1.jpg?"+BaseHref+"Image2.jpg"
    Menu1=new Array("DataCollection","","",6,20,120,"","","","","","",-1,-1,-1,"","");
         Menu1_1=new Array("Record Based","","",3,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_1_1=new Array("Data Entry","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_1_2=new Array("Account","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_1_3=new Array("T","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu1_2=new Array("File Based","","",3,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","Nation");
              Menu1_2_1=new Array("Carian","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_2_2=new Array("Senarai ATR","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_2_3=new Array("Senarai Kertas Siasat","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu1_3=new Array("Auto Upload","ATR_Eksibit_Form.htm","",4,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_3_1=new Array("Carian","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_3_2=new Array("Senarai ATR","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_3_3=new Array("Senarai Kompaun","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_3_4=new Array("Senarai LJKR","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu1_4=new Array("Validation Failure","Permohonan_Keluar_Eksibit_Form.htm","",3,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_4_1=new Array("Carian","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","Football Every Day");
              Menu1_4_2=new Array("Senarai ATR","ATR_Eksibit_Form.htm","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_4_3=new Array("Senarai Eksibit","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu1_5=new Array("Pendakwaan","Permohonan_Keluar_Eksibit_Form.htm","",3,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_5_1=new Array("Carian","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_5_2=new Array("Senarai ATR","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
              Menu1_5_3=new Array("Senarai LKKP","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu1_6=new Array("OKT","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
    Menu2=new Array("Statistical Analysis","","",1,20,120,"","","","","","",-1,-1,-1,"","");
         Menu2_1=new Array("Carian","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
    Menu3=new Array("Discovery Analysis","","",1,20,120,"","","","","","",-1,-1,-1,"","");
         Menu3_1=new Array("Carian","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
    Menu4=new Array("Case Management","","",2,20,120,"","","","","","",-1,-1,-1,"","");
         Menu4_1=new Array("Operasi","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu4_2=new Array("Pengurusan","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
    Menu5=new Array("Content Management","","",3,20,120,"","","","","","",-1,-1,-1,"","");
         Menu5_1=new Array("e-LesenNiaga","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu5_2=new Array("e-Tribunal","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu5_3=new Array("e-Aduan","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
    Menu6=new Array("Audit log","","",0,20,120,"","","","","","",-1,-1,-1,"","");
    Menu7=new Array("Administration","","",6,20,120,"","","","","","",-1,-1,-1,"","");
         Menu7_1=new Array("Akta","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu7_2=new Array("Jenis Cetak Rompak","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu7_3=new Array("Jenis Eksibit","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu7_4=new Array("Jenama","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu7_5=new Array("Karya Cetak Rompak","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
         Menu7_6=new Array("Kawasan","","",0,20,120,"#e1ffb3","#edf6d9","#404040","#0E61AE","#5eb101","",-1,0,-1,"left","");
    Menu8=new Array("Pentadbiran","","",0,20,120,"","","","","","",-1,-1,-1,"","");
    Menu9=new Array("Tukar Kata Laluan","","",0,20,120,"","","","","","",-1,-1,-1,"","");
    plz help me out in doing so and save me
    thank you

    Please view open source JSF menu
    http://myfaces.apache.org/tomahawk/jscookmenu.html

  • Acrobat/Reader cannot cope with internal Webserver connectivity problems, leading to comments being hidden/deleted. Any thoughts?

    Adobe Acrobat/Reader do not cope with interruptions to access to the internal WebServer hosting the PDF/XML review files.
    Steps to reproduce the issue:
    Connection is lost to the WebServer hosting the PDF review files.
    After connection to the WebServer is regained, access to the PDF review files is blocked by Adobe Acrobat/Reader.
    Sometimes this can be resolved by deleting the entire contents of the folder:
              C:\Users\<user-name>\AppData\LocalLow\Adobe\Acrobat\11.0\Synchronizer
    NOTES:
    We have experienced this behaviour especially when connecting to the WebServer via VPN. I reckon the connectivity issues could be initially our problem, that Acrobat/Reader simply do not handle.
    Clearing the contents of the Synchronizer folder does not always work.
    Team members have also seen situations where significant numbers of review comments or status values have been not been displayed, but exist in the XML review files. In some cases comments/status values have been automatically deleted without warning from the Adobe review XML files.
    PDF reviews are sent out via email as links to the PDF review file hosted on an internal WebServer.
    Writers and reviewers in the team either have either:
    Acrobat XI Pro 11.0.08 with Reader 11.0.08
    Acrobat XI Pro 9.5.5 with Reader 11.0.08
    I have personally experienced the above behaviour with Acrobat XI Pro 11.0.08 and Reader 11.0.08.
    Could this experience be connected the Synchronizer (http://helpx.adobe.com/acrobat/kb/known-issues-acrobat-xi-reader.html )?
    For example, where a reviewer uses a different version of Acrobat/Reader?
    Could anyone please provide a list of compatible versions of Acrobat/Reader?
    Expected results:
    Adobe Acrobat/Reader should really handle connection issues with a warning and later check for recovered connections.
    However, what appears to be happening is that Acrobat/Reader writes some sort of blocking code to the Synchronizer folder that prevents future checks of the PDF review files on the review WebServer.
    As far as I understand, the connection issues are not caused by Adobe software, however the problems we are experiencing relate to how Adobe Acrobat/Reader handle this loss of connection.
    Plea for Help!
    I have checked and the experience of missing comments and persistent "connectivity issues" seems to be a reported but sadly outstanding issue...
    This has been an ongoing headache for some time, so solutions would be great, but any thoughts or suggestions are welcome...?
         For example, has anyone using SharePoint to host PDF reviews experienced anything similar?
    Many thanks!

    Adobe Acrobat 11.0.09 with Microsoft SharePoint Repository Trial Update
    We've completed week one of a three week trial (see above) that will go on until Friday 24th October.
    We currently have just four PDF files out for review that make use of the SharePoint repository.
    To-date:
    Each review file has had multiple concurrent reviewers posting comments over several days from both over the office LAN and also via VPN when working remotely.
    Dynamic stamps seem to be working as hoped and are all visible.
    We have not experienced any connection-type issues and the we have not had reason to clear out the Synchronizer folder as described above.
    Counter balance:
    I have experienced the situation with a remote VPN connection, where Adobe Acrobat could not connect to our internal WebServer repository. At the same time, I was able to connect to PDF review files hosted in SharePoint.
    Summary:
    The experience so far does suggest that problems are caused by the an inconsistent connection to the WebServer repository (especially over VPN) combined with Adobe Acrobat/Reader's inability to cope with the resulting situation.
    At the moment I must say that while it is early days, I am hopeful that the combination of SharePoint as the repository and the update to Adobe Acrobat/Reader 11.0.09 will continue to prove to be reliable.
    I'll provide an update to this post on Friday 24th October...
    Here's hoping!

  • Html & dynamic values in a mail

    Hi,
    I need to send a mail in wich are written the login information of a user. The Body of the mail should be something like:
    Hello,
    you have requested your account informations. They are :
    login : yourLogin (in bold)
    password: yourPassword (in bold)
    The login & password are of course dynamic values that are passed in parameters to my class. The only way I have found to do this is to hard code the whole mail into one line :-) like this :
    // html part
    BodyPart bodyPart1 = new MimeBodyPart();
    bodyPart1.setContent( "<font size=2 face=Verdana, Arial, Helvetica, sans-serif>Hello,<br>you have requested your  account informations.  They are :<br> login: <b>"+eto.getLogin()+"</b> <br> password: <b>"+eto.getMot_de_passe2()+"</b> <br></font> ", "text/html" );
    ......Which is a better way to do this. In particulary, I'd like to put the static part of the mail into a text file wich can be modified without recompiling the classes (mail.properties)
    thank a lot for your help.

    You could use Properties and yes you would not need to recompile the classes after that.
    HOWEVER, if you edit the text file directly, you will need to find some way to get Properties to reload the file or you'll have to restart your webserver...
    That being said, here is how I do something similar...
    In my properties, I use a delimiter '~' and then I use string tokenizer to on the string that is supposed to be the body, I write the first token to then insert whatever text I need, then insert the second token, and whatever text I need and then the third token.
    basically you use ~ to speficy where you are inserting dynamic values.

  • Issue While sending data to Webserver

    Hi All,
      I am facing an issue while sending data to a webserver. My scenario is SAP(Proxy) to XI to Webserver. It is an asynchronous scenario. The same communication channel and same WSDL is used to send many Interfaces but when I am sending data for a particular Interface I am facing the issue "SOAP: response message contains an error XIAdapter/HTTP/ADAPTER.HTTP_EXCEPTION - HTTP 400 Bad Request"
    Few points for reference -
    1. I am sending valid data to the webserver(Confirmed by the webserver guy).
    2. The WSDL is the latest one and the same WSDL is used at their end to receive the data.
    3. The schema I am using to send the data is also the latest ones.
    4. The same payload when sent through SOAPUI tool reaches the web server.
    5. The same communcation channel is used to send data for all the messages. All other messages are reaching the webserver except this message.
    Can anyone please provide me some solution for this issue.
    Thanks in advance.
    Regards,
    Sarat

    SInce you are using only one receiver channel for all WSDL operations, I hope you are setting SOAP action for each message type (operation) using dynamic configuration during mapping or at module level(in the soap receiver channel using DC bean).
    >> 5. The same communcation channel is used to send data for all the messages. All other messages are reaching the webserver except this message.
    Cross verify again all the design and configurations. check the MONI for Dynamic configuration header for this particular message if you are setting the same during mapping.
    >> 4. The same payload when sent through SOAPUI tool reaches the web server.
    Finally you can use some Sniffer tools to verify the requests that are being sent from XI and you can compare with SOAP UI tool request which is sending correct request in your case.

  • Dynamic Reports in java application

    Hi,
    I want to create dynamic reports in an java standalone application, I have downloaded the Jfreereport <http://sourceforge.net/projects/jfreereport>
    I'm not sure, whether it could get data from a JDBC source. (or is there anyother solution to generate dynamic reports in a java application?).
    Thanks in advance,
    Payam

    I generate reports from a webserver ( Tomcat ) in PDF using iText ( www.lowagie.com/iText ). It works great. JFreereport is also using this iText and you shouldn't have any problems using JDBC. Try to read the tutorial first about iText first. This will give you an idea how JFreereport works.
    - Dieter

  • Help with dynamic database

    I'm still stuck on learning database-driven development. I
    plan to take the Lynda.com free lessons... but until then, if
    anyone can help me, I'd be very appreciative:
    Here are today's questions:
    My manager (VP eng./sales/mktg) wants to know WHY I think
    Dreamweaver is better for developing database-driven applicaitons
    than C# in an asp.net environment. I believe DW is better at
    supporting CSS and enabling an user-friendly design for the UI, but
    I don't know whether C# can do all the same things... (C# is a
    development tool for the asp.net environment).
    Can you help me identify why DW is better than C# for either
    the entire dynamic site development OR just the UI?
    Also I need to learn how to attach my sql queries (already
    written) to an html page created in dreamweaver, We have an IIS
    webserver. Here's how I see the process:
    a) Kick off the query from a DW html page
    b) access the DB through the web server (IIS?)
    c) recieve the results back from the database
    d) render the results on a DW page.
    The sql is going to an oracle DB.
    I can access oracle and run the query (using SQL plus) from
    my PC, so the only question is how to I hook it up to DW...
    Anything you can say to shed light on any of these would be
    so helpful!
    THanks,
    Jane

    Hi Jane,
    You must remember DW is a tool for creating websites. You
    could use C#
    for your website and do the coding of C# in DW. DW is not a
    scripting
    language as PHP, ASP and C# are.
    As for the query, do you know what scripting language you
    would be using
    to connect to the Oracle DB (ASP, PHP, etc.)? Once you let us
    know what
    you are using it will be easy to give an example.
    Cheers.
    Chris
    basketcasecafe1 wrote:
    > I'm still stuck on learning database-driven development.
    I plan to take the
    > Lynda.com free lessons... but until then, if anyone can
    help me, I'd be very
    > appreciative:
    >
    > Here are today's questions:
    >
    > My manager (VP eng./sales/mktg) wants to know WHY I
    think Dreamweaver is
    > better for developing database-driven applicaitons than
    C# in an asp.net
    > environment. I believe DW is better at supporting CSS
    and enabling an
    > user-friendly design for the UI, but I don't know
    whether C# can do all the
    > same things... (C# is a development tool for the asp.net
    environment).
    >
    > Can you help me identify why DW is better than C# for
    either the entire
    > dynamic site development OR just the UI?
    >
    > Also I need to learn how to attach my sql queries
    (already written) to an html
    > page created in dreamweaver, We have an IIS webserver.
    Here's how I see the
    > process:
    > a) Kick off the query from a DW html page
    > b) access the DB through the web server (IIS?)
    > c) recieve the results back from the database
    > d) render the results on a DW page.
    >
    > The sql is going to an oracle DB.
    > I can access oracle and run the query (using SQL plus)
    from my PC, so the
    > only question is how to I hook it up to DW...
    >
    >
    > Anything you can say to shed light on any of these would
    be so helpful!
    > THanks,
    > Jane
    >
    >
    >
    >
    >

  • SOAP dynamic

    Scenario is X --> SAP XI ---> Y.
    Y is a webserver. So I am using SOAP receiver channel.Generally there is an option in receiver channel to mention target URL.
    Is it possible to read the target URL dynamically from the message mapping(If sender system sends it in the Input payload)?
    Or
    Is there any option like variable substitution in SOAP receiver communication channel?
    Thanks
    Regards,
    Naresh

    Hi Naresh,
    1.Do I need to add an extra field to the target structure(target DT) to handle the URL?
    No that is not required, as the ASMA that are set in the channel are not a part of the message payload but the header. The server url will be set and you can see the dynamic url in the DYNAMIC CONFIGURATION tab of SXMB_MONI.
    See this link for more details on dynamic configuration:
    http://help.sap.com/saphelp_nw04/helpdata/en/43/03612cdecc6e76e10000000a422035/frameset.htm
    2.If I enable Adapter specific attributes in receier soap channel, what I needs to give in target URL option?What are the other changes I need to do in the channel?
    You can provide any dummy value there. It will be over written by the dynamic url provided. No other changes are required.
    Regards,
    Sanjeev.

Maybe you are looking for

  • Creating a link to a file on a Windows server?

    I am trying to create a link to a file located on a Windows server that I can email to users and they can click on the link and it will open the actual file. Here is what I have done so far: smb://server/sharedfolder/document.doc The user can click o

  • CREATE MULTIPLE TABLES USING BATCH FILE OR ANYOTHER MODE

    Dear Legends, I want to create Multiple table at a single stroke in oracle sql developer or sql*plus using any mode like batch file or sql files... I dont know the exact mode and how to create it please guide me..I want to learn more about this since

  • Will i get a student discount in Thailand if i am studying in India????

    will i get a student discount in Thailand if i am studying in India????

  • Audio Freezes During Software Simulation

    Hi Everyone, I hope one of you (maybe Rod?) can help me. I'm a newbie to Adobe Captivate (~2 months), and am having an issue when I try to record a Software Simulation on Captivate 8. I go through the whole ~13 minute video with narration, but when I

  • Vlans on FCoE uplinks in UCS

    Hi, we are running UCS ver 2.1.1e. We are doing multihop FCoE to the N5ks from the FIs. I noticed that if you bind the FCoE uplinks into a FCoE port-channel, you cannot tag ethernet vlans on it. BUT if you keep them as just FCoE uplinks you can tag v