How to access SSRS in cloud remotely over internet

How to access SSRS in cloud remotely over internet. How authentication and authorization of reports based on user roles can be managed over internet.
Thanks in advance for your help.
Bala

this is resolved

Similar Messages

  • Linksys E4200: How to access USB hard drive remotely from Android phone or computer

    Hello.
    I just purchased a Linksys e4200 router today along with a WD 2TB MyBook hard drive. My intent is to set these two up together so that i can share files on the hard drive with:
    Computers on my home network ( 1 Windows 7 desktop wired, 1 windows 7 laptop wifi, 1 XP netbook wifi)
    Computers remotely over the internet
    Smartphones (Android and Apple) on my home network
    Smartphones (Android and Apple) remotely over the internet
    My questions are:
    Can all of this be done with the E4200?
    Has anyone in the communiyt forums set-up remote access for fileshare with smartphones?
    What is the easiest way to set-up and configure this?
    Does anyone have experience using the WD MyBook Essential (WDBACW002OHBK)? Does it work well with the E4200?
    Thank you in advance for all responses and help.

    Hi,
    Major concern in your case now, seems like is all about accessing the data from that Shared Hard Drive remotely over the internet....
    For that very reason, we can use either of the two ways to access the shared Hard Drive or Network Hard Drive remotely....However, for both the ways, we need to have a public IP address coming in from the modem...(192.168.X.X....172.16.X.X....10.X.X.X...are examples for Private IP, rest all are public IP's)
    One of the ways to get this done is through the WAN IP that you are getting from Modem on your connected Cisco Router's status page....Open the set up page with http://192.168.1.1 , go to Status tab - look out for WAN IP - should be a public IP address not a private one....,then so as to access it, you have type in http://wanip:sharename....
    Other way round to do the same is via getting the WAN IP converted to the domain name, this is done via dynamic domain naming system (refer to http://TZO.org) in which we converts our WAN IP into a domain name, which will continue to update the ever changing public IP address (WAN IP) on the daily basis....then so as to access it, you have type in http://domainname:sharename.....

  • How to access file server through ethernet BUT internet though wireless

    I'm looking for a way to to run my file server network through ethernet while internet access is provided though wireless, but don't want users to have to switch off the wireless when they want to access the file server.
    File server is set up at trade shows and the conventions charge a fortune for internet access for multiple users and even more ($6000) for a connection that I'm allowed to put a router on. So I'm considering running my apple router for the file server network without internet access and just having my staff get their internet access from the cheaper wireless access the convention center has throughout the building.
    Problem is that I need them to be able to access the file server and the internet at the same time without switching back-and-forth from either network.
    Any suggestions? File server and all clients are macs.
    Message was edited by: Road Show

    Hello,
    Here are some good articles for this topic, please see:
    sql server connectity over the internet:
    http://www.codeproject.com/Questions/433687/sql-server-connectity-over-the-internet
    How To Connect SQL Server Through Internet:
    http://www.youtube.com/watch?v=VOUDdUJ5BLY
    Regards,
    Elvis Long
    TechNet Community Support

  • How to transfer more than one files over internet at once?

    hi, friends,
    I just wonder how to transfer more than one files from one computer to another over internet at once. Not using ftp. pls any one give me the solution.

    This isn't hard to do, but it depends on your exact need. I did something very similar to let me upload all my mp3 file from home to work using sockets (don't have the code anymore..).
    What I did was implement a "pull" approach rather than a "push" approach. In other words, everytime my server got a request from a client, it served up the next file. It didn't know or care that the client was always the same.
    If you can set up a server to serve one file when a client attaches, then basically just put that code in a loop.
    If this doesn't meet you need, it might still be helpful as a starting point...

  • How to access OEL 5 server remotely using x-windows

    I use Reflections X or X-deep to remotely access several unix boxes from my desk instead of from the server. I am having some issues getting xdmcp or gdm setup so I can do this with a new server running OEL 5. Does anyone know how to configure the server to accomplish this?
    I have done the setup on several rhel 2 - rhel 4 and OEL 4 installations but it appears to have changed in OEL 5.

    Figured it out, too easy. Go to system - administration - login screen. On the resulting screen go to accessibility and enable accessible login. Go to the security and users tabs to choose who and how. Pretty slick.

  • How to access SSRS multivalue parameters by their array index value

    Hi,
    How can I refer to an SSRS multivalue parameter by its index value?  Let's say I have a list
    of 10 multivalue parameters that reference database column names.  If the user selects the
    2nd and 3rd item from the list,  I would like to build a dynamic SQL query including just
    those items.  I'd like to be able to build a string something like this:
    "SELECT "+IIF(Paramters!Columlist.value(1) <> null,Paramters!Columlist.value(1),"")
      +IIF(Paramters!Columlist.value(2) <> null,Paramters!Columlist.value(2),"")+ ETC...
    I know I can test if a value was selected this way:
     instr(Join(Parameters!ColumnList.Value,","),"aColumnName")=0
    But the column names are MDX tuples and can be quite large and I think this will not be efficient.
    Is there a way to use the array index, how best to do this?
    THanks

    Hi billywinter,
    According to your description, you want to specify the available values for an multivalued parameter with array index.
    In Reporting Services, null values is not allowed in multivalued parameters. So you needn’t to specify the query to decide whether there are null values or not.
    If you have any question, please feel free to ask.
    Best regards,
    Qiuyun Yu
    Qiuyun Yu
    TechNet Community Support

  • How to access data in the remote system

    Hi everybody,
    I have developed four classes.
    FileInterface.java:-
    import java.rmi.Remote;
    import java.rmi.RemoteException;
    public interface FileInterface extends Remote {
    public byte[] downloadFile(String fileName) throws
    RemoteException;
    FileServer.java:-
    import java.io.*;
    import java.rmi.*;
    public class FileServer {
    public static void main(String argv[]) {
    if(System.getSecurityManager() == null) {
    System.setSecurityManager(new RMISecurityManager());
    try {
    FileInterface fi = new FileImpl("FileServer");
    Naming.rebind("//10.161.15.219/FileServer", fi);
    } catch(Exception e) {
    System.out.println("FileServer: "+e.getMessage());
    e.printStackTrace();
    FileImpl.java:-
    import java.io.*;
    import java.rmi.*;
    import java.rmi.server.UnicastRemoteObject;
    public class FileImpl extends UnicastRemoteObject
    implements FileInterface {
    private String name;
    public FileImpl(String s) throws RemoteException{
    super();
    name = s;
    public byte[] downloadFile(String fileName){
    try {
    File file = new File(fileName);
    byte buffer[] = new byte[(int)file.length()];
    BufferedInputStream input = new
    BufferedInputStream(new FileInputStream(fileName));
    input.read(buffer,0,buffer.length);
    input.close();
    return(buffer);
    } catch(Exception e){
    System.out.println("FileImpl: "+e.getMessage());
    e.printStackTrace();
    return(null);
    FileClient.java:-
    import java.io.*;
    import java.rmi.*;
    public class FileClient{
    public static void main(String argv[]) {
    if(argv.length != 2) {
    System.out.println("Usage: java FileClient fileName machineName");
    System.exit(0);
    try {
    String name = "//" + argv[1] + "/FileServer";
    FileInterface fi = (FileInterface) Naming.lookup(name);
    byte[] filedata = fi.downloadFile(argv[0]);
    File file = new File(argv[0]);
    BufferedOutputStream output = new
    BufferedOutputStream(new FileOutputStream(file.getName()));
    output.write(filedata,0,filedata.length);
    output.flush();
    output.close();
    } catch(Exception e) {
    System.err.println("FileServer exception: "+ e.getMessage());
    e.printStackTrace();
    After that when i compile classes when i give the command as
    rmic FileImpl
    in command prompt error is coming like this.
    error: Class FileImpl not found.
    1 error
    Can anyone help me please,urgent.

    It is generating stub and skeleton classes but when iam running FileClient after starting rmiregistry,it is coming something like
    FileServer exception: FileServer
    java.rmi.NotBoundException: FileServer
         at sun.rmi.registry.RegistryImpl.lookup(RegistryImpl.java:106)
         at sun.rmi.registry.RegistryImpl_Skel.dispatch(Unknown Source)
         at sun.rmi.server.UnicastServerRef.oldDispatch(UnicastServerRef.java:375)
         at sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:240)
         at sun.rmi.transport.Transport$1.run(Transport.java:153)
         at java.security.AccessController.doPrivileged(Native Method)
         at sun.rmi.transport.Transport.serviceCall(Transport.java:149)
         at sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:466)
         at sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:707)
         at java.lang.Thread.run(Thread.java:595)
         at sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:247)
         at sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:223)
         at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:343)
         at sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
         at java.rmi.Naming.lookup(Naming.java:84)
         at FileClient.main(FileClient.java:9)
    Can u help me

  • How about BDB HA replicate the db over internet?

    Have someone use bdb ha to do a long distance replication(not in a lan scale)?
    How about the it's efficiency ?
    3x

    Hi Debabrata,
    In App Controller the console access is provided by an ActiveX control and this requires the client (web browser) to connect directly to the Hyper-V server. As you note, for this to work over the internet would require the Hyper-V host to be accessible from
    the internet, and this is not a recommended security practice. 
    Publishing App Controller as a Remote App avoids needing to make the Hyper-V host accessible to the internet. I'm not an expert in setting up Remote App and don't have an answer about how to avoid doing 2 lots of authentication. The
    Remote Desktop Services forum is likely to be a better place to ask a question on setting up Remote Apps.
    Let me know what you need help with for the Remote Console in Windows Azure Pack option. There is also a forum for
    Azure Pack and two of our MVPs who do have console connect working have both written articles that describe their experience.
    http://kristiannese.blogspot.com/2014/02/configuring-remote-console-for-windows.html
    http://www.hyper-v.nu/archives/mvaneijk/2014/01/windows-azure-pack-remote-console-with-the-rd-gateway-in-a-dmz/
    Regards,
    Richard
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • How can I share my iPhoto Library over internet

    My friend and I want to share our iPhoto Library(size 5.19 GB and growing). We don't live together so we are not on the same network.
    We were really hoping we could do this with mobile me. This is what we thought we could do with mobileme(but later found out it's not possible). Not possible but this is what we want to do: *We thought we would be able sync our iphoto library. This way we could work on or off line, make changes in iphoto have it auto sync and when he went to iphoto he would see the changes I made and he could make changes and I would see them when I went to iphoto. No one would have to manually sync or have to remember to sync.* On Mobile Me the sync function doesn't do it with iphoto. Are you aware of a company, software, or service that would allow us to do this?
    Of if you don't know of a way we can have it sync then do you know of a service that we can store our library on and work from. The key would be to be able to work on the file while it's on their server at a reasonable fast speed. Doing it this way nothing would be physically stored on our computers. It would be stored on somoene else's server.
    *Below are our options we are aware of using mobile me*(We are looking for other options:
    We thought we could use mobile me to sync, but it doesn't sync iphoto. We could use idisk(in conjunction to or .mac account). We would upload the library to idisk, then when we wanted to use it we would download it to our computer make changes and upload it and the next person could do the same. The only problem is with it being so large it takes a very long time to upload to idisk/.mac account and up to now I haven't been able to get it up on .mac(I just got off the phone with mac and we tried everything and it the idisk sync just fails everytime.)Even if it did work it's not what we are looking for. The other option I am aware of would be to use *Back to My Mac*(also part of mobile me). This would entail both of us leaving our computers on(not in sleep mode) and we could log on to the other computer and grab what we want make changes and return it.
    If you have other ideas please suggest.

    YOu can share photos via web galleries but not the iPhoto library directly - and even if you were on the same network there is no ability to sync two iPhoto libraries
    As to ahving your iPhoto library on the internet - no to that too - even a wireless connection to the library does not work - too slow and too unreliable - putting it on the net is not possible unless someone comes up with a giant step that direction
    in addition to web galleries you can upload to your iDisk or to a third party service - Back to my Mac I guess would be a way - you would have to update yoru computer and your buddies doubling your work and increasing the time a lot more than that
    LN

  • How To Access Time Capsule Over Internet?

    Can't seem to figure out how to access the Time Capsule drive over the internet. As far as I know it is all set up. But I have no clue how to access it when I am on the road. Do I do this through Mobile Me?

    Full details here:
    http://forums.dealmac.com/read.php?4,2800627 and http://discussions.apple.com/thread.jspa?threadID=1572371&tstart=31
    Regards
    Paul

  • How to access my backed up icloud files

    I can't seem to figure out ...how to access my i-cloud account where my files have been backed up?  I went into some i-cloud acct, but it does not have access to my files.

    You can access all your iCloud data from within the apps on your phone (contacts, calendars, etc.).  You can't access an iCloud backup except to restore it to your device.

  • Accessing Agile PLM over Internet

    Hi,
    I am trying to access Agile PLM 93 URL over internet. I configured IIS and was successful in accessing the web URL on internet.
    But when I select an attachment row of an object and select More -> Get Shortcut option. Then I paste this link in browser, I am getting the below error
    Error Code: 403 Forbidden. The server denied the specified Uniform Resource Locator (URL). Contact the server administrator. (12202)
    The same attachment link is working fine in intranet. Are there any steps to be done for file manager?

    Try the Oracle Product Hub forum.
    Product Hub
    Hope this helps,
    Sandeep Gandhi

  • Is there a way to connect to my Time Capsule over internet from an iPad

    Hi,
    Could anybody please help me configure how to connect to my Time Capsule 3TB over internet from my iPad.
    I would like to use it as Cloud station over internet.
    I was able to connect from my Mac on both "over internet and from my local network" using "Back to My Mac"
    I was able to conncet also from my iPad from my local network.
    I bought some file browser Apps which enable iPad to connect as "afp, smb" but I could'nt manage to make it work?
    I made all the setting required: Enabling NAT Port Mapping, File Sharing, Sharing Disk over WAN, but without success?!
    Shouldn't Apple includes and supports iPad to make such connection like "Back to My Mac" protocol.
    I believe that Time Capsule is a great product, but I think Apple should consider more of software compatibilities.
    Thanks,,

    Thanks Bob,
    I already tried FileBrowser and I did all the steps as per the instruction on their webpage, but alwasy give error message.
    Could it be that "smb" protocol blocked by my internet provider.
    I am connecting to internet using DHCP.
    Many thanks

  • ARD 3.2.1 over Internet only Screensharing instead of full administration

    I have an OS X 10.3.9 Server, running ARD Client 3.2.1, it should be remoted over Internet
    I have an OS X 10.4.11 Server, Running ARD UNL 3.2.1, this is the Mac that remotes the others
    I have some other OS X Server and normal machines, Running ARD Client 3.2.1, they are remoted over the local lan.
    Remote Desktop in the local lan is running fine and without problems, but If i try to remote the 10.3.9 Server that runs ARD 3.2.1 (it is only available over internet), ARD says that only screen sharing is available, no full access... The internal Server-Firewall of the problem 10.3.9 Client i have shut down and in the Router where the 10.3.9 Client is connected to, i do forward the Ports
    5900 TCP/UDP
    3283 TCP/UDP
    5353 TCP/UDP
    5988 TCP/UDP
    5432 TCP/UDP
    5989 TCP/UDP
    to the local IP adresse (Client has a fixed IP-Adress) of the client.
    If i forward all Ports in the router in the lan where the 10.3.9 Machine is in to the 10.3.9 Client, i have screen-sharing only and no full access.
    New installation of the machine, same problem....
    Same Problem if i use ARD 2.2 instead of 3.2.1
    Any help?

    My router does not seem to be the problem as it works very well with other wireless devices. To be on the safe side I left my modem/router unplugged for over 2 hours. The problem also doesn't seem to be with my AirPort Extreme card as I am constantly connected to my network at full speed.
    I recently just created a new account and was able to download and install 10.5.6 without interruption. It seems I only experience downloads timing out on my main and only account. Web browsing seems to be fine until moments after I start a download. The download will begin to download and then time out. Also, at this time pages fail to load. After a few moments I can then reload my download only for it to time out once again.
    I tend to keep Safari clean by using the "Reset Safari..." option after every use. I just hope my only solution is not creating a new account every time I plan on downloading a file.

  • How to access Time Capsule USB Drive data remotely via iPad

    How can I (with my iPad) remotely access some .xls files stored on a USB Pen Drive attached to my Time Capsule?

    This is very difficult.. I have heard there is AFP file app for the ipad but haven't seen if it can work.. the normal file app for ipad is actually SMB based.. TC does not offer SMB to WAN.
    If the files are small, cloud is your best choice.
    If you really need access to the TC, then use vpn.. I believe there is a vpn function in the ipad.. get a vpn router and bridge the TC.. you should then be able to safely and securely connect and get files.

Maybe you are looking for

  • HDTV and Resolution

    I'm setting up an htpc and I can not get xrandr to allow me to set the resolution I want.  I want either 1280x720 or 1366x768 (monitors recommended resolution through pc output on it).  Currently its hooked up through hdmi, so I would like to set the

  • File as a parameter in teststand

    Hello, how can I give an action (LabView adapter) a file as parameter. I have a VI which needs a path (a text file to parse) I can change this to string. a) But how can I give TestStand this file as parameter and b) when this is possible, is it also

  • External usb sound card is not working correctly

    When my computer usb sound card is working correctly. If your computer to sleep and wake up the sound card is working correctly. If you disable the sound card and connect again, it appears extraneous sound on the background music playing. Each time t

  • Converting Hex to Decimal

    hi, I want to convert my hex value to decimal. How can I do this? help me pls. Suku

  • HT4009 What is the problem if there is an error in initiating purchse with iTunes?

    Initializing purchse with iTunes is a frequent dialogue box coming out whenever I make purchase of items/characters or gems from the Skylnders Lost Islands game.